From 9a6738dcd43b7f65f7123b7a517ba1abbbf2d7db Mon Sep 17 00:00:00 2001 From: Trevor Burnham Date: Fri, 23 Aug 2024 14:17:31 -0400 Subject: [PATCH] fix(arborist): check placed node children for missing deps (#7746) This addresses an edge case where a dep could be placed in the tree with unsatisfied indirect dependencies (see test case). --- .../arborist/lib/arborist/build-ideal-tree.js | 4 + workspaces/arborist/test/arborist/reify.js | 9 + .../package-lock.json | 187 + .../lockfile-with-missing-parent/package.json | 9 + .../registry-mocks/content/array-union.json | 234 +- .../content/array-union.min.json | 112 +- .../registry-mocks/content/array-uniq.json | 163 +- .../content/array-uniq.min.json | 103 +- .../registry-mocks/content/async.json | 12663 ++++++------ .../registry-mocks/content/async.min.json | 3124 ++- .../content/async/-/async-0.9.2.tgz | Bin 0 -> 20948 bytes .../content/balanced-match.json | 559 +- .../content/balanced-match.min.json | 221 +- .../balanced-match/-/balanced-match-1.0.2.tgz | Bin 0 -> 2668 bytes .../content/brace-expansion.json | 425 +- .../content/brace-expansion.min.json | 225 +- .../registry-mocks/content/concat-map.json | 191 +- .../content/concat-map.min.json | 59 +- .../registry-mocks/content/fs.realpath.json | 30 +- .../content/fs.realpath.min.json | 22 +- .../fixtures/registry-mocks/content/glob.json | 16373 ++++++++++++---- .../registry-mocks/content/glob.min.json | 4299 +++- .../content/glob/-/glob-4.5.3.tgz | Bin 0 -> 14605 bytes .../registry-mocks/content/globby.json | 5980 ++++-- .../registry-mocks/content/globby.min.json | 1457 +- .../content/globby/-/globby-1.2.0.tgz | Bin 0 -> 2636 bytes .../registry-mocks/content/inflight.json | 120 +- .../registry-mocks/content/inflight.min.json | 88 +- .../registry-mocks/content/inherits.json | 72 +- .../registry-mocks/content/inherits.min.json | 66 +- .../registry-mocks/content/minimatch.json | 10741 ++++++++-- .../registry-mocks/content/minimatch.min.json | 2921 ++- .../content/minimatch/-/minimatch-2.0.10.tgz | Bin 0 -> 13940 bytes .../registry-mocks/content/object-assign.json | 165 +- .../content/object-assign.min.json | 157 +- .../object-assign/-/object-assign-2.1.1.tgz | Bin 0 -> 1898 bytes .../fixtures/registry-mocks/content/once.json | 75 +- .../registry-mocks/content/once.min.json | 67 +- .../content/path-is-absolute.json | 36 +- .../content/path-is-absolute.min.json | 30 +- .../registry-mocks/content/wrappy.json | 115 +- .../registry-mocks/content/wrappy.min.json | 55 +- .../lockfile-with-missing-parent.js | 202 + 43 files changed, 46386 insertions(+), 14973 deletions(-) create mode 100644 workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package-lock.json create mode 100644 workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package.json create mode 100644 workspaces/arborist/test/fixtures/registry-mocks/content/async/-/async-0.9.2.tgz create mode 100644 workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match/-/balanced-match-1.0.2.tgz create mode 100644 workspaces/arborist/test/fixtures/registry-mocks/content/glob/-/glob-4.5.3.tgz create mode 100644 workspaces/arborist/test/fixtures/registry-mocks/content/globby/-/globby-1.2.0.tgz create mode 100644 workspaces/arborist/test/fixtures/registry-mocks/content/minimatch/-/minimatch-2.0.10.tgz create mode 100644 workspaces/arborist/test/fixtures/registry-mocks/content/object-assign/-/object-assign-2.1.1.tgz create mode 100644 workspaces/arborist/test/fixtures/reify-cases/lockfile-with-missing-parent.js diff --git a/workspaces/arborist/lib/arborist/build-ideal-tree.js b/workspaces/arborist/lib/arborist/build-ideal-tree.js index 06d03bbce7a32..4627078bc730f 100644 --- a/workspaces/arborist/lib/arborist/build-ideal-tree.js +++ b/workspaces/arborist/lib/arborist/build-ideal-tree.js @@ -988,8 +988,12 @@ This is a one-time fix-up, please be patient... } // lastly, also check for the missing deps of the node we placed, + // as well as any missing deps of the new node's children, // and any holes created by pruning out conflicted peer sets. this.#depsQueue.push(placed) + for (const child of placed.children.values()) { + this.#depsQueue.push(child) + } for (const dep of pd.needEvaluation) { this.#depsSeen.delete(dep) this.#depsQueue.push(dep) diff --git a/workspaces/arborist/test/arborist/reify.js b/workspaces/arborist/test/arborist/reify.js index 0a7fb416040c0..3510656e24e5b 100644 --- a/workspaces/arborist/test/arborist/reify.js +++ b/workspaces/arborist/test/arborist/reify.js @@ -539,6 +539,15 @@ t.test('update a node without updating a child that has bundle deps', t => { })) }) +t.test('restore missing parent while preserving child node', async t => { + const path = fixture(t, 'lockfile-with-missing-parent') + await reify(path) + const parentPath = `${path}/node_modules/globby` + t.equal(fs.statSync(`${parentPath}/package.json`).isFile(), true, 'parent has package.json') + const childPath = `${path}/node_modules/globby/node_modules/minimatch` + t.equal(fs.statSync(`${childPath}/package.json`).isFile(), true, 'child has package.json') +}) + t.test('optional dependency failures', t => { const cases = [ 'optional-dep-tgz-missing', diff --git a/workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package-lock.json b/workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package-lock.json new file mode 100644 index 0000000000000..0b3a32e2a311c --- /dev/null +++ b/workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package-lock.json @@ -0,0 +1,187 @@ +{ + "name": "lockfile-with-missing-parent", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "lockfile-with-missing-parent", + "version": "1.0.0", + "dependencies": { + "glob": "7.1.6", + "globby": "1.2.0", + "minimatch": "3.0.3" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==", + "license": "MIT" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.0.4" + }, + "node_modules/globby/node_modules/glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha512-I0rTWUKSZKxPSIAIaqhSXTM/DiII6wame+rEC3cFA5Lqmr9YmdL7z6Hj9+bdWtTvoY1Su4/OiMLmb37Y7JzvJQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/globby/node_modules/minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha512-jQo6o1qSVLEWaw3l+bwYA2X0uLuK2KjNh2wjgO7Q/9UJnXr1Q3yQKR8BI0/Bt/rPg75e6SMW4hW/6cBHVTZUjA==", + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-NyXjqu1IwcqH6nv5vmMtaG3iw7kdV3g6MwlUBZkc3Vn5b5AMIWYKfptvzipoyFfhlfOgBQ9zoTxQMravF1QTnw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz", + "integrity": "sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + } + } +} diff --git a/workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package.json b/workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package.json new file mode 100644 index 0000000000000..3def49c802942 --- /dev/null +++ b/workspaces/arborist/test/fixtures/lockfile-with-missing-parent/package.json @@ -0,0 +1,9 @@ +{ + "name": "lockfile-with-missing-parent", + "version": "1.0.0", + "dependencies": { + "glob": "7.1.6", + "globby": "1.2.0", + "minimatch": "3.0.3" + } +} diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.json b/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.json index 1338801ebe49f..4394735576e3b 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.json @@ -1,10 +1,10 @@ { "_id": "array-union", - "_rev": "13-c1a59caf5ee8738dc06ecf7c0322ec41", + "_rev": "18-aeb2460324d26051645dfab3f0516c9b", "name": "array-union", "description": "Create an array of unique values, in order, from the input arrays", "dist-tags": { - "latest": "2.1.0" + "latest": "3.0.1" }, "versions": { "0.1.0": { @@ -68,7 +68,14 @@ ], "dist": { "shasum": "ede98088330665e699e1ebf0227cbc6034e627db", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-0.1.0.tgz", + "integrity": "sha512-XVcavaat1j9X9CvRZnqRKlI3MM4+XoDdjrOWytkFncy2Z2hSPYyTEtNBNTyMrX+q7Yw+W/e4kURGCiAH0wEy+w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQ6e/hOg559qC/dsbywAvTQ7M1JbeBFWtcqv63S8eFqQIhAInZtVgRK8HeyK2kk83N9EI4fE2NbXxW+C14YSOpS4Xj" + } + ] }, "directories": {} }, @@ -134,7 +141,14 @@ ], "dist": { "shasum": "5c4754bb8cc9a6bd7113b20a218ba0ce7dc2f1d2", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.0.tgz", + "integrity": "sha512-zSATGSk6JXhZUsqpUfN+Xb0RWvctpIfMafRJWm8CHq45S+7ClbaQa5taF/jvFCJ0faWtA+mgqutNcdXA67n+yA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDSerajvwy8TLR+NIdwiYcE28Qgb+5YYLqKk92iPhm1KAiA8sSy1E062Cik+WQlgHdTwYxa/7w1taVWY9aezXA5x/Q==" + } + ] }, "directories": {} }, @@ -201,7 +215,14 @@ ], "dist": { "shasum": "4d410fc8395cb247637124bade9e3f547d5d55f2", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz", + "integrity": "sha512-IXyvcFxBhsQtFTIQPiePB095kc63NTtf+QhTXKlfKZgvu8BP31DZdleLIcAfX3Tsu4/iU4vgLIZVzaCuytGs7w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDjQ97OpMnaCNZ5XVUDcHdHMgV0bZiiCF6v4lTE7b+PdAIgAuEnYZfKjv2t6ArGuD6ulbChJ1Lm1pMHLg2YxUxBOug=" + } + ] }, "directories": {} }, @@ -263,7 +284,14 @@ }, "dist": { "shasum": "9a34410e4f4e3da23dea375be5be70f24778ec39", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCJBDvNVJ4RW2yWkO3C5pWHgIQenO2A8Pna1YSnB4TqhwIhAIK38969SfzZEYjD/sYhc43YdW0M+XNB/oYQA7M5yRtN" + } + ] }, "maintainers": [ { @@ -330,7 +358,13 @@ "tarball": "https://registry.npmjs.org/array-union/-/array-union-2.0.0.tgz", "fileCount": 4, "unpackedSize": 2545, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckdC8CRA9TVsSAnZWagAAD0wQAKHcMmoGQeQyRlNoSKgf\n50lt2Xiw3uU5KtYl6QCf4Lse6i5RbswpKaPw4u48Qulc0wetiz/e1K34aRBH\n98SW99LKYkuGYC+fB84TT2rTIfU9cD+2HDxXkQ734sG0HjsNhxLs8n9Kk96j\nmogmbqC2QV4UDwG3XNSsaIjZyz3PVIPqA2kX4dbdf6vQeQE8HpLLhejHE2SQ\nfD9r8LYIxmvX3IWQLu45Ecc1I0Yklr0m8zVeJICLx2oq7IK0GAm6r0mVpO6f\nv7GrKXGV6ZJZClk1rzaRrDfCCAKlpZVTPfuTqNUb/zOZdwnfPYKvvvK4ROGd\nBJ8dDmU5mwt+Zud5Op9r/M74IQbhZ7lxccXDyeG9I+W2/cEKzgDLINdHHLVs\nGt+vpA56YGKxgXe3C0F4w7ZGmhElipLyY7PoDycOFGQ2JFoAXHmJxxG0zLmP\nPvsebK7tJtAYHZH1/h1rnUQq9BYxUr9W8E46vCe0ldJX1xOG85BJgperhG5D\nEzFSn6x88RGTUIa4VJcQR5Zbu2O5zaYqiA+l23UkAgiDQgHpcYXahJgVN0Ne\nSGNBxDv/JD2ZTEpvGJOy0Wt8LHDy+DU8XokhaFbLF1aG5kH8P5KePE0bNRV2\njI5l8DjjZtfffMhBlL8EX8Uh7QncPYxg27ZeAA1c8dmwb31ihHKt9xhoJgzn\nW5qe\r\n=j6cw\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckdC8CRA9TVsSAnZWagAAD0wQAKHcMmoGQeQyRlNoSKgf\n50lt2Xiw3uU5KtYl6QCf4Lse6i5RbswpKaPw4u48Qulc0wetiz/e1K34aRBH\n98SW99LKYkuGYC+fB84TT2rTIfU9cD+2HDxXkQ734sG0HjsNhxLs8n9Kk96j\nmogmbqC2QV4UDwG3XNSsaIjZyz3PVIPqA2kX4dbdf6vQeQE8HpLLhejHE2SQ\nfD9r8LYIxmvX3IWQLu45Ecc1I0Yklr0m8zVeJICLx2oq7IK0GAm6r0mVpO6f\nv7GrKXGV6ZJZClk1rzaRrDfCCAKlpZVTPfuTqNUb/zOZdwnfPYKvvvK4ROGd\nBJ8dDmU5mwt+Zud5Op9r/M74IQbhZ7lxccXDyeG9I+W2/cEKzgDLINdHHLVs\nGt+vpA56YGKxgXe3C0F4w7ZGmhElipLyY7PoDycOFGQ2JFoAXHmJxxG0zLmP\nPvsebK7tJtAYHZH1/h1rnUQq9BYxUr9W8E46vCe0ldJX1xOG85BJgperhG5D\nEzFSn6x88RGTUIa4VJcQR5Zbu2O5zaYqiA+l23UkAgiDQgHpcYXahJgVN0Ne\nSGNBxDv/JD2ZTEpvGJOy0Wt8LHDy+DU8XokhaFbLF1aG5kH8P5KePE0bNRV2\njI5l8DjjZtfffMhBlL8EX8Uh7QncPYxg27ZeAA1c8dmwb31ihHKt9xhoJgzn\nW5qe\r\n=j6cw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEm3aEkZf+SqqxBl7FUv3+6IFyuogJamUUQ/UIgR+m0nAiEAuqZprdh7q+n4QUFdwn7YSulI/YTUBnH4eMyTu6JAHp0=" + } + ] }, "maintainers": [ { @@ -399,7 +433,13 @@ "tarball": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "fileCount": 5, "unpackedSize": 3169, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvXOpCRA9TVsSAnZWagAAQn8P/19t1qtz293EoCyYptRj\n6N2qnL9k/cOy9b/hVzA9XtvgfAp5mqHpcaWpXKmT7t+EW2FnMR6zaVIWHfEc\nimfFDCHRONR2pQcCCcNcTnMqOPOYGY++e26hR19jlQbqUSVAIazXeIqkeQ9X\nBpAynVt+/zSXsCJ+qlnYoG/nsmyltKXRWwHki++V+MYcbYHaHYxDNEoIp0u4\nXH33bPae6qo9grVPqQ0G9oQ13IWyI5Js1zSMaipB4sS59SC5soBJEknYyeu4\n+18CFf4i22XJoye0s3o9nNyPb4roMIABuA7N/YMoro0MSy7WKwaZkE5IAWNf\nUUSIDNQIBVQtq6Ez3qiFvVuzfDJCk8svdFmzjwmljh85JBgr+GbDsTV89b/e\nbOA+2DyBKCp1KgWBtLgPx/fWrgLz5SNVD5h82sOoKmUK6JUoI4CPDac4Fve2\nulXn2f33w0xBj6zFJGBKDHbeCmx601ptAtfoACWZNsPy5HnKP13fQyAxpFXW\np9LFwYtChWAmVXFsxEAhf8I5v8B9K50C6OKJF5HQxQrvW0ud69k2q3Qcsfqv\nXt4jtKUVhL6Ane1w0A9JicIlCp1/yy7Y74ywx5GWuks4aeP6i2dDvKU4L6ot\nN2wxUNuZBvylLR79NxJ3MqeqRKuXHILvFCKfi9YLtVXTgQynRfjCUDSbNBKm\ngCMZ\r\n=ABIm\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvXOpCRA9TVsSAnZWagAAQn8P/19t1qtz293EoCyYptRj\n6N2qnL9k/cOy9b/hVzA9XtvgfAp5mqHpcaWpXKmT7t+EW2FnMR6zaVIWHfEc\nimfFDCHRONR2pQcCCcNcTnMqOPOYGY++e26hR19jlQbqUSVAIazXeIqkeQ9X\nBpAynVt+/zSXsCJ+qlnYoG/nsmyltKXRWwHki++V+MYcbYHaHYxDNEoIp0u4\nXH33bPae6qo9grVPqQ0G9oQ13IWyI5Js1zSMaipB4sS59SC5soBJEknYyeu4\n+18CFf4i22XJoye0s3o9nNyPb4roMIABuA7N/YMoro0MSy7WKwaZkE5IAWNf\nUUSIDNQIBVQtq6Ez3qiFvVuzfDJCk8svdFmzjwmljh85JBgr+GbDsTV89b/e\nbOA+2DyBKCp1KgWBtLgPx/fWrgLz5SNVD5h82sOoKmUK6JUoI4CPDac4Fve2\nulXn2f33w0xBj6zFJGBKDHbeCmx601ptAtfoACWZNsPy5HnKP13fQyAxpFXW\np9LFwYtChWAmVXFsxEAhf8I5v8B9K50C6OKJF5HQxQrvW0ud69k2q3Qcsfqv\nXt4jtKUVhL6Ane1w0A9JicIlCp1/yy7Y74ywx5GWuks4aeP6i2dDvKU4L6ot\nN2wxUNuZBvylLR79NxJ3MqeqRKuXHILvFCKfi9YLtVXTgQynRfjCUDSbNBKm\ngCMZ\r\n=ABIm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIANe7BbdPW2ONRSt4WANBPHS1qrJ2+6zaEGzfiKXuJAEAiEAu2vd8LAx6YEkNRCBZq80wPRsAAfq7i08B0oZIznJEQw=" + } + ] }, "maintainers": [ { @@ -413,9 +453,175 @@ "tmp": "tmp/array-union_2.1.0_1555919785079_0.8583172534047399" }, "_hasShrinkwrap": false + }, + "3.0.0": { + "name": "array-union", + "version": "3.0.0", + "description": "Create an array of unique values, in order, from the input arrays", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/array-union.git" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "engines": { + "node": ">=12" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "keywords": [ + "array", + "set", + "uniq", + "unique", + "duplicate", + "remove", + "union", + "combine", + "merge" + ], + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.38.2" + }, + "tsd": { + "compilerOptions": { + "esModuleInterop": true + } + }, + "gitHead": "fe21f3cdda912e8678f2c1aaaeee6dcabb809739", + "bugs": { + "url": "https://github.com/sindresorhus/array-union/issues" + }, + "homepage": "https://github.com/sindresorhus/array-union#readme", + "_id": "array-union@3.0.0", + "_nodeVersion": "14.15.1", + "_npmVersion": "6.14.10", + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "dist": { + "integrity": "sha512-4TMYyyDGAm71d4roRCBkmZTtLsuGZ2E6FQt+ej9x69WuA5OBTuwOHnxt6+9Dnv+H3QRlKv0XgpXkAwiSp8VL5Q==", + "shasum": "cffca2d37641781c852257157ba0422c714093e9", + "tarball": "https://registry.npmjs.org/array-union/-/array-union-3.0.0.tgz", + "fileCount": 5, + "unpackedSize": 3595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPLfKCRA9TVsSAnZWagAA4nAP/1DhvSRNApjao7gv8odf\nFaXj0blY/8cbO8pJoqYy69emHsNOmY6vtHj5TGctmDVPxcx7WKXShIC+Y5I9\nA1SyG66GBruvWY31O5ubhmnvYaGrZ7ZeaBsQii+Q7J9/xXNnaeqKdiD3ejur\n2tDV39UL4SYYfD83E/F+5I3tneUo2xObQPmoZ7PT1G6Tm8L9sHXfYxviTFtU\nCTP4BH/MAkM9CkllYoJ7plH3BXZR57lh9XS7wn4QdJ9OknOrR79Kr0jtdwU7\nkZdBRHlMtRxFFP+Ve9A61J3PtseSrp9dO6CtCmF10KRVNDvePHj2Tr9hGlre\nlvIQ1vqAqTl8wWjtBxpGEDXKKvYfhePE4Egjjv+8Evdv8jNdvloNCcoQDGx+\nwTPa5ndq73y1h9BnfeQqNzt/mwR7Z7RW2R8X3XnplyE+fWyPHIn82VDfjYLn\nE2NoLtXuZfc55zdiTRFnn8w0lzN1kt49Fkv/lB/lHESu4HR9JVDnKFwD7QMk\nGei3nKyeMmek1vnBLPj2LpTTTzb4k38Ljwar9S7AdtjMZMbGlADSlQYJf7UR\nO/ey3wLmnBU12NaaWCztXFuEjayevFgix+qZ23E1GnRAxYBmVL5FNQCxIznj\npdEIYBiDF9ww47zTx8WhqJ6KTw7sNsQNKrzz3ndR05mpvkZ1ay7GdGOUPMm6\nwya/\r\n=z0KL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEupwc0/cFE7NQjPVrq09iZu4TK5gZj3CvovIgfR/BJUAiEAmNGyE270+U9iD8UHAsroG9kWkK6hZLWkYmIycjfKj2U=" + } + ] + }, + "directories": {}, + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/array-union_3.0.0_1614591945816_0.009177944284409545" + }, + "_hasShrinkwrap": false + }, + "3.0.1": { + "name": "array-union", + "version": "3.0.1", + "description": "Create an array of unique values, in order, from the input arrays", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/array-union.git" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "engines": { + "node": ">=12" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "keywords": [ + "array", + "set", + "uniq", + "unique", + "duplicate", + "remove", + "union", + "combine", + "merge" + ], + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.38.2" + }, + "tsd": { + "compilerOptions": { + "esModuleInterop": true + } + }, + "gitHead": "c9e401d946d70eb46149ad67973c911c6ad2a335", + "bugs": { + "url": "https://github.com/sindresorhus/array-union/issues" + }, + "homepage": "https://github.com/sindresorhus/array-union#readme", + "_id": "array-union@3.0.1", + "_nodeVersion": "14.15.1", + "_npmVersion": "6.14.10", + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "dist": { + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "shasum": "da52630d327f8b88cfbfb57728e2af5cd9b6b975", + "tarball": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "fileCount": 5, + "unpackedSize": 3590, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPTW+CRA9TVsSAnZWagAA2jQP/RhNjrSmTMdjS/QCLAqF\n3GHp3aj2s4+RusZaoT0RxiaODuWROuSIcO671hAAHCP6/EYigYF4DRq61tDV\nwSESF9RD9H0RBfDH17IzQmw6VQJMsQPge+4mvET2YyfsIttyO8S+uB3g/F0b\n9qS1XgkKh46NNsoXq0SN54wQ0dRT9LcUwJUDwd29dEHTdj4ql9j2mVKeB1t6\nMeExXCwakz+fP6AHlNW/4P2T8/s/rtnmcMGPLNq9CuIkDDC1m2/WYcyRRl2d\n8bGTqRXrUDX7sjgkLFWkTgBp5YrQsYJZqGxaTA7zJVhYFryB5gIKxE19qC1Z\nbQchOwbkt0thuxc1Jo1VRCe+hR6F+6JvZb4/CLNsiMRg49NS+esET3DADiqq\nVM2MKFRUxGzwu/zdRH86s/PSjClNQt1oMMgHGwwIQFzIQYAqQ7949f+myEsn\nGSnuhVQtLIL0cE6j9jTl+kwkj3z/XamX5ZM+5kodgStjUc4OffIfukn6/PP1\nyc81sW7CuG866rmWpt0F++MEJvmsd/xb8JGBHhfC6bVG7QhujKD0ZgtsbwG1\naFmyKOsP9owc9ArilCV8AJNi+XI1OBgaiGlUhAnkjvT1FbizVKNPDDVUYi+z\nX7c1G2/rdWlyz2YocqJzLmRf4/XtVEIGxkwHIi9cBABPLundXBO08nZ0wTHh\noEYa\r\n=EA6P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFUuu5e1FI2DX1PE9OtkA2bhjtu48Z5QiBrV6i2bxgHAIgLHX+zby0QeiG6J9L0olEz8Zt0dzFyxZdEO5Dm6UHf68=" + } + ] + }, + "directories": {}, + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/array-union_3.0.1_1614624188948_0.05485014798967813" + }, + "_hasShrinkwrap": false } }, - "readme": "# array-union [![Build Status](https://travis-ci.org/sindresorhus/array-union.svg?branch=master)](https://travis-ci.org/sindresorhus/array-union)\n\n> Create an array of unique values, in order, from the input arrays\n\n\n## Install\n\n```\n$ npm install array-union\n```\n\n\n## Usage\n\n```js\nconst arrayUnion = require('array-union');\n\narrayUnion([1, 1, 2, 3], [2, 3]);\n//=> [1, 2, 3]\n\narrayUnion(['foo', 'foo', 'bar']);\n//=> ['foo', 'bar']\n\narrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);\n//=> ['🐱', '🦄', '🐻', '🌈']\n\narrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);\n//=> ['🐱', '🦄', '🐻', '🐶', '🌈']\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n", + "readme": "# array-union\n\n> Create an array of unique values, in order, from the input arrays\n\n## Install\n\n```\n$ npm install array-union\n```\n\n## Usage\n\n```js\nimport arrayUnion from 'array-union';\n\narrayUnion([1, 1, 2, 3], [2, 3]);\n//=> [1, 2, 3]\n\narrayUnion(['foo', 'foo', 'bar']);\n//=> ['foo', 'bar']\n\narrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);\n//=> ['🐱', '🦄', '🐻', '🌈']\n\narrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);\n//=> ['🐱', '🦄', '🐻', '🐶', '🌈']\n```\n\n---\n\n
\n\t\n\t\tGet professional support for this package with a Tidelift subscription\n\t\n\t
\n\t\n\t\tTidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.\n\t
\n
\n", "maintainers": [ { "name": "sindresorhus", @@ -423,14 +629,16 @@ } ], "time": { - "modified": "2019-04-22T07:56:27.910Z", + "modified": "2022-06-13T03:29:00.241Z", "created": "2014-06-19T15:37:29.885Z", "0.1.0": "2014-06-19T15:37:29.885Z", "1.0.0": "2014-08-13T16:39:20.519Z", "1.0.1": "2014-11-18T08:36:27.083Z", "1.0.2": "2016-06-16T12:16:52.561Z", "2.0.0": "2019-03-20T05:33:48.228Z", - "2.1.0": "2019-04-22T07:56:25.195Z" + "2.1.0": "2019-04-22T07:56:25.195Z", + "3.0.0": "2021-03-01T09:45:45.963Z", + "3.0.1": "2021-03-01T18:43:09.121Z" }, "homepage": "https://github.com/sindresorhus/array-union#readme", "keywords": [ @@ -451,7 +659,7 @@ "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "url": "https://sindresorhus.com" }, "bugs": { "url": "https://github.com/sindresorhus/array-union/issues" @@ -464,4 +672,4 @@ "ninozhang": true, "codekiln": true } -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.min.json index 48200dd2915b8..aeb4b8f94a1fb 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/array-union.min.json @@ -1,7 +1,7 @@ { "name": "array-union", "dist-tags": { - "latest": "2.1.0" + "latest": "3.0.1" }, "versions": { "0.1.0": { @@ -15,7 +15,14 @@ }, "dist": { "shasum": "ede98088330665e699e1ebf0227cbc6034e627db", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-0.1.0.tgz", + "integrity": "sha512-XVcavaat1j9X9CvRZnqRKlI3MM4+XoDdjrOWytkFncy2Z2hSPYyTEtNBNTyMrX+q7Yw+W/e4kURGCiAH0wEy+w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQ6e/hOg559qC/dsbywAvTQ7M1JbeBFWtcqv63S8eFqQIhAInZtVgRK8HeyK2kk83N9EI4fE2NbXxW+C14YSOpS4Xj" + } + ] }, "engines": { "node": ">=0.10.0" @@ -32,7 +39,14 @@ }, "dist": { "shasum": "5c4754bb8cc9a6bd7113b20a218ba0ce7dc2f1d2", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.0.tgz", + "integrity": "sha512-zSATGSk6JXhZUsqpUfN+Xb0RWvctpIfMafRJWm8CHq45S+7ClbaQa5taF/jvFCJ0faWtA+mgqutNcdXA67n+yA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDSerajvwy8TLR+NIdwiYcE28Qgb+5YYLqKk92iPhm1KAiA8sSy1E062Cik+WQlgHdTwYxa/7w1taVWY9aezXA5x/Q==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -49,7 +63,14 @@ }, "dist": { "shasum": "4d410fc8395cb247637124bade9e3f547d5d55f2", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz", + "integrity": "sha512-IXyvcFxBhsQtFTIQPiePB095kc63NTtf+QhTXKlfKZgvu8BP31DZdleLIcAfX3Tsu4/iU4vgLIZVzaCuytGs7w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDjQ97OpMnaCNZ5XVUDcHdHMgV0bZiiCF6v4lTE7b+PdAIgAuEnYZfKjv2t6ArGuD6ulbChJ1Lm1pMHLg2YxUxBOug=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -67,7 +88,14 @@ }, "dist": { "shasum": "9a34410e4f4e3da23dea375be5be70f24778ec39", - "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCJBDvNVJ4RW2yWkO3C5pWHgIQenO2A8Pna1YSnB4TqhwIhAIK38969SfzZEYjD/sYhc43YdW0M+XNB/oYQA7M5yRtN" + } + ] }, "engines": { "node": ">=0.10.0" @@ -86,7 +114,13 @@ "tarball": "https://registry.npmjs.org/array-union/-/array-union-2.0.0.tgz", "fileCount": 4, "unpackedSize": 2545, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckdC8CRA9TVsSAnZWagAAD0wQAKHcMmoGQeQyRlNoSKgf\n50lt2Xiw3uU5KtYl6QCf4Lse6i5RbswpKaPw4u48Qulc0wetiz/e1K34aRBH\n98SW99LKYkuGYC+fB84TT2rTIfU9cD+2HDxXkQ734sG0HjsNhxLs8n9Kk96j\nmogmbqC2QV4UDwG3XNSsaIjZyz3PVIPqA2kX4dbdf6vQeQE8HpLLhejHE2SQ\nfD9r8LYIxmvX3IWQLu45Ecc1I0Yklr0m8zVeJICLx2oq7IK0GAm6r0mVpO6f\nv7GrKXGV6ZJZClk1rzaRrDfCCAKlpZVTPfuTqNUb/zOZdwnfPYKvvvK4ROGd\nBJ8dDmU5mwt+Zud5Op9r/M74IQbhZ7lxccXDyeG9I+W2/cEKzgDLINdHHLVs\nGt+vpA56YGKxgXe3C0F4w7ZGmhElipLyY7PoDycOFGQ2JFoAXHmJxxG0zLmP\nPvsebK7tJtAYHZH1/h1rnUQq9BYxUr9W8E46vCe0ldJX1xOG85BJgperhG5D\nEzFSn6x88RGTUIa4VJcQR5Zbu2O5zaYqiA+l23UkAgiDQgHpcYXahJgVN0Ne\nSGNBxDv/JD2ZTEpvGJOy0Wt8LHDy+DU8XokhaFbLF1aG5kH8P5KePE0bNRV2\njI5l8DjjZtfffMhBlL8EX8Uh7QncPYxg27ZeAA1c8dmwb31ihHKt9xhoJgzn\nW5qe\r\n=j6cw\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckdC8CRA9TVsSAnZWagAAD0wQAKHcMmoGQeQyRlNoSKgf\n50lt2Xiw3uU5KtYl6QCf4Lse6i5RbswpKaPw4u48Qulc0wetiz/e1K34aRBH\n98SW99LKYkuGYC+fB84TT2rTIfU9cD+2HDxXkQ734sG0HjsNhxLs8n9Kk96j\nmogmbqC2QV4UDwG3XNSsaIjZyz3PVIPqA2kX4dbdf6vQeQE8HpLLhejHE2SQ\nfD9r8LYIxmvX3IWQLu45Ecc1I0Yklr0m8zVeJICLx2oq7IK0GAm6r0mVpO6f\nv7GrKXGV6ZJZClk1rzaRrDfCCAKlpZVTPfuTqNUb/zOZdwnfPYKvvvK4ROGd\nBJ8dDmU5mwt+Zud5Op9r/M74IQbhZ7lxccXDyeG9I+W2/cEKzgDLINdHHLVs\nGt+vpA56YGKxgXe3C0F4w7ZGmhElipLyY7PoDycOFGQ2JFoAXHmJxxG0zLmP\nPvsebK7tJtAYHZH1/h1rnUQq9BYxUr9W8E46vCe0ldJX1xOG85BJgperhG5D\nEzFSn6x88RGTUIa4VJcQR5Zbu2O5zaYqiA+l23UkAgiDQgHpcYXahJgVN0Ne\nSGNBxDv/JD2ZTEpvGJOy0Wt8LHDy+DU8XokhaFbLF1aG5kH8P5KePE0bNRV2\njI5l8DjjZtfffMhBlL8EX8Uh7QncPYxg27ZeAA1c8dmwb31ihHKt9xhoJgzn\nW5qe\r\n=j6cw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEm3aEkZf+SqqxBl7FUv3+6IFyuogJamUUQ/UIgR+m0nAiEAuqZprdh7q+n4QUFdwn7YSulI/YTUBnH4eMyTu6JAHp0=" + } + ] }, "engines": { "node": ">=8" @@ -106,12 +140,72 @@ "tarball": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "fileCount": 5, "unpackedSize": 3169, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvXOpCRA9TVsSAnZWagAAQn8P/19t1qtz293EoCyYptRj\n6N2qnL9k/cOy9b/hVzA9XtvgfAp5mqHpcaWpXKmT7t+EW2FnMR6zaVIWHfEc\nimfFDCHRONR2pQcCCcNcTnMqOPOYGY++e26hR19jlQbqUSVAIazXeIqkeQ9X\nBpAynVt+/zSXsCJ+qlnYoG/nsmyltKXRWwHki++V+MYcbYHaHYxDNEoIp0u4\nXH33bPae6qo9grVPqQ0G9oQ13IWyI5Js1zSMaipB4sS59SC5soBJEknYyeu4\n+18CFf4i22XJoye0s3o9nNyPb4roMIABuA7N/YMoro0MSy7WKwaZkE5IAWNf\nUUSIDNQIBVQtq6Ez3qiFvVuzfDJCk8svdFmzjwmljh85JBgr+GbDsTV89b/e\nbOA+2DyBKCp1KgWBtLgPx/fWrgLz5SNVD5h82sOoKmUK6JUoI4CPDac4Fve2\nulXn2f33w0xBj6zFJGBKDHbeCmx601ptAtfoACWZNsPy5HnKP13fQyAxpFXW\np9LFwYtChWAmVXFsxEAhf8I5v8B9K50C6OKJF5HQxQrvW0ud69k2q3Qcsfqv\nXt4jtKUVhL6Ane1w0A9JicIlCp1/yy7Y74ywx5GWuks4aeP6i2dDvKU4L6ot\nN2wxUNuZBvylLR79NxJ3MqeqRKuXHILvFCKfi9YLtVXTgQynRfjCUDSbNBKm\ngCMZ\r\n=ABIm\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvXOpCRA9TVsSAnZWagAAQn8P/19t1qtz293EoCyYptRj\n6N2qnL9k/cOy9b/hVzA9XtvgfAp5mqHpcaWpXKmT7t+EW2FnMR6zaVIWHfEc\nimfFDCHRONR2pQcCCcNcTnMqOPOYGY++e26hR19jlQbqUSVAIazXeIqkeQ9X\nBpAynVt+/zSXsCJ+qlnYoG/nsmyltKXRWwHki++V+MYcbYHaHYxDNEoIp0u4\nXH33bPae6qo9grVPqQ0G9oQ13IWyI5Js1zSMaipB4sS59SC5soBJEknYyeu4\n+18CFf4i22XJoye0s3o9nNyPb4roMIABuA7N/YMoro0MSy7WKwaZkE5IAWNf\nUUSIDNQIBVQtq6Ez3qiFvVuzfDJCk8svdFmzjwmljh85JBgr+GbDsTV89b/e\nbOA+2DyBKCp1KgWBtLgPx/fWrgLz5SNVD5h82sOoKmUK6JUoI4CPDac4Fve2\nulXn2f33w0xBj6zFJGBKDHbeCmx601ptAtfoACWZNsPy5HnKP13fQyAxpFXW\np9LFwYtChWAmVXFsxEAhf8I5v8B9K50C6OKJF5HQxQrvW0ud69k2q3Qcsfqv\nXt4jtKUVhL6Ane1w0A9JicIlCp1/yy7Y74ywx5GWuks4aeP6i2dDvKU4L6ot\nN2wxUNuZBvylLR79NxJ3MqeqRKuXHILvFCKfi9YLtVXTgQynRfjCUDSbNBKm\ngCMZ\r\n=ABIm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIANe7BbdPW2ONRSt4WANBPHS1qrJ2+6zaEGzfiKXuJAEAiEAu2vd8LAx6YEkNRCBZq80wPRsAAfq7i08B0oZIznJEQw=" + } + ] }, "engines": { "node": ">=8" } + }, + "3.0.0": { + "name": "array-union", + "version": "3.0.0", + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.38.2" + }, + "dist": { + "integrity": "sha512-4TMYyyDGAm71d4roRCBkmZTtLsuGZ2E6FQt+ej9x69WuA5OBTuwOHnxt6+9Dnv+H3QRlKv0XgpXkAwiSp8VL5Q==", + "shasum": "cffca2d37641781c852257157ba0422c714093e9", + "tarball": "https://registry.npmjs.org/array-union/-/array-union-3.0.0.tgz", + "fileCount": 5, + "unpackedSize": 3595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPLfKCRA9TVsSAnZWagAA4nAP/1DhvSRNApjao7gv8odf\nFaXj0blY/8cbO8pJoqYy69emHsNOmY6vtHj5TGctmDVPxcx7WKXShIC+Y5I9\nA1SyG66GBruvWY31O5ubhmnvYaGrZ7ZeaBsQii+Q7J9/xXNnaeqKdiD3ejur\n2tDV39UL4SYYfD83E/F+5I3tneUo2xObQPmoZ7PT1G6Tm8L9sHXfYxviTFtU\nCTP4BH/MAkM9CkllYoJ7plH3BXZR57lh9XS7wn4QdJ9OknOrR79Kr0jtdwU7\nkZdBRHlMtRxFFP+Ve9A61J3PtseSrp9dO6CtCmF10KRVNDvePHj2Tr9hGlre\nlvIQ1vqAqTl8wWjtBxpGEDXKKvYfhePE4Egjjv+8Evdv8jNdvloNCcoQDGx+\nwTPa5ndq73y1h9BnfeQqNzt/mwR7Z7RW2R8X3XnplyE+fWyPHIn82VDfjYLn\nE2NoLtXuZfc55zdiTRFnn8w0lzN1kt49Fkv/lB/lHESu4HR9JVDnKFwD7QMk\nGei3nKyeMmek1vnBLPj2LpTTTzb4k38Ljwar9S7AdtjMZMbGlADSlQYJf7UR\nO/ey3wLmnBU12NaaWCztXFuEjayevFgix+qZ23E1GnRAxYBmVL5FNQCxIznj\npdEIYBiDF9ww47zTx8WhqJ6KTw7sNsQNKrzz3ndR05mpvkZ1ay7GdGOUPMm6\nwya/\r\n=z0KL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEupwc0/cFE7NQjPVrq09iZu4TK5gZj3CvovIgfR/BJUAiEAmNGyE270+U9iD8UHAsroG9kWkK6hZLWkYmIycjfKj2U=" + } + ] + }, + "engines": { + "node": ">=12" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "3.0.1": { + "name": "array-union", + "version": "3.0.1", + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.38.2" + }, + "dist": { + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "shasum": "da52630d327f8b88cfbfb57728e2af5cd9b6b975", + "tarball": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "fileCount": 5, + "unpackedSize": 3590, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPTW+CRA9TVsSAnZWagAA2jQP/RhNjrSmTMdjS/QCLAqF\n3GHp3aj2s4+RusZaoT0RxiaODuWROuSIcO671hAAHCP6/EYigYF4DRq61tDV\nwSESF9RD9H0RBfDH17IzQmw6VQJMsQPge+4mvET2YyfsIttyO8S+uB3g/F0b\n9qS1XgkKh46NNsoXq0SN54wQ0dRT9LcUwJUDwd29dEHTdj4ql9j2mVKeB1t6\nMeExXCwakz+fP6AHlNW/4P2T8/s/rtnmcMGPLNq9CuIkDDC1m2/WYcyRRl2d\n8bGTqRXrUDX7sjgkLFWkTgBp5YrQsYJZqGxaTA7zJVhYFryB5gIKxE19qC1Z\nbQchOwbkt0thuxc1Jo1VRCe+hR6F+6JvZb4/CLNsiMRg49NS+esET3DADiqq\nVM2MKFRUxGzwu/zdRH86s/PSjClNQt1oMMgHGwwIQFzIQYAqQ7949f+myEsn\nGSnuhVQtLIL0cE6j9jTl+kwkj3z/XamX5ZM+5kodgStjUc4OffIfukn6/PP1\nyc81sW7CuG866rmWpt0F++MEJvmsd/xb8JGBHhfC6bVG7QhujKD0ZgtsbwG1\naFmyKOsP9owc9ArilCV8AJNi+XI1OBgaiGlUhAnkjvT1FbizVKNPDDVUYi+z\nX7c1G2/rdWlyz2YocqJzLmRf4/XtVEIGxkwHIi9cBABPLundXBO08nZ0wTHh\noEYa\r\n=EA6P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFUuu5e1FI2DX1PE9OtkA2bhjtu48Z5QiBrV6i2bxgHAIgLHX+zby0QeiG6J9L0olEz8Zt0dzFyxZdEO5Dm6UHf68=" + } + ] + }, + "engines": { + "node": ">=12" + }, + "funding": "https://github.com/sponsors/sindresorhus" } }, - "modified": "2019-04-22T07:56:27.910Z" -} + "modified": "2022-06-13T03:29:00.241Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.json b/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.json index 3a06d72c40c2a..ec2f4cd553e51 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.json @@ -1,10 +1,10 @@ { "_id": "array-uniq", - "_rev": "21-35045e9794649a0b063c7db55e568bab", + "_rev": "26-d6de3322bac70d04879785a9a963c7e6", "name": "array-uniq", "description": "Create an array without duplicates", "dist-tags": { - "latest": "2.1.0" + "latest": "3.0.0" }, "versions": { "0.1.0": { @@ -64,7 +64,14 @@ ], "dist": { "shasum": "dc39af2405e05f814062e9cc88f563ec1213b24a", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.0.tgz", + "integrity": "sha512-1oS58ztStBzlweSGJq3vxypDxVDFHQgSCZ5FgOX69ixg7BQ0KGhVKNbE/R2LZEsrQNbKqAuXrqohNXSHPKDiHQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDHcUnewelDLImbZNGaebtlVrUxM5pF+bnVfPW8UIK18gIgBAB84cds7+2NXUJcbBIOsIbPUz0Cne0EA6NrEODGlMc=" + } + ] }, "directories": {} }, @@ -125,7 +132,14 @@ ], "dist": { "shasum": "5861f3ed4e4bb6175597a4e078e8aa78ebe958c7", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.1.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.1.tgz", + "integrity": "sha512-f2yZoxGtRdrmvV142WQ8ALxpA/nQihGiO0kWVkA4O1dmUbCFn3HjYu6wnKzs/gBhB/gJiEKhk66DtSTEVZM5ag==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD7qXVtq3yuK4nPOel/P2zG6Bfa+aMlbDwPIk03tCUglwIhALdQKzm8BuM6giT85JtY1FgDdPN3wKd/C2GV2Bwo56Wf" + } + ] }, "directories": {} }, @@ -188,7 +202,14 @@ ], "dist": { "shasum": "bc8cb48a6ff5c63e86e330736e5de5eccb2e2b9a", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.0.tgz", + "integrity": "sha512-mf0qqlMDRVh8t5H5hhuQWIOkDg/C+hmWtbHi70LieIe966nKX9th/BDXadDSVLX3+/r/GPclVt0Op0NQ2V82Pw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH6CzvxkYRo5qwLoZeFKYbjRJj0sALlC26uAA8RfFiqnAiBqOiMKGuVCTT+tR6HcBT9qVgtIRP8OVVdeOFO4HkQprw==" + } + ] }, "directories": {} }, @@ -252,7 +273,14 @@ ], "dist": { "shasum": "25e1d96853d7f6f77cecf693f86cac4052046790", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.1.tgz", + "integrity": "sha512-T8Eobqo1QCneu91CDwAD6PkYrrZU2T97+2Yu7NGbn4aNuCPnx5JahNn1vu6rHiHUeofYrCvdZ2A5LThPzvFTaA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCSD+n92eGpJa8VmCnJufQNj6GiuKGpR3KpHSG4xkTWRAIhAIVB9JE4STon3O30kTsT+AXEPQRtyfGdI9K/aNfKxhny" + } + ] }, "directories": {} }, @@ -316,7 +344,14 @@ ], "dist": { "shasum": "5fcc373920775723cfd64d65c64bef53bf9eba6d", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz", + "integrity": "sha512-GVYjmpL05al4dNlKJm53mKE4w9OOLiuVHWorsIA3YVz+Hu0hcn6PtE3Ydl0EqU7v+7ABC4mjjWsnLUxbpno+CA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHNy4UlsFbz4UWPq/rGsx0IFXLK0rtr7E9uYtHaMhDVpAiEAkvMexHs9eMnkfStalOmoZaakGF0cC+m4+HeZNm1uByI=" + } + ] }, "directories": {} }, @@ -375,7 +410,14 @@ }, "dist": { "shasum": "af6ac877a25cc7f74e058894753858dfdb24fdb6", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEKHuxEZSPVVuGckSbnrCpN2pHz0VPXYZCRR0xpUvIOFAiBdU9nXts15cyU+flwECPGJJ9SsvvYC/s6SiZdfXpL8Hg==" + } + ] }, "maintainers": [ { @@ -442,7 +484,13 @@ "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-2.0.0.tgz", "fileCount": 4, "unpackedSize": 2135, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7HEnCRA9TVsSAnZWagAAPnQQAKKpJ2B1O+MgMZ2qEwfm\nEKMaNTtZbiQnP2Eip52l9IYstfVbWex9eHvJ+nd9R2KcVVnVFun8dcgAKNUT\n0RLaYCWpEZSe11rG4Us5nVV6Aph2kK7OJCX48Tys2ZIqnG9VKXpa9p2hY//i\ntqxSoflyiepD5PbR+GzsRQIWEHetOiqvMalt8MC3u+p7vrYLlRbCyrhC6YKZ\n86/nQuBTOP/UYAcQFuwyD4W6HHUlu5RpMC3TO3vfuhHSwjkXgEQlBku3rpTb\nEzMW9YyGH8RVlJrFTXpRAjHNGED5Zo76/wbnuzNEFRZCnsh0ydGpIuLMCDEq\nrjzCGeuNWFBIQV27pfXP47SPluIwaE/dhg/k3rySXK7biu0FpU50QTYdbiPL\no3RISimUSr/K/39f5GRWzIgp7E6kCGz752LLPy/c2etgjDQ3R59d/G9n6KAf\nsL3zhjpQG+LbmXSAceygENKF11TIqzsFaMBlXZp8GpTvgP72GeusbnS2wVbU\n+WA2lUG4e25jBILN2RokNwpJdHs5zjOJttmb98cYLWsD61+dyXMmgAlQrZ8o\nA3UbGac+x4NZFyH8vR1CZOC4Ihc00/TE/rNrh0eIubLTI3wpObaVCI8YWV/y\nn6Vu6a655ELmJED8v9/liQ8uzanByKsFvNoq35sRhbL4FtbDaHPDsssKROWI\n6OQj\r\n=eZtW\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7HEnCRA9TVsSAnZWagAAPnQQAKKpJ2B1O+MgMZ2qEwfm\nEKMaNTtZbiQnP2Eip52l9IYstfVbWex9eHvJ+nd9R2KcVVnVFun8dcgAKNUT\n0RLaYCWpEZSe11rG4Us5nVV6Aph2kK7OJCX48Tys2ZIqnG9VKXpa9p2hY//i\ntqxSoflyiepD5PbR+GzsRQIWEHetOiqvMalt8MC3u+p7vrYLlRbCyrhC6YKZ\n86/nQuBTOP/UYAcQFuwyD4W6HHUlu5RpMC3TO3vfuhHSwjkXgEQlBku3rpTb\nEzMW9YyGH8RVlJrFTXpRAjHNGED5Zo76/wbnuzNEFRZCnsh0ydGpIuLMCDEq\nrjzCGeuNWFBIQV27pfXP47SPluIwaE/dhg/k3rySXK7biu0FpU50QTYdbiPL\no3RISimUSr/K/39f5GRWzIgp7E6kCGz752LLPy/c2etgjDQ3R59d/G9n6KAf\nsL3zhjpQG+LbmXSAceygENKF11TIqzsFaMBlXZp8GpTvgP72GeusbnS2wVbU\n+WA2lUG4e25jBILN2RokNwpJdHs5zjOJttmb98cYLWsD61+dyXMmgAlQrZ8o\nA3UbGac+x4NZFyH8vR1CZOC4Ihc00/TE/rNrh0eIubLTI3wpObaVCI8YWV/y\nn6Vu6a655ELmJED8v9/liQ8uzanByKsFvNoq35sRhbL4FtbDaHPDsssKROWI\n6OQj\r\n=eZtW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCfyWmU1p2m8PfUbI9MKYfPQ2P9ILentXAF1n3P26e3DQIhAK7uruEh5MzkqPzMN+zaXiOyxFf5oezt5CiKlsCUrnxy" + } + ] }, "maintainers": [ { @@ -508,7 +556,13 @@ "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-2.1.0.tgz", "fileCount": 5, "unpackedSize": 2598, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpulSCRA9TVsSAnZWagAAxeYP+gJh+m9/BzNJbkIg1pnD\nHP3xajQ0VukzTBTt8Y/0Y7ugT9r6DqRpOqCaklfeCL1smpImET8FHS5ruLu3\ng0dggZPbSjjURAspiodN0SjPfa9lvtfM+buBcFC4rUJ3gnDLCyZVzpaIt4RS\nfGxovsh+6jf07vZuc+CqlGTC6oFQUC3tFqV6LhEySqMvPvDvLvZLxazNniym\nzNw61RnEv60hYbKqlvKwormmZgxSGdsb3x/TyNyp6lXdFDgfaScfbpjDqPyI\nnbvEgxV8MTgylMmIWIkjvgJqK+FoNwV69Gin1LBm2NeD9JPP25RB5OLnRMuG\n6znF1vroe87Y0CY+mIEh7ujvJ4k9Xmwtx7LLlXetszT/OIHTH6RKCJSW1Ham\nDW96RlArnyZ4ekPB5a0BtG5Zb/Ih1IRLvNgyzG6Y1/yLrHARefiNgtnLtWcF\njFlvH1VUEHQhd/DvKZVEAOxisw2AmxRytrUwe5qJPPdSLP0qd4QqRoDMFOja\nmNzUZLS3cJXLXaYDpx+yJIOkBOkJBSlISkk+Js3lcLxBNzpWN2wGNey7vM8S\nIgh5/0kGO1JWcmTjyKIoGoNunf87oE6sjtOuPWwWNb5Hv4cCSNTGpJMyh9kv\n3OjyPJRX6X43TwpKwLVR2H1juH/MU1Rv/3lPdcpMbkvCjv4i9+eQJ5Hd1cpv\nEVoJ\r\n=FQyG\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpulSCRA9TVsSAnZWagAAxeYP+gJh+m9/BzNJbkIg1pnD\nHP3xajQ0VukzTBTt8Y/0Y7ugT9r6DqRpOqCaklfeCL1smpImET8FHS5ruLu3\ng0dggZPbSjjURAspiodN0SjPfa9lvtfM+buBcFC4rUJ3gnDLCyZVzpaIt4RS\nfGxovsh+6jf07vZuc+CqlGTC6oFQUC3tFqV6LhEySqMvPvDvLvZLxazNniym\nzNw61RnEv60hYbKqlvKwormmZgxSGdsb3x/TyNyp6lXdFDgfaScfbpjDqPyI\nnbvEgxV8MTgylMmIWIkjvgJqK+FoNwV69Gin1LBm2NeD9JPP25RB5OLnRMuG\n6znF1vroe87Y0CY+mIEh7ujvJ4k9Xmwtx7LLlXetszT/OIHTH6RKCJSW1Ham\nDW96RlArnyZ4ekPB5a0BtG5Zb/Ih1IRLvNgyzG6Y1/yLrHARefiNgtnLtWcF\njFlvH1VUEHQhd/DvKZVEAOxisw2AmxRytrUwe5qJPPdSLP0qd4QqRoDMFOja\nmNzUZLS3cJXLXaYDpx+yJIOkBOkJBSlISkk+Js3lcLxBNzpWN2wGNey7vM8S\nIgh5/0kGO1JWcmTjyKIoGoNunf87oE6sjtOuPWwWNb5Hv4cCSNTGpJMyh9kv\n3OjyPJRX6X43TwpKwLVR2H1juH/MU1Rv/3lPdcpMbkvCjv4i9+eQJ5Hd1cpv\nEVoJ\r\n=FQyG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG/rF3ah7a6Pl/XD+4pIMYQwdMm79iV5jfT/x656BHM0AiEAmqQuHN6w+d639MNKDyDz5HcA8e1RULK6gyZvyzU2p1Y=" + } + ] }, "maintainers": [ { @@ -522,9 +576,84 @@ "tmp": "tmp/array-uniq_2.1.0_1554442577266_0.6197074744361011" }, "_hasShrinkwrap": false + }, + "3.0.0": { + "name": "array-uniq", + "version": "3.0.0", + "description": "Create an array without duplicates", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/array-uniq.git" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./index.js", + "engines": { + "node": ">=12" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "keywords": [ + "array", + "set", + "uniq", + "unique", + "duplicate", + "remove" + ], + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.39.1" + }, + "gitHead": "42335f573218c511c18551a22ab5605056e1fb97", + "bugs": { + "url": "https://github.com/sindresorhus/array-uniq/issues" + }, + "homepage": "https://github.com/sindresorhus/array-uniq#readme", + "_id": "array-uniq@3.0.0", + "_nodeVersion": "16.0.0", + "_npmVersion": "7.10.0", + "dist": { + "integrity": "sha512-T/3qyw9JTDHjj+aIo4uQyHCAoG1DkFqFViq0e6uPzkXwT74MEPsmQ30rxx8x9+yjBQ3KJ2bXOb2bBKC1FwEjdw==", + "shasum": "78e5b7d36375ba570e26aebcb8640aced9be5090", + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-3.0.0.tgz", + "fileCount": 5, + "unpackedSize": 2911, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgj+ErCRA9TVsSAnZWagAAjA8P/iZTICTn8C3y7a0fduBK\ndZjOlUoY5ekVhMaj/Uhhz5XjaCbHHg+fN9qM6wUY95QmswOUAKJu5j1W0HD5\naWypLPPNzKUWOlcDh57AzVS9NDS9G9csfji0brXolKMgtCqIPhxKc7/HlFQ5\ny/czDhbojTVdkh6I8Dw0Xp1m9DfZMooZ47GaMBXioBze2EG+aJ3mZXNIisA9\n/3rgWPMQ0jAHP7GY+2bbKUQ9WGFZsn60FNtydvTLL0Tm675kr86yoJywYfay\nHHPACjp8p9i6gyco+CAxJWSzzk0BrAzkkIuztF4w9KwqH8oAAOLb1mqVmegV\nP50DlU9zB++ZO0bNh6F6mvozoBlY7mzWtIGr5fQ4fYvMPGwLkvn+8HAPMxbe\nxa0JftCZxPzhEsH4t6UderdqI5XMIGWSv+yXZ4UW0LpNI2h1PK2fuQYca3I6\nG1zt1W5YT4oe7J8njrL83ZhhtTneHOUnf1a1QAUmB9dvPciW9qa5xTwJ+KUT\nAZyal2i0lK3QBKJSO2fVKPffda6BacxqyrZuzxzSvxY8diNInr2Oqb1uI0Nk\nD+3YswZnqZcxfesoEV3c3Gx8sGAvJnHw3+vv9I3SufOLeuQAzYGFlAMiDY6S\nlbi8m4/6WfCvQtUEdhpGkPnyKK2VwGN3msqULURZkB56EXg16rskdaXeoUgj\nyLz3\r\n=kZ9c\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCARqTVgTtvoG/jyrIHCQECQWDchEF12/rq/SynRRE6vQIgRo37JoLWyYkIAVV4MvoaSub0XNyiTp1wzX/gBnCgffo=" + } + ] + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/array-uniq_3.0.0_1620042026552_0.6447172657423639" + }, + "_hasShrinkwrap": false } }, - "readme": "# array-uniq [![Build Status](https://travis-ci.org/sindresorhus/array-uniq.svg?branch=master)](https://travis-ci.org/sindresorhus/array-uniq)\n\n> Create an array without duplicates\n\n\n## Install\n\n```\n$ npm install array-uniq\n```\n\n\n## Usage\n\n```js\nconst arrayUniq = require('array-uniq');\n\narrayUniq([1, 1, 2, 3, 3]);\n//=> [1, 2, 3]\n\narrayUniq(['foo', 'foo', 'bar', 'foo']);\n//=> ['foo', 'bar']\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n", + "readme": "# array-uniq\n\n> Create an array without duplicates\n\n## Install\n\n```\n$ npm install array-uniq\n```\n\n## Usage\n\n```js\nimport arrayUniq from 'array-uniq';\n\narrayUniq([1, 1, 2, 3, 3]);\n//=> [1, 2, 3]\n\narrayUniq(['foo', 'foo', 'bar', 'foo']);\n//=> ['foo', 'bar']\n```\n\n---\n\n
\n\t\n\t\tGet professional support for this package with a Tidelift subscription\n\t\n\t
\n\t\n\t\tTidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.\n\t
\n
\n", "maintainers": [ { "name": "sindresorhus", @@ -532,7 +661,7 @@ } ], "time": { - "modified": "2019-04-05T05:36:20.033Z", + "modified": "2023-06-16T22:39:12.420Z", "created": "2014-06-13T18:33:32.947Z", "0.1.0": "2014-06-13T18:33:32.947Z", "0.1.1": "2014-07-15T00:19:17.899Z", @@ -541,7 +670,8 @@ "1.0.2": "2014-12-11T05:33:57.502Z", "1.0.3": "2016-06-16T12:21:59.429Z", "2.0.0": "2018-05-04T14:41:41.958Z", - "2.1.0": "2019-04-05T05:36:17.432Z" + "2.1.0": "2019-04-05T05:36:17.432Z", + "3.0.0": "2021-05-03T11:40:26.681Z" }, "homepage": "https://github.com/sindresorhus/array-uniq#readme", "keywords": [ @@ -559,7 +689,7 @@ "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "url": "https://sindresorhus.com" }, "bugs": { "url": "https://github.com/sindresorhus/array-uniq/issues" @@ -574,6 +704,7 @@ "mrzmmr": true, "rocket0191": true, "ninozhang": true, - "gzg1500521074": true + "gzg1500521074": true, + "flumpus-dev": true } -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.min.json index 2bbf5666acf5f..c7e100fd6e802 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/array-uniq.min.json @@ -1,7 +1,7 @@ { "name": "array-uniq", "dist-tags": { - "latest": "2.1.0" + "latest": "3.0.0" }, "versions": { "0.1.0": { @@ -13,7 +13,14 @@ }, "dist": { "shasum": "dc39af2405e05f814062e9cc88f563ec1213b24a", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.0.tgz", + "integrity": "sha512-1oS58ztStBzlweSGJq3vxypDxVDFHQgSCZ5FgOX69ixg7BQ0KGhVKNbE/R2LZEsrQNbKqAuXrqohNXSHPKDiHQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDHcUnewelDLImbZNGaebtlVrUxM5pF+bnVfPW8UIK18gIgBAB84cds7+2NXUJcbBIOsIbPUz0Cne0EA6NrEODGlMc=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -28,7 +35,14 @@ }, "dist": { "shasum": "5861f3ed4e4bb6175597a4e078e8aa78ebe958c7", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.1.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-0.1.1.tgz", + "integrity": "sha512-f2yZoxGtRdrmvV142WQ8ALxpA/nQihGiO0kWVkA4O1dmUbCFn3HjYu6wnKzs/gBhB/gJiEKhk66DtSTEVZM5ag==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD7qXVtq3yuK4nPOel/P2zG6Bfa+aMlbDwPIk03tCUglwIhALdQKzm8BuM6giT85JtY1FgDdPN3wKd/C2GV2Bwo56Wf" + } + ] }, "engines": { "node": ">=0.10.0" @@ -44,7 +58,14 @@ }, "dist": { "shasum": "bc8cb48a6ff5c63e86e330736e5de5eccb2e2b9a", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.0.tgz", + "integrity": "sha512-mf0qqlMDRVh8t5H5hhuQWIOkDg/C+hmWtbHi70LieIe966nKX9th/BDXadDSVLX3+/r/GPclVt0Op0NQ2V82Pw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH6CzvxkYRo5qwLoZeFKYbjRJj0sALlC26uAA8RfFiqnAiBqOiMKGuVCTT+tR6HcBT9qVgtIRP8OVVdeOFO4HkQprw==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -60,7 +81,14 @@ }, "dist": { "shasum": "25e1d96853d7f6f77cecf693f86cac4052046790", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.1.tgz", + "integrity": "sha512-T8Eobqo1QCneu91CDwAD6PkYrrZU2T97+2Yu7NGbn4aNuCPnx5JahNn1vu6rHiHUeofYrCvdZ2A5LThPzvFTaA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCSD+n92eGpJa8VmCnJufQNj6GiuKGpR3KpHSG4xkTWRAIhAIVB9JE4STon3O30kTsT+AXEPQRtyfGdI9K/aNfKxhny" + } + ] }, "engines": { "node": ">=0.10.0" @@ -76,7 +104,14 @@ }, "dist": { "shasum": "5fcc373920775723cfd64d65c64bef53bf9eba6d", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz", + "integrity": "sha512-GVYjmpL05al4dNlKJm53mKE4w9OOLiuVHWorsIA3YVz+Hu0hcn6PtE3Ydl0EqU7v+7ABC4mjjWsnLUxbpno+CA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHNy4UlsFbz4UWPq/rGsx0IFXLK0rtr7E9uYtHaMhDVpAiEAkvMexHs9eMnkfStalOmoZaakGF0cC+m4+HeZNm1uByI=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -93,7 +128,14 @@ }, "dist": { "shasum": "af6ac877a25cc7f74e058894753858dfdb24fdb6", - "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEKHuxEZSPVVuGckSbnrCpN2pHz0VPXYZCRR0xpUvIOFAiBdU9nXts15cyU+flwECPGJJ9SsvvYC/s6SiZdfXpL8Hg==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -112,7 +154,13 @@ "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-2.0.0.tgz", "fileCount": 4, "unpackedSize": 2135, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7HEnCRA9TVsSAnZWagAAPnQQAKKpJ2B1O+MgMZ2qEwfm\nEKMaNTtZbiQnP2Eip52l9IYstfVbWex9eHvJ+nd9R2KcVVnVFun8dcgAKNUT\n0RLaYCWpEZSe11rG4Us5nVV6Aph2kK7OJCX48Tys2ZIqnG9VKXpa9p2hY//i\ntqxSoflyiepD5PbR+GzsRQIWEHetOiqvMalt8MC3u+p7vrYLlRbCyrhC6YKZ\n86/nQuBTOP/UYAcQFuwyD4W6HHUlu5RpMC3TO3vfuhHSwjkXgEQlBku3rpTb\nEzMW9YyGH8RVlJrFTXpRAjHNGED5Zo76/wbnuzNEFRZCnsh0ydGpIuLMCDEq\nrjzCGeuNWFBIQV27pfXP47SPluIwaE/dhg/k3rySXK7biu0FpU50QTYdbiPL\no3RISimUSr/K/39f5GRWzIgp7E6kCGz752LLPy/c2etgjDQ3R59d/G9n6KAf\nsL3zhjpQG+LbmXSAceygENKF11TIqzsFaMBlXZp8GpTvgP72GeusbnS2wVbU\n+WA2lUG4e25jBILN2RokNwpJdHs5zjOJttmb98cYLWsD61+dyXMmgAlQrZ8o\nA3UbGac+x4NZFyH8vR1CZOC4Ihc00/TE/rNrh0eIubLTI3wpObaVCI8YWV/y\nn6Vu6a655ELmJED8v9/liQ8uzanByKsFvNoq35sRhbL4FtbDaHPDsssKROWI\n6OQj\r\n=eZtW\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7HEnCRA9TVsSAnZWagAAPnQQAKKpJ2B1O+MgMZ2qEwfm\nEKMaNTtZbiQnP2Eip52l9IYstfVbWex9eHvJ+nd9R2KcVVnVFun8dcgAKNUT\n0RLaYCWpEZSe11rG4Us5nVV6Aph2kK7OJCX48Tys2ZIqnG9VKXpa9p2hY//i\ntqxSoflyiepD5PbR+GzsRQIWEHetOiqvMalt8MC3u+p7vrYLlRbCyrhC6YKZ\n86/nQuBTOP/UYAcQFuwyD4W6HHUlu5RpMC3TO3vfuhHSwjkXgEQlBku3rpTb\nEzMW9YyGH8RVlJrFTXpRAjHNGED5Zo76/wbnuzNEFRZCnsh0ydGpIuLMCDEq\nrjzCGeuNWFBIQV27pfXP47SPluIwaE/dhg/k3rySXK7biu0FpU50QTYdbiPL\no3RISimUSr/K/39f5GRWzIgp7E6kCGz752LLPy/c2etgjDQ3R59d/G9n6KAf\nsL3zhjpQG+LbmXSAceygENKF11TIqzsFaMBlXZp8GpTvgP72GeusbnS2wVbU\n+WA2lUG4e25jBILN2RokNwpJdHs5zjOJttmb98cYLWsD61+dyXMmgAlQrZ8o\nA3UbGac+x4NZFyH8vR1CZOC4Ihc00/TE/rNrh0eIubLTI3wpObaVCI8YWV/y\nn6Vu6a655ELmJED8v9/liQ8uzanByKsFvNoq35sRhbL4FtbDaHPDsssKROWI\n6OQj\r\n=eZtW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCfyWmU1p2m8PfUbI9MKYfPQ2P9ILentXAF1n3P26e3DQIhAK7uruEh5MzkqPzMN+zaXiOyxFf5oezt5CiKlsCUrnxy" + } + ] }, "engines": { "node": ">=6" @@ -132,12 +180,45 @@ "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-2.1.0.tgz", "fileCount": 5, "unpackedSize": 2598, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpulSCRA9TVsSAnZWagAAxeYP+gJh+m9/BzNJbkIg1pnD\nHP3xajQ0VukzTBTt8Y/0Y7ugT9r6DqRpOqCaklfeCL1smpImET8FHS5ruLu3\ng0dggZPbSjjURAspiodN0SjPfa9lvtfM+buBcFC4rUJ3gnDLCyZVzpaIt4RS\nfGxovsh+6jf07vZuc+CqlGTC6oFQUC3tFqV6LhEySqMvPvDvLvZLxazNniym\nzNw61RnEv60hYbKqlvKwormmZgxSGdsb3x/TyNyp6lXdFDgfaScfbpjDqPyI\nnbvEgxV8MTgylMmIWIkjvgJqK+FoNwV69Gin1LBm2NeD9JPP25RB5OLnRMuG\n6znF1vroe87Y0CY+mIEh7ujvJ4k9Xmwtx7LLlXetszT/OIHTH6RKCJSW1Ham\nDW96RlArnyZ4ekPB5a0BtG5Zb/Ih1IRLvNgyzG6Y1/yLrHARefiNgtnLtWcF\njFlvH1VUEHQhd/DvKZVEAOxisw2AmxRytrUwe5qJPPdSLP0qd4QqRoDMFOja\nmNzUZLS3cJXLXaYDpx+yJIOkBOkJBSlISkk+Js3lcLxBNzpWN2wGNey7vM8S\nIgh5/0kGO1JWcmTjyKIoGoNunf87oE6sjtOuPWwWNb5Hv4cCSNTGpJMyh9kv\n3OjyPJRX6X43TwpKwLVR2H1juH/MU1Rv/3lPdcpMbkvCjv4i9+eQJ5Hd1cpv\nEVoJ\r\n=FQyG\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpulSCRA9TVsSAnZWagAAxeYP+gJh+m9/BzNJbkIg1pnD\nHP3xajQ0VukzTBTt8Y/0Y7ugT9r6DqRpOqCaklfeCL1smpImET8FHS5ruLu3\ng0dggZPbSjjURAspiodN0SjPfa9lvtfM+buBcFC4rUJ3gnDLCyZVzpaIt4RS\nfGxovsh+6jf07vZuc+CqlGTC6oFQUC3tFqV6LhEySqMvPvDvLvZLxazNniym\nzNw61RnEv60hYbKqlvKwormmZgxSGdsb3x/TyNyp6lXdFDgfaScfbpjDqPyI\nnbvEgxV8MTgylMmIWIkjvgJqK+FoNwV69Gin1LBm2NeD9JPP25RB5OLnRMuG\n6znF1vroe87Y0CY+mIEh7ujvJ4k9Xmwtx7LLlXetszT/OIHTH6RKCJSW1Ham\nDW96RlArnyZ4ekPB5a0BtG5Zb/Ih1IRLvNgyzG6Y1/yLrHARefiNgtnLtWcF\njFlvH1VUEHQhd/DvKZVEAOxisw2AmxRytrUwe5qJPPdSLP0qd4QqRoDMFOja\nmNzUZLS3cJXLXaYDpx+yJIOkBOkJBSlISkk+Js3lcLxBNzpWN2wGNey7vM8S\nIgh5/0kGO1JWcmTjyKIoGoNunf87oE6sjtOuPWwWNb5Hv4cCSNTGpJMyh9kv\n3OjyPJRX6X43TwpKwLVR2H1juH/MU1Rv/3lPdcpMbkvCjv4i9+eQJ5Hd1cpv\nEVoJ\r\n=FQyG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG/rF3ah7a6Pl/XD+4pIMYQwdMm79iV5jfT/x656BHM0AiEAmqQuHN6w+d639MNKDyDz5HcA8e1RULK6gyZvyzU2p1Y=" + } + ] }, "engines": { "node": ">=6" } + }, + "3.0.0": { + "name": "array-uniq", + "version": "3.0.0", + "devDependencies": { + "ava": "^3.15.0", + "tsd": "^0.14.0", + "xo": "^0.39.1" + }, + "dist": { + "integrity": "sha512-T/3qyw9JTDHjj+aIo4uQyHCAoG1DkFqFViq0e6uPzkXwT74MEPsmQ30rxx8x9+yjBQ3KJ2bXOb2bBKC1FwEjdw==", + "shasum": "78e5b7d36375ba570e26aebcb8640aced9be5090", + "tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-3.0.0.tgz", + "fileCount": 5, + "unpackedSize": 2911, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgj+ErCRA9TVsSAnZWagAAjA8P/iZTICTn8C3y7a0fduBK\ndZjOlUoY5ekVhMaj/Uhhz5XjaCbHHg+fN9qM6wUY95QmswOUAKJu5j1W0HD5\naWypLPPNzKUWOlcDh57AzVS9NDS9G9csfji0brXolKMgtCqIPhxKc7/HlFQ5\ny/czDhbojTVdkh6I8Dw0Xp1m9DfZMooZ47GaMBXioBze2EG+aJ3mZXNIisA9\n/3rgWPMQ0jAHP7GY+2bbKUQ9WGFZsn60FNtydvTLL0Tm675kr86yoJywYfay\nHHPACjp8p9i6gyco+CAxJWSzzk0BrAzkkIuztF4w9KwqH8oAAOLb1mqVmegV\nP50DlU9zB++ZO0bNh6F6mvozoBlY7mzWtIGr5fQ4fYvMPGwLkvn+8HAPMxbe\nxa0JftCZxPzhEsH4t6UderdqI5XMIGWSv+yXZ4UW0LpNI2h1PK2fuQYca3I6\nG1zt1W5YT4oe7J8njrL83ZhhtTneHOUnf1a1QAUmB9dvPciW9qa5xTwJ+KUT\nAZyal2i0lK3QBKJSO2fVKPffda6BacxqyrZuzxzSvxY8diNInr2Oqb1uI0Nk\nD+3YswZnqZcxfesoEV3c3Gx8sGAvJnHw3+vv9I3SufOLeuQAzYGFlAMiDY6S\nlbi8m4/6WfCvQtUEdhpGkPnyKK2VwGN3msqULURZkB56EXg16rskdaXeoUgj\nyLz3\r\n=kZ9c\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCARqTVgTtvoG/jyrIHCQECQWDchEF12/rq/SynRRE6vQIgRo37JoLWyYkIAVV4MvoaSub0XNyiTp1wzX/gBnCgffo=" + } + ] + }, + "engines": { + "node": ">=12" + }, + "funding": "https://github.com/sponsors/sindresorhus" } }, - "modified": "2019-04-05T05:36:20.033Z" -} + "modified": "2023-06-16T22:39:12.420Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/async.json b/workspaces/arborist/test/fixtures/registry-mocks/content/async.json index 7a4b5342071ac..b6aaca51864b5 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/async.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/async.json @@ -1,1121 +1,1285 @@ { "_id": "async", - "_rev": "1661-d403a09616d6678ed32b5e0deffeacc9", + "_rev": "1690-1fee5499b0e312607f6fd68192198d0c", "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", "dist-tags": { - "latest": "3.2.0", - "next": "3.1.0" + "next": "3.1.0", + "latest": "3.2.6" }, "versions": { - "0.1.0": { + "0.1.4": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.4", "author": { "name": "Caolan McMahon" }, - "version": "0.1.0", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.4", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "29de4b98712ab8858411d8d8e3361a986c3b2c18", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.4.tgz", + "integrity": "sha512-z3WOSK7jjl/DwVZ5Y4g+7v+BSFY1XdYQln480eTUp9A/23zubrfQklzH+dtgB3KeT+8nbqaFJUaJEkplcCEPgQ==", + "signatures": [ + { + "sig": "MEUCID9EblVgyJHZ1n2FkIsNwzIEdz+u0xAw77dR5o4conu0AiEAuUcxhvP4Jeb12+wmgDPjPssxIQPwobGRzRhDp5wY858=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.0", - "engines": { - "node": "*" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "_nodeSupported": true, "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.0.tgz", - "shasum": "ab8ece0c40627e4e8f0e09c8fcf7c19ed0c4241c" - }, - "directories": {} + "_nodeSupported": true }, - "0.1.1": { + "0.1.3": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.3", "author": { "name": "Caolan McMahon" }, - "version": "0.1.1", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.3", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "629ca2357112d90cafc33872366b14f2695a1fbc", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.3.tgz", + "integrity": "sha512-HdubH4L9fhDRHv3OVz+i5YfDxZ1j0a7R0Q5SrD23Cv6LRPQ16bhbJu33j23P5BpgmokKmymLuxzKrZs9ZcQMWA==", + "signatures": [ + { + "sig": "MEUCICoo37sNyiclHlRp8810G2IKQ8n8dsKz2hRusY7y9w3OAiEAjG6iIfciz68VIqNIEwEmtXdiir6rHP5DL418P1vtbxg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.1", - "engines": { - "node": "*" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "_nodeSupported": true, "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.1.tgz", - "shasum": "fb965e70dbea44c8a4b8a948472dee7d27279d5e" - }, - "directories": {} + "_nodeSupported": true }, - "0.1.2": { + "0.1.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.0", "author": { "name": "Caolan McMahon" }, - "version": "0.1.2", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.0", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "ab8ece0c40627e4e8f0e09c8fcf7c19ed0c4241c", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.0.tgz", + "integrity": "sha512-9PGyP+84rspwZmkJxk/atgNCOO5LkZ+q1MQTg0SbI5tgkVjHM4iT3M/nzn40wkwAAXfqYMqEKyFnTGdLloG3CA==", + "signatures": [ + { + "sig": "MEQCIDx22dcfHtrSfCRTIK9/Dmz1vSlOBxWFhMseHpvyxs8FAiBITUWqm9hAsPe5/3h7i/qs1hbnqrDwptwcQqLt5gmTeQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.2", - "engines": { - "node": "*" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "_nodeSupported": true, "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.2.tgz", - "shasum": "be761882a64d3dc81a669f9ee3d5c28497382691" - }, - "directories": {} + "_nodeSupported": true }, - "0.1.3": { + "0.1.1": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.1", "author": { "name": "Caolan McMahon" }, - "version": "0.1.3", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.1", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "fb965e70dbea44c8a4b8a948472dee7d27279d5e", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.1.tgz", + "integrity": "sha512-YwXZvW4E3yUyc/9HBv1LFxeCBeY2AC0hsB9JnDbufoTO9VU/HXyajvD9ATGlzqE9JKBSlIp3zHO1QAsG1SimlQ==", + "signatures": [ + { + "sig": "MEQCIGsxoel6nf3x+tSA6kd8+chO5y9JSlKD4SHO6npMrmQcAiAzd3/TuIdQlAcJbWDNKBK+sLcwlWfOz/oXqpv6yCqa8w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.3", - "engines": { - "node": "*" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "_nodeSupported": true, "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.3.tgz", - "shasum": "629ca2357112d90cafc33872366b14f2695a1fbc" - }, - "directories": {} + "_nodeSupported": true }, - "0.1.4": { + "0.1.7": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.7", "author": { "name": "Caolan McMahon" }, - "version": "0.1.4", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.7", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "e9268d0d8cd8dcfe0db0895b27dcc4bcc5c739a5", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.7.tgz", + "integrity": "sha512-gElUZ5b8Tdin6tZK8Ls/Vadz8IpCnylQJoep5bd4aqB7Jb+aMJL8ugGAegkpBdf4HW07rk7Yohp0IbioMghX0w==", + "signatures": [ + { + "sig": "MEUCICZZdwOS1Syh7ewlb70iKc2D64inRhh0YHBUGgg3ehmXAiEA/9xeeVH144Ueqe4u68dtKmtPFmXMXyis1cGQKfpknsk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.4", - "engines": { - "node": "*" - }, - "_nodeSupported": true, - "_npmVersion": "0.2.7-2", - "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.4.tgz", - "shasum": "29de4b98712ab8858411d8d8e3361a986c3b2c18" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "directories": {} + "_npmVersion": "0.2.4-1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "v0.2.5", + "_nodeSupported": true }, - "0.1.5": { + "0.1.6": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.6", "author": { "name": "Caolan McMahon" }, - "version": "0.1.5", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.6", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "2dfb4fa1915f86056060c2e2f35a7fb8549907cc", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.6.tgz", + "integrity": "sha512-gbXCpNZerhfYr8Q4MqwgODncwRzYIE9r7zsZQ2xur0PxeOXbDNVfgsuT4Fq5UxQ4VnkjtaYfvv++AJz3WfNFeg==", + "signatures": [ + { + "sig": "MEUCIAagICqHFXa54YGVSuslP/BmDsJjaHvsISHrsYxIRrhoAiEA4eM4O0o/YE4QdkPxQ204Qkp38fI2KUYHUCqjHvEwo3o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.5", - "engines": { - "node": "*" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "_nodeSupported": true, "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.5.tgz", - "shasum": "9d83e3d4adb9c962fc4a30e7dd04bf1206c28ea5" - }, - "directories": {} + "_nodeSupported": true }, - "0.1.6": { + "0.1.5": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.5", "author": { "name": "Caolan McMahon" }, - "version": "0.1.6", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.5", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "9d83e3d4adb9c962fc4a30e7dd04bf1206c28ea5", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.5.tgz", + "integrity": "sha512-KhhzvRCyjYe6SXWfASlCeRTO3xPOF4biDq3MO9l7LDjV7GVnwKS5EYeujPLlQ96RTZwpn94tGkgKsV5q/EZHkw==", + "signatures": [ + { + "sig": "MEYCIQDz7Pgb32wEC1fBezGEUuHlrlOVckBymFfqeaIJm+2KuQIhAJ3dESAlL+XZLdQHqiOfjItu6UWV/f1EbCd1CxdEVddO", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.6", - "engines": { - "node": "*" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "_nodeSupported": true, "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.3.1-pre", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.6.tgz", - "shasum": "2dfb4fa1915f86056060c2e2f35a7fb8549907cc" - }, - "directories": {} + "_nodeSupported": true }, - "0.1.7": { + "0.1.2": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.2", "author": { "name": "Caolan McMahon" }, - "version": "0.1.7", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.2", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "be761882a64d3dc81a669f9ee3d5c28497382691", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.2.tgz", + "integrity": "sha512-y7uCLBkkDe5614yPPM0Ch8MyOYvVvQjrzP7Xqua/HR2Ea+tht/zGIdppxnPi9yujy0O//0LuH5dfNN+5DFAMJQ==", + "signatures": [ + { + "sig": "MEUCIQDx/ZqWoNPdHkXCUfl+RRJD3hawX+xwwv1h8lNjQc1M7gIgSv2gHAaezX4xsAZA6LrhoJpoOZU3gS/4oJZf7wL3L/Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.7", - "engines": { - "node": "*" - }, - "_nodeSupported": true, - "_npmVersion": "0.2.4-1", - "_nodeVersion": "v0.2.5", - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.7.tgz", - "shasum": "e9268d0d8cd8dcfe0db0895b27dcc4bcc5c739a5" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "directories": {} + "_npmVersion": "0.2.7-2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "v0.3.1-pre", + "_nodeSupported": true }, "0.1.8": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.8", "author": { "name": "Caolan McMahon" }, - "version": "0.1.8", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, + "_id": "async@0.1.8", "bugs": { "web": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "52f2df6c0aa6a7f8333e1fbac0fbd93670cf6758", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.8.tgz", + "integrity": "sha512-5WGWFUyVb/6iKBPBfsewoI+HtHaTcfeHeKQNIpG8IKmH+r+Y34hLUt5AH7e9vU97SmuAVvZiqX9F9NUWFwUU6A==", + "signatures": [ + { + "sig": "MEUCIFHZFTal9MRg5V92uSwD72Dhby6bSDGdXddhKB7R5U9HAiEA8WOyxr+fZe2jc52kronNkbadCw/tFP33AB5vJqLRk5Y=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "_id": "async@0.1.8", - "engines": { - "node": "*" - }, - "_nodeSupported": true, - "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.8.tgz", - "shasum": "52f2df6c0aa6a7f8333e1fbac0fbd93670cf6758" + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" }, - "directories": {} + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeSupported": true }, "0.1.9": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.9", "author": { "name": "Caolan McMahon" }, - "version": "0.1.9", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, + "_id": "async@0.1.9", "bugs": { "url": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "f984d0739b5382c949cc3bea702d21d0dbd52040", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.9.tgz", + "integrity": "sha512-to+lCTfZfYBMLaOWhmmYcfeRZv8SpjcSGTV3AXCOe0HcZ4l7DGD8F4DrpGjnL1Pdor1GoPrbah3ZoicEWYQpTw==", + "signatures": [ + { + "sig": "MEUCIQCQvspvJIlSwq4AwCC9DIP/sAJyOLjp1iOXsS/AEgQTLwIgYKfAqLWIVUSC+4r0XJuOSFz+w8NWbNAF4cMinX1NXKM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "dependencies": {}, - "devDependencies": {}, - "_id": "async@0.1.9", - "engines": { - "node": "*" + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.0.1rc7", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.4.7", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "f984d0739b5382c949cc3bea702d21d0dbd52040", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.9.tgz" - }, - "directories": {} + "devDependencies": {}, + "_engineSupported": true }, "0.1.10": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.10", "author": { "name": "Caolan McMahon" }, - "version": "0.1.10", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, + "_id": "async@0.1.10", + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], "bugs": { "url": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "12b32bf098fa7fc51ae3ac51441b8ba15f437cf1", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.10.tgz", + "integrity": "sha512-IKQ+XgK9sP3w1hSbIwwVXrjfbnL2N6/lPc8yf0ODBiQlVnwkjTVYPx+yQYwVwUr/TVOpEVA2OKRINJBQp25Sng==", + "signatures": [ + { + "sig": "MEYCIQCn6Lu/CvjlY4S8r/MOGV7NoKkzfrLfgKrY3E2WhNlmiwIhAPuovHzsF3l+Wqk3QrglIOj5zSjCJohXmL0oQmSC65e8", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.0.27", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "v0.4.11", "_npmJsonOpts": { "file": "/home/caolan/.npm/async/0.1.10/package/package.json", "wscript": false, - "contributors": false, - "serverjs": false + "serverjs": false, + "contributors": false }, - "_id": "async@0.1.10", "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": "*" - }, - "_engineSupported": true, - "_npmVersion": "1.0.27", - "_nodeVersion": "v0.4.11", "_defaultsLoaded": true, - "dist": { - "shasum": "12b32bf098fa7fc51ae3ac51441b8ba15f437cf1", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.10.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "0.1.11": { + "name": "async", + "version": "0.1.11", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.11", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.11": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.11", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "a397a69c6febae232d20a76a5b10d8742e2b8215", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.11.tgz", + "integrity": "sha512-UWxk0UvrSb4s+Yrr0IUXkgWGLi6oz9n5McjIU+G2g2IswXxs9/EwGz6eWiS69/NII/4hz/+nr1CXHtBicHOqBQ==", + "signatures": [ + { + "sig": "MEUCIQCqpTXHxY3Hmo8v4lhVUJNOvz9leak6i0m4MEi5RK/72gIgazXNy1XSVcKqWGwkUQ9An0HOKDyJhGYBLo8F41fSWwc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.0.27", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "v0.4.12", "_npmJsonOpts": { "file": "/home/caolan/.npm/async/0.1.11/package/package.json", "wscript": false, - "contributors": false, - "serverjs": false + "serverjs": false, + "contributors": false }, - "_id": "async@0.1.11", "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": "*" - }, - "_engineSupported": true, - "_npmVersion": "1.0.27", - "_nodeVersion": "v0.4.12", "_defaultsLoaded": true, - "dist": { - "shasum": "a397a69c6febae232d20a76a5b10d8742e2b8215", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.11.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "0.1.12": { + "name": "async", + "version": "0.1.12", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.12", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.12": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.12", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, + "dist": { + "shasum": "ab36be6611dc63d91657128e1d65102b959d4afe", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.12.tgz", + "integrity": "sha512-m3U65nGDodNLsrc1h0wyaxBLBgXcp1fOI0iyi0+yOCnuzCKQEfZsNlpheLJGe6R9f9ZpKOPQvbscKoxTf3+RZQ==", + "signatures": [ + { + "sig": "MEQCID0v3cVO5TOov/0sChcWNZUIFcPrCysYun/OYLESq51lAiBFwB/6QYk6fgarqiu9Hu7gNFaLTkgmr880uhBcp6y7HQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.0.27", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "v0.4.12", "_npmJsonOpts": { "file": "/home/caolan/.npm/async/0.1.12/package/package.json", "wscript": false, - "contributors": false, - "serverjs": false + "serverjs": false, + "contributors": false }, - "_id": "async@0.1.12", "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": "*" - }, - "_engineSupported": true, - "_npmVersion": "1.0.27", - "_nodeVersion": "v0.4.12", "_defaultsLoaded": true, - "dist": { - "shasum": "ab36be6611dc63d91657128e1d65102b959d4afe", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.12.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "0.1.13": { + "name": "async", + "version": "0.1.13", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.13", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.13": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.13", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" - } - ], + "dist": { + "shasum": "f1e53ad69dab282d8e75cbec5e2c5524b6195eab", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.13.tgz", + "integrity": "sha512-HUE5SMTTRRWqeu2bwx7zCZ+Gim/O0z6iOMCJnz0hcdHbeJPMC6dTptzQbVGa8HFJ3Hp6Lv8vJeZYOfG9PN1xjA==", + "signatures": [ + { + "sig": "MEUCIQC1XBOLfpUw6UvWA3gZi1NmNuazwhtuHyug9eBsXYkqMwIgdnXTuxg56dx6JRVP8qhClShal4wI+qJjKATsLXRDaDE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.13", - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.0.101", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.4.9", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "f1e53ad69dab282d8e75cbec5e2c5524b6195eab", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.13.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "0.1.14": { + "name": "async", + "version": "0.1.14", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.14", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.14": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.14", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" - } - ], + "dist": { + "shasum": "0fcfaf089229fc657798203d1a4544102f7d26dc", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.14.tgz", + "integrity": "sha512-enxRg7+yAOj2LXDzWpBv9WKi5dlQVnGG9j3ekGiIczm+gmzNXaZzqf7vf+wW9NwvA1k279EsCbSOumxmjv5mtA==", + "signatures": [ + { + "sig": "MEUCIQD6UR0wANweVzJujDe7z0O+mo00TWpl2LR8BXlFshwXeAIgZOLdXsF3L7n/lDIKg2Czz8IqSglVz6uyMYIUcmn+kw0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.14", - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.0.101", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.4.9", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "0fcfaf089229fc657798203d1a4544102f7d26dc", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.14.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "0.1.15": { + "name": "async", + "version": "0.1.15", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.15", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.15": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.15", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" - } - ], + "dist": { + "shasum": "2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.15.tgz", + "integrity": "sha512-AGVE6WcRsWX4QudgrVhdDUKAgCv67EwmzP3yEny/AI7/WqM+J8CStwMbGqeXC9p8ih4qota04EaMim/WvA8OCw==", + "signatures": [ + { + "sig": "MEUCIE0YUrqnO8Q0NMwUaiQm/zWvIZHQQAfdIZSWckZKD/lrAiEA504BIEMfraj3F+VfQDbFVsX4uIx82XxqAgSSj3ctmTM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.15", - "dependencies": {}, - "devDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.0.101", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.4.9", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.15.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "0.1.16": { + "name": "async", + "version": "0.1.16", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.16", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.16": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.16", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" - } - ], + "dist": { + "shasum": "b3a61fdc1a9193d4f64755c7600126e254223186", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.16.tgz", + "integrity": "sha512-TrtaROD5B+de7cbqPG6z96Jc+CXbnlQLzGPTj6Marf2+yh9hCe0+PVFdNMFxcdfjOF+0T/HrdN7EzC+COuxQpA==", + "signatures": [ + { + "sig": "MEUCIGrtIMUE1Pqf0ZZxsZHGBC0pcZBtYYiglG6AwjDVGb5SAiEAtJtHa+HerK1Qe1rjf3Uf3pCT/jFLLOce3JnHqAG5i1k=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" + }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.16", - "dependencies": {}, - "devDependencies": {}, - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.0-3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.10", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "b3a61fdc1a9193d4f64755c7600126e254223186", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.16.tgz" + "devDependencies": {}, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.1.17": { + "name": "async", + "version": "0.1.17", + "author": { + "name": "Caolan McMahon" }, + "_id": "async@0.1.17", "maintainers": [ { "name": "caolan", "email": "caolan@caolanmcmahon.com" } ], - "directories": {} - }, - "0.1.17": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", - "author": { - "name": "Caolan McMahon" - }, - "version": "0.1.17", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, "bugs": { "url": "http://github.com/caolan/async/issues" }, - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" - } - ], - "dependencies": { - "uglify-js": "1.2.x" + "dist": { + "shasum": "03524a379e974dc9ee5c811c6ee3815d7bc54f6e", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.17.tgz", + "integrity": "sha512-PvPaikCPsSEOfAR/je214lMCnaPLHAcA/KAjfEixFaQ7fSr44rrZZtD417vCn2JUt059QGZKKbaa8SZEDNPEvA==", + "signatures": [ + { + "sig": "MEUCIAF00fKoKWO4YrB/WJvpptvGLNheleNFn3Qyg2IuFvkDAiEAnrcbewblqTrZIRMyGuvet476VPOrHxgDmBd1Oha+C2c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "devDependencies": { - "nodeunit": ">0.0.0", - "nodelint": ">0.0.0" + "main": "./index", + "engines": { + "node": "*" }, "scripts": { - "preinstall": "make clean", + "test": "make test", "install": "make build", - "test": "make test" + "preinstall": "make clean" }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.17", - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.11", + "dependencies": { + "uglify-js": "1.2.x" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "03524a379e974dc9ee5c811c6ee3815d7bc54f6e", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.17.tgz" + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" - } - ], - "directories": {} + "_engineSupported": true, + "optionalDependencies": {} }, "0.1.18": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.18", "author": { "name": "Caolan McMahon" }, - "version": "0.1.18", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.1.18", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" + }, + "dist": { + "shasum": "c59c923920b76d5bf23248c04433920c4d45086a", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.18.tgz", + "integrity": "sha512-BNk8X5AAA0bk1d1E2DJ/HgfP71qvoUZtjGGkIUI2eUo8IyXdc0u0tpFOuuRTXNU99iqb9/OoLD6XPF+xoNXaTw==", + "signatures": [ + { + "sig": "MEQCIGbpzknEnfC5K0dKlbduTsjP+S+sKIM7yxeAepeqhKrjAiB9YVzDRhERuR+YAUw4U5vNrH1cE/d4citggaoy7P/qgw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.18", - "dependencies": {}, - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.11", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "c59c923920b76d5bf23248c04433920c4d45086a", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.18.tgz" + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" - } - ], - "directories": {} + "_engineSupported": true, + "optionalDependencies": {} }, "0.1.19": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.19", "author": { "name": "Caolan McMahon" }, - "version": "0.1.19", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.1.19", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" + }, + "dist": { + "shasum": "4fd6125a70f841fb10b14aeec6e23cf1479c71a7", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.19.tgz", + "integrity": "sha512-Pr/gsr+9UBQPMjqAA+xVqfuCSOPzNGF79mgOTUOJnzahf4xDXBtak0aMlOqOwD+2gEkE7bNsd66qdfvBXcMOWQ==", + "signatures": [ + { + "sig": "MEYCIQCQYjlXXSckAyh4t4o/ZOJptydfkmIk03tpRUHBNcN8pAIhAL1ujP9UylSdcpsAcsuwRB0t0hq9oSFEFRRbJ4p1HN89", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.19", - "dependencies": {}, - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.21", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.18", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "4fd6125a70f841fb10b14aeec6e23cf1479c71a7", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.19.tgz" + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" - } - ], - "directories": {} + "_engineSupported": true, + "optionalDependencies": {} }, "0.1.20": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.20", "author": { "name": "Caolan McMahon" }, - "version": "0.1.20", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.1.20", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" + }, + "dist": { + "shasum": "ba0e47b08ae972e04b5215de28539b313482ede5", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.20.tgz", + "integrity": "sha512-w4A6K4QUEfl7BrQGC7TGc/I5TFVi1qQKDQW1HsFvwNXbpYL+HPmuECxhQpZsYJ2z4WcRyL//8wgH6TEo/7dqtw==", + "signatures": [ + { + "sig": "MEUCIQDF9wPuKq/5lxektlLfbcoUPqMqhK3a+AfcUR1z6V7wxwIgKGROHgPQQ2rjcyw8r8ri0peByfddi3/vNeJMh2DG4bw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.20", - "dependencies": {}, - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.21", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.18", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "ba0e47b08ae972e04b5215de28539b313482ede5", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.20.tgz" + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" - } - ], - "directories": {} + "_engineSupported": true, + "optionalDependencies": {} }, "0.1.21": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.21", "author": { "name": "Caolan McMahon" }, - "version": "0.1.21", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.1.21", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" + }, + "dist": { + "shasum": "b5b12e985f09ab72c202fa00f623cd9d997e9464", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.21.tgz", + "integrity": "sha512-nJClLgEUpW3NIGNhuZpp/mWlZV/wc4n7EWC3sOn3VjDLADjFMvQgnxKbsNAXeLeswU8snGNUlGrHthRz3vvbFg==", + "signatures": [ + { + "sig": "MEUCICsB8YCMfaV1pa6azmvMpjWvXeGIGSr27TvxvTXtTSQHAiEAnk3gGbRsLhvnYeNUMJHyAIBmHOSNHorlz3/O/ETzxOo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.21", - "dependencies": {}, - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.21", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.18", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "b5b12e985f09ab72c202fa00f623cd9d997e9464", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.21.tgz" + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" - } - ], - "directories": {} + "_engineSupported": true, + "optionalDependencies": {} }, "0.1.22": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./index", + "version": "0.1.22", "author": { "name": "Caolan McMahon" }, - "version": "0.1.22", - "repository": { - "type": "git", - "url": "git://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.1.22", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" + }, + "dist": { + "shasum": "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.22.tgz", + "integrity": "sha512-2tEzliJmf5fHNafNwQLJXUasGzQCVctvsNkXmnlELHwypU0p08/rHohYvkqKIjyXpx+0rkrYv6QbhJ+UF4QkBg==", + "signatures": [ + { + "sig": "MEYCIQDDqPsjio/NKLNOWiAERdNWlrviEM2ppmL3fFZXS9r6lwIhAPpBno0LRBxGoBzDk7EaRXnxVPKt7HCSM+TeMlNoR1QR", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./index", + "engines": { + "node": "*" }, "_npmUser": { "name": "caolan", "email": "caolan@caolanmcmahon.com" }, - "_id": "async@0.1.22", - "dependencies": {}, - "optionalDependencies": {}, - "engines": { - "node": "*" + "licenses": [ + { + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" + } + ], + "repository": { + "url": "git://github.com/caolan/async.git", + "type": "git" }, - "_engineSupported": true, "_npmVersion": "1.1.21", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, "_nodeVersion": "v0.6.18", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.22.tgz" + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" - } - ], - "directories": {} + "_engineSupported": true, + "optionalDependencies": {} }, "0.2.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.0", "author": { "name": "Caolan McMahon" }, - "version": "0.2.0", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.0", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, - "_id": "async@0.2.0", "dist": { "shasum": "db1c645337bab79d0ca93d95f5c72d9605be0fce", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.0.tgz", + "integrity": "sha512-nnO8zZ7dtTBikdb+WBynUk+LIn2jNrEM38ZM9WLFNYGMhSA6rJhnGbOhkKInnUoE9rC5VFAuIzTtq8Cl1T+W2g==", + "signatures": [ + { + "sig": "MEYCIQCuVCblXiqX9GMhMEKP1SMbIELOmXqlcovU53kU0y/vkwIhAMXabhgQnQQJH3MQJQvNH7qRwcVUfqm38bv2TJub46dQ", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "_npmVersion": "1.2.0", + "main": "./lib/async", "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.1": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.1", "author": { "name": "Caolan McMahon" }, - "version": "0.2.1", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.1", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, - "_id": "async@0.2.1", "dist": { "shasum": "4e37d08391132f79657a99ca73aa4eb471a6f771", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.1.tgz", + "integrity": "sha512-hMyoohB59F7goU5qLI99Nl4ClmXb5/w/tsfPxW/LB7znoqngNtDTe6JKKPRQFGRbE9hrlbwy3et79dzIrBVL+A==", + "signatures": [ + { + "sig": "MEUCIEoatMcHLPccRP7m32zdIEnsCHtyrmINB9ZM0TShydtQAiEAnYHR87yfG/T48RxIg5XSuMtZk+tqTFM4OlWlNmsZsUI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "_npmVersion": "1.2.0", + "main": "./lib/async", "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.2": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.2", "author": { "name": "Caolan McMahon" }, - "version": "0.2.2", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.2", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1125,49 +1289,56 @@ "LICENSE" ] }, - "_id": "async@0.2.2", "dist": { "shasum": "8414ee47da7548126b4d3d923850d54e68a72b28", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.2.tgz", + "integrity": "sha512-tJRRWjpougYgbb9OIL5o1NCkMpAAo3wKznVG3ukqznOcfc/GMqo6MGVYOGbDUjwP93x3exAnrsFbQ7rD21sRyQ==", + "signatures": [ + { + "sig": "MEQCID3gx8+/AviHUXlfRYw6LqOMQEZyznVARiB7uHg0oBM5AiA6WPlKFKkfDwaYj6GQ/R34QCpnZOZW7ANg5p0Z1QJJBg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "_npmVersion": "1.2.0", + "main": "./lib/async", "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} - }, - "0.2.3": { - "name": "async", + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.0", "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } + }, + "0.2.3": { + "name": "async", + "version": "0.2.3", "author": { "name": "Caolan McMahon" }, - "version": "0.2.3", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.3", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1177,49 +1348,56 @@ "LICENSE" ] }, - "_id": "async@0.2.3", "dist": { "shasum": "79bf601d723a2e8c3e91cb6bb08f152dca309fb3", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.3.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.3.tgz", + "integrity": "sha512-VUBA016fb0uHNgE4KJ8jVgR6WIsAqIIESLcebYhrp5tcEq5nmibVyqHtlJ4DE5chi4gzR04GpEyrqPyoyDUxvw==", + "signatures": [ + { + "sig": "MEQCID4s0i1Xcs/X40mnMn4pCxiceAuVMLe6YfH9RkNoFNePAiAzq9EPWmKUCtikDFKv884BJwCv/QSef2MnYN1AIFxO4Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "_npmVersion": "1.2.0", + "main": "./lib/async", "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.4": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.4", "author": { "name": "Caolan McMahon" }, - "version": "0.2.4", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.4", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1229,49 +1407,56 @@ "LICENSE" ] }, - "_id": "async@0.2.4", "dist": { "shasum": "0550e510cf43b83e2fcf1cb96399f03f1efd50eb", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.4.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.4.tgz", + "integrity": "sha512-YOlRWhY+HgDdAPGG23DAGKTcmeA2dRlqWx8lVCHKh44JxI0XPyaTzh2kRqL+VkR/0k3ACtWgfMbZOb2+YfrdmA==", + "signatures": [ + { + "sig": "MEUCIQDaLL1x4PzKGfX60Da8Fi8eUlZ8QlvcUeMh1PfdZA+zUgIgROy1WOQRGhg+aS+zeySmRnLc0FNg8fjvbUw9KiLB2V8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "_npmVersion": "1.2.0", + "main": "./lib/async", "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.5": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.5", "author": { "name": "Caolan McMahon" }, - "version": "0.2.5", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.5", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1281,49 +1466,56 @@ "LICENSE" ] }, - "_id": "async@0.2.5", "dist": { "shasum": "45f05da480749ba4c1dcd8cd3a3747ae7b36fe52", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.5.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.5.tgz", + "integrity": "sha512-8t/BPKmtCPGoCxp2K24E2MK3JGU/imGZJdhh2J7MjMWJw0/99RBq/fLdI8rZpoefIDf+wmMdvRyLkgxbA4k6ug==", + "signatures": [ + { + "sig": "MEUCIBvSEM6iUELojeTkPsgmUrWx3WSCaaFrnz1AU/55GJ9QAiEA1erL0DSvXqUXroiPDQHcyeoFFE+uGTMS3xu5jwBkVeI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "_npmVersion": "1.2.0", + "main": "./lib/async", "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.6": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.6", "author": { "name": "Caolan McMahon" }, - "version": "0.2.6", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.6", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1333,53 +1525,60 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "_id": "async@0.2.6", "dist": { "shasum": "ad3f373d9249ae324881565582bc90e152abbd68", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.6.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.6.tgz", + "integrity": "sha512-LTdAJ0KBRK5o4BlBlUoGvfGNOMON+NLbONgDZk80SX0G8LQZyjN+74nNADIpQ/+rxun6+fYm7z4vIzAB51UKUA==", + "signatures": [ + { + "sig": "MEUCIQD3apPEm+ULbSFLX6fqTKWpzjs8dPwoZ2aMRvSvEMcedQIgYRPSCIkpdL5Z7DBp0cqCbQvKNFTAY8L+NsC331MNFfQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.2.11", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.11", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.7": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.7", "author": { "name": "Caolan McMahon" }, - "version": "0.2.7", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.7", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1389,53 +1588,60 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "_id": "async@0.2.7", "dist": { "shasum": "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.7.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.7.tgz", + "integrity": "sha512-5BMKmTkzcOSMOjx4UdgwVuwVEtcoqiaxC8gCRXwyJ1RqjmWJs0IRRxvzF+rTpFpXr33nWKgDlkjzgmC5isM6pA==", + "signatures": [ + { + "sig": "MEYCIQDDMxV/g189H9/JJiquBaNS1u9z19UXPDiD2BoqIl+SfgIhAMBh4FwUR4EDXUrahoJTKgFp5jlJ55V5/H4bhR1asXaN", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.2.11", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.11", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.8": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.8", "author": { "name": "Caolan McMahon" }, - "version": "0.2.8", - "repository": { - "type": "git", - "url": "http://github.com/caolan/async.git" - }, - "bugs": { - "url": "http://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.8", + "maintainers": [ { - "type": "MIT", - "url": "http://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "http://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1445,53 +1651,60 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "_id": "async@0.2.8", "dist": { "shasum": "ba1b3ffd1e6cdb1e999aca76ef6ecee8e7f55f53", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.8.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.8.tgz", + "integrity": "sha512-OvesHI7rvKyZiwRiNZfC7kPm/KlvgKYixkxpCyj7YgHVQu6DXjjcCtAnlY+sEApfs1QYhnU6ZKGhZkVwV3ESMA==", + "signatures": [ + { + "sig": "MEQCIAaI1MAxq3xFjX0LCR+dAKufh77XB57sUdL/26/x04uYAiAIMlNWA4TPemHdvm/8JeMFwl+g/ngXMgFjRgsVUglIJA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.2.11", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "http://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "http://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.11", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.9": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.9", "author": { "name": "Caolan McMahon" }, - "version": "0.2.9", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.9", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1501,53 +1714,60 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "_id": "async@0.2.9", "dist": { "shasum": "df63060fbf3d33286a76aaf6d55a2986d9ff8619", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.9.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.9.tgz", + "integrity": "sha512-OAtM6mexGteNKdU29wcUfRW+VuBr94A3hx9h9yzBnPaQAbKoW1ORd68XM4CCAOpdL5wlNFgO29hsY1TKv2vAKw==", + "signatures": [ + { + "sig": "MEQCICw8WvYWKlg4GA+BHZpXA6mhNuTzQkOgITiRjAoQUgGsAiBn69vkSJTplNSQfVcxvg5QLE3T/bx+Kw5aph0+f0iMaA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.2.23", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.2.23", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.2.10": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.2.10", "author": { "name": "Caolan McMahon" }, - "version": "0.2.10", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.2.10", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1557,53 +1777,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "_id": "async@0.2.10", "dist": { "shasum": "b6bbe0b0674b9d719708ca38de8c237cb526c3d1", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==", + "signatures": [ + { + "sig": "MEUCIQCXk3BnwZInzVs4J++eN0BacE5K5ZFVfDM+IEhYu3hZ/AIgZW0T2vqvCQ6qY7XlEPe6Ou4y5VP+NGZfrmEBgFmGhq8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.3.2", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.3.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.3.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.3.0", "author": { "name": "Caolan McMahon" }, - "version": "0.3.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.3.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1613,54 +1841,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.3.0", "dist": { "shasum": "6d2c543c25f514c602bb22916ac222a519290d5d", - "tarball": "https://registry.npmjs.org/async/-/async-0.3.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.3.0.tgz", + "integrity": "sha512-t0AbvoJp8ufti4iQnqGaD5+BqEvNE5G4IkRBut+X58yRmVxYX/0EMXuk7urOMqoDmRMAlODUQgDzEmytxBwmlw==", + "signatures": [ + { + "sig": "MEUCIQDHkon+iHzvV/kTD70bswF8V2yaONqlrnMFZHQLhlOLGAIgfi6t6Pmof6Jsnics504Iev9TyToh5JFGfn7ESoLK1wg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.4.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.4.0", "author": { "name": "Caolan McMahon" }, - "version": "0.4.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.4.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1670,54 +1905,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.4.0", "dist": { "shasum": "208bba02850129dacc2bc3959e4126570ae80b74", - "tarball": "https://registry.npmjs.org/async/-/async-0.4.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.4.0.tgz", + "integrity": "sha512-U/V24wqehhL9iASh8i9ocYjwBJQx++rQRA8oefLqbVCbRkOAahxR7MP6vfwtpTaVJhNH9CgWgTY3yAUwtDfyGw==", + "signatures": [ + { + "sig": "MEQCIALcT3hgZRKQLLY2NPDKkES8byo65LMCQRFrBGJIjECyAiARxKVY47BdjwsBhmUHcVUvU+rAOihL/umtmFVhbVhHNQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.4.1": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.4.1", "author": { "name": "Caolan McMahon" }, - "version": "0.4.1", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.4.1", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1727,54 +1969,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.4.1", "dist": { "shasum": "1985abade017df906bfaa8d77d424b25366b3a5b", - "tarball": "https://registry.npmjs.org/async/-/async-0.4.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.4.1.tgz", + "integrity": "sha512-Av6ptO/8zrd9U6Bv1p+zY/PMYvdVIno1YunAyQw2VlQBEFL+ozihMB7BIyKEQMmQIi/uIrpVEhvQ8MgE2DAFpg==", + "signatures": [ + { + "sig": "MEQCIBYYzwueFVGhI13TMExNvdcWQyfyZdZx9fpwPfyTl0vQAiA710RMqsG6I6zrw1NpKU6GLFWJItKcRnbq7ikhCFlq6w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.5.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.5.0", "author": { "name": "Caolan McMahon" }, - "version": "0.5.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.5.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1784,54 +2033,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.5.0", "dist": { "shasum": "524bc1cf3ed2b6adc7f4a8c4987dd9c4809c764f", - "tarball": "https://registry.npmjs.org/async/-/async-0.5.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.5.0.tgz", + "integrity": "sha512-SbEssEno13E5+zFBHXa3PQP2f2U/tq1xjq0mwb2yBIYwOk5SYh3hWdY3ABByIQgxDNQi/yRGCl1/qf4AT7G8ng==", + "signatures": [ + { + "sig": "MEUCIQCL6uogQDUOLrEEOMSkGp2PlliEHSO830YvFBKCk15weQIgSxQzTC3L0QtF3xTNsPdXIgVP+iviNRm8O76SWHCKeio=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.6.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.6.0", "author": { "name": "Caolan McMahon" }, - "version": "0.6.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.6.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1841,54 +2097,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.6.0", "dist": { "shasum": "025a31c8b1fb11e7481fa18dbdbc2bf2e434933a", - "tarball": "https://registry.npmjs.org/async/-/async-0.6.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.6.0.tgz", + "integrity": "sha512-ZOOAuacMq3yLwWL+QnaXpVwEuV6XF0QVL78edsEKBn+PYaL4kcDId/SYSLWm0s5GrWm3IIMDsaD7djfpZZQdxg==", + "signatures": [ + { + "sig": "MEUCIQDvA6j89g6w2PtFoek1qeQM91RxUAOTz6gS4WW7BCa91wIgeRSTgBUR4Va5q8avB9AiXRGXFDxpacG5UWDqpp9hFwE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.6.1": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.6.1", "author": { "name": "Caolan McMahon" }, - "version": "0.6.1", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.6.1", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1898,54 +2161,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.6.1", "dist": { "shasum": "594fe360968fcdd2d7e0a6d95a874e4e92c7a26d", - "tarball": "https://registry.npmjs.org/async/-/async-0.6.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.6.1.tgz", + "integrity": "sha512-egr4a5B/OVikzKT/uD+i0gO54+Yjm4j7rphMqfgWAAlicrszZRWge13YiswuiBYjZM/dQoaNOAnI31loFyR5Pw==", + "signatures": [ + { + "sig": "MEUCIDZpNIr69qKIBkyMrijBzDWRWTScgfjE8n7oofK0lRiiAiEA9EKMvBJ70KuEhn5kPCntp9uqBQNGT8yJNhTp2OTHPcs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.6.2": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.6.2", "author": { "name": "Caolan McMahon" }, - "version": "0.6.2", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.6.2", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -1955,54 +2225,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.6.2", "dist": { "shasum": "41fd038a3812c0a8bc1842ecf08ba63eb0392bef", - "tarball": "https://registry.npmjs.org/async/-/async-0.6.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.6.2.tgz", + "integrity": "sha512-fWbn+CMBgn1KOL/UvYdsmH+gMN/fW+lzAoadt4VUFvB/t0pB4aY9RfRCCvhoA58jocHyYm5TGbeuZsPc9i1Cpg==", + "signatures": [ + { + "sig": "MEUCIQDNu32pZbP5qDcT8VwlbgJRnJDTaLHhKhpmcxcEMXsQTwIgBb/jCf8wfqGbkb/rBiArwx7jK3PvPthNy3NOQfeKfPc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.7.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.7.0", "author": { "name": "Caolan McMahon" }, - "version": "0.7.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.7.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -2012,54 +2289,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.7.0", "dist": { "shasum": "4429e0e62f5de0a54f37458c49f0b897eb52ada5", - "tarball": "https://registry.npmjs.org/async/-/async-0.7.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.7.0.tgz", + "integrity": "sha512-9GReTNJtSSP+tNXZhlXuzPrRVlhH7Abwgf9qsV4NVLiChZpzFKvWGIwAss+uOUlsLjEnQbbVX1ERDTpjM5EmQg==", + "signatures": [ + { + "sig": "MEUCIQDI5W3AN6hMKHBiG1WI3R8Rfn17Wyr4FdIuucwf49ugiAIgTP2hXi7TzsOqxVIPtISFkduvc9jcBn56X6CXkiHquNA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.8.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.8.0", "author": { "name": "Caolan McMahon" }, - "version": "0.8.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.8.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -2069,54 +2353,61 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.8.0", "dist": { "shasum": "ee65ec77298c2ff1456bc4418a052d0f06435112", - "tarball": "https://registry.npmjs.org/async/-/async-0.8.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.8.0.tgz", + "integrity": "sha512-M2LC+aqW7VetFcnFiYEbjUsmASW6GSsMNkRzhUzwHoQNfNIRClf5GLgozwuJ4tAMLAfjywrKyQ2wWiODJivQmg==", + "signatures": [ + { + "sig": "MEYCIQDWI8ZXzWzCEMMceuswU5bUv40LoGHeBzQDDT29BGvDXQIhAJPd/aa6G08LJuh331MG6huDJDwgbUBQ13wkOnuS+tMI", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "0.9.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "./lib/async", + "version": "0.9.0", "author": { "name": "Caolan McMahon" }, - "version": "0.9.0", - "repository": { - "type": "git", - "url": "https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "licenses": [ + "_id": "async@0.9.0", + "maintainers": [ { - "type": "MIT", - "url": "https://github.com/caolan/async/raw/master/LICENSE" + "name": "caolan", + "email": "caolan@caolanmcmahon.com" } ], - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "homepage": "https://github.com/caolan/async", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -2126,36 +2417,47 @@ "LICENSE" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, - "homepage": "https://github.com/caolan/async", - "_id": "async@0.9.0", "dist": { "shasum": "ac3613b1da9bed1b47510bb4651b8931e47146c7", - "tarball": "https://registry.npmjs.org/async/-/async-0.9.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.9.0.tgz", + "integrity": "sha512-XQJ3MipmCHAIBBMFfu2jaSetneOrXbSyyqeU3Nod867oNOpS+i9FEms5PWgjMxSgBybRf2IVVLtr1YfrDO+okg==", + "signatures": [ + { + "sig": "MEUCIQCI1Cj5C8kd39ibGV6rt+zZpzjwFzuunfoZqqAk851UagIgBgDBJ0HJybPXHn5QnRkRkOz/qWSr8CUrb2e7Dl6s2GA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "./lib/async", "_from": ".", - "_npmVersion": "1.4.3", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "caolan", "email": "caolan.mcmahon@gmail.com" }, - "maintainers": [ + "licenses": [ { - "name": "caolan", - "email": "caolan@caolanmcmahon.com" + "url": "https://github.com/caolan/async/raw/master/LICENSE", + "type": "MIT" } ], - "directories": {} - }, - "0.9.2": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" + "repository": { + "url": "https://github.com/caolan/async.git", + "type": "git" }, + "_npmVersion": "1.4.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "devDependencies": { + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } + }, + "0.9.2": { + "name": "async", "version": "0.9.2", "keywords": [ "async", @@ -2163,20 +2465,25 @@ "utility", "module" ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@0.9.2", + "maintainers": [ + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + } + ], + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0", - "lodash": ">=2.4.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2188,12 +2495,21 @@ "Utilities" ] }, - "scripts": { - "test": "nodeunit test/test-async.js" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "aea74d5e61c1f899613bf64bda66d4c78f2fd17d", + "tarball": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==", + "signatures": [ + { + "sig": "MEUCIQCkWWXOG+S4KGmObeljhtJc2ZuIFC1Ri+ndBZR42cltdwIgcmQGu0VSb+7XvZkQZiGuPUraNudGgruKeF220pmenKE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2204,40 +2520,33 @@ "tests" ] }, - "gitHead": "de3a16091d5125384eff4a54deb3998b13c3814c", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@0.9.2", - "_shasum": "aea74d5e61c1f899613bf64bda66d4c78f2fd17d", "_from": ".", - "_npmVersion": "2.9.0", - "_nodeVersion": "2.0.1", + "_shasum": "aea74d5e61c1f899613bf64bda66d4c78f2fd17d", + "gitHead": "de3a16091d5125384eff4a54deb3998b13c3814c", + "scripts": { + "test": "nodeunit test/test-async.js" + }, "_npmUser": { "name": "beaugunderson", "email": "beau@beaugunderson.com" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan.mcmahon@gmail.com" - }, - { - "name": "beaugunderson", - "email": "beau@beaugunderson.com" - } - ], - "dist": { - "shasum": "aea74d5e61c1f899613bf64bda66d4c78f2fd17d", - "tarball": "https://registry.npmjs.org/async/-/async-0.9.2.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "directories": {} + "_npmVersion": "2.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "2.0.1", + "devDependencies": { + "lodash": ">=2.4.1", + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" + } }, "1.0.0": { "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, "version": "1.0.0", "keywords": [ "async", @@ -2245,22 +2554,29 @@ "utility", "module" ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@1.0.0", + "maintainers": [ + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + } + ], + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "~1.0.0", - "jshint": "~2.7.0", - "lodash": ">=2.4.1", - "mkdirp": "~0.5.1", - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2272,13 +2588,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "f8fc04ca3a13784ade9e1641af98578cfbd647a9", + "tarball": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", + "integrity": "sha512-5mO7DX4CbJzp9zjaFXusQQ4tzKJARjNB1Ih1pVBi8wkbmXy/xzIDgEMXxWePLzt2OdFwaxfneIlT1nCiXubrPQ==", + "signatures": [ + { + "sig": "MEQCIHgFN8rHIvkBBZOPON2hronH4CqbQEjZrtNpEhKfrca8AiBcyJzPNNsUJ+9M+IFH4PaQUd7JbvsI+60rmYV+pREY6w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2289,17 +2613,48 @@ "tests" ] }, - "gitHead": "cfa81645c9cb4011b23d1d1a445ad855762568e0", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.0.0", - "_shasum": "f8fc04ca3a13784ade9e1641af98578cfbd647a9", "_from": ".", - "_npmVersion": "2.9.1", - "_nodeVersion": "0.12.3", + "_shasum": "f8fc04ca3a13784ade9e1641af98578cfbd647a9", + "gitHead": "cfa81645c9cb4011b23d1d1a445ad855762568e0", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.9.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "0.12.3", + "devDependencies": { + "jshint": "~2.7.0", + "lodash": ">=2.4.1", + "mkdirp": "~0.5.1", + "nodeunit": ">0.0.0", + "benchmark": "~1.0.0", + "uglify-js": "1.2.x" + } + }, + "1.1.0": { + "name": "async", + "version": "1.1.0", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.1.0", "maintainers": [ { "name": "caolan", @@ -2314,45 +2669,10 @@ "email": "alexander.early@gmail.com" } ], - "dist": { - "shasum": "f8fc04ca3a13784ade9e1641af98578cfbd647a9", - "tarball": "https://registry.npmjs.org/async/-/async-1.0.0.tgz" - }, - "directories": {} - }, - "1.1.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.1.0", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", - "jshint": "~2.7.0", - "lodash": ">=2.4.1", - "mkdirp": "~0.5.1", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2364,15 +2684,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "2b33ea3e87fc0c5ed624f9e31a9c902c022da09b", + "tarball": "https://registry.npmjs.org/async/-/async-1.1.0.tgz", + "integrity": "sha512-oDfw1XAvqquMU5ffBq/8EbRPsQ8caU5im+YD1cwvYUNzs2u5IKm1+dE7n3IXyyNPIeCEMcM7Wg42CqrZCFjIdA==", + "signatures": [ + { + "sig": "MEYCIQDmpxLOAJAPzA6e9gy45kT+yHw3wS8I/OdFw23udDh/SwIhAK2J2JMAAnCzByvdUqwU9S23uZhCUSv7AlEHbqnP4yal", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2383,17 +2709,53 @@ "tests" ] }, - "gitHead": "88906aa60d407e12185139e86204aa63aa6faf28", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.1.0", - "_shasum": "2b33ea3e87fc0c5ed624f9e31a9c902c022da09b", "_from": ".", - "_npmVersion": "2.9.1", - "_nodeVersion": "0.12.3", + "_shasum": "2b33ea3e87fc0c5ed624f9e31a9c902c022da09b", + "gitHead": "88906aa60d407e12185139e86204aa63aa6faf28", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.9.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "0.12.3", + "devDependencies": { + "nyc": "^2.1.0", + "yargs": "~3.9.1", + "jshint": "~2.7.0", + "lodash": ">=2.4.1", + "mkdirp": "~0.5.1", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" + } + }, + "1.2.0": { + "name": "async", + "version": "1.2.0", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.2.0", "maintainers": [ { "name": "caolan", @@ -2408,44 +2770,9 @@ "email": "alexander.early@gmail.com" } ], - "dist": { - "shasum": "2b33ea3e87fc0c5ed624f9e31a9c902c022da09b", - "tarball": "https://registry.npmjs.org/async/-/async-1.1.0.tgz" - }, - "directories": {} - }, - "1.2.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.2.0", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", - "jshint": "~2.7.0", - "lodash": ">=2.4.1", - "mkdirp": "~0.5.1", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, "jam": { "main": "lib/async.js", @@ -2458,15 +2785,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "9029580f93d05a7cab24f502c84707ac3ef57b10", + "tarball": "https://registry.npmjs.org/async/-/async-1.2.0.tgz", + "integrity": "sha512-wqBtHDvCb1m5eWz5w8FWMeghRk46hdwlp+MrLfzPDnjy9cgpkMYNdN0PXlC5rnCXkeZHOoR9prohE/D2TTUVtA==", + "signatures": [ + { + "sig": "MEUCIQCmuj8bYQfpaBiDlPkDuCmot5waarg/clbcHWkCOxQXWwIgXMOFbF8MFfMX0dEqGSP49NUwSMfZ2Qx70BmDd4XR8CY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2477,17 +2810,53 @@ "tests" ] }, - "gitHead": "ff3bd90be6b862a11d0e4a11eb72a6985c26c5af", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.2.0", - "_shasum": "9029580f93d05a7cab24f502c84707ac3ef57b10", "_from": ".", - "_npmVersion": "2.9.0", - "_nodeVersion": "2.0.2", + "_shasum": "9029580f93d05a7cab24f502c84707ac3ef57b10", + "gitHead": "ff3bd90be6b862a11d0e4a11eb72a6985c26c5af", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "2.0.2", + "devDependencies": { + "nyc": "^2.1.0", + "yargs": "~3.9.1", + "jshint": "~2.7.0", + "lodash": ">=2.4.1", + "mkdirp": "~0.5.1", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" + } + }, + "1.1.1": { + "name": "async", + "version": "1.1.1", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.1.1", "maintainers": [ { "name": "caolan", @@ -2502,45 +2871,10 @@ "email": "alexander.early@gmail.com" } ], - "dist": { - "shasum": "9029580f93d05a7cab24f502c84707ac3ef57b10", - "tarball": "https://registry.npmjs.org/async/-/async-1.2.0.tgz" - }, - "directories": {} - }, - "1.1.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.1.1", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", - "jshint": "~2.7.0", - "lodash": ">=2.4.1", - "mkdirp": "~0.5.1", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2552,15 +2886,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "753cb13df043ff08d810e4418d312d646ee1bbea", + "tarball": "https://registry.npmjs.org/async/-/async-1.1.1.tgz", + "integrity": "sha512-b2Jrm7t3GwqLqwm5abOsOx1o4uGqFvP3fpoEwkIqe6pANfSYCNVUxMXCY2N4yJjmjthfnsA65cftQdlXo6qohQ==", + "signatures": [ + { + "sig": "MEUCIA4okovwMu7jm5hb58WIiQn16CDSgKbPKp8KTxQBO11jAiEAnHE7VhcDz67WSf/3uPjYDCqXx25/KIAETjlUCqRPFg4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2571,17 +2911,53 @@ "tests" ] }, - "gitHead": "46cbdfd5324be57f15481bee32ad0fda507171b0", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.1.1", - "_shasum": "753cb13df043ff08d810e4418d312d646ee1bbea", "_from": ".", - "_npmVersion": "2.9.0", - "_nodeVersion": "2.0.2", + "_shasum": "753cb13df043ff08d810e4418d312d646ee1bbea", + "gitHead": "46cbdfd5324be57f15481bee32ad0fda507171b0", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "2.0.2", + "devDependencies": { + "nyc": "^2.1.0", + "yargs": "~3.9.1", + "jshint": "~2.7.0", + "lodash": ">=2.4.1", + "mkdirp": "~0.5.1", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" + } + }, + "1.2.1": { + "name": "async", + "version": "1.2.1", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.2.1", "maintainers": [ { "name": "caolan", @@ -2596,45 +2972,10 @@ "email": "alexander.early@gmail.com" } ], - "dist": { - "shasum": "753cb13df043ff08d810e4418d312d646ee1bbea", - "tarball": "https://registry.npmjs.org/async/-/async-1.1.1.tgz" - }, - "directories": {} - }, - "1.2.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.2.1", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", - "jshint": "~2.7.0", - "lodash": ">=2.4.1", - "mkdirp": "~0.5.1", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2646,15 +2987,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "a4816a17cd5ff516dfa2c7698a453369b9790de0", + "tarball": "https://registry.npmjs.org/async/-/async-1.2.1.tgz", + "integrity": "sha512-UMnr1f7iakrFTqRSvkCUv3Fs7dMHN5XYWXLlzmKUMhJpOYlCxgI/zQd6kYnEuxhCAULUfP0jtMSiTbpGNbhskw==", + "signatures": [ + { + "sig": "MEQCICvGzCv7B9U3R/arI7yXrrddlCOoxRXHAHmNdn+cV4QLAiBzwQ5PubG+z6dyy43ZzZ4SDy5pT2Xk+80HkpLo8h/Lhg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2665,71 +3012,71 @@ "tests" ] }, - "gitHead": "b66e85d1cca8c8056313253f22d18f571e7001d2", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.2.1", - "_shasum": "a4816a17cd5ff516dfa2c7698a453369b9790de0", "_from": ".", - "_npmVersion": "2.9.0", - "_nodeVersion": "2.0.2", + "_shasum": "a4816a17cd5ff516dfa2c7698a453369b9790de0", + "gitHead": "b66e85d1cca8c8056313253f22d18f571e7001d2", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan.mcmahon@gmail.com" - }, - { - "name": "beaugunderson", - "email": "beau@beaugunderson.com" - }, - { - "name": "aearly", - "email": "alexander.early@gmail.com" - } - ], - "dist": { - "shasum": "a4816a17cd5ff516dfa2c7698a453369b9790de0", - "tarball": "https://registry.npmjs.org/async/-/async-1.2.1.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "directories": {} - }, - "1.3.0": { - "name": "async", + "_npmVersion": "2.9.0", "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.3.0", - "keywords": [ - "async", - "callback", + "directories": {}, + "_nodeVersion": "2.0.2", + "devDependencies": { + "nyc": "^2.1.0", + "yargs": "~3.9.1", + "jshint": "~2.7.0", + "lodash": ">=2.4.1", + "mkdirp": "~0.5.1", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" + } + }, + "1.3.0": { + "name": "async", + "version": "1.3.0", + "keywords": [ + "async", + "callback", "utility", "module" ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@1.3.0", + "maintainers": [ + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + } + ], + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", - "jshint": "~2.8.0", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2741,15 +3088,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "a6f1631e8a595a663496d0a5586bd12007d4871d", + "tarball": "https://registry.npmjs.org/async/-/async-1.3.0.tgz", + "integrity": "sha512-JsebKhdkyE+QlWiFF+Mo9n2YBiFXkUNNLN8eLJqowTxTiFV70hDdgldy8Y+muTuOVeGNyOFawqR2zLqPquLyOg==", + "signatures": [ + { + "sig": "MEYCIQDsFqIyuGAFYlhiMIELfxFzyskLHz4WENjz+hkcdkAUSgIhANSEUAj0KN9DW/mlHoU53hzDzk+m2z+t2Tddw418lXOl", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2760,17 +3113,54 @@ "tests" ] }, - "gitHead": "71fa2638973dafd8761fa5457c472a312cc820fe", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.3.0", - "_shasum": "a6f1631e8a595a663496d0a5586bd12007d4871d", "_from": ".", - "_npmVersion": "2.9.1", - "_nodeVersion": "0.12.3", + "_shasum": "a6f1631e8a595a663496d0a5586bd12007d4871d", + "gitHead": "71fa2638973dafd8761fa5457c472a312cc820fe", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.9.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "0.12.3", + "devDependencies": { + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0" + } + }, + "1.4.0": { + "name": "async", + "version": "1.4.0", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.4.0", "maintainers": [ { "name": "caolan", @@ -2783,53 +3173,16 @@ { "name": "aearly", "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" } ], - "dist": { - "shasum": "a6f1631e8a595a663496d0a5586bd12007d4871d", - "tarball": "https://registry.npmjs.org/async/-/async-1.3.0.tgz" - }, - "directories": {} - }, - "1.4.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.4.0", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2841,15 +3194,21 @@ "Utilities" ] }, - "scripts": { - "test": "npm run-script lint && nodeunit test/test-async.js", - "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "35f86f83c59e0421d099cd9a91d8278fb578c00d", + "tarball": "https://registry.npmjs.org/async/-/async-1.4.0.tgz", + "integrity": "sha512-Zlt2pNm/fE+7BhKRkQrRhP0FXkQ6sS4amtfDhra4Q+VTrQJPFmDPxk15h+6nvlR6nWK7C1QbvkvsCO1auCbtUQ==", + "signatures": [ + { + "sig": "MEQCIB+MBmWTra9R7Lh0LkMBNndjARDw7uKQ22HyMJqLsnImAiADRi0rM8Yrpr0P1OQYVqVs9F7xjgx2uGunYtLm5uvu0A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2860,21 +3219,59 @@ "tests" ] }, - "gitHead": "5bfcd31c72e003f96df025e75753463da61f49f9", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.4.0", - "_shasum": "35f86f83c59e0421d099cd9a91d8278fb578c00d", "_from": ".", - "_npmVersion": "2.13.0", - "_nodeVersion": "2.4.0", + "_shasum": "35f86f83c59e0421d099cd9a91d8278fb578c00d", + "gitHead": "5bfcd31c72e003f96df025e75753463da61f49f9", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && nodeunit test/test-async.js", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" + }, "_npmUser": { "name": "megawac", "email": "megawac@gmail.com" }, - "dist": { - "shasum": "35f86f83c59e0421d099cd9a91d8278fb578c00d", - "tarball": "https://registry.npmjs.org/async/-/async-1.4.0.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.13.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "2.4.0", + "devDependencies": { + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "es6-promise": "^2.3.0", + "native-promise-only": "^0.8.0-a" + } + }, + "1.4.1": { + "name": "async", + "version": "1.4.1", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@1.4.1", "maintainers": [ { "name": "caolan", @@ -2893,54 +3290,10 @@ "email": "megawac@gmail.com" } ], - "directories": {} - }, - "1.4.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "author": { - "name": "Caolan McMahon" - }, - "version": "1.4.1", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -2952,19 +3305,21 @@ "Utilities" ] }, - "scripts": { - "mocha-node-test": "mocha mocha_test/", - "mocha-browser-test": "karma start", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", - "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "1bc4895271551e524fd7fb338ddebad1a1440b74", + "tarball": "https://registry.npmjs.org/async/-/async-1.4.1.tgz", + "integrity": "sha512-Pbd2/QmBlQ6/fTzKC91ATKCTM6W+/oZ8/s9z2qk8NGXtTktrrR8mgK2Dpw1dJmuysPs92f/Dp0lZDru4RzqmOw==", + "signatures": [ + { + "sig": "MEUCIQC6xo5qUNhtgsTyYCOXWVBDW7UXIvQu3IG9FACmJv6ZmgIgXcHZRlGbiiUxjXFmuwbJNnogK7jrfMtNlST6edE26So=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -2975,17 +3330,70 @@ "tests" ] }, - "gitHead": "2daeb2cc898ca71d70fd664d0c1ef1dd1663325c", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.4.1", - "_shasum": "1bc4895271551e524fd7fb338ddebad1a1440b74", "_from": ".", - "_npmVersion": "2.10.1", - "_nodeVersion": "0.12.4", + "_shasum": "1bc4895271551e524fd7fb338ddebad1a1440b74", + "gitHead": "2daeb2cc898ca71d70fd664d0c1ef1dd1663325c", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.10.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "0.12.4", + "devDependencies": { + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "chai": "^3.1.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" + } + }, + "1.4.2": { + "name": "async", + "version": "1.4.2", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.4.2", "maintainers": [ { "name": "caolan", @@ -3004,61 +3412,10 @@ "email": "megawac@gmail.com" } ], - "dist": { - "shasum": "1bc4895271551e524fd7fb338ddebad1a1440b74", - "tarball": "https://registry.npmjs.org/async/-/async-1.4.1.tgz" - }, - "directories": {} - }, - "1.4.2": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "files": [ - "lib" - ], - "author": { - "name": "Caolan McMahon" - }, - "version": "1.4.2", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -3070,19 +3427,21 @@ "Utilities" ] }, - "scripts": { - "mocha-node-test": "mocha mocha_test/", - "mocha-browser-test": "karma start", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", - "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab", + "tarball": "https://registry.npmjs.org/async/-/async-1.4.2.tgz", + "integrity": "sha512-O4fvy4JjdS0Q8MYH4jOODxJdXGbZ61eqfXdmfFDloHSnWoggxkn/+xWbh2eQbmQ6pJNliaravcTK1iQMpW9k4Q==", + "signatures": [ + { + "sig": "MEUCICtAw7kSoWAyUhpmg//x7m4Ak8Z/qwX3kx4NLEg/L6oVAiEA0jGUxxDj3fLnppE9VACV2OF1npNIMSZfmf6Hjc3DbWI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -3093,21 +3452,73 @@ "tests" ] }, - "gitHead": "92f78aebad222d60c13e4299c0e723f2fe2d6611", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.4.2", - "_shasum": "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab", "_from": ".", - "_npmVersion": "2.9.0", - "_nodeVersion": "2.0.1", + "files": [ + "lib" + ], + "_shasum": "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab", + "gitHead": "92f78aebad222d60c13e4299c0e723f2fe2d6611", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "megawac", "email": "megawac@gmail.com" }, - "dist": { - "shasum": "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab", - "tarball": "https://registry.npmjs.org/async/-/async-1.4.2.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "2.0.1", + "devDependencies": { + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "chai": "^3.1.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" + } + }, + "1.5.0": { + "name": "async", + "version": "1.5.0", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@1.5.0", "maintainers": [ { "name": "caolan", @@ -3126,60 +3537,10 @@ "email": "megawac@gmail.com" } ], - "directories": {} - }, - "1.5.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "files": [ - "lib", - "dist/async.js", - "dist/async.min.js" - ], - "author": { - "name": "Caolan McMahon" - }, - "version": "1.5.0", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", - "semver": "^4.3.6", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -3191,19 +3552,21 @@ "Utilities" ] }, - "scripts": { - "mocha-node-test": "mocha mocha_test/", - "mocha-browser-test": "karma start", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", - "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "2796642723573859565633fc6274444bee2f8ce3", + "tarball": "https://registry.npmjs.org/async/-/async-1.5.0.tgz", + "integrity": "sha512-m9nMwCtLtz29LszVaR0q/FqsJWkrxVoQL95p7JU0us7qUx4WEcySQgwvuneYSGVyvirl81gz7agflS3V1yW14g==", + "signatures": [ + { + "sig": "MEQCICqcezv7RJ9tBMQVHrLhsHo3y+pOQjWM2MhUp3Hceye5AiAbvNW4ykTwUE9c0lRHDENmnzgazYJ1F48tENbq68yGMQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -3214,17 +3577,76 @@ "tests" ] }, - "gitHead": "621f13805aa326865b85dbbf7128baf7146ab976", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.5.0", - "_shasum": "2796642723573859565633fc6274444bee2f8ce3", "_from": ".", - "_npmVersion": "2.14.2", - "_nodeVersion": "0.10.26", + "files": [ + "lib", + "dist/async.js", + "dist/async.min.js" + ], + "_shasum": "2796642723573859565633fc6274444bee2f8ce3", + "gitHead": "621f13805aa326865b85dbbf7128baf7146ab976", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "2.14.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "0.10.26", + "devDependencies": { + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "chai": "^3.1.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", + "semver": "^4.3.6", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" + } + }, + "1.5.1": { + "name": "async", + "version": "1.5.1", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.5.1", "maintainers": [ { "name": "caolan", @@ -3243,64 +3665,10 @@ "email": "megawac@gmail.com" } ], - "dist": { - "shasum": "2796642723573859565633fc6274444bee2f8ce3", - "tarball": "https://registry.npmjs.org/async/-/async-1.5.0.tgz" - }, - "directories": {} - }, - "1.5.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "main": "lib/async.js", - "files": [ - "lib", - "dist/async.js", - "dist/async.min.js" - ], - "author": { - "name": "Caolan McMahon" - }, - "version": "1.5.1", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "license": "MIT", - "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", - "semver": "^4.3.6", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, "jam": { "main": "lib/async.js", "include": [ @@ -3312,19 +3680,21 @@ "Utilities" ] }, - "scripts": { - "mocha-node-test": "mocha mocha_test/", - "mocha-browser-test": "karma start", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", - "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, "spm": { "main": "lib/async.js" }, + "dist": { + "shasum": "b05714f4b11b357bf79adaffdd06da42d0766c10", + "tarball": "https://registry.npmjs.org/async/-/async-1.5.1.tgz", + "integrity": "sha512-xpP8QJKDlqOhumIYy3wTwSAT6Pyw6+dK3KEG5JYq6dCY6HXP+Ykh3gnj+JI11HxnAjFQlG7ovtHmiukkTYHIkg==", + "signatures": [ + { + "sig": "MEQCIFMozfdH0IXik7NAi3lHTsOqv7lwAns80kx4+Xf/W57DAiAuMlK/LH2x3TLqDQ8If/r6hNzVyEZXugSL4Atzk+69rg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "lib/async.js", "volo": { "main": "lib/async.js", "ignore": [ @@ -3335,17 +3705,76 @@ "tests" ] }, - "gitHead": "625a2e11fa0604a52aaec57acb6075c49325f4a9", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.5.1", - "_shasum": "b05714f4b11b357bf79adaffdd06da42d0766c10", "_from": ".", - "_npmVersion": "3.5.2", - "_nodeVersion": "4.2.1", + "files": [ + "lib", + "dist/async.js", + "dist/async.min.js" + ], + "_shasum": "b05714f4b11b357bf79adaffdd06da42d0766c10", + "gitHead": "625a2e11fa0604a52aaec57acb6075c49325f4a9", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "3.5.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.2.1", + "devDependencies": { + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "chai": "^3.1.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", + "semver": "^4.3.6", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" + } + }, + "1.5.2": { + "name": "async", + "version": "1.5.2", + "keywords": [ + "async", + "callback", + "utility", + "module" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@1.5.2", "maintainers": [ { "name": "caolan", @@ -3364,109 +3793,116 @@ "email": "megawac@gmail.com" } ], + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "jam": { + "main": "lib/async.js", + "include": [ + "lib/async.js", + "README.md", + "LICENSE" + ], + "categories": [ + "Utilities" + ] + }, + "spm": { + "main": "lib/async.js" + }, "dist": { - "shasum": "b05714f4b11b357bf79adaffdd06da42d0766c10", - "tarball": "https://registry.npmjs.org/async/-/async-1.5.1.tgz" + "shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a", + "tarball": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", + "signatures": [ + { + "sig": "MEYCIQCT28L/dnB/p+z29NniEsMxyS80ae3dphdsymEpvzPBswIhAL1EgTCB4B19n55ng3u/KOL2ql5HT+rOe4zwl2AP3iY3", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "1.5.2": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", "main": "lib/async.js", + "volo": { + "main": "lib/async.js", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] + }, + "_from": ".", "files": [ "lib", "dist/async.js", "dist/async.min.js" ], - "author": { - "name": "Caolan McMahon" - }, - "version": "1.5.2", - "keywords": [ - "async", - "callback", - "utility", - "module" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a", + "gitHead": "9ab5c67b7cb3a4c3dad4a2d4552a2f6775545d6c", + "scripts": { + "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/", + "mocha-browser-test": "karma start" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "license": "MIT", + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "3.5.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.2.3", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" - }, - "jam": { - "main": "lib/async.js", - "include": [ - "lib/async.js", - "README.md", - "LICENSE" - ], - "categories": [ - "Utilities" - ] - }, - "scripts": { - "mocha-node-test": "mocha mocha_test/", - "mocha-browser-test": "karma start", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", - "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls" - }, - "spm": { - "main": "lib/async.js" - }, - "volo": { - "main": "lib/async.js", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] - }, - "gitHead": "9ab5c67b7cb3a4c3dad4a2d4552a2f6775545d6c", - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@1.5.2", - "_shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a", - "_from": ".", - "_npmVersion": "3.5.2", - "_nodeVersion": "4.2.3", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" + } + }, + "2.0.0-alpha.0": { + "name": "async", + "version": "2.0.0-alpha.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@2.0.0-alpha.0", "maintainers": [ { "name": "caolan", @@ -3485,83 +3921,10 @@ "email": "megawac@gmail.com" } ], - "dist": { - "shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a", - "tarball": "https://registry.npmjs.org/async/-/async-1.5.2.tgz" - }, - "directories": {} - }, - "2.0.0-alpha.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-alpha.0", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.3.0" - }, - "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.3", - "gulp": "~3.9.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", - "rimraf": "^2.5.0", - "rollup": "^0.25.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", - "semver": "^4.3.6", - "uglify-js": "~2.4.0", - "vinyl-buffer": "~1.0.0", - "vinyl-source-stream": "~1.1.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test" - }, - "license": "MIT", "jam": { "main": "dist/async.js", "include": [ @@ -3576,6 +3939,18 @@ "spm": { "main": "dist/async.js" }, + "dist": { + "shasum": "72acf81eee0d641e05af3cb16953863ec8b23fe1", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-alpha.0.tgz", + "integrity": "sha512-GInjvip6f39pJDApsq1NCGlOyAfTFFzH/mpLa5ZY/HGBK5Cp64HvVKAt2DrAA0DH+oEb98mKfAzjqBpt+YhSUw==", + "signatures": [ + { + "sig": "MEUCIBjKpqA2R33d1UcBgctaSbwaS0BpH2l8HoxDtErdgFL9AiEA4dW5stfTE6cvNJva0LyKI/ZoCTMuHZzi2FPo/t5i9Is=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "dist/async.js", "volo": { "main": "dist/async.js", "ignore": [ @@ -3586,115 +3961,110 @@ "tests" ] }, - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@2.0.0-alpha.0", - "_shasum": "72acf81eee0d641e05af3cb16953863ec8b23fe1", "_from": ".", - "_npmVersion": "3.8.1", - "_nodeVersion": "4.4.0", + "_shasum": "72acf81eee0d641e05af3cb16953863ec8b23fe1", + "scripts": { + "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, - "dist": { - "shasum": "72acf81eee0d641e05af3cb16953863ec8b23fe1", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-alpha.0.tgz" - }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan.mcmahon@gmail.com" - }, - { - "name": "beaugunderson", - "email": "beau@beaugunderson.com" - }, - { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - { - "name": "megawac", - "email": "megawac@gmail.com" - } - ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-alpha.0.tgz_1458344817880_0.7943291163537651" - }, - "directories": {} - }, - "2.0.0-rc.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-rc.1", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.8.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.4.0", "dependencies": { "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.3", "gulp": "~3.9.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.3", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "~1.0.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "~1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test" + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-alpha.0.tgz_1458344817880_0.7943291163537651", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.0.0-rc.1": { + "name": "async", + "version": "2.0.0-rc.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", + "_id": "async@2.0.0-rc.1", + "maintainers": [ + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + } + ], + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, "jam": { "main": "dist/async.js", "include": [ @@ -3709,6 +4079,18 @@ "spm": { "main": "dist/async.js" }, + "dist": { + "shasum": "5298bbe0317312a3c9314e6d7cf14f765fb48735", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.1.tgz", + "integrity": "sha512-17YWNSP5vMam9PBEqUiEWVAhACOpF17hk9NcrC1NsWphEBUbqWBM+ctgCFfSHDeJcoBZOCkOJue7Wyy8A/1X6w==", + "signatures": [ + { + "sig": "MEYCIQDtKCnRwOuLyys7Iy8Y0dWKWwjddAFhqVwBPIHlO6taSgIhAO0PSCDSmBIibV/P4FIQppQnfyM4vzwLSlGhkXxtyQyr", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "dist/async.js", "volo": { "main": "dist/async.js", "ignore": [ @@ -3719,20 +4101,88 @@ "tests" ] }, - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@2.0.0-rc.1", - "_shasum": "5298bbe0317312a3c9314e6d7cf14f765fb48735", "_from": ".", - "_npmVersion": "3.8.1", - "_nodeVersion": "4.4.0", + "_shasum": "5298bbe0317312a3c9314e6d7cf14f765fb48735", + "scripts": { + "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, - "dist": { - "shasum": "5298bbe0317312a3c9314e6d7cf14f765fb48735", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.1.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "3.8.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.4.0", + "dependencies": { + "lodash": "^4.3.0" + }, + "devDependencies": { + "nyc": "^2.1.0", + "chai": "^3.1.0", + "gulp": "~3.9.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "rimraf": "^2.5.0", + "rollup": "^0.25.0", + "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.3", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "vinyl-buffer": "~1.0.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "vinyl-source-stream": "~1.1.0", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-rc.1.tgz_1458345156927_0.9829358148854226", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.0.0-rc.2": { + "name": "async", + "version": "2.0.0-rc.2", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@2.0.0-rc.2", "maintainers": [ { "name": "caolan", @@ -3751,83 +4201,10 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-rc.1.tgz_1458345156927_0.9829358148854226" - }, - "directories": {} - }, - "2.0.0-rc.2": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-rc.2", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.3.0" - }, - "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.3", - "gulp": "~3.9.0", - "jscs": "^1.13.1", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", - "rimraf": "^2.5.0", - "rollup": "^0.25.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", - "semver": "^4.3.6", - "uglify-js": "~2.4.0", - "vinyl-buffer": "~1.0.0", - "vinyl-source-stream": "~1.1.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test" - }, - "license": "MIT", "jam": { "main": "dist/async.js", "include": [ @@ -3842,6 +4219,18 @@ "spm": { "main": "dist/async.js" }, + "dist": { + "shasum": "6fc56eec72574ebfe43ad30aefef6206f1ad2494", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.2.tgz", + "integrity": "sha512-3DwnVa+sifQB22NIEPOHR7YeCTSvX3H63Sfytjt26V/EF0rmAyBw1QQRgUe2rjz7X+c1ilxBVXxFVv9T0/OBfw==", + "signatures": [ + { + "sig": "MEUCIFV6Zxi9/aKh+oh6x28LyRtuv5plHaKvXqDOJK2xzEfrAiEAkgvXnOxgGAaEdoRx/2X18W1ih5tvERz8pLO42bt/bk8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "dist/async.js", "volo": { "main": "dist/async.js", "ignore": [ @@ -3852,151 +4241,88 @@ "tests" ] }, - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@2.0.0-rc.2", - "_shasum": "6fc56eec72574ebfe43ad30aefef6206f1ad2494", "_from": ".", - "_npmVersion": "3.8.1", - "_nodeVersion": "4.4.0", + "_shasum": "6fc56eec72574ebfe43ad30aefef6206f1ad2494", + "scripts": { + "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ gulpfile.js karma.conf.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, - "dist": { - "shasum": "6fc56eec72574ebfe43ad30aefef6206f1ad2494", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.2.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan.mcmahon@gmail.com" - }, - { - "name": "beaugunderson", - "email": "beau@beaugunderson.com" - }, - { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - { - "name": "megawac", - "email": "megawac@gmail.com" - } - ], - "_npmOperationalInternal": { - "host": "packages-13-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-rc.2.tgz_1458790789053_0.13189413794316351" - }, - "directories": {} - }, - "2.0.0-rc.3": { - "name": "async", + "_npmVersion": "3.8.1", "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-rc.3", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "directories": {}, + "_nodeVersion": "4.4.0", "dependencies": { "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", + "gulp": "~3.9.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.3", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "vinyl-buffer": "~1.0.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "vinyl-source-stream": "~1.1.0", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-node-test" + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-rc.2.tgz_1458790789053_0.13189413794316351", + "host": "packages-13-west.internal.npmjs.com" + } + }, + "2.0.0-rc.3": { + "name": "async", + "version": "2.0.0-rc.3", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", - "jam": { - "main": "dist/async.js", - "include": [ - "dist/async.js", - "README.md", - "LICENSE" - ], - "categories": [ - "Utilities" - ] - }, - "spm": { - "main": "dist/async.js" - }, - "volo": { - "main": "dist/async.js", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] - }, - "homepage": "https://github.com/caolan/async#readme", "_id": "async@2.0.0-rc.3", - "_shasum": "1fae1160594dd47dbe5431d4726d66b10f374d89", - "_from": ".", - "_npmVersion": "3.8.3", - "_nodeVersion": "4.4.1", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "1fae1160594dd47dbe5431d4726d66b10f374d89", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.3.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4015,82 +4341,10 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-rc.3.tgz_1460063486663_0.06838028854690492" - }, - "directories": {} - }, - "2.0.0-rc.4": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-rc.4", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.3.0" - }, - "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", - "jscs": "^1.13.1", - "jscs-jsdoc": "^1.3.2", - "jshint": "~2.8.0", - "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", - "rimraf": "^2.5.0", - "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", - "semver": "^4.3.6", - "uglify-js": "~2.4.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "nodeunit-test": "nodeunit test/test-async.js", - "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-node-test" - }, - "license": "MIT", "jam": { "main": "dist/async.js", "include": [ @@ -4105,6 +4359,18 @@ "spm": { "main": "dist/async.js" }, + "dist": { + "shasum": "1fae1160594dd47dbe5431d4726d66b10f374d89", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.3.tgz", + "integrity": "sha512-rWW6LL1PHDEiN0uJ1b3xKO2AiYUWmWio0Jvu49Fy0DKPn3IMCrF+oYvD1/7Vpdc8jgAfmuO5593jCrk2+Ws+DQ==", + "signatures": [ + { + "sig": "MEYCIQCdbUyCLw7FYujOE1ukWJyXZFTCq4C1evz05H8hdM7L0QIhAOiL4EW8R3KLI4lZ/pKyyA4Yb8BvsRBFOZoT1cwB0Sqj", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "dist/async.js", "volo": { "main": "dist/async.js", "ignore": [ @@ -4115,112 +4381,108 @@ "tests" ] }, - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@2.0.0-rc.4", - "_shasum": "9b7f60724c17962a973f787419e0ebc5571dbad8", "_from": ".", - "_npmVersion": "3.8.3", - "_nodeVersion": "4.4.1", + "_shasum": "1fae1160594dd47dbe5431d4726d66b10f374d89", + "scripts": { + "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-node-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, "_npmUser": { "name": "aearly", "email": "alexander.early@gmail.com" }, - "dist": { - "shasum": "9b7f60724c17962a973f787419e0ebc5571dbad8", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.4.tgz" - }, - "maintainers": [ - { - "name": "caolan", - "email": "caolan.mcmahon@gmail.com" - }, - { - "name": "beaugunderson", - "email": "beau@beaugunderson.com" - }, - { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - { - "name": "megawac", - "email": "megawac@gmail.com" - } - ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-rc.4.tgz_1462490997215_0.7240071413107216" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "directories": {} - }, - "2.0.0-rc.5": { - "name": "async", + "_npmVersion": "3.8.3", "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-rc.5", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "directories": {}, + "_nodeVersion": "4.4.1", "dependencies": { - "lodash": "^4.8.0" + "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", "jscs": "^1.13.1", - "jscs-jsdoc": "^1.3.2", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run-script lint && npm run mocha-node-test" + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-rc.3.tgz_1460063486663_0.06838028854690492", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.0.0-rc.4": { + "name": "async", + "version": "2.0.0-rc.4", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", + "_id": "async@2.0.0-rc.4", + "maintainers": [ + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + } + ], + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, "jam": { "main": "dist/async.js", "include": [ @@ -4235,6 +4497,18 @@ "spm": { "main": "dist/async.js" }, + "dist": { + "shasum": "9b7f60724c17962a973f787419e0ebc5571dbad8", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.4.tgz", + "integrity": "sha512-6tzimU1lFEgkjPjs8s4uvb3/ZLgKSadWudiDrPA+JPfE6XY5U4LGoWsaSt8SIMMnuntA7YNCCyaymTIcLWhaUg==", + "signatures": [ + { + "sig": "MEUCIQDi9RJxiL9YWg/fDTvmWjhVWsm77IBouD8HXOVpWg1uHQIgcqs5DoC/GaytmE7bc3fky8MUC2Gutzu4oSHkcHja47A=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "dist/async.js", "volo": { "main": "dist/async.js", "ignore": [ @@ -4245,20 +4519,87 @@ "tests" ] }, - "homepage": "https://github.com/caolan/async#readme", - "_id": "async@2.0.0-rc.5", - "_shasum": "4d6ff31604e9715899c6368bf7d0e51dc44a1433", "_from": ".", - "_npmVersion": "2.15.1", - "_nodeVersion": "4.4.3", + "_shasum": "9b7f60724c17962a973f787419e0ebc5571dbad8", + "scripts": { + "lint": "jshint lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ test/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", + "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-node-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "nodeunit-test": "nodeunit test/test-async.js", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "dist": { - "shasum": "4d6ff31604e9715899c6368bf7d0e51dc44a1433", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.5.tgz" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "3.8.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.4.1", + "dependencies": { + "lodash": "^4.3.0" + }, + "devDependencies": { + "nyc": "^2.1.0", + "chai": "^3.1.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "rimraf": "^2.5.0", + "rollup": "^0.25.0", + "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "jscs-jsdoc": "^1.3.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-rc.4.tgz_1462490997215_0.7240071413107216", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "2.0.0-rc.5": { + "name": "async", + "version": "2.0.0-rc.5", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@2.0.0-rc.5", "maintainers": [ { "name": "caolan", @@ -4277,94 +4618,125 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-rc.5.tgz_1463429699251_0.47817938844673336" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "jam": { + "main": "dist/async.js", + "include": [ + "dist/async.js", + "README.md", + "LICENSE" + ], + "categories": [ + "Utilities" + ] + }, + "spm": { + "main": "dist/async.js" + }, + "dist": { + "shasum": "4d6ff31604e9715899c6368bf7d0e51dc44a1433", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.5.tgz", + "integrity": "sha512-x6OuBPzvQBz9vrTauWVQW/x+k4BRlblgmNJV3R5cAslPqP37Czr0ff/2yHc1uN4UwWOdLCjYbTm787dqESsSsA==", + "signatures": [ + { + "sig": "MEUCIQDbwmhG3WrYxsvrlNrVH4NyiKsL0x9+HFGtA1IGsEIx3gIgBW8oQXtiFeZ72+D/97fs/dsIiZfXm4ELdOIDP4e6j9w=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.0.0-rc.6": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0-rc.6", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "volo": { + "main": "dist/async.js", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_from": ".", + "_shasum": "4d6ff31604e9715899c6368bf7d0e51dc44a1433", + "scripts": { + "lint": "jshint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", + "test": "npm run-script lint && npm run mocha-node-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.8.0" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "_npmVersion": "2.15.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.4.3", + "dependencies": { + "lodash": "^4.8.0" + }, + "devDependencies": { + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", "jscs": "^1.13.1", - "jscs-jsdoc": "^1.3.2", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "jscs-jsdoc": "^1.3.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "scripts": { - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "jshint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run-script lint && npm run mocha-node-test" + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-rc.5.tgz_1463429699251_0.47817938844673336", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.0.0-rc.6": { + "name": "async", + "version": "2.0.0-rc.6", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", - "homepage": "https://github.com/caolan/async#readme", "_id": "async@2.0.0-rc.6", - "_shasum": "978fc4155d1fc30b8b58fc3f020102b2da02f2a4", - "_from": ".", - "_npmVersion": "3.8.3", - "_nodeVersion": "4.4.1", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "978fc4155d1fc30b8b58fc3f020102b2da02f2a4", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.6.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4383,106 +4755,101 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0-rc.6.tgz_1465333999650_0.07890674052760005" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "dist": { + "shasum": "978fc4155d1fc30b8b58fc3f020102b2da02f2a4", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.6.tgz", + "integrity": "sha512-Ttsy/KUxdL8pSYcGGOAa2ZZdpukbDb+PMZQAY6xi/7pvgFzJk2RMh3KmFfe9zlvky+5e9EcGusPoP1iEgUbcoA==", + "signatures": [ + { + "sig": "MEYCIQDQUSU7qBGFuwnFsBW3WN1raAk+2gkEhud0DpYCU7c7JgIhAL+Hlw9tAtgTwTXqdYutk4g71e3NTFrZxQFIWlGg+erH", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.0.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "978fc4155d1fc30b8b58fc3f020102b2da02f2a4", + "scripts": { + "lint": "jshint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js && jscs lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/ karma.conf.js", + "test": "npm run-script lint && npm run mocha-node-test", + "coverage": "nyc npm test && nyc report", + "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.8.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "4.4.1", "dependencies": { "lodash": "^4.8.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", - "jsdoc": "^3.4.0", + "jscs": "^1.13.1", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "vinyl-buffer": "^1.0.0", - "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "jscs-jsdoc": "^1.3.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run-script lint && npm run mocha-node-test" + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0-rc.6.tgz_1465333999650_0.07890674052760005", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.0.0": { + "name": "async", + "version": "2.0.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", - "gh-pages-deploy": { - "staticpath": "docs" - }, - "nyc": { - "exclude": [ - "mocha_test" - ] - }, - "homepage": "https://github.com/caolan/async#readme", "_id": "async@2.0.0", - "_shasum": "d0900ad385af13804540a109c42166e3ae7b2b9d", - "_from": ".", - "_npmVersion": "3.9.5", - "_nodeVersion": "6.2.2", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "d0900ad385af13804540a109c42166e3ae7b2b9d", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4501,106 +4868,113 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.0.0.tgz_1468369390042_0.18694622837938368" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "d0900ad385af13804540a109c42166e3ae7b2b9d", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0.tgz", + "integrity": "sha512-x4YEotAaoO+dq8o23H0Clqm+b0KQ7hYHFfqxIz4ORzLzAdwH0K7S5/Q+mDo/wVyGdFYA0l7XE70Y9915PuEyqg==", + "signatures": [ + { + "sig": "MEYCIQCnGnEk12ZkWHl2wQCVuuVeEu9o9F6tXOb8FyfVZB1vXQIhAI2gIFj/6HiVHirum5Yp8lPf0lyLdLyQ+fnBeB7v8zqz", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.0.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.0.1", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "d0900ad385af13804540a109c42166e3ae7b2b9d", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run-script lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.9.5", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.2.2", "dependencies": { "lodash": "^4.8.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run-script lint && npm run mocha-node-test" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.0.tgz_1468369390042_0.18694622837938368", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.0.1": { + "name": "async", + "version": "2.0.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.0.1", - "_shasum": "b709cc0280a9c36f09f4536be823c838a9049e25", - "_from": ".", - "_npmVersion": "3.9.5", - "_nodeVersion": "6.2.2", - "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" - }, - "dist": { - "shasum": "b709cc0280a9c36f09f4536be823c838a9049e25", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.1.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4619,108 +4993,113 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/async-2.0.1.tgz_1469219821915_0.46895121363922954" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "b709cc0280a9c36f09f4536be823c838a9049e25", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", + "integrity": "sha512-t7yBK5Pwp8Gq7q6LkAd6vyzLapJuuBhKDnDlgsNFR5KEG5XFzsXN2DFdoEz4qtxPoQFkTMNon73q6+Yn+P8Mcg==", + "signatures": [ + { + "sig": "MEYCIQDnwe7F7a2eH1ybTm5lxtUeeniOTJSXxcaA2VfWp5IzsgIhAM2bgZcbK9xDqoBv1O7q3jCxnUXztJsWrhR4lK6c+/XW", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.1.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.1.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "b709cc0280a9c36f09f4536be823c838a9049e25", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run-script lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.9.5", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.2.2", "dependencies": { - "lodash": "^4.14.0", - "lodash-es": "^4.14.0" + "lodash": "^4.8.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run-script lint && npm run mocha-node-test" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.0.1.tgz_1469219821915_0.46895121363922954", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "2.1.0": { + "name": "async", + "version": "2.1.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "gitHead": "3bcc2ab65b49699d6b99ad00aadc7fe3ac7d4a85", - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.1.0", - "_shasum": "132c1329c300e62a06656e21b102a01122d3806c", - "_from": ".", - "_npmVersion": "3.10.3", - "_nodeVersion": "6.7.0", - "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" - }, - "dist": { - "shasum": "132c1329c300e62a06656e21b102a01122d3806c", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.0.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4739,106 +5118,115 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.1.0.tgz_1476296558618_0.9054915609303862" - }, - "directories": {} - }, - "2.1.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.1.1", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, + "homepage": "https://github.com/caolan/async#readme", "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.14.0" - }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "132c1329c300e62a06656e21b102a01122d3806c", + "tarball": "https://registry.npmjs.org/async/-/async-2.1.0.tgz", + "integrity": "sha512-5p+uCk1mws+xNgE6eC1mNmCbCD0cYsbFTvFTMlN4PSPkV8yVvHvaDJ0ioFDXFIc2IRl5LsUM/WwzJQ2TgjFrDw==", + "signatures": [ + { + "sig": "MEYCIQDNHtG81GWjBT+M6ibrZGu5tR0L/UB9eF4d20T0OOdVOAIhALh8CqRWOrwlQ1WhQOF5hzecNXpDox331UnOoAptCzqE", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "dist/async.js", + "_from": ".", + "_shasum": "132c1329c300e62a06656e21b102a01122d3806c", + "gitHead": "3bcc2ab65b49699d6b99ad00aadc7fe3ac7d4a85", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run-script lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "3.10.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.7.0", + "dependencies": { + "lodash": "^4.14.0", + "lodash-es": "^4.14.0" + }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run-script lint && npm run mocha-node-test" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.1.0.tgz_1476296558618_0.9054915609303862", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.1.1": { + "name": "async", + "version": "2.1.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.1.1", - "_shasum": "e11b6d10043f2254efb61a21163d840ccddb8d28", - "_from": ".", - "_npmVersion": "3.10.3", - "_nodeVersion": "6.7.0", - "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" - }, - "dist": { - "shasum": "e11b6d10043f2254efb61a21163d840ccddb8d28", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.1.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4857,108 +5245,113 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/async-2.1.1.tgz_1476298732568_0.5726463799364865" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "e11b6d10043f2254efb61a21163d840ccddb8d28", + "tarball": "https://registry.npmjs.org/async/-/async-2.1.1.tgz", + "integrity": "sha512-5+Y9xI64035cwyYCdm5mpQZVGntHPnuATveR8vTqE8cZdIv1CyOw19OFtHPF4gKVA4T6l7rZ6BQLOUHzKhilUg==", + "signatures": [ + { + "sig": "MEUCIFxbnZk90FXT6b0OlXMOZ9wmueTUvMQp9LTbsWTQm/zaAiEA0FwvhUiO/GOgkdOBx6RAjqP5DhtVU8JzjnJXK85+TrE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.1.2": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.1.2", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "e11b6d10043f2254efb61a21163d840ccddb8d28", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run-script lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.10.3", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.7.0", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", + "nyc": "^7.0.0", + "chai": "^3.1.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^0.13.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "eslint": "^2.11.1", + "rimraf": "^2.5.0", + "rollup": "^0.25.0", + "semver": "^4.3.6", + "cheerio": "^0.20.0", "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "chai": "^3.1.0", - "cheerio": "^0.22.0", "coveralls": "^2.11.2", + "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", + "karma-mocha": "^0.2.0", + "vinyl-buffer": "^1.0.0", "gh-pages-deploy": "^0.4.2", - "jsdoc": "^3.4.0", - "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", + "karma-browserify": "^4.2.1", "recursive-readdir": "^1.3.0", - "rimraf": "^2.5.0", - "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^4.3.6", - "uglify-js": "~2.7.3", - "vinyl-buffer": "^1.0.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.1.1.tgz_1476298732568_0.5726463799364865", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "2.1.2": { + "name": "async", + "version": "2.1.2", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.1.2", - "_shasum": "612a4ab45ef42a70cde806bad86ee6db047e8385", - "_from": ".", - "_npmVersion": "3.10.8", - "_nodeVersion": "6.8.0", - "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" - }, - "dist": { - "shasum": "612a4ab45ef42a70cde806bad86ee6db047e8385", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.2.tgz" - }, "maintainers": [ { "name": "caolan", @@ -4977,108 +5370,115 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/async-2.1.2.tgz_1476657994986_0.4750206011813134" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "612a4ab45ef42a70cde806bad86ee6db047e8385", + "tarball": "https://registry.npmjs.org/async/-/async-2.1.2.tgz", + "integrity": "sha512-i0Jx7SEZNG5i+F9hrUILpfDkuVJxf+UqmsS6LVn3UdUegQryKplU5t5opYYkDPW0eKBeJUSiiuphgkUZagx5ZQ==", + "signatures": [ + { + "sig": "MEUCIEYj3uAuPH9N1rgkcPs5B2KrCbAUKSZ6EqQ6/MMGCycyAiEAoa9JLQ2/WM+B1anpBnmsVXgIh/JqX6YFjb5ukldEMIM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.1.4": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.1.4", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "612a4ab45ef42a70cde806bad86ee6db047e8385", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.10.8", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.8.0", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.1.2.tgz_1476657994986_0.4750206011813134", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "2.1.4": { + "name": "async", + "version": "2.1.4", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.1.4", - "_shasum": "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4", - "_from": ".", - "_npmVersion": "3.9.5", - "_nodeVersion": "6.2.2", - "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" - }, - "dist": { - "shasum": "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.4.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5097,108 +5497,115 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.1.4.tgz_1479842208353_0.5100211726967245" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4", + "tarball": "https://registry.npmjs.org/async/-/async-2.1.4.tgz", + "integrity": "sha512-ZAxi5cea9DNM37Ld7lIj7c8SmOVaK/ns1pTiNI8vnQbyGsS5WuL+ImnU5UVECiIw43wlx9Wnr9iXn7MJymXacA==", + "signatures": [ + { + "sig": "MEYCIQDY848jXeVhgDobBHDSSHhSPCbXPHXtA+lUMrLzK4v7eQIhAOnUYgKCqhHrCkViD2xKRghOy4oIWasPPxfU0IKXh3wx", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.1.5": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.1.5", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.9.5", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.2.2", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.1.4.tgz_1479842208353_0.5100211726967245", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.1.5": { + "name": "async", + "version": "2.1.5", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.1.5", - "_shasum": "e587c68580994ac67fc56ff86d3ac56bdbe810bc", - "_from": ".", - "_npmVersion": "3.9.5", - "_nodeVersion": "6.2.2", - "_npmUser": { - "name": "megawac", - "email": "megawac@gmail.com" - }, - "dist": { - "shasum": "e587c68580994ac67fc56ff86d3ac56bdbe810bc", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.5.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5217,108 +5624,115 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-18-east.internal.npmjs.com", - "tmp": "tmp/async-2.1.5.tgz_1487467859603_0.9005031916312873" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "e587c68580994ac67fc56ff86d3ac56bdbe810bc", + "tarball": "https://registry.npmjs.org/async/-/async-2.1.5.tgz", + "integrity": "sha512-+g/Ncjbx0JSq2Mk03WQkyKvNh5q9Qvyo/RIqIqnmC5feJY70PNl2ESwZU2BhAB+AZPkHNzzyC2Dq2AS5VnTKhQ==", + "signatures": [ + { + "sig": "MEQCIEDtRUNUKvLjWe0/Yu2TiOgo5EDxsL23xNUBBNGJUFUWAiBsE65uwwkcdATuiuHqf20jrku7DOcmfnBndLcwQgTD0A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.2.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.2.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "e587c68580994ac67fc56ff86d3ac56bdbe810bc", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "megawac", + "email": "megawac@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "3.9.5", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "6.2.2", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.1.5.tgz_1487467859603_0.9005031916312873", + "host": "packages-18-east.internal.npmjs.com" + } + }, + "2.2.0": { + "name": "async", + "version": "2.2.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.2.0", - "_shasum": "c324eba010a237e4fbd55a12dee86367d5c0ef32", - "_from": ".", - "_npmVersion": "4.1.2", - "_nodeVersion": "7.7.4", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "c324eba010a237e4fbd55a12dee86367d5c0ef32", - "tarball": "https://registry.npmjs.org/async/-/async-2.2.0.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5337,109 +5751,115 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-18-east.internal.npmjs.com", - "tmp": "tmp/async-2.2.0.tgz_1490474380922_0.9878872255794704" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "c324eba010a237e4fbd55a12dee86367d5c0ef32", + "tarball": "https://registry.npmjs.org/async/-/async-2.2.0.tgz", + "integrity": "sha512-b8NLjm2v8zgh50O70c2X4mEpWwCL9Bm9vfywD1OJdkdZwGzdDOFs7AXiACNYNei/lnFuMoZ9I71/1yXLw4v2yw==", + "signatures": [ + { + "sig": "MEYCIQDT5sG0X4R2lwe7+3dR4SqQQVEnwLYTztPMg7aN5AiEtgIhAI8FUHU8FlEAzXcVtapb4WjsGL0Dzx6QKvq2Uvk9znae", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.3.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.3.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "c324eba010a237e4fbd55a12dee86367d5c0ef32", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "4.1.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "7.7.4", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.2.0.tgz_1490474380922_0.9878872255794704", + "host": "packages-18-east.internal.npmjs.com" + } + }, + "2.3.0": { + "name": "async", + "version": "2.3.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.3.0", - "_shasum": "1013d1051047dd320fe24e494d5c66ecaf6147d9", - "_from": ".", - "_npmVersion": "4.5.0", - "_nodeVersion": "7.7.4", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "1013d1051047dd320fe24e494d5c66ecaf6147d9", - "tarball": "https://registry.npmjs.org/async/-/async-2.3.0.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5458,109 +5878,116 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/async-2.3.0.tgz_1491173724406_0.3916843933984637" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "1013d1051047dd320fe24e494d5c66ecaf6147d9", + "tarball": "https://registry.npmjs.org/async/-/async-2.3.0.tgz", + "integrity": "sha512-uDDBwBVKsWWe4uMmvVmFiW07K5BmdyZvSFzxlujNBtSJ/qzAlGM6UHOFZsQd5jsdmWatrCMWwYyVAc8cuJrepQ==", + "signatures": [ + { + "sig": "MEYCIQDT9QM+B6ZFhGVL7aGIFCNOZ7Tq+2n0UccDajXbKlLrAwIhAJ0IX/DfVSRiO6hP5ShXixDlWXxxPLUbRRkhnX36NNhx", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.4.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.4.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "1013d1051047dd320fe24e494d5c66ecaf6147d9", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "4.5.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "7.7.4", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.3.0.tgz_1491173724406_0.3916843933984637", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "2.4.0": { + "name": "async", + "version": "2.4.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.4.0", - "_shasum": "4990200f18ea5b837c2cc4f8c031a6985c385611", - "_from": ".", - "_npmVersion": "4.5.0", - "_nodeVersion": "7.7.4", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "4990200f18ea5b837c2cc4f8c031a6985c385611", - "tarball": "https://registry.npmjs.org/async/-/async-2.4.0.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5579,109 +6006,116 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-18-east.internal.npmjs.com", - "tmp": "tmp/async-2.4.0.tgz_1493508210588_0.4067633217200637" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "4990200f18ea5b837c2cc4f8c031a6985c385611", + "tarball": "https://registry.npmjs.org/async/-/async-2.4.0.tgz", + "integrity": "sha512-pCN/boWoTF+A78ccPWv37hweEgcY8PZr9BnU3EErtXAQ8BabFH8KMvtxC4uC3bGgblbsmIv9Dtr7pnaIpQBh2Q==", + "signatures": [ + { + "sig": "MEYCIQDJBLhnfTFzEKDwoLeOp3LtykgQWsTLHlDVDhrMwHNtLgIhALsIWgHn93Wi96B1spbLBQT8ovYRTQPmme3B6e8xpBNx", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.4.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.4.1", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "4990200f18ea5b837c2cc4f8c031a6985c385611", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "4.5.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "7.7.4", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.4.0.tgz_1493508210588_0.4067633217200637", + "host": "packages-18-east.internal.npmjs.com" + } + }, + "2.4.1": { + "name": "async", + "version": "2.4.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.4.1", - "_shasum": "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7", - "_from": ".", - "_npmVersion": "4.6.1", - "_nodeVersion": "7.9.0", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "shasum": "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7", - "tarball": "https://registry.npmjs.org/async/-/async-2.4.1.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5700,108 +6134,116 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async-2.4.1.tgz_1495425435125_0.257761464221403" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7", + "tarball": "https://registry.npmjs.org/async/-/async-2.4.1.tgz", + "integrity": "sha512-l4FGEG4ckq1nC3PSqULdowskm65HBAQfHPG4XH7VLRq0ZKsCWkcfLjVymfLrloqgrvijJrft/mPftclykhTA7w==", + "signatures": [ + { + "sig": "MEUCIB9Hh3n8E80ZV3LQUcRfC215m4GdwH+v7MPpPTXQ6b7EAiEAluUL4+Wt5FT70R1QBzu+HOaFIc5xNcJ0n+otXH+VQRQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.5.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.5.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "_from": ".", + "_shasum": "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "4.6.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "7.9.0", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.4.1.tgz_1495425435125_0.257761464221403", + "host": "s3://npm-registry-packages" + } + }, + "2.5.0": { + "name": "async", + "version": "2.5.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "homepage": "https://github.com/caolan/async#readme", + "license": "MIT", "_id": "async@2.5.0", - "_npmVersion": "5.0.0", - "_nodeVersion": "7.9.0", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", - "shasum": "843190fd6b7357a0b9e1c956edddd5ec8462b54d", - "tarball": "https://registry.npmjs.org/async/-/async-2.5.0.tgz" - }, "maintainers": [ { "name": "caolan", @@ -5820,108 +6262,114 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async-2.5.0.tgz_1498434122210_0.6593488664366305" + "homepage": "https://github.com/caolan/async#readme", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "843190fd6b7357a0b9e1c956edddd5ec8462b54d", + "tarball": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", + "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", + "signatures": [ + { + "sig": "MEUCIQCM8cX2U3IVZKKhzQx1w5AlNSDUI+fVf4857K1qT0NTNgIgdT4qwEl/kg2vU1uIWUI0bGikRvVHCHlRs1rgjPMpRFA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.6.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.6.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "homepage": "https://caolan.github.io/async/", "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "5.0.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "7.9.0", "dependencies": { "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.5.0.tgz_1498434122210_0.6593488664366305", + "host": "s3://npm-registry-packages" + } + }, + "2.6.0": { + "name": "async", + "version": "2.6.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", "_id": "async@2.6.0", - "_npmVersion": "5.5.1", - "_nodeVersion": "8.8.0", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", - "shasum": "61a29abb6fcc026fea77e56d1c6ec53a795951f4", - "tarball": "https://registry.npmjs.org/async/-/async-2.6.0.tgz" - }, "maintainers": [ { "name": "aearly", @@ -5944,108 +6392,114 @@ "email": "megawac@gmail.com" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async-2.6.0.tgz_1510022752955_0.6282575109507889" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "61a29abb6fcc026fea77e56d1c6ec53a795951f4", + "tarball": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", + "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", + "signatures": [ + { + "sig": "MEUCIFo5RMn0FVposcCPYtd8sgqs3BJOjK7uYYMzxe11n9TiAiEA5OpT7b+9BLHQwJd/4+HQspjoUwPrZLiKbimjYL3NWZ8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "directories": {} - }, - "2.6.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.6.1", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" }, - "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "5.5.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "8.8.0", "dependencies": { - "lodash": "^4.17.10" + "lodash": "^4.14.0" }, "devDependencies": { + "nyc": "^7.0.0", + "chai": "^3.1.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^1.3.0", + "mocha": "^3.1.2", + "yargs": "~3.9.1", + "eslint": "^2.13.1", + "rimraf": "^2.5.0", + "rollup": "^0.36.3", + "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", "babel-cli": "^6.24.0", - "babel-core": "^6.26.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^8.0.0", "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", - "chai": "^4.1.2", - "cheerio": "^0.22.0", - "coveralls": "^3.0.1", + "coveralls": "^2.11.2", + "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.2", - "karma-browserify": "^5.2.0", - "karma-firefox-launcher": "^1.1.0", "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "mocha": "^5.2.0", + "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.36.3", + "vinyl-source-stream": "^1.1.0", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "uglify-js": "~2.7.3", - "yargs": "^11.0.0" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async-2.6.0.tgz_1510022752955_0.6282575109507889", + "host": "s3://npm-registry-packages" + } + }, + "2.6.1": { + "name": "async", + "version": "2.6.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", "_id": "async@2.6.1", - "_npmVersion": "6.0.1", - "_nodeVersion": "8.11.2", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", - "shasum": "b245a23ca71930044ec53fa46aa00a3e87c6a610", - "tarball": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", - "fileCount": 133, - "unpackedSize": 540920, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAkxWCRA9TVsSAnZWagAAMogQAJxPRPcF4lY8dlEv78Vm\nrE88f6xFuMnVUgJunHn43+mYg36DDYpKB5VQ3jaHjAaK1WHJYepuPzQSIRFr\ndNgRs62K6s5zC+q07rbv7KyrYOKfHpLOC+PGtpRcKEuMVTQ5lzps6cYYZu5x\njtjmYcTI3t0EuJpaTZgVygtQ8iyvXFBJyt1zzqMAsRRxQx4A8VvytLw96Arl\n97x1BirrYsaamseE0AcoCpOKnSBM5AGiO4A/SeTNFWbPx7eM8Pf2rEgV5ohz\n2z5bjj6zOWpL8jyFMPBblRE82YXeMvEp14tgaruLrb15+xE7QapfjZuk6AQZ\n+DofFTGQSdHk4PZKx7OhUZTNiWbbVvBxtLBAOeStod3BP7C+dCTsFre0R8Yu\nmgrQ+l94TGSBc1xK8uqyHtBT61UGly0v85eVfe3MXT8YsAWY0MiMEsuJVz8d\n9QCjecg21j3oyJAe6F05OMaRZe7yJdgalCO9sq/W42ZztIwqDGS+GbNTRFiu\nDfZh13rSqZIakyYoBXQTXzhaCeDrsJKblYlC+kCkbo71P9M2xBsDFnUF7byC\nLWMo4xC0xUypHFdOi2lVF+FvpLTld8OPXGZOjSlX82LI93jhciNYxeydxL1T\nbr0OJDiW09zNJR7H0ISNwcJK2tPqdmw6C8aMSzNYQnuCVX0MVhaWvhiJ7IlD\nHEkH\r\n=4QoQ\r\n-----END PGP SIGNATURE-----\r\n" - }, "maintainers": [ { "name": "aearly", @@ -6068,110 +6522,115 @@ "email": "megawac@gmail.com" } ], - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_2.6.1_1526877268967_0.7566371880854756" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "b245a23ca71930044ec53fa46aa00a3e87c6a610", + "tarball": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", + "fileCount": 133, + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", + "signatures": [ + { + "sig": "MEUCIQDNgK9Apoji4Tpp0QS7BrUKigrM5BQq6uq8ijCO+hpy4QIgRg7m9GIHHwB9eNAZcO7200SKozuA7In7LHhJS6nz0Ds=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 540920, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAkxWCRA9TVsSAnZWagAAMogQAJxPRPcF4lY8dlEv78Vm\nrE88f6xFuMnVUgJunHn43+mYg36DDYpKB5VQ3jaHjAaK1WHJYepuPzQSIRFr\ndNgRs62K6s5zC+q07rbv7KyrYOKfHpLOC+PGtpRcKEuMVTQ5lzps6cYYZu5x\njtjmYcTI3t0EuJpaTZgVygtQ8iyvXFBJyt1zzqMAsRRxQx4A8VvytLw96Arl\n97x1BirrYsaamseE0AcoCpOKnSBM5AGiO4A/SeTNFWbPx7eM8Pf2rEgV5ohz\n2z5bjj6zOWpL8jyFMPBblRE82YXeMvEp14tgaruLrb15+xE7QapfjZuk6AQZ\n+DofFTGQSdHk4PZKx7OhUZTNiWbbVvBxtLBAOeStod3BP7C+dCTsFre0R8Yu\nmgrQ+l94TGSBc1xK8uqyHtBT61UGly0v85eVfe3MXT8YsAWY0MiMEsuJVz8d\n9QCjecg21j3oyJAe6F05OMaRZe7yJdgalCO9sq/W42ZztIwqDGS+GbNTRFiu\nDfZh13rSqZIakyYoBXQTXzhaCeDrsJKblYlC+kCkbo71P9M2xBsDFnUF7byC\nLWMo4xC0xUypHFdOi2lVF+FvpLTld8OPXGZOjSlX82LI93jhciNYxeydxL1T\nbr0OJDiW09zNJR7H0ISNwcJK2tPqdmw6C8aMSzNYQnuCVX0MVhaWvhiJ7IlD\nHEkH\r\n=4QoQ\r\n-----END PGP SIGNATURE-----\r\n" }, - "_hasShrinkwrap": false - }, - "3.0.1-0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "3.0.1-0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "homepage": "https://caolan.github.io/async/", "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "_npmVersion": "6.0.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "8.11.2", + "dependencies": { + "lodash": "^4.17.10" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": {}, + "_hasShrinkwrap": false, "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.4.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.2", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", + "rimraf": "^2.5.0", + "rollup": "^0.36.3", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "uglify-js": "~2.7.3", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", - "karma-browserify": "^5.3.0", - "karma-firefox-launcher": "^1.1.0", "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "mocha": "^5.2.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async_2.6.1_1526877268967_0.7566371880854756", + "host": "s3://npm-registry-packages" + } + }, + "3.0.1-0": { + "name": "async", + "version": "3.0.1-0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", "_id": "async@3.0.1-0", - "_npmVersion": "6.4.1", - "_nodeVersion": "10.3.0", - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "dist": { - "integrity": "sha512-b+lONkCWH/GCAIrU0j4m5zed5t+5dfjM2TbUSmKCagx6TZp2jQrNkGL7j1SUb0fF1yH6sKBiXC7Zid8Zj94O6A==", - "shasum": "ca06713f91c3d9eea3e966ace4093f41ef89f200", - "tarball": "https://registry.npmjs.org/async/-/async-3.0.1-0.tgz", - "fileCount": 123, - "unpackedSize": 484369, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsXPMCRA9TVsSAnZWagAA9Z0P/3Cl3srJ86yCqOSizOrX\neTBQVUdtiGvymV7aFriSNCTPq+d7KwKKBPnLosQpW9ZMbthdNMOBsEkx13ho\nnkmmdcBVWa+dweZ8+uWgKBTdvyorsLiIH5CXEHkQ2WEFKzBBMifV8qGAbu4F\n0PnF17EuIZvwxRBC6OqI1LOBLrK+qb4jE5a8lXR9//LA/Iop2xwIDXfgjavI\no/aDpqc1EgbwAS2zZb0uOxaCYbr75h4NyytCMOF3awm/K5R7RtGkyh2L1pvM\nRCMAf4n4M0kS9RbXkB1op9QEev7z9YSB2XgLKCAjDC12cbqqU6s3b+qTUYeM\nn3TDrf7V/ZEQjx23TK2Q9yoVi1dRGuotpC+8WYUmfO8hnGQ98y88MhT7Pvyh\nIDS8GciZaWUseOReaCBnb4F5cSvWMHTfqGGneLXftGLJGQFJY0RBW3p74NAI\nsslDxLDgbVB4R9NVAzWLcbalLyjoRW0OEqmTU+7EqgrBfDSb6w+bQCcpcoN/\nF7Q+8vedYNtXckMpLVsvrYK+0ubGLsUJ3coU5l0m4kf29Fv6xvpXZzfi9ouP\nQEcs3Xt2ldM+NRvUeAkH5Arazhy3OQa4CxFYVpqfvnjOOEUqSrjpDljuVGBn\nwnGwExazrMBCBnKBcWx9zKnaa3VLs55ALaKK3prbrj9MUPX8CH+NBaKpv8nM\nz7no\r\n=daBn\r\n-----END PGP SIGNATURE-----\r\n" - }, "maintainers": [ { "name": "aearly", @@ -6194,106 +6653,117 @@ "email": "megawac@gmail.com" } ], - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_3.0.1-0_1538356171637_0.9203414527203662" - }, - "_hasShrinkwrap": false, - "deprecated": "3.0.0 is out!" - }, - "2.6.2": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.6.2", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.17.11" + "nyc": { + "exclude": [ + "test" + ] }, - "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.26.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", - "chai": "^4.1.2", - "cheerio": "^0.22.0", - "coveralls": "^3.0.1", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.2", - "karma-browserify": "^5.2.0", - "karma-firefox-launcher": "^1.1.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "mocha": "^5.2.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "uglify-js": "~2.7.3", - "yargs": "^11.0.0" + "dist": { + "shasum": "ca06713f91c3d9eea3e966ace4093f41ef89f200", + "tarball": "https://registry.npmjs.org/async/-/async-3.0.1-0.tgz", + "fileCount": 123, + "integrity": "sha512-b+lONkCWH/GCAIrU0j4m5zed5t+5dfjM2TbUSmKCagx6TZp2jQrNkGL7j1SUb0fF1yH6sKBiXC7Zid8Zj94O6A==", + "signatures": [ + { + "sig": "MEQCIFzxHHkC9EOoEmzsjog3r1TesSJSh4fWVuwwvN1Ay8vXAiB9nJCz+gcatNQ9H0erkTw0A1FO61C1/rlk1ZBrhj3+aQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 484369, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsXPMCRA9TVsSAnZWagAA9Z0P/3Cl3srJ86yCqOSizOrX\neTBQVUdtiGvymV7aFriSNCTPq+d7KwKKBPnLosQpW9ZMbthdNMOBsEkx13ho\nnkmmdcBVWa+dweZ8+uWgKBTdvyorsLiIH5CXEHkQ2WEFKzBBMifV8qGAbu4F\n0PnF17EuIZvwxRBC6OqI1LOBLrK+qb4jE5a8lXR9//LA/Iop2xwIDXfgjavI\no/aDpqc1EgbwAS2zZb0uOxaCYbr75h4NyytCMOF3awm/K5R7RtGkyh2L1pvM\nRCMAf4n4M0kS9RbXkB1op9QEev7z9YSB2XgLKCAjDC12cbqqU6s3b+qTUYeM\nn3TDrf7V/ZEQjx23TK2Q9yoVi1dRGuotpC+8WYUmfO8hnGQ98y88MhT7Pvyh\nIDS8GciZaWUseOReaCBnb4F5cSvWMHTfqGGneLXftGLJGQFJY0RBW3p74NAI\nsslDxLDgbVB4R9NVAzWLcbalLyjoRW0OEqmTU+7EqgrBfDSb6w+bQCcpcoN/\nF7Q+8vedYNtXckMpLVsvrYK+0ubGLsUJ3coU5l0m4kf29Fv6xvpXZzfi9ouP\nQEcs3Xt2ldM+NRvUeAkH5Arazhy3OQa4CxFYVpqfvnjOOEUqSrjpDljuVGBn\nwnGwExazrMBCBnKBcWx9zKnaa3VLs55ALaKK3prbrj9MUPX8CH+NBaKpv8nM\nz7no\r\n=daBn\r\n-----END PGP SIGNATURE-----\r\n" }, + "main": "dist/async.js", "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" }, - "license": "MIT", - "gh-pages-deploy": { - "staticpath": "docs" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "nyc": { - "exclude": [ - "mocha_test" - ] + "deprecated": "3.0.0 is out!", + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "_id": "async@2.6.2", - "_nodeVersion": "8.15.0", - "_npmVersion": "6.7.0", - "dist": { - "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", - "shasum": "18330ea7e6e313887f5d2f2a904bac6fe4dd5381", - "tarball": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", - "fileCount": 133, - "unpackedSize": 540984, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY0paCRA9TVsSAnZWagAAfEsP/0uR0qKD416jeKor2uKv\nFO3HtnmTDNN/zvjRWACvxBYeTbJ3k+4xnN87dzmqcWruBE0hUka2r1QSCfdL\nSdkixgM7huFWyl/F1Ndf7BMSMkmwpvwgdPcLmtP1I2UqwpJ2YutFYRfbrqW6\nZl5OL3P30+94klwu9VTeLm58yVVYx4LAEuUN81wpvnHbEj0fdGMcYL/jbMtL\nAUEvdicjJqEe9J6gqDWwrxzNr6RKcqsXTl3KZgsCqjYerbM/4x/0hjySIr31\n7isLNleRGaWRvejGpPA/1J1oVXm96qNQSabB8jZV1soenyIQ6iceVbwB+k+7\nUCuLeNh+dT8vjhS0OvnMLTK3gJnaPFJdc0Ov2dUWIFY/AL+h3+6AoROb/UOc\nuo03gSF9WRuMA2MAbT2UBYdaeLZ9r/Z8ic1EioEdnAqiWUp623AGh2ZdZnv6\nkUrRxGJElv+PG9yQ2bHCdSW6Nycua0B+1anTufdsuoeHKdXzJYB61jQIxJlr\n3c44yNNnJehMPfAyxfAW8Vd6ye4FJiZBe4/7RwBKLv/HTGSW0bStz/HnXXCI\nr+Fiwplje5thLE0eGqRYA7UL7DSUCqIYHojVtskTqwvWS2Q7GTb/Ep27exLo\nguf9cOC0mHald8HxgZ92IBRA4Gt7/7KhWNZaTR4H9hmiZtVgz/NTxEc4uRTv\nfm7P\r\n=LP6x\r\n-----END PGP SIGNATURE-----\r\n" + "_npmVersion": "6.4.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "10.3.0", + "dependencies": {}, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^11.8.0", + "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.4.3", + "babel-register": "^6.26.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "gh-pages-deploy": { + "staticpath": "docs" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.0.1-0_1538356171637_0.9203414527203662", + "host": "s3://npm-registry-packages" + } + }, + "2.6.2": { + "name": "async", + "version": "2.6.2", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@2.6.2", "maintainers": [ { "name": "aearly", @@ -6316,115 +6786,115 @@ "email": "megawac@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_2.6.2_1550010969878_0.5745435408981747" + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "18330ea7e6e313887f5d2f2a904bac6fe4dd5381", + "tarball": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", + "fileCount": 133, + "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", + "signatures": [ + { + "sig": "MEYCIQD5g90mUCM74ZCaf3szH7sxBTRXtvY9kcoVh5mHA0cEOgIhAM3CDKnpa/kj9rNM5ovB+VNsNih6kKbiY8AEs+/WNElG", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 540984, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY0paCRA9TVsSAnZWagAAfEsP/0uR0qKD416jeKor2uKv\nFO3HtnmTDNN/zvjRWACvxBYeTbJ3k+4xnN87dzmqcWruBE0hUka2r1QSCfdL\nSdkixgM7huFWyl/F1Ndf7BMSMkmwpvwgdPcLmtP1I2UqwpJ2YutFYRfbrqW6\nZl5OL3P30+94klwu9VTeLm58yVVYx4LAEuUN81wpvnHbEj0fdGMcYL/jbMtL\nAUEvdicjJqEe9J6gqDWwrxzNr6RKcqsXTl3KZgsCqjYerbM/4x/0hjySIr31\n7isLNleRGaWRvejGpPA/1J1oVXm96qNQSabB8jZV1soenyIQ6iceVbwB+k+7\nUCuLeNh+dT8vjhS0OvnMLTK3gJnaPFJdc0Ov2dUWIFY/AL+h3+6AoROb/UOc\nuo03gSF9WRuMA2MAbT2UBYdaeLZ9r/Z8ic1EioEdnAqiWUp623AGh2ZdZnv6\nkUrRxGJElv+PG9yQ2bHCdSW6Nycua0B+1anTufdsuoeHKdXzJYB61jQIxJlr\n3c44yNNnJehMPfAyxfAW8Vd6ye4FJiZBe4/7RwBKLv/HTGSW0bStz/HnXXCI\nr+Fiwplje5thLE0eGqRYA7UL7DSUCqIYHojVtskTqwvWS2Q7GTb/Ep27exLo\nguf9cOC0mHald8HxgZ92IBRA4Gt7/7KhWNZaTR4H9hmiZtVgz/NTxEc4uRTv\nfm7P\r\n=LP6x\r\n-----END PGP SIGNATURE-----\r\n" }, - "_hasShrinkwrap": false - }, - "3.0.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "3.0.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "homepage": "https://caolan.github.io/async/", "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "_npmVersion": "6.7.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "8.15.0", + "dependencies": { + "lodash": "^4.17.11" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": {}, + "_hasShrinkwrap": false, "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.2", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", + "rimraf": "^2.5.0", + "rollup": "^0.36.3", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "uglify-js": "~2.7.3", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", - "karma-browserify": "^5.3.0", - "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", - "karma-junit-reporter": "^1.2.0", "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^5.2.0", - "mocha-junit-reporter": "^1.18.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async_2.6.2_1550010969878_0.5745435408981747", + "host": "s3://npm-registry-packages" + } + }, + "3.0.0": { + "name": "async", + "version": "3.0.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "module": "dist/async.mjs", + "license": "MIT", "_id": "async@3.0.0", - "_nodeVersion": "10.15.3", - "_npmVersion": "6.9.0", - "dist": { - "integrity": "sha512-LNZ6JSpKraIia6VZKKbKxmX6nWIdfsG7WqrOvKpCuDjH7BnGyQRFMTSXEe8to2WF/rqoAKgZvj+L5nnxe0suAg==", - "shasum": "4c959b37d8c477dc189f2efb9340847f7ad7f785", - "tarball": "https://registry.npmjs.org/async/-/async-3.0.0.tgz", - "fileCount": 137, - "unpackedSize": 687771, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4hCrCRA9TVsSAnZWagAA0xQP/3t8OScGLuvT83UFA0De\ntU1Ax5RM0/nj5x+1hB4Eo68OFcqLJNfMc2UkK+/PyUJ5g4zjyQlW0ENjc0ae\nTwdSdkY14oKlfYvYgiTXHjoO7qq1Bz6r/DrZsuGt3kz2ZfuGDAiwVhgEsth8\nuaS1AgwHwBKed+31R059ryvri+foIJq2helqJeDV4EVf9BpTQ5YEXUQJ2/qO\njOIbUvAl8bpzCAJLtIUv9l+szeJu7LGeMQMcDoOXmOHnvXcZDPymY6fVxoyf\ndkobmkVxSBog1ekekKegE0eouXzqY/w3AH0BkoW/udLI4S8UsTz9guKz2hLV\nGh38Wzx+xISMJ5LmcY8JqKGblETrzNK0ixRgnjHElyBopF3yw0wIk+P74Y1B\n658zaeQaqcK37QauFRENflvIkJ3AYCL4A58dWcN6zdgvt16K5LQ+u9Vd6abQ\nboaab3gVtJWJMGk6kt5x/EmOaDBmBUHDDX9/3YeONOEiRh5hWJGTdbMUEJoO\nmBn1oUXZaZQDxjdhyV+AByLKsjQ4tArdPTl1JMq8dAMWz1VO1GWtKb16HSlD\nEqIX6tts8AS+OTkdQmG72PQ1VlwYANTWOPa8il5vhWFCU13Dmdl3QhW9CJIu\nFXCjcjcPpC4DjWd2iULNS+qQO3fHH9Nl12ggP9yjxDZ3Wf+Lw1UEhQrm08Zo\n+5yT\r\n=q9pO\r\n-----END PGP SIGNATURE-----\r\n" - }, "maintainers": [ { "name": "aearly", @@ -6447,115 +6917,121 @@ "email": "megawac@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_3.0.0_1558319274573_0.7546644771853339" - }, - "_hasShrinkwrap": false - }, - "3.0.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "3.0.1", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": {}, - "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "4c959b37d8c477dc189f2efb9340847f7ad7f785", + "tarball": "https://registry.npmjs.org/async/-/async-3.0.0.tgz", + "fileCount": 137, + "integrity": "sha512-LNZ6JSpKraIia6VZKKbKxmX6nWIdfsG7WqrOvKpCuDjH7BnGyQRFMTSXEe8to2WF/rqoAKgZvj+L5nnxe0suAg==", + "signatures": [ + { + "sig": "MEUCIFHSQhRyNkCKdMrfQ4uE3WL+Ga+zUEY4akRAX7W0jnSnAiEA2yAgUsIwQpAQNSBaBbWHkOl5LS7ggFWSSBYNOJykQSc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 687771, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4hCrCRA9TVsSAnZWagAA0xQP/3t8OScGLuvT83UFA0De\ntU1Ax5RM0/nj5x+1hB4Eo68OFcqLJNfMc2UkK+/PyUJ5g4zjyQlW0ENjc0ae\nTwdSdkY14oKlfYvYgiTXHjoO7qq1Bz6r/DrZsuGt3kz2ZfuGDAiwVhgEsth8\nuaS1AgwHwBKed+31R059ryvri+foIJq2helqJeDV4EVf9BpTQ5YEXUQJ2/qO\njOIbUvAl8bpzCAJLtIUv9l+szeJu7LGeMQMcDoOXmOHnvXcZDPymY6fVxoyf\ndkobmkVxSBog1ekekKegE0eouXzqY/w3AH0BkoW/udLI4S8UsTz9guKz2hLV\nGh38Wzx+xISMJ5LmcY8JqKGblETrzNK0ixRgnjHElyBopF3yw0wIk+P74Y1B\n658zaeQaqcK37QauFRENflvIkJ3AYCL4A58dWcN6zdgvt16K5LQ+u9Vd6abQ\nboaab3gVtJWJMGk6kt5x/EmOaDBmBUHDDX9/3YeONOEiRh5hWJGTdbMUEJoO\nmBn1oUXZaZQDxjdhyV+AByLKsjQ4tArdPTl1JMq8dAMWz1VO1GWtKb16HSlD\nEqIX6tts8AS+OTkdQmG72PQ1VlwYANTWOPa8il5vhWFCU13Dmdl3QhW9CJIu\nFXCjcjcPpC4DjWd2iULNS+qQO3fHH9Nl12ggP9yjxDZ3Wf+Lw1UEhQrm08Zo\n+5yT\r\n=q9pO\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "6.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "10.15.3", + "dependencies": {}, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.1", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "gh-pages-deploy": "^0.5.0", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^5.2.0", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^2.0.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "license": "MIT", "gh-pages-deploy": { "staticpath": "docs" }, - "nyc": { - "exclude": [ - "test" - ] + "_npmOperationalInternal": { + "tmp": "tmp/async_3.0.0_1558319274573_0.7546644771853339", + "host": "s3://npm-registry-packages" + } + }, + "3.0.1": { + "name": "async", + "version": "3.0.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, - "module": "dist/async.mjs", + "license": "MIT", "_id": "async@3.0.1", - "_nodeVersion": "10.15.3", - "_npmVersion": "6.9.0", - "dist": { - "integrity": "sha512-ZswD8vwPtmBZzbn9xyi8XBQWXH3AvOQ43Za1KWYq7JeycrZuUYzx01KvHcVbXltjqH4y0MWrQ33008uLTqXuDw==", - "shasum": "dfeb34657d1e63c94c0eee424297bf8a2c9a8182", - "tarball": "https://registry.npmjs.org/async/-/async-3.0.1.tgz", - "fileCount": 137, - "unpackedSize": 689481, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6whnCRA9TVsSAnZWagAA37wP/2GudUWGTyBV7jK+h58r\n3i/gu5Dxsig6Hm/wYVa84yKgC17KAu5S2nEV/gzX8DQrxsZbbxzK38itcOhH\n//V/YQyfrHCDLCit01M6UOX3YvhDz/6R3YYCKfw+GL168TpXK+AJWUqbaSd9\nSpbMLEGnMRKgcOl6EO5eMPaBYdmbBPoeJF7SLluZK1IMgsx+LXP/AtTLU7ei\nXB/j6KajyT5fc1jgADNG+/uSctEE0+0XXbdp+pY08+N1IUGL4P6wqNaavqEX\nOe1W5KX/EpiOdisAmUVs3QO5lJqq1Q3EP48gAlyBy7iDhToKaEMAixV6512N\n7cgLDgufZ4Dj7zYec0uaQNVzVcJzOh6mH1u5JzBEs2KGVCQaaH/+k65srZO8\n9SnEB1PIM54n+9qxR5S5V+tDGTc3DGMIxa0n+v77oiKzPN7oY9BJKsUX8dZe\nGA8RFZhkaDXSg0LUGYZu6G8HNbGefOQfEdzkJewquIkGPiFnWfrBqFAioa4C\nxEHq+C+wTk3VSbAFu4FoW7Bv2lGJveguau6LhDCRBBopFr+iJS1wxCL1VCb1\njVznKAHGGAqDc2A2YR5Ql9BH+ikdQ334wZt4UqJ2kqior+zQkozaaJRYbVXI\nd1rqcKnEHx3aPVHCczwv+wNqvhRucJd3a7O8uZP1XmzySxLYijfAXnE11FFo\nI3zl\r\n=XwVF\r\n-----END PGP SIGNATURE-----\r\n" - }, "maintainers": [ { "name": "aearly", @@ -6578,123 +7054,121 @@ "email": "megawac@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_3.0.1_1558906982196_0.8708044325007898" + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "dfeb34657d1e63c94c0eee424297bf8a2c9a8182", + "tarball": "https://registry.npmjs.org/async/-/async-3.0.1.tgz", + "fileCount": 137, + "integrity": "sha512-ZswD8vwPtmBZzbn9xyi8XBQWXH3AvOQ43Za1KWYq7JeycrZuUYzx01KvHcVbXltjqH4y0MWrQ33008uLTqXuDw==", + "signatures": [ + { + "sig": "MEUCIBV/4OPNZ6m/3aYHK+oMOY2QHJ7P2SfnsVrtBwZZ/GHyAiEAtp/eXkTrnGS9Xo1JcXP+7X+jzi9wVcTioUou1vmhq+s=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 689481, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6whnCRA9TVsSAnZWagAA37wP/2GudUWGTyBV7jK+h58r\n3i/gu5Dxsig6Hm/wYVa84yKgC17KAu5S2nEV/gzX8DQrxsZbbxzK38itcOhH\n//V/YQyfrHCDLCit01M6UOX3YvhDz/6R3YYCKfw+GL168TpXK+AJWUqbaSd9\nSpbMLEGnMRKgcOl6EO5eMPaBYdmbBPoeJF7SLluZK1IMgsx+LXP/AtTLU7ei\nXB/j6KajyT5fc1jgADNG+/uSctEE0+0XXbdp+pY08+N1IUGL4P6wqNaavqEX\nOe1W5KX/EpiOdisAmUVs3QO5lJqq1Q3EP48gAlyBy7iDhToKaEMAixV6512N\n7cgLDgufZ4Dj7zYec0uaQNVzVcJzOh6mH1u5JzBEs2KGVCQaaH/+k65srZO8\n9SnEB1PIM54n+9qxR5S5V+tDGTc3DGMIxa0n+v77oiKzPN7oY9BJKsUX8dZe\nGA8RFZhkaDXSg0LUGYZu6G8HNbGefOQfEdzkJewquIkGPiFnWfrBqFAioa4C\nxEHq+C+wTk3VSbAFu4FoW7Bv2lGJveguau6LhDCRBBopFr+iJS1wxCL1VCb1\njVznKAHGGAqDc2A2YR5Ql9BH+ikdQ334wZt4UqJ2kqior+zQkozaaJRYbVXI\nd1rqcKnEHx3aPVHCczwv+wNqvhRucJd3a7O8uZP1XmzySxLYijfAXnE11FFo\nI3zl\r\n=XwVF\r\n-----END PGP SIGNATURE-----\r\n" }, - "_hasShrinkwrap": false - }, - "3.1.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "3.1.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" }, - "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "6.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "10.15.3", "dependencies": {}, + "_hasShrinkwrap": false, "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "gh-pages-deploy": "^0.5.1", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^5.2.0", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^2.0.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" - }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "license": "MIT", - "nyc": { - "exclude": [ - "test" - ] + "gh-pages-deploy": { + "staticpath": "docs" }, - "module": "dist/async.mjs", - "browserify": { - "transform": [ - [ - "babelify", - { - "presets": [ - "@babel/preset-env" - ] - } - ] - ] + "_npmOperationalInternal": { + "tmp": "tmp/async_3.0.1_1558906982196_0.8708044325007898", + "host": "s3://npm-registry-packages" + } + }, + "3.1.0": { + "name": "async", + "version": "3.1.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", "_id": "async@3.1.0", - "_nodeVersion": "10.15.3", - "_npmVersion": "6.9.0", - "dist": { - "integrity": "sha512-4vx/aaY6j/j3Lw3fbCHNWP0pPaTCew3F6F3hYyl/tHs/ndmV1q7NW9T5yuJ2XAGwdQrP+6Wu20x06U4APo/iQQ==", - "shasum": "42b3b12ae1b74927b5217d8c0016baaf62463772", - "tarball": "https://registry.npmjs.org/async/-/async-3.1.0.tgz", - "fileCount": 137, - "unpackedSize": 693723, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDw5cCRA9TVsSAnZWagAAMCQP/jR2pQSeQf4QEewRMBpe\nPZZiv2WViB92+9wwgKU+qFWvUNJTSuTmOhA6XLgh1dvIee6/4SF+f2ddyXRl\nBrgUZDOPWoPDjr6mlQvOCjFHeDuPzAjwc58kNLFBEOZ9eVrgddmx4rH+T7K7\nZowq2YQsIVkU332lWYaahzfo0qTeJ9PpvYzIaWjF6/ivll3qnL5YTmclx2e+\nkNQK6H3yOar45Fo7W0Cqp8qV3pgep1+Mb23inSk5D35dOK1oBtSMulitDiCY\nrZrR/ieG6e5Ci3FwIFj1fqGpW3gHgitt261nlmLnyCknGGK0KJjIy+d2Gded\nFe0fBAxla7pJoUcVPt54YlOpZ2FoBwHDN5AdK8nPjJDtd3kfZZWLgC376xYo\nT4UCj/CNCW9/WEUUfK2jeU8HRcbJt+Md8tGivywBTXjBG/YZc4sJLTLZ7Tc+\nLbY1iPJK2J7SgevldiJaYuwBPjHmrFA8wQ6I2qB2lFpPfbD27dGlSNN0xIXn\nh9qh0yhXyBzisXwUC1wyAx/39AqrnP71kRAtT1rhMHnQQNtzejlAo/FJxZez\nkqtH/7yZgOcIhsNihN16lpzTN1hfwWo6kLJQbVruIPRaOaz6LsPflVqgupUR\nRohQaq6dp24C6HYKbSTOpEtiNTjwOrW/50s9TKaoUyfmqZXCaPI+egktx32v\n4BKu\r\n=DND2\r\n-----END PGP SIGNATURE-----\r\n" - }, "maintainers": [ { "name": "aearly", @@ -6717,109 +7191,129 @@ "email": "megawac@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_3.1.0_1561267803752_0.2222457552089212" + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "42b3b12ae1b74927b5217d8c0016baaf62463772", + "tarball": "https://registry.npmjs.org/async/-/async-3.1.0.tgz", + "fileCount": 137, + "integrity": "sha512-4vx/aaY6j/j3Lw3fbCHNWP0pPaTCew3F6F3hYyl/tHs/ndmV1q7NW9T5yuJ2XAGwdQrP+6Wu20x06U4APo/iQQ==", + "signatures": [ + { + "sig": "MEYCIQDJCH9Ucr//fwYacdZsT7RAALCW5akcSKK4p7ZTuUEr1wIhAJ4Ag0MgGnE1Se6VXu+9+sW+dpNobCKfYh4wja94Z0t4", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 693723, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDw5cCRA9TVsSAnZWagAAMCQP/jR2pQSeQf4QEewRMBpe\nPZZiv2WViB92+9wwgKU+qFWvUNJTSuTmOhA6XLgh1dvIee6/4SF+f2ddyXRl\nBrgUZDOPWoPDjr6mlQvOCjFHeDuPzAjwc58kNLFBEOZ9eVrgddmx4rH+T7K7\nZowq2YQsIVkU332lWYaahzfo0qTeJ9PpvYzIaWjF6/ivll3qnL5YTmclx2e+\nkNQK6H3yOar45Fo7W0Cqp8qV3pgep1+Mb23inSk5D35dOK1oBtSMulitDiCY\nrZrR/ieG6e5Ci3FwIFj1fqGpW3gHgitt261nlmLnyCknGGK0KJjIy+d2Gded\nFe0fBAxla7pJoUcVPt54YlOpZ2FoBwHDN5AdK8nPjJDtd3kfZZWLgC376xYo\nT4UCj/CNCW9/WEUUfK2jeU8HRcbJt+Md8tGivywBTXjBG/YZc4sJLTLZ7Tc+\nLbY1iPJK2J7SgevldiJaYuwBPjHmrFA8wQ6I2qB2lFpPfbD27dGlSNN0xIXn\nh9qh0yhXyBzisXwUC1wyAx/39AqrnP71kRAtT1rhMHnQQNtzejlAo/FJxZez\nkqtH/7yZgOcIhsNihN16lpzTN1hfwWo6kLJQbVruIPRaOaz6LsPflVqgupUR\nRohQaq6dp24C6HYKbSTOpEtiNTjwOrW/50s9TKaoUyfmqZXCaPI+egktx32v\n4BKu\r\n=DND2\r\n-----END PGP SIGNATURE-----\r\n" }, - "_hasShrinkwrap": false - }, - "2.6.3": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "2.6.3", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" }, - "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "browserify": { + "transform": [ + [ + "babelify", + { + "presets": [ + "@babel/preset-env" + ] + } + ] + ] }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": { - "lodash": "^4.17.14" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, + "_npmVersion": "6.9.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "10.15.3", + "dependencies": {}, + "_hasShrinkwrap": false, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.26.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.2", - "karma-browserify": "^5.2.0", - "karma-firefox-launcher": "^1.1.0", "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "mocha": "^5.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.36.3", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "uglify-js": "~2.7.3", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "_npmOperationalInternal": { + "tmp": "tmp/async_3.1.0_1561267803752_0.2222457552089212", + "host": "s3://npm-registry-packages" + } + }, + "2.6.3": { + "name": "async", + "version": "2.6.3", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", - "gh-pages-deploy": { - "staticpath": "docs" - }, - "nyc": { - "exclude": [ - "mocha_test" - ] - }, "_id": "async@2.6.3", - "_nodeVersion": "10.15.3", - "_npmVersion": "6.10.1", - "dist": { - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "shasum": "d72625e2344a3656e3a3ad4fa749fa83299d82ff", - "tarball": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "fileCount": 133, - "unpackedSize": 541050, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdK7smCRA9TVsSAnZWagAAV2AP/AioMbCD1rU19wSa+2pv\niIr/lLFIEGSIo5qtZMxMetPxAlp2GUH6PSGdTfx0gl8WnvPHBkBrd7TRl5Lb\nSeINx014ted9CwZmKbZHtkNl7NFpHt5Y8zn0Kdb32xTg54YJngakxBCJIXJ+\nGgmnZhkq9hQdwPYXTIpvxDCWpUFcsWEFBNSt8aab+OvOqIqdPvFyIyN6ZG48\n+0a5bmXgH1oD8XV6pPksmzeNGglFI9RdmQURF13rSWdOMC/RAeB4h8hCuGFg\ny/HfhxN9kM3dscqDu1HcmEZtv1JnX97MpD0dHAGmr7p3KPY/h0llCFA6YHBS\nMGiKuTP20qj6phD/TezgpiDNCip8N3n4yj2yuQRMIvi94emViuMXG2Raqcne\n5ZP+qFw18JjkeFchNLpDdIm1oEmcJJbRVopnRDnJbtcyg759DzDru+Zyx3S2\nsoenmGVUb1rUikxVcmCmWSf5IQfHcHxsZ/mjchbjr6pq6/RNsF7cOuKsDF6E\nfMxk1POJoVHEh4J/t64MRC3s0zHTe6SeWfeeNiLodCv+ITvHbq2HvsSPoPgQ\nLnCuxn2OBbQEYEpEgHvrmqcU7dEAPxkZSyTVXHd5NcyxE289C59RZju9YvC8\naxeWItb28EXYMmhNpUKqaDNC5VrD2PxTyA7/agtLNtaOKdF6lcq/IId6wPHt\nKBac\r\n=pBda\r\n-----END PGP SIGNATURE-----\r\n" - }, "maintainers": [ { "name": "aearly", @@ -6842,100 +7336,176 @@ "email": "megawac@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_2.6.3_1563147045724_0.33642246034762424" - }, - "_hasShrinkwrap": false - }, - "3.1.1": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "3.1.1", - "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" - }, "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, "bugs": { "url": "https://github.com/caolan/async/issues" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "dependencies": {}, - "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^5.1.4", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "d72625e2344a3656e3a3ad4fa749fa83299d82ff", + "tarball": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "fileCount": 133, + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "signatures": [ + { + "sig": "MEYCIQD857S8UdUC+qBlrrWY+L9DF7cU077+A9tDAplGt6fUdwIhALYFJBsmhophv350P/GOlwxNTyra4E100hFu8xAI3kG2", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 541050, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdK7smCRA9TVsSAnZWagAAV2AP/AioMbCD1rU19wSa+2pv\niIr/lLFIEGSIo5qtZMxMetPxAlp2GUH6PSGdTfx0gl8WnvPHBkBrd7TRl5Lb\nSeINx014ted9CwZmKbZHtkNl7NFpHt5Y8zn0Kdb32xTg54YJngakxBCJIXJ+\nGgmnZhkq9hQdwPYXTIpvxDCWpUFcsWEFBNSt8aab+OvOqIqdPvFyIyN6ZG48\n+0a5bmXgH1oD8XV6pPksmzeNGglFI9RdmQURF13rSWdOMC/RAeB4h8hCuGFg\ny/HfhxN9kM3dscqDu1HcmEZtv1JnX97MpD0dHAGmr7p3KPY/h0llCFA6YHBS\nMGiKuTP20qj6phD/TezgpiDNCip8N3n4yj2yuQRMIvi94emViuMXG2Raqcne\n5ZP+qFw18JjkeFchNLpDdIm1oEmcJJbRVopnRDnJbtcyg759DzDru+Zyx3S2\nsoenmGVUb1rUikxVcmCmWSf5IQfHcHxsZ/mjchbjr6pq6/RNsF7cOuKsDF6E\nfMxk1POJoVHEh4J/t64MRC3s0zHTe6SeWfeeNiLodCv+ITvHbq2HvsSPoPgQ\nLnCuxn2OBbQEYEpEgHvrmqcU7dEAPxkZSyTVXHd5NcyxE289C59RZju9YvC8\naxeWItb28EXYMmhNpUKqaDNC5VrD2PxTyA7/agtLNtaOKdF6lcq/IId6wPHt\nKBac\r\n=pBda\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "6.10.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "10.15.3", + "dependencies": { + "lodash": "^4.17.14" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^11.8.0", + "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.2", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", + "rimraf": "^2.5.0", + "rollup": "^0.36.3", + "semver": "^5.5.0", + "cheerio": "^0.22.0", "babelify": "^8.0.0", - "benchmark": "^2.1.1", "bluebird": "^3.4.6", - "browserify": "^16.2.3", - "chai": "^4.2.0", - "cheerio": "^0.22.0", - "coveralls": "^3.0.4", - "es6-promise": "^2.3.0", - "eslint": "^6.0.1", - "eslint-plugin-prefer-arrow": "^1.1.5", "fs-extra": "^0.26.7", - "jsdoc": "^3.6.2", - "karma": "^4.1.0", - "karma-browserify": "^5.3.0", - "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", - "karma-junit-reporter": "^1.2.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", + "uglify-js": "~2.7.3", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^6.1.4", - "mocha-junit-reporter": "^1.18.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "native-promise-only": "^0.8.0-a", - "nyc": "^14.1.1", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "gh-pages-deploy": { + "staticpath": "docs" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_2.6.3_1563147045724_0.33642246034762424", + "host": "s3://npm-registry-packages" + } + }, + "3.1.1": { + "name": "async", + "version": "3.1.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", + "_id": "async@3.1.1", + "maintainers": [ + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + } + ], + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, "nyc": { "exclude": [ "test" ] }, + "dist": { + "shasum": "dd3542db03de837979c9ebbca64ca01b06dc98df", + "tarball": "https://registry.npmjs.org/async/-/async-3.1.1.tgz", + "fileCount": 137, + "integrity": "sha512-X5Dj8hK1pJNC2Wzo2Rcp9FBVdJMGRR/S7V+lH46s8GVFhtbo5O4Le5GECCF/8PISVdkUA6mMPvgz7qTTD1rf1g==", + "signatures": [ + { + "sig": "MEUCIQCIzoejYkVKxQJMa2mMuQYIn5WnTOP1fInr7p7GMvzT0wIgfZTOB532eI6Saay6p4NXKgKIlshRGAT55QK8UouGRdg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 693959, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK4SYCRA9TVsSAnZWagAAwq8P/2fzY1CQCkZxVry1UkOA\nEPhedbmCeYk9qjRvWN9jq0STU0K75i/XMxSJXCduFvkVsJ3zYIqN89c0vXPF\n27P+rhS38kgufjEy5hVpar0qW4vA4Z3507+5kFsG3K05sBP2lcj9VeJjsa1n\nF7ZV1FL7v/h/aIVAPTCpyfBG/uTvmYQQ0cS50SmIHTpcSJMJZNYZZZpHZogz\nvpvax2W7Mk3BcEx1g/RKCqGLOTA0RcD2aGRGH8VsnvCAvegHP38NTTeLNOmt\ng+cXtXNmOviN6w5HOo6UBI0Ik1i6P+vJHXpe+ixtGdGHrpCeH9ZCV8a4f66F\nJ4EJd4BqeBj19mumNM37nuhi7rR1WikMpcAi/2l+0pgTOb92lCDzD38qv+WN\nWHlPFi0PJhLQZPQM7skr2+fiBWSTQYK+WEeMuiivuc1leGTGA5lLAuz6mEWP\nMyoXNi8ie35oLPHKIulpvEqFcRuQ7ZAds9BI9sxH9mo2GPK7aDLoEJ/D0KBK\nJZI4irVDV/0NlS6fML4ZFhSyqLF4IpQzIRI2PTJVu31zOSKFHg3dfbpiu5U/\nsCcrcg4ZOGwjzWBODtq5TZcUec5G80q+m+sxaGITIkHoaRxF/iWTpO6hqtOV\nas0ypLfjj0qYdOhjtFSWCD1La+N+pabmNNRFkp9SYxFksmtY74QL2TL+WvYQ\nDSNr\r\n=9Euh\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, "browserify": { "transform": [ [ @@ -6948,17 +7518,78 @@ ] ] }, - "_id": "async@3.1.1", - "_nodeVersion": "10.16.0", + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, "_npmVersion": "6.9.0", - "dist": { - "integrity": "sha512-X5Dj8hK1pJNC2Wzo2Rcp9FBVdJMGRR/S7V+lH46s8GVFhtbo5O4Le5GECCF/8PISVdkUA6mMPvgz7qTTD1rf1g==", - "shasum": "dd3542db03de837979c9ebbca64ca01b06dc98df", - "tarball": "https://registry.npmjs.org/async/-/async-3.1.1.tgz", - "fileCount": 137, - "unpackedSize": 693959, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK4SYCRA9TVsSAnZWagAAwq8P/2fzY1CQCkZxVry1UkOA\nEPhedbmCeYk9qjRvWN9jq0STU0K75i/XMxSJXCduFvkVsJ3zYIqN89c0vXPF\n27P+rhS38kgufjEy5hVpar0qW4vA4Z3507+5kFsG3K05sBP2lcj9VeJjsa1n\nF7ZV1FL7v/h/aIVAPTCpyfBG/uTvmYQQ0cS50SmIHTpcSJMJZNYZZZpHZogz\nvpvax2W7Mk3BcEx1g/RKCqGLOTA0RcD2aGRGH8VsnvCAvegHP38NTTeLNOmt\ng+cXtXNmOviN6w5HOo6UBI0Ik1i6P+vJHXpe+ixtGdGHrpCeH9ZCV8a4f66F\nJ4EJd4BqeBj19mumNM37nuhi7rR1WikMpcAi/2l+0pgTOb92lCDzD38qv+WN\nWHlPFi0PJhLQZPQM7skr2+fiBWSTQYK+WEeMuiivuc1leGTGA5lLAuz6mEWP\nMyoXNi8ie35oLPHKIulpvEqFcRuQ7ZAds9BI9sxH9mo2GPK7aDLoEJ/D0KBK\nJZI4irVDV/0NlS6fML4ZFhSyqLF4IpQzIRI2PTJVu31zOSKFHg3dfbpiu5U/\nsCcrcg4ZOGwjzWBODtq5TZcUec5G80q+m+sxaGITIkHoaRxF/iWTpO6hqtOV\nas0ypLfjj0qYdOhjtFSWCD1La+N+pabmNNRFkp9SYxFksmtY74QL2TL+WvYQ\nDSNr\r\n=9Euh\r\n-----END PGP SIGNATURE-----\r\n" + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "10.16.0", + "dependencies": {}, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.1.1_1579910295944_0.5908180329547317", + "host": "s3://npm-registry-packages" + } + }, + "3.2.0": { + "name": "async", + "version": "3.2.0", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@3.2.0", "maintainers": [ { "name": "aearly", @@ -6981,116 +7612,251 @@ "email": "megawac@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_3.1.1_1579910295944_0.5908180329547317" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "b3a2685c5ebb641d3de02d161002c60fc9f85720", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", + "fileCount": 137, + "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", + "signatures": [ + { + "sig": "MEYCIQDsBEc7qy7jygjb3KDpnFayZNyQhWFYPe6NvtWxihd3gAIhAJ9oosGeHPu/B5oTZ4Th/EyLQyS/OKtD30qcXTcPX+gw", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 693549, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUzvMCRA9TVsSAnZWagAA6+QP/RUibULPbDqgUE7W3NX3\nnG1BQwtjLgTNNoD9SPiV6Y/FUTV4/Ij13/YV4Dh2l6BuJgo5Wso+WBt3Hiu+\ngev59KScUYuGd6J0NQ7H8BNEn8EmJsBs7uKcXzgzEp2JubUKkdmPLaUbLBbW\nfKjAASAyPEISQ0dz9zGq9BclBk+FV+JqBoBlVbnMnN8LQDgjM4vgwuBwtyy3\nHQ9DSDEEW/9iNd1TfHH6cT3oCPgDutGN9aAvKhC6qDnx5CgNfz/tUsKY8/aI\nLbTxOI2Eg5N6PT5s1n33uUrpEiV2Kc9zDJAiAVYQuwJgRPMPy2ZoSaPGYDYE\n5fyAU8BqAQyuiSB7ZRLxWCNkQTj0UEIxcttEsPeQTCWWgb1SjVIG9BbYi/4L\nrfBw8v4QJ1I5FZJqxL61CSCyH2ugRlgk0iNEPuhMxeRavpvG08ifOs52l5rY\n1jtcJOPlctyOgpX2bXoQxd5cfrfjn/2mI33adNz/L8W9XNsB+YuP/5EsZ58K\n6sBSQnQHK3RKU6xsMpQ9EDYT/RVFj3lEQghhexB/AzIAIJmk88qYiksguVkz\n+zxxrJMUZ1KgfuH/DPcBL8sZS34y7c9Sd7DDNs0GSJjzcO1iMovLwIBPKCe/\npEjiCqHrFs/jerZlmxoIaKPJ9TBZgLyvR5CU4J7tDRTZI9hD8lzsNse3AB0+\nJf9y\r\n=bq6i\r\n-----END PGP SIGNATURE-----\r\n" }, - "_hasShrinkwrap": false - }, - "3.2.0": { - "name": "async", - "description": "Higher-order functions and common patterns for asynchronous code", - "version": "3.2.0", "main": "dist/async.js", - "author": { - "name": "Caolan McMahon" + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" }, - "homepage": "https://caolan.github.io/async/", - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" }, - "bugs": { - "url": "https://github.com/caolan/async/issues" + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" }, - "keywords": [ - "async", - "callback", - "module", - "utility" - ], + "_npmVersion": "6.13.4", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "12.16.1", "dependencies": {}, + "_hasShrinkwrap": false, "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^5.1.4", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.3", + "nyc": "^14.1.1", "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", "es6-promise": "^2.3.0", - "eslint": "^6.0.1", - "eslint-plugin-prefer-arrow": "^1.1.5", - "fs-extra": "^0.26.7", - "jsdoc": "^3.6.2", - "karma": "^4.1.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^6.1.4", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^14.1.1", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, - "scripts": { - "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", - "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", - "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", - "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", - "mocha-browser-test": "karma start", - "mocha-node-test": "mocha", - "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", - "test": "npm run lint && npm run mocha-node-test" + "_npmOperationalInternal": { + "tmp": "tmp/async_3.2.0_1582513099955_0.25980788891618545", + "host": "s3://npm-registry-packages" + } + }, + "3.2.1": { + "name": "async", + "version": "3.2.1", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, "license": "MIT", + "_id": "async@3.2.1", + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, "nyc": { "exclude": [ "test" ] }, - "module": "dist/async.mjs", - "_id": "async@3.2.0", - "_nodeVersion": "12.16.1", - "_npmVersion": "6.13.4", "dist": { - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", - "shasum": "b3a2685c5ebb641d3de02d161002c60fc9f85720", - "tarball": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", + "shasum": "d3274ec66d107a47476a4c49136aacdb00665fc8", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.1.tgz", "fileCount": 137, - "unpackedSize": 693549, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUzvMCRA9TVsSAnZWagAA6+QP/RUibULPbDqgUE7W3NX3\nnG1BQwtjLgTNNoD9SPiV6Y/FUTV4/Ij13/YV4Dh2l6BuJgo5Wso+WBt3Hiu+\ngev59KScUYuGd6J0NQ7H8BNEn8EmJsBs7uKcXzgzEp2JubUKkdmPLaUbLBbW\nfKjAASAyPEISQ0dz9zGq9BclBk+FV+JqBoBlVbnMnN8LQDgjM4vgwuBwtyy3\nHQ9DSDEEW/9iNd1TfHH6cT3oCPgDutGN9aAvKhC6qDnx5CgNfz/tUsKY8/aI\nLbTxOI2Eg5N6PT5s1n33uUrpEiV2Kc9zDJAiAVYQuwJgRPMPy2ZoSaPGYDYE\n5fyAU8BqAQyuiSB7ZRLxWCNkQTj0UEIxcttEsPeQTCWWgb1SjVIG9BbYi/4L\nrfBw8v4QJ1I5FZJqxL61CSCyH2ugRlgk0iNEPuhMxeRavpvG08ifOs52l5rY\n1jtcJOPlctyOgpX2bXoQxd5cfrfjn/2mI33adNz/L8W9XNsB+YuP/5EsZ58K\n6sBSQnQHK3RKU6xsMpQ9EDYT/RVFj3lEQghhexB/AzIAIJmk88qYiksguVkz\n+zxxrJMUZ1KgfuH/DPcBL8sZS34y7c9Sd7DDNs0GSJjzcO1iMovLwIBPKCe/\npEjiCqHrFs/jerZlmxoIaKPJ9TBZgLyvR5CU4J7tDRTZI9hD8lzsNse3AB0+\nJf9y\r\n=bq6i\r\n-----END PGP SIGNATURE-----\r\n" + "integrity": "sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg==", + "signatures": [ + { + "sig": "MEUCIHYAB61AMMtRzmJhI5+ookuln1Bx/8cFM+4ndFO7Pd/xAiEAjivxxhy+P1C8umkBRtHG749CQPcMIATds5fsiRa6IPE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 816097, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDHIOCRA9TVsSAnZWagAASZ4QAJ9oNtLFgm6xJSKlWtHj\nzXCemeIfFsrb3av9mSKR6/XYk5nSEijCgLjm5Ep5x11Exuxo8OM+7t8USiKR\nJ1Gg9i/qkCqYq8PTqPy3yR0D90o4CNCwzGRwe1eRG2Mo4IoFNWYoEi3NAEHb\nOpaj5TBuWkRBjGRF9UIWeulvL5l07lOnWuvulCyHFqqvbL8bMGdpd6vwLzoo\nv4WGpiA0rshZa4v2IygeUU9CfB3eiRvzl3mKRfL+tbqaW96AS8oFcTmQXaT2\nm8M9iP4vkyKXO6cKFKfetdxEFYN3dteHwJakEAKC+bLayuK39K2Ge03qhwzH\npXXS7rllcf/PfIOU0YvZ+jNtRGsitNeaCRSEfRrvmw+5VHkEH4qtB2MQHOJP\nfnYoIMEPgOxpPJo8O2FyVBNuTRgUi4p4gMlya0wa+RdXAyOj1XuLLDySZxTO\nh7lAxPmTJERrebABvSZbGbqT2N+JdeFfc7qMUKYgGiqxcsI5jmTYWNjQOmWV\ndxesXNsNXoR2H0SFq+YlwlU+FYytIOS5oyBATfB2RdjsRGbftPKCnQL0SSAC\nie4UHknwV/rJYXkBHYhPzeAdah6XNPGVII36lU5oBHpO0EkmkosdyqT8Jw57\nzHWQphT7prBNITcRZ1jSFhiXmgDT1tGUlt/K0pIU0B4WuXkw5x9cEp/QQC/X\nECze\r\n=PRfx\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "6.14.13", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "14.17.2", + "dependencies": {}, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.2.1_1628205581950_0.838478617754393", + "host": "s3://npm-registry-packages" + } + }, + "3.2.2": { + "name": "async", + "version": "3.2.2", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" }, + "license": "MIT", + "_id": "async@3.2.2", "maintainers": [ - { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, { "name": "beaugunderson", "email": "beau@beaugunderson.com" @@ -7100,1371 +7866,2100 @@ "email": "caolan.mcmahon@gmail.com" }, { - "name": "hargasinski", - "email": "argasinski.hubert@gmail.com" + "name": "aearly", + "email": "alexander.early@gmail.com" }, { "name": "megawac", "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" } ], - "_npmUser": { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/async_3.2.0_1582513099955_0.25980788891618545" + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" }, - "_hasShrinkwrap": false - } - }, - "maintainers": [ - { - "name": "aearly", - "email": "alexander.early@gmail.com" - }, - { - "name": "beaugunderson", - "email": "beau@beaugunderson.com" - }, - { - "name": "caolan", - "email": "caolan.mcmahon@gmail.com" + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "2eb7671034bb2194d45d30e31e24ec7e7f9670cd", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", + "fileCount": 137, + "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==", + "signatures": [ + { + "sig": "MEQCIBgWpQwOsHT9iNgOpz9BoF2+C1+WwgyJ9Gn274tNeedOAiB1XYBYsrX45OueFMecnHgjoVnf0T6hVPoPgfTBIY5UmA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 816672 + }, + "main": "dist/async.js", + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "6.14.11", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "14.16.0", + "dependencies": {}, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.2.2_1635391048363_0.37443693693197", + "host": "s3://npm-registry-packages" + } }, - { - "name": "hargasinski", - "email": "argasinski.hubert@gmail.com" + "3.2.3": { + "name": "async", + "version": "3.2.3", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@3.2.3", + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan.mcmahon@gmail.com" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "ac53dafd3f4720ee9e8a160628f18ea91df196c9", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "fileCount": 137, + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==", + "signatures": [ + { + "sig": "MEUCIQDz66uC2MbtiqkGR5ZPK2R3LyfFtEWXsF6SgdU49u/JrAIgeZ1T9uXz4rYbh3LsTK6ZMWbEHJFc66aiXvOwr58D3XU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 820507, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh24AMCRA9TVsSAnZWagAA+loP/3QXGjSCmmNkz04uWaPt\n9PQJ2uycfydYdkUm96nVoMJZltSO2y6DbfhmdeqndRoKTQtnbwlmfq9ng6vz\n+srcqm4vjelRHPpYlZlTp2fBfNAw7uY4zlFsBUjAgYM4GE8L4wnHW4ARq84K\nuGLn1pDIUb2nzydrWwj3LFnooaPSTNwtkEGjBxgBjROpxJf/JmXX2XMWKw4G\nzq89y/5OK4LXIixgpl7m/5CvkETElVbqSTk/VPxFgRYw48vzEF4MZh+w79s9\nkrEWwmqiVxsWNB5E1+HtCfDKxh5cjmUpdx8DybAGRxb6Jfrg3gNuFXesIGeI\nE31+rIMD23oesDoVtx23ISotkGid2w7Eh7PTJMx1hDd6b39uwxDYJ+62UOvL\nEntW4t821oEbRTp6UUjuMZC2eimhygmy+FASQic5loGMcFwn91iCGGj4d3e5\nLJQmE+9ykucdgDL6/We/OyeLmiXYVjjmSP8HulioZw5eEuLMYlNZ5FO6Ijro\nOy8NxA+ngSBdOA8QPIjHYYkPIUqFalWTV2CciuHQAUtaou3TqRFRnLP/3OZ0\nLbqreVlOlv73s4g7UVwBny4yuJ0JI0DvzGlbX9kYbjvlWDWqBx6cQSiD39Qz\nPx8mWVs/hwgJBAxKB0Q8tm8sAyAKvqBmSWHsmTEpARF0JqkBGK+rQz2MvW19\n/2zV\r\n=8M/Z\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", + "module": "dist/async.mjs", + "scripts": { + "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "6.14.7", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "14.7.0", + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.2.3_1641775116794_0.1623085249174283", + "host": "s3://npm-registry-packages" + } }, - { - "name": "megawac", - "email": "megawac@gmail.com" - } - ], - "author": { - "name": "Caolan McMahon" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/caolan/async.git" - }, - "time": { - "modified": "2020-03-05T17:23:38.004Z", - "created": "2010-12-19T16:41:51.765Z", - "0.1.0": "2010-12-19T16:41:51.765Z", - "0.1.1": "2010-12-19T16:41:51.765Z", - "0.1.2": "2010-12-19T16:41:51.765Z", - "0.1.3": "2010-12-19T16:41:51.765Z", - "0.1.4": "2010-12-19T16:41:51.765Z", - "0.1.5": "2010-12-19T16:41:51.765Z", - "0.1.6": "2010-12-19T16:41:51.765Z", - "0.1.7": "2010-12-19T16:41:51.765Z", - "0.1.8": "2011-01-18T09:56:53.975Z", - "0.1.9": "2011-04-27T20:48:08.634Z", - "0.1.10": "2011-09-19T04:40:01.573Z", - "0.1.11": "2011-10-14T17:07:28.752Z", - "0.1.12": "2011-10-14T17:19:19.452Z", - "0.1.13": "2011-10-29T22:33:52.448Z", - "0.1.14": "2011-10-29T22:40:14.486Z", - "0.1.15": "2011-11-01T23:05:01.415Z", - "0.1.16": "2012-02-13T04:56:23.926Z", - "0.1.17": "2012-02-27T02:40:58.997Z", - "0.1.18": "2012-02-27T16:51:02.109Z", - "0.1.19": "2012-05-24T06:51:06.109Z", - "0.1.20": "2012-05-24T06:53:39.997Z", - "0.1.21": "2012-05-24T07:16:16.753Z", - "0.1.22": "2012-05-30T18:26:44.821Z", - "0.1.23": "2012-10-04T13:52:08.947Z", - "0.2.0": "2013-02-04T11:38:08.943Z", - "0.2.1": "2013-02-04T11:52:34.110Z", - "0.2.2": "2013-02-05T15:55:23.202Z", - "0.2.3": "2013-02-06T12:48:37.415Z", - "0.2.4": "2013-02-07T17:26:22.236Z", - "0.2.5": "2013-02-10T22:42:00.162Z", - "0.2.6": "2013-03-03T11:29:52.674Z", - "0.2.7": "2013-04-09T20:50:04.712Z", - "0.2.8": "2013-05-01T10:04:07.430Z", - "0.2.9": "2013-05-28T07:50:48.795Z", - "0.2.10": "2014-01-23T16:23:57.271Z", - "0.3.0": "2014-03-28T17:16:05.640Z", - "0.4.0": "2014-03-28T17:25:12.580Z", - "0.4.1": "2014-03-30T11:42:54.298Z", - "0.5.0": "2014-03-30T11:46:31.381Z", - "0.6.0": "2014-03-30T12:04:32.275Z", - "0.6.1": "2014-03-30T20:35:32.550Z", - "0.6.2": "2014-03-31T09:56:20.294Z", - "0.7.0": "2014-04-07T09:07:34.303Z", - "0.8.0": "2014-04-29T15:26:34.028Z", - "0.9.0": "2014-05-16T10:20:22.247Z", - "0.9.2": "2015-05-19T08:45:57.198Z", - "1.0.0": "2015-05-20T23:40:05.710Z", - "1.1.0": "2015-06-01T07:59:05.989Z", - "1.2.0": "2015-06-02T20:56:04.526Z", - "1.1.1": "2015-06-08T01:26:56.285Z", - "1.2.1": "2015-06-08T01:43:33.907Z", - "1.3.0": "2015-06-29T16:14:01.899Z", - "1.4.0": "2015-07-20T02:11:50.089Z", - "1.4.1": "2015-08-07T21:08:08.172Z", - "1.4.2": "2015-08-09T18:10:22.399Z", - "1.5.0": "2015-10-26T01:41:14.220Z", - "1.5.1": "2016-01-02T23:38:22.435Z", - "1.5.2": "2016-01-08T00:03:32.998Z", - "2.0.0-alpha.0": "2016-03-18T23:46:58.334Z", - "2.0.0-rc.1": "2016-03-18T23:52:37.386Z", - "2.0.0-rc.2": "2016-03-24T03:39:49.460Z", - "2.0.0-rc.3": "2016-04-07T21:11:27.200Z", - "2.0.0-rc.4": "2016-05-05T23:30:00.507Z", - "2.0.0-rc.5": "2016-05-16T20:15:02.032Z", - "2.0.0-rc.6": "2016-06-07T21:13:20.130Z", - "2.0.0": "2016-07-13T00:23:10.577Z", - "2.0.1": "2016-07-22T20:37:03.855Z", - "2.1.0": "2016-10-12T18:22:41.697Z", - "2.1.1": "2016-10-12T18:58:53.479Z", - "2.1.2": "2016-10-16T22:46:37.667Z", - "2.1.4": "2016-11-22T19:16:50.375Z", - "2.1.5": "2017-02-19T01:31:00.277Z", - "2.2.0": "2017-03-25T20:39:42.923Z", - "2.3.0": "2017-04-02T22:55:24.664Z", - "2.4.0": "2017-04-29T23:23:32.659Z", - "2.4.1": "2017-05-22T03:57:15.218Z", - "2.5.0": "2017-06-25T23:42:02.387Z", - "2.6.0": "2017-11-07T02:45:53.140Z", - "2.6.1": "2018-05-21T04:34:29.126Z", - "3.0.1-0": "2018-10-01T01:09:31.821Z", - "2.6.2": "2019-02-12T22:36:10.059Z", - "3.0.0": "2019-05-20T02:27:54.697Z", - "3.0.1": "2019-05-26T21:43:02.357Z", - "3.1.0": "2019-06-23T05:30:03.875Z", - "2.6.3": "2019-07-14T23:30:45.837Z", - "3.1.1": "2020-01-24T23:58:16.097Z", - "3.2.0": "2020-02-24T02:58:20.125Z" - }, - "users": { - "322434578": true, - "thejh": true, - "avianflu": true, - "mvolkmann": true, - "mikl": true, - "linus": true, - "pvorb": true, - "dodo": true, - "danielr": true, - "suor": true, - "dolphin278": true, - "kurijov": true, - "langpavel": true, - "alexindigo": true, - "fgribreau": true, - "hughsk": true, - "pid": true, - "tylerstalder": true, - "gillesruppert": true, - "coiscir": true, - "xenomuta": true, - "jgoodall": true, - "jswartwood": true, - "drudge": true, - "cpsubrian": true, - "joeferner": true, - "bencevans": true, - "Scryptonite": true, - "damonoehlman": true, - "tivac": true, - "shama": true, - "gimenete": true, - "bryanburgers": true, - "hij1nx": true, - "sandeepmistry": true, - "minddiaper": true, - "fiws": true, - "ljharb": true, - "popeindustries": true, - "dbrockman": true, - "eknkc": true, - "booyaa": true, - "afc163": true, - "maxmaximov": true, - "meryn": true, - "hfcorriez": true, - "hyqhyq_3": true, - "zonetti": true, - "cmilhench": true, - "cparker15": true, - "jfromaniello": true, - "ExxKA": true, - "devoidfury": true, - "cedrickchee": true, - "niftymonkey": true, - "paulj": true, - "leesei": true, - "jamesmgreene": true, - "igorissen": true, - "zaphod1984": true, - "moonpyk": true, - "joliva": true, - "chrisweb": true, - "cuprobot": true, - "tmaximini": true, - "lupomontero": true, - "john.pinch": true, - "everywhere.js": true, - "frankblizzard": true, - "alanshaw": true, - "forivall": true, - "kubakubula": true, - "doliveira": true, - "dstokes": true, - "pana": true, - "irae": true, - "mhaidarh": true, - "tetsu3a": true, - "qubyte": true, - "darosh": true, - "samuelrn": true, - "tigefa": true, - "tcrowe": true, - "tpwk": true, - "eins78": true, - "sierrasoftworks": true, - "yoavf": true, - "irakli": true, - "hypergeometric": true, - "gammasoft": true, - "youxiachai": true, - "kahboom": true, - "elisee": true, - "soroush": true, - "thomas-so": true, - "shenaor": true, - "paulomcnally": true, - "timur.shemsedinov": true, - "slianfeng": true, - "ettalea": true, - "mananvaghasiya": true, - "daniel7912": true, - "themiddleman": true, - "jacques": true, - "kerimdzhanov": true, - "jorgemsrs": true, - "ivandimanov": true, - "vegera": true, - "aselzer": true, - "kentcdodds": true, - "putaoshu": true, - "cilindrox": true, - "bezoerb": true, - "leodutra": true, - "mpcref": true, - "green_goo": true, - "crimeminister": true, - "rrobayna": true, - "tengisb": true, - "johannestegner": true, - "iisii": true, - "hankeypancake": true, - "sironfoot": true, - "seldo": true, - "owenlancaster": true, - "esundahl": true, - "zeusdeux": true, - "ajduke": true, - "darryl.west": true, - "noder": true, - "projectweekend": true, - "alejonext": true, - "evkline": true, - "horaci": true, - "h2non": true, - "tarcio": true, - "lucasbrigida": true, - "roboterhund87": true, - "nbu": true, - "biggora": true, - "junajan": true, - "huoshaolin": true, - "netzzwerg": true, - "fmm": true, - "redbe4rd": true, - "codeshrew": true, - "stonestyle": true, - "caligone": true, - "progmer": true, - "lucasjans": true, - "gabeio": true, - "beyoung": true, - "davidhalldor": true, - "cocopas": true, - "jayharris": true, - "rckbt": true, - "hut": true, - "lobodpav": true, - "alinex": true, - "morishitter": true, - "joost": true, - "mmierswa": true, - "skilbjo": true, - "topcloud": true, - "imzack": true, - "runningtalus": true, - "toogle": true, - "gyoridavid": true, - "humantriangle": true, - "pospi": true, - "sampsa": true, - "z3a": true, - "andre_de_souza": true, - "vitaliks": true, - "mikend": true, - "gmturbo": true, - "juriwiens": true, - "ksnieck": true, - "brentonhouse": true, - "axelav": true, - "jbdoumenjou": true, - "shen-weizhong": true, - "tmn": true, - "gaborsar": true, - "nromano": true, - "chaowi": true, - "jaredvogt": true, - "timsmiths": true, - "zckrs": true, - "agent_9191": true, - "djbrandl": true, - "edalorzo": true, - "jakub.knejzlik": true, - "robertwarrengilmore": true, - "trylobot": true, - "oroce": true, - "piron_t": true, - "bmpvieira": true, - "joshmu": true, - "davidrlee": true, - "adityabakle": true, - "wilbeibi": true, - "ramanshalupau": true, - "dizlexik": true, - "cbarrick": true, - "janez89": true, - "frk1705": true, - "travelingtechguy": true, - "thitinun": true, - "shatting": true, - "pilsy": true, - "quadroid": true, - "fanchangyong": true, - "tchey": true, - "arrc": true, - "h02e56": true, - "strangemother": true, - "tmypawa": true, - "ioncreature": true, - "japh": true, - "tonijz": true, - "syzer": true, - "nodecode": true, - "dercoder": true, - "leighakin": true, - "matteospampani": true, - "redmed": true, - "s-konrad": true, - "boustanihani": true, - "ricardofbarros": true, - "ryanthejuggler": true, - "mswanson1524": true, - "alnafie": true, - "truongpv": true, - "tjwebb": true, - "daviddias": true, - "nbarr": true, - "ajohnstone": true, - "atd": true, - "tommyjs7": true, - "omardelarosa": true, - "rifaqat": true, - "tsangint": true, - "cortys": true, - "mbildner": true, - "yourhoneysky": true, - "fill": true, - "dennisgnl": true, - "fampinheiro": true, - "anilcs0405": true, - "mathiasm": true, - "thebearingedge": true, - "leon.domingo": true, - "hemphillcc": true, - "jits": true, - "tcauduro": true, - "gorbiz": true, - "guumaster": true, - "brandonb927": true, - "nornalbion": true, - "loselovegirl": true, - "lucag": true, - "dilterporto": true, - "wilk": true, - "karmadude": true, - "henryfour": true, - "iaincollins": true, - "louxiaojian": true, - "jotadeveloper": true, - "cyberien": true, - "atheken": true, - "lebowitz": true, - "orion-": true, - "thebespokepixel": true, - "hecto932": true, - "denmerc": true, - "rpgreen": true, - "colwob": true, - "shieldax": true, - "8bitalex": true, - "memoramirez": true, - "liushuping": true, - "ciroque": true, - "jugyo": true, - "mjurincic": true, - "flaviodelbianco": true, - "thealphanerd": true, - "samanthagmccormick": true, - "trycatch9264": true, - "tomi77": true, - "lezuse": true, - "oncletom": true, - "kewin": true, - "l0n9h02n": true, - "sasquatch": true, - "manny": true, - "wxnet": true, - "ruffle1986": true, - "danestuckel": true, - "krisbarrett": true, - "tur-nr": true, - "danielhuisman": true, - "byossarian": true, - "joshwyatt": true, - "lellansin": true, - "evandrix": true, - "gautam.mehra762": true, - "dominik.palo": true, - "dgarlitt": true, - "woverton": true, - "legacy": true, - "paulpdaniels": true, - "congcong": true, - "trusktr": true, - "jcreigno": true, - "jsolis": true, - "avinashkoyyana": true, + "2.6.4": { + "name": "async", + "version": "2.6.4", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@2.6.4", + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan@caolan.uk" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "mocha_test" + ] + }, + "dist": { + "shasum": "706b7ff6084664cd7eae713f6f965433b5504221", + "tarball": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "fileCount": 133, + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "signatures": [ + { + "sig": "MEUCIQCKW29ZLtxpGVBPdzIdTmD/BqOYrisJ7L0fQva05kNN9QIgSP+kWyIfhhUxQkkJic2hrdcBNtZ86M/W4YJoDkE+6FE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 541303, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiV1e3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmprMg/+K/kylAW6VjOJrIABgxFedlr8L5qeaabchILjWewaoWtwh/aZ\r\nY4Ssx0ukLZfGPU39IloAzDhPxe2GmG/a6E+F+q3BkwWpFpAC17YFQj3eKNQO\r\nuP8dC0bDP4tPb/+pi+tHweTN4wZeTrWZcVP85smfBr7ODNxFq2ukR0LQtgg3\r\ncxwaI4Eo+2L6/joM/f4GOPuUnol8hfOmnYD7cNPn7t9ChHKCC1Y1yR9wGGby\r\n0QQ10Zlm91FMQzSw5WCly6JE8aWzk/KFpLT1/NzHXbXL4NxC7hXnLJGiWC7+\r\nm0U6jPgfkEPc0GNOTgS5b4AJNhJHLKTDE4AcCjslsa49Y9MEl6d/Q783cdme\r\nc2BJ5GaYcGkm7IdAQ7dLZS+crnCKgAkBis03lyrAixV3vzUZBTLKZN2Hy4gb\r\npnKiYSrvCQ+9PEr4J7Cgh9JykEGBwk9ildtjmNUMRybzZA0PoSHlEGTkymeT\r\nkyd4qzalRmoWCsVTzXgQr0nsSzAD+/ATIaTjUOO+TjNYTUYSJ0YVGrXUrtHQ\r\nW3uRTYuxUwBp8ifGvwqg4+4BosAimg0wQIEsZCFh8oXx5UIlJhUo8hga4tyx\r\ngYhHK+AEaXeNzgWKQ4MyZ0drvKLfpBRHYCupSaxGPcRyrW2WqL3uLjvil1SV\r\n7KfttotRxmyJB8dsmkd8mdNyk61Hrm068Dc=\r\n=Ab5D\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", + "gitHead": "c6bdaca4f9175c14fc655d3783c6af6a883e6514", + "scripts": { + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "8.5.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "16.14.2", + "dependencies": { + "lodash": "^4.17.14" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^11.8.0", + "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.2", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", + "rimraf": "^2.5.0", + "rollup": "^0.36.3", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", + "uglify-js": "~2.7.3", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "gh-pages-deploy": { + "staticpath": "docs" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_2.6.4_1649891255271_0.32423021556528187", + "host": "s3://npm-registry-packages" + } + }, + "3.2.4": { + "name": "async", + "version": "3.2.4", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@3.2.4", + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan@caolan.uk" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "2d22e00f8cddeb5fde5dd33522b56d1cf569a81c", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "fileCount": 137, + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "signatures": [ + { + "sig": "MEYCIQCyfhDqY64diAlRW27C7/19Gl2Ukz1GOfln1mFh2SDJ+wIhAOPqbe0YAqe2skH5pjvV90MMGZNnjK718g2IM8Z1V9Aa", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 820627, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJins0VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoznw//bU9qZjo/bW8nHUZKZW+Iwnlq1iA1gBGnxWUlxq5hdcouTyw6\r\nSj+HdkIb+J5egSfjiVUHk6gayLmBp2/SPuujj8kSJGpcVYR4/KvGot7QYVs8\r\nLn0wtcwgxncLYyekYoTntXilepKg/iSPOSBCZEb8ZnTvumNOAV3R/Rdg/cJn\r\njWXXWaGBhazJwLpQdubJTsjwAtMq2YGCKIt7ESkVU39NbUp3LKo9Txu0pt/m\r\nCTYBs6H5gzy5CIlDF3UHFaznKpPg+R9LecdHIK9ehKnWFSyHuCaV7Net1MM5\r\nsSxAO7215rHnXbcoAoF/tydZcFf1pjDI4FmNFeYhnYg3XD8cajhtDKMIGyIe\r\nbvGD7NaYE8rqVQ89g9kjXIk6B4HoObAA8rOsB30XQxlWi85CZs7g0yECWcRi\r\naIFs3akmF1V+uGzjDwQPGYhjXEnxc0fDt96Z3o0MUTKDAFApqkmxGlsdrlVL\r\n/rCoP6pUjRujgPDVJS5ywvIUEmdwL4AYefXGelTjubMoaiL6RqToIs6j6GtP\r\n65p7QEcGR2IBHHIDKJDZWayQp3TsP055n8lOHau6hoYGkE4CFj4/FpmJ7kDu\r\nd4bub10x/F7eXnnzkatk0H/tU8tjRs2nu2NEDWmP7f5oDE3KsPGMhj6lY3Nt\r\nkJJT3fktwIgxPxON1izHOtobgo0s4Y+F84Q=\r\n=3WXo\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "dist/async.js", + "module": "dist/async.mjs", + "gitHead": "f3ab51af76ca87ebe3ec67b3dd6dec4959e04816", + "scripts": { + "lint": "eslint --fix .", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "8.5.0", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "16.14.2", + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^15.1.0", + "chai": "^4.2.0", + "rsvp": "^4.8.5", + "jsdoc": "^3.6.2", + "karma": "^6.3.12", + "mocha": "^6.1.4", + "yargs": "^17.3.1", + "eslint": "^8.6.0", + "rollup": "^2.66.1", + "semver": "^7.3.5", + "cheerio": "^0.22.0", + "babelify": "^10.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^10.0.0", + "benchmark": "^2.1.1", + "babel-core": "^6.26.3", + "browserify": "^17.0.0", + "es6-promise": "^4.2.8", + "karma-mocha": "^2.0.1", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^8.1.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "@babel/eslint-parser": "^7.16.5", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^6.1.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^2.1.2", + "eslint-plugin-prefer-arrow": "^1.2.3", + "rollup-plugin-node-resolve": "^5.2.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.2.4_1654574357583_0.7995412960677097", + "host": "s3://npm-registry-packages" + } + }, + "3.2.5": { + "name": "async", + "version": "3.2.5", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "_id": "async@3.2.5", + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan@caolan.uk" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "homepage": "https://caolan.github.io/async/", + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "nyc": { + "exclude": [ + "test" + ] + }, + "dist": { + "shasum": "ebd52a8fdaf7a2289a24df399f8d8485c8a46b66", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "fileCount": 137, + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "signatures": [ + { + "sig": "MEUCIFKWDNzB+mCeiEILJjVgpASf4Vp5eiO6zAd9GUhs33eGAiEAh8icT+I0sShyVf6DNJ8KNZ6T4aw43NqbaYIBDDtwDnU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 807668 + }, + "main": "dist/async.js", + "module": "dist/async.mjs", + "gitHead": "87e94e658f24030f9104626e00456a5a0c1f9566", + "scripts": { + "lint": "eslint --fix .", + "test": "npm run lint && npm run mocha-node-test", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "mocha-node-test": "mocha", + "mocha-browser-test": "karma start" + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "repository": { + "url": "git+https://github.com/caolan/async.git", + "type": "git" + }, + "_npmVersion": "9.6.7", + "description": "Higher-order functions and common patterns for asynchronous code", + "directories": {}, + "_nodeVersion": "16.20.0", + "_hasShrinkwrap": false, + "devDependencies": { + "nyc": "^15.1.0", + "chai": "^4.2.0", + "rsvp": "^4.8.5", + "jsdoc": "^3.6.2", + "karma": "^6.3.12", + "mocha": "^6.1.4", + "yargs": "^17.3.1", + "eslint": "^8.6.0", + "rollup": "^4.2.0", + "semver": "^7.3.5", + "cheerio": "^0.22.0", + "babelify": "^10.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^11.1.1", + "benchmark": "^2.1.1", + "browserify": "^17.0.0", + "@babel/core": "7.23.2", + "es6-promise": "^4.2.8", + "karma-mocha": "^2.0.1", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^8.1.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "@babel/eslint-parser": "^7.16.5", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^6.1.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^2.1.2", + "eslint-plugin-prefer-arrow": "^1.2.3", + "rollup-plugin-node-resolve": "^5.2.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/async_3.2.5_1699049465653_0.9141691920917743", + "host": "s3://npm-registry-packages" + } + }, + "3.2.6": { + "name": "async", + "description": "Higher-order functions and common patterns for asynchronous code", + "version": "3.2.6", + "main": "dist/async.js", + "author": { + "name": "Caolan McMahon" + }, + "homepage": "https://caolan.github.io/async/", + "repository": { + "type": "git", + "url": "git+https://github.com/caolan/async.git" + }, + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "devDependencies": { + "@babel/eslint-parser": "^7.16.5", + "@babel/core": "7.25.2", + "babel-minify": "^0.5.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-istanbul": "^7.0.0", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "babel-register": "^6.26.0", + "babelify": "^10.0.0", + "benchmark": "^2.1.1", + "bluebird": "^3.4.6", + "browserify": "^17.0.0", + "chai": "^4.2.0", + "cheerio": "^0.22.0", + "es6-promise": "^4.2.8", + "eslint": "^8.6.0", + "eslint-plugin-prefer-arrow": "^1.2.3", + "fs-extra": "^11.1.1", + "jsdoc": "^4.0.3", + "karma": "^6.3.12", + "karma-browserify": "^8.1.0", + "karma-firefox-launcher": "^2.1.2", + "karma-mocha": "^2.0.1", + "karma-mocha-reporter": "^2.2.0", + "karma-safari-launcher": "^1.0.0", + "mocha": "^6.1.4", + "native-promise-only": "^0.8.0-a", + "nyc": "^17.0.0", + "rollup": "^4.2.0", + "rollup-plugin-node-resolve": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "rsvp": "^4.8.5", + "semver": "^7.3.5", + "yargs": "^17.3.1" + }, + "scripts": { + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", + "lint": "eslint --fix .", + "mocha-browser-test": "karma start", + "mocha-node-test": "mocha", + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", + "test": "npm run lint && npm run mocha-node-test" + }, + "license": "MIT", + "nyc": { + "exclude": [ + "test" + ] + }, + "module": "dist/async.mjs", + "_id": "async@3.2.6", + "gitHead": "85fb18f3d319d14d893ec24648929ff0eb908768", + "_nodeVersion": "20.15.0", + "_npmVersion": "10.7.0", + "dist": { + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "shasum": "1b0728e14929d51b85b449b7f06e27c1145e38ce", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "fileCount": 137, + "unpackedSize": 807741, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGVIkMhFwMbLDtCb8+z9GFMA6NspoYw4xXsNMwAcOtdvAiEAhQIpoN7wNHYrlvNiTc2Cnw5bRI3O5tOocA0iLdunyQI=" + } + ] + }, + "_npmUser": { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan@caolan.uk" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/async_3.2.6_1724109863038_0.13024437870975958" + }, + "_hasShrinkwrap": false + } + }, + "time": { + "created": "2010-12-19T16:41:51.765Z", + "modified": "2024-08-19T23:24:23.544Z", + "0.1.4": "2010-12-19T16:41:51.765Z", + "0.1.3": "2010-12-19T16:41:51.765Z", + "0.1.0": "2010-12-19T16:41:51.765Z", + "0.1.1": "2010-12-19T16:41:51.765Z", + "0.1.7": "2010-12-19T16:41:51.765Z", + "0.1.6": "2010-12-19T16:41:51.765Z", + "0.1.5": "2010-12-19T16:41:51.765Z", + "0.1.2": "2010-12-19T16:41:51.765Z", + "0.1.8": "2011-01-18T09:56:53.975Z", + "0.1.9": "2011-04-27T20:48:08.634Z", + "0.1.10": "2011-09-19T04:40:01.573Z", + "0.1.11": "2011-10-14T17:07:28.752Z", + "0.1.12": "2011-10-14T17:19:19.452Z", + "0.1.13": "2011-10-29T22:33:52.448Z", + "0.1.14": "2011-10-29T22:40:14.486Z", + "0.1.15": "2011-11-01T23:05:01.415Z", + "0.1.16": "2012-02-13T04:56:23.926Z", + "0.1.17": "2012-02-27T02:40:58.997Z", + "0.1.18": "2012-02-27T16:51:02.109Z", + "0.1.19": "2012-05-24T06:51:06.109Z", + "0.1.20": "2012-05-24T06:53:39.997Z", + "0.1.21": "2012-05-24T07:16:16.753Z", + "0.1.22": "2012-05-30T18:26:44.821Z", + "0.1.23": "2012-10-04T13:52:08.947Z", + "0.2.0": "2013-02-04T11:38:08.943Z", + "0.2.1": "2013-02-04T11:52:34.110Z", + "0.2.2": "2013-02-05T15:55:23.202Z", + "0.2.3": "2013-02-06T12:48:37.415Z", + "0.2.4": "2013-02-07T17:26:22.236Z", + "0.2.5": "2013-02-10T22:42:00.162Z", + "0.2.6": "2013-03-03T11:29:52.674Z", + "0.2.7": "2013-04-09T20:50:04.712Z", + "0.2.8": "2013-05-01T10:04:07.430Z", + "0.2.9": "2013-05-28T07:50:48.795Z", + "0.2.10": "2014-01-23T16:23:57.271Z", + "0.3.0": "2014-03-28T17:16:05.640Z", + "0.4.0": "2014-03-28T17:25:12.580Z", + "0.4.1": "2014-03-30T11:42:54.298Z", + "0.5.0": "2014-03-30T11:46:31.381Z", + "0.6.0": "2014-03-30T12:04:32.275Z", + "0.6.1": "2014-03-30T20:35:32.550Z", + "0.6.2": "2014-03-31T09:56:20.294Z", + "0.7.0": "2014-04-07T09:07:34.303Z", + "0.8.0": "2014-04-29T15:26:34.028Z", + "0.9.0": "2014-05-16T10:20:22.247Z", + "0.9.2": "2015-05-19T08:45:57.198Z", + "1.0.0": "2015-05-20T23:40:05.710Z", + "1.1.0": "2015-06-01T07:59:05.989Z", + "1.2.0": "2015-06-02T20:56:04.526Z", + "1.1.1": "2015-06-08T01:26:56.285Z", + "1.2.1": "2015-06-08T01:43:33.907Z", + "1.3.0": "2015-06-29T16:14:01.899Z", + "1.4.0": "2015-07-20T02:11:50.089Z", + "1.4.1": "2015-08-07T21:08:08.172Z", + "1.4.2": "2015-08-09T18:10:22.399Z", + "1.5.0": "2015-10-26T01:41:14.220Z", + "1.5.1": "2016-01-02T23:38:22.435Z", + "1.5.2": "2016-01-08T00:03:32.998Z", + "2.0.0-alpha.0": "2016-03-18T23:46:58.334Z", + "2.0.0-rc.1": "2016-03-18T23:52:37.386Z", + "2.0.0-rc.2": "2016-03-24T03:39:49.460Z", + "2.0.0-rc.3": "2016-04-07T21:11:27.200Z", + "2.0.0-rc.4": "2016-05-05T23:30:00.507Z", + "2.0.0-rc.5": "2016-05-16T20:15:02.032Z", + "2.0.0-rc.6": "2016-06-07T21:13:20.130Z", + "2.0.0": "2016-07-13T00:23:10.577Z", + "2.0.1": "2016-07-22T20:37:03.855Z", + "2.1.0": "2016-10-12T18:22:41.697Z", + "2.1.1": "2016-10-12T18:58:53.479Z", + "2.1.2": "2016-10-16T22:46:37.667Z", + "2.1.4": "2016-11-22T19:16:50.375Z", + "2.1.5": "2017-02-19T01:31:00.277Z", + "2.2.0": "2017-03-25T20:39:42.923Z", + "2.3.0": "2017-04-02T22:55:24.664Z", + "2.4.0": "2017-04-29T23:23:32.659Z", + "2.4.1": "2017-05-22T03:57:15.218Z", + "2.5.0": "2017-06-25T23:42:02.387Z", + "2.6.0": "2017-11-07T02:45:53.140Z", + "2.6.1": "2018-05-21T04:34:29.126Z", + "3.0.1-0": "2018-10-01T01:09:31.821Z", + "2.6.2": "2019-02-12T22:36:10.059Z", + "3.0.0": "2019-05-20T02:27:54.697Z", + "3.0.1": "2019-05-26T21:43:02.357Z", + "3.1.0": "2019-06-23T05:30:03.875Z", + "2.6.3": "2019-07-14T23:30:45.837Z", + "3.1.1": "2020-01-24T23:58:16.097Z", + "3.2.0": "2020-02-24T02:58:20.125Z", + "3.2.1": "2021-08-05T23:19:42.272Z", + "3.2.2": "2021-10-28T03:17:28.543Z", + "3.2.3": "2022-01-10T00:38:36.966Z", + "2.6.4": "2022-04-13T23:07:35.444Z", + "3.2.4": "2022-06-07T03:59:17.813Z", + "3.2.5": "2023-11-03T22:11:06.054Z", + "3.2.6": "2024-08-19T23:24:23.363Z" + }, + "bugs": { + "url": "https://github.com/caolan/async/issues" + }, + "author": { + "name": "Caolan McMahon" + }, + "license": "MIT", + "homepage": "https://caolan.github.io/async/", + "keywords": [ + "async", + "callback", + "module", + "utility" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/caolan/async.git" + }, + "description": "Higher-order functions and common patterns for asynchronous code", + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + }, + { + "name": "caolan", + "email": "caolan@caolan.uk" + }, + { + "name": "aearly", + "email": "alexander.early@gmail.com" + }, + { + "name": "megawac", + "email": "megawac@gmail.com" + }, + { + "name": "hargasinski", + "email": "argasinski.hubert@gmail.com" + } + ], + "readme": "![Async Logo](https://raw.githubusercontent.com/caolan/async/master/logo/async-logo_readme.jpg)\n\n![Github Actions CI status](https://github.com/caolan/async/actions/workflows/ci.yml/badge.svg)\n[![NPM version](https://img.shields.io/npm/v/async.svg)](https://www.npmjs.com/package/async)\n[![Coverage Status](https://coveralls.io/repos/caolan/async/badge.svg?branch=master)](https://coveralls.io/r/caolan/async?branch=master)\n[![Join the chat at https://gitter.im/caolan/async](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/caolan/async?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/async/badge?style=rounded)](https://www.jsdelivr.com/package/npm/async)\n\n\n\nAsync is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/v3/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm i async`, it can also be used directly in the browser. An ESM/MJS version is included in the main `async` package that should automatically be used with compatible bundlers such as Webpack and Rollup.\n\nA pure ESM version of Async is available as [`async-es`](https://www.npmjs.com/package/async-es).\n\nFor Documentation, visit \n\n*For Async v1.5.x documentation, go [HERE](https://github.com/caolan/async/blob/v1.5.2/README.md)*\n\n\n```javascript\n// for use with Node-style callbacks...\nvar async = require(\"async\");\n\nvar obj = {dev: \"/dev.json\", test: \"/test.json\", prod: \"/prod.json\"};\nvar configs = {};\n\nasync.forEachOf(obj, (value, key, callback) => {\n fs.readFile(__dirname + value, \"utf8\", (err, data) => {\n if (err) return callback(err);\n try {\n configs[key] = JSON.parse(data);\n } catch (e) {\n return callback(e);\n }\n callback();\n });\n}, err => {\n if (err) console.error(err.message);\n // configs is now a map of JSON data\n doSomethingWith(configs);\n});\n```\n\n```javascript\nvar async = require(\"async\");\n\n// ...or ES2017 async functions\nasync.mapLimit(urls, 5, async function(url) {\n const response = await fetch(url)\n return response.body\n}, (err, results) => {\n if (err) throw err\n // results is now an array of the response bodies\n console.log(results)\n})\n```\n", + "readmeFilename": "README.md", + "users": { + "322434578": true, + "atd": true, + "bsf": true, + "djk": true, + "fck": true, + "ffi": true, + "fmm": true, + "hut": true, + "mcl": true, + "nbu": true, "nfd": true, - "yvesm": true, - "yoavniran": true, - "silentcloud": true, - "ivangaravito": true, - "otrlennon": true, - "terkelg": true, - "jgubo": true, - "jshkurti": true, - "ryanj": true, - "pensierinmusica": true, - "mihaiv": true, - "swak": true, + "pid": true, + "s9k": true, + "tmn": true, + "wut": true, + "xav": true, + "ymk": true, + "z3a": true, + "arrc": true, "cath": true, - "gdbtek": true, - "adomvris": true, - "hash-bang": true, - "dearyhud": true, - "themanspeaker": true, - "shahzaib": true, - "yerke": true, - "gigerlin": true, - "mastayoda": true, - "cgfeel": true, - "ashkyd": true, - "schroeterm": true, - "kasperstuck": true, - "thorsson": true, - "raksa": true, - "patrick": true, - "genediazjr": true, - "hollobit": true, - "rgraves90": true, - "yeahoffline": true, - "kenjisan4u": true, - "tgohn": true, - "tedyhy": true, - "minichiello": true, - "johnnyeven": true, - "tomas-sereikis": true, - "fyockm": true, - "dormi330": true, - "eterna2": true, - "cdubois": true, - "mnemr": true, - "yvanscher": true, - "thomask33": true, - "chehow": true, - "chzhewl": true, - "jezzalaycock": true, - "pumych": true, - "marsup": true, - "javimaravillas": true, - "sushant711": true, - "robftw": true, - "elliotchong": true, - "f124275809": true, - "wangnan0610": true, - "lazycoder": true, - "chrisayn": true, - "uniquerockrz": true, - "r3nya": true, - "cellule": true, - "leonning": true, - "meme": true, - "adamk": true, - "salvatorelab": true, - "kerry95": true, - "stuligan": true, - "dlpowless": true, - "goblindegook": true, - "davidcz": true, - "nachbar90": true, - "haeck": true, - "pnevares": true, - "markthethomas": true, - "kikar": true, - "blakedietz": true, - "drdanryan": true, - "saidgeek": true, - "melvingruesbeck": true, - "atonb117": true, - "theodor.lindekaer": true, - "vchouhan": true, - "kulakowka": true, - "schnarald": true, - "samhwang1990": true, - "lyaotian": true, - "joeyblue": true, - "kbeaulieu": true, - "igorkirey": true, - "sahilsk": true, - "manxisuo": true, - "mnlfischer": true, - "dmitrymatveev": true, - "alejcerro": true, - "goodseller": true, - "samhou1988": true, - "tophsic": true, - "docksteaderluke": true, - "harutlc": true, - "vboctor": true, - "alexey_detr": true, - "marianboda": true, - "jerome.d.russ": true, - "warapitiya": true, - "snehlsen": true, - "techmatt101": true, - "koulmomo": true, - "d4nyll": true, - "huarse": true, - "savostin": true, - "nadimix": true, - "leodido": true, - "tomjamescn": true, - "anhulife": true, - "jmm23": true, - "jklassen": true, - "airswoop1": true, - "derickchou0129": true, - "subchen": true, - "simplyianm": true, - "pengzhisun": true, - "nickeljew": true, - "dongxu": true, - "risyasin": true, - "brandonpapworth": true, - "denistrofimov": true, - "sc7639": true, - "rbartoli": true, - "shaneli": true, - "rodrigo-medeiros": true, - "swarnendu-dutta": true, - "jmshahen": true, - "junjiansyu": true, - "itonyyo": true, - "trotyl": true, - "icirellik": true, - "paeblits": true, - "logeshpaul": true, - "elgubenis": true, - "alexkval": true, - "aesinv": true, - "arnold-almeida": true, - "bruce313": true, - "rcastro": true, - "godion": true, - "skozz": true, - "zemgalis": true, - "justintormey": true, - "tonydieu": true, - "gejiawen": true, - "yvesroos": true, - "yjsosa": true, - "fabioelizandro": true, - "tfentonz": true, - "dac2205": true, - "octoo": true, - "tmcguire": true, - "sbrajesh": true, - "staraple": true, - "micahjonas": true, - "j3kz": true, - "modao": true, - "iamwiz": true, - "joemdavis": true, - "jasoncmcg": true, - "richarddavenport": true, - "xavierharrell": true, - "chriscalo": true, - "arunvsuresh": true, - "dolymood": true, - "allthingssmitty": true, - "brandondoran": true, - "jonatasnona": true, - "tudou": true, - "nwinant": true, - "khaledkaram": true, - "garek": true, - "etsit": true, + "d3ck": true, + "dm07": true, + "dodo": true, + "ferx": true, + "fill": true, + "fiws": true, + "gr2m": true, + "gubi": true, + "hain": true, + "iolo": true, + "irae": true, + "isik": true, + "izzy": true, + "j.su": true, + "j3kz": true, + "japh": true, + "jits": true, + "jtrh": true, + "jueb": true, "l3au": true, - "ezcabrera": true, - "johnny.young": true, - "subso": true, - "rogier.spieker": true, + "leor": true, + "lorn": true, + "meme": true, + "mikl": true, + "miql": true, + "mkoc": true, + "mrf3": true, + "nrrb": true, + "nuer": true, + "orit": true, + "pana": true, + "pjb3": true, "rgbz": true, - "plitat": true, - "favasconcelos": true, - "buzuli": true, - "nukisman": true, - "battlemidget": true, - "brandouellette": true, + "rlee": true, + "sgpr": true, + "suor": true, + "swak": true, "till": true, - "craneleeon": true, - "rbecheras": true, - "nikitka_m": true, - "thepanuto": true, - "justinshea": true, - "luuhoangnam": true, - "jasonlotito": true, - "aclark64": true, - "scottkay": true, - "kanongil": true, - "vladan": true, - "universemaster": true, - "nanhualyq": true, - "unboundev": true, - "josuehenry14": true, - "mjwilliams": true, - "cestrensem": true, + "tpwk": true, + "uojo": true, + "wilk": true, + "wzbg": true, + "xucl": true, + "xufz": true, "zhen": true, - "ddffx": true, - "prabhash1785": true, - "gaboesquivel": true, - "bpatel": true, - "davidchubbs": true, - "adamkdean": true, - "parkerproject": true, - "amoiseev": true, - "buzzalderaan": true, - "damianof": true, - "ocd_lionel": true, - "tylersmith.34": true, - "princetoad": true, - "tnagengast": true, - "devmoreno": true, - "karlbateman": true, - "fvcproductions": true, - "joshua.marquez": true, - "freshlogic": true, - "andrewpmckenzie": true, - "jueb": true, - "perrywu": true, - "m412c0": true, - "xav": true, + "ExxKA": true, + "adamk": true, + "alvis": true, + "amzod": true, + "anh4n": true, + "antjw": true, + "arefm": true, + "ashco": true, "axfab": true, - "mariod3w": true, - "yogapan": true, - "curcuz": true, - "cypark": true, - "rreusser": true, - "asawq2006": true, - "2dxgujun": true, - "isik": true, - "freesuraj": true, - "pjb3": true, - "moimikey": true, - "jeffb_incontact": true, - "aitorllj93": true, - "tchcxp": true, - "aolu11": true, - "koslun": true, - "eagerod": true, - "qqqppp9998": true, - "keithmorris": true, - "maninbucket": true, - "soluzionisubito": true, - "yconoclast": true, - "zhoutk": true, - "drspaceman": true, - "monkeymonk": true, - "fridurmus": true, - "0x4c3p": true, - "miql": true, - "endquote": true, - "nketchum": true, - "knownasilya": true, - "chinaqstar": true, - "matiasmarani": true, - "ibakaidov": true, - "nickeltobias": true, - "decoda": true, - "starknode": true, - "matthewbauer": true, - "arnoldstoba": true, - "xucl": true, - "acollins-ts": true, - "ffmad": true, - "romelperez": true, - "maxisam": true, - "mamalat": true, - "tommyzzm": true, - "ssh0702": true, - "jozias": true, - "pdedkov": true, - "jalcine": true, - "shakakira": true, - "wfcookie": true, - "arulkumar": true, - "nicholaslp": true, + "bengi": true, + "bitzo": true, + "boogy": true, + "brend": true, + "brpaz": true, "cliff": true, - "vqoph": true, - "chriskinsman": true, - "karlbright": true, - "s9k": true, - "inn0vative1": true, + "csbun": true, + "ddffx": true, + "demod": true, + "deryk": true, + "didil": true, + "eknkc": true, + "etsit": true, + "facuz": true, + "ffmad": true, + "fm-96": true, + "garek": true, + "h2non": true, + "haeck": true, + "hanhq": true, + "heyun": true, + "hohee": true, + "i3fox": true, + "iisii": true, + "ineva": true, + "jgubo": true, + "jmm23": true, + "joost": true, + "jream": true, + "jugyo": true, + "junos": true, + "kewin": true, + "kikar": true, + "kremr": true, + "kwcjr": true, + "lgh06": true, + "linus": true, + "lucag": true, "makay": true, - "philipjc": true, - "jerkovicl": true, - "blackwhite": true, - "joelwallis": true, - "markstos": true, + "manny": true, + "mattw": true, + "meryn": true, + "mnemr": true, + "modao": true, + "nbarr": true, + "nerov": true, + "noder": true, + "octoo": true, + "oroce": true, "panlw": true, - "eagleeye": true, - "deryk": true, - "abdihaikal": true, - "sammyteahan": true, - "linuxwizard": true, - "wkaifang": true, - "zoser": true, - "xgqfrms": true, - "jkrenge": true, - "srinivas543": true, - "csbun": true, - "iolo": true, - "alectic": true, - "liushoukai": true, - "mikemimik": true, - "xeoneux": true, - "aslezak": true, - "naohta": true, - "kappuccino": true, - "dkblay": true, - "squallium": true, + "paulj": true, + "pftom": true, + "pilsy": true, + "pospi": true, + "pvorb": true, + "qizai": true, + "r3nya": true, + "raksa": true, + "razr9": true, + "rlihm": true, + "roxnz": true, + "rshaw": true, + "rwnet": true, + "ryanj": true, + "segen": true, + "seldo": true, + "shama": true, + "skozz": true, + "subso": true, + "suddi": true, + "syzer": true, + "tchey": true, "temsa": true, - "kobleistvan": true, + "tgohn": true, + "thejh": true, + "tht13": true, + "timdp": true, + "tivac": true, + "tudou": true, + "ukuli": true, + "vikum": true, + "vqoph": true, + "whats": true, + "wujr5": true, + "wxnet": true, + "yerke": true, + "yoavf": true, + "yvesm": true, + "zckrs": true, + "zedyu": true, + "zoser": true, + "0x4c3p": true, + "71emj1": true, + "adeelp": true, + "aearly": true, + "aesinv": true, + "afc163": true, + "ajduke": true, + "alinex": true, "aman26": true, - "jackchi1981": true, - "nalindak": true, - "canercandan": true, - "knoja4": true, - "andrewtlove": true, - "sopepos": true, - "duckworth": true, - "pandao": true, - "twistieman": true, - "bapinney": true, - "blueqnx": true, - "maur1th": true, - "marlongrape": true, - "josejaguirre": true, - "piyushmakhija": true, - "tylerm": true, - "programmer.severson": true, - "maxidr": true, - "leonardorb": true, - "nmccready": true, - "telco2011": true, - "wattanar": true, - "heyun": true, - "ffi": true, - "kleintobe": true, + "aolu11": true, + "ashkyd": true, + "axelav": true, + "bhenav": true, + "booyaa": true, + "bpatel": true, + "buzuli": true, + "cavrut": true, + "cgfeel": true, + "chaowi": true, + "chehow": true, "clisun": true, - "jerous": true, - "pisani": true, - "ramajd": true, - "vladimirkazan": true, - "undertuga": true, - "sakthiifnotec": true, + "colwob": true, + "cortys": true, + "cr8tiv": true, + "curcuz": true, + "cypark": true, + "d-band": true, + "d4nyll": true, + "dainov": true, + "daizch": true, + "dankle": true, + "darosh": true, + "decoda": true, + "dg1an3": true, + "dkblay": true, + "dmdnkv": true, + "dmikam": true, + "drudge": true, + "dyohns": true, + "egantz": true, + "eins78": true, + "elisee": true, + "felegz": true, + "fenrir": true, + "fgmnts": true, + "fredrb": true, + "fyockm": true, + "gabeio": true, + "gdbtek": true, + "genovo": true, + "gkodes": true, + "godion": true, + "gorbiz": true, + "h02e56": true, + "hij1nx": true, + "horaci": true, + "huarse": true, + "hughsk": true, + "iamwiz": true, + "imzack": true, + "irakli": true, + "isratx": true, + "itcorp": true, + "itesic": true, "itskdk": true, - "d3ck": true, - "yash3492": true, - "leahcimic": true, - "xgheaven": true, - "deubaka": true, - "zedyu": true, - "rlee": true, + "iuykza": true, + "jerous": true, + "joe.li": true, + "joliva": true, + "jondar": true, + "joshmu": true, + "jozias": true, + "jsolis": true, + "kaycee": true, + "kazem1": true, + "knoja4": true, + "koslun": true, + "krocon": true, + "krugar": true, + "leesei": true, + "legacy": true, + "lezuse": true, + "lionet": true, + "ljharb": true, + "ljmf00": true, "majgis": true, - "jesusgoku": true, - "sparkrico": true, + "markhe": true, + "marsup": true, + "martii": true, + "matsgm": true, + "maxidr": true, + "merbst": true, + "mihaiv": true, + "mikend": true, "monjer": true, - "algonzo": true, - "ahsanshafiq": true, - "nicolasleger": true, - "cfleschhut": true, - "scaffrey": true, - "piixiiees": true, - "nomemires": true, - "tobiasnickel": true, - "pnhung177": true, - "eberhara": true, - "donvercety": true, - "jesfrk7": true, - "empurium": true, - "demiurgosoft": true, - "gr2m": true, - "isratx": true, - "wut": true, - "animustechnology": true, - "glutton": true, - "zacbarton": true, - "santihbc": true, - "davidbraun": true, - "nimblemachine": true, + "mpcref": true, + "naohta": true, "nauwep": true, - "djamseed": true, + "orion-": true, + "orkisz": true, + "pandao": true, + "pe8ter": true, + "pigram": true, + "pintux": true, + "pisani": true, + "plitat": true, + "pumych": true, + "quafoo": true, + "qubyte": true, + "rajiff": true, + "ramajd": true, + "redmed": true, + "robftw": true, + "rundef": true, + "sajera": true, + "sampsa": true, + "sc7639": true, + "sdove1": true, + "tarcio": true, + "tchcxp": true, + "tcrowe": true, + "tedyhy": true, + "tigefa": true, + "tjwebb": true, + "tomi77": true, + "tonijz": true, + "toogle": true, + "trotyl": true, + "tunjos": true, + "tur-nr": true, + "tylerm": true, + "vegera": true, + "vjenks": true, + "vladan": true, + "vutran": true, + "vzonys": true, + "wickie": true, + "yangzw": true, + "yjsosa": true, + "yuch4n": true, + "yunlab": true, + "zambon": true, + "zhoutk": true, + "ziflex": true, + "zoluzo": true, + "zwwggg": true, + "alectic": true, + "algonzo": true, + "alnafie": true, + "anoubis": true, + "aselzer": true, + "aslezak": true, + "atheken": true, + "ayoungh": true, + "azevedo": true, + "barenko": true, + "beyoung": true, + "bezoerb": true, + "biggora": true, + "blueqnx": true, + "cab1729": true, + "cclient": true, + "cdubois": true, + "cellule": true, + "chrisco": true, + "chzhewl": true, + "ciroque": true, + "cocopas": true, + "coiscir": true, + "dac2205": true, + "danielr": true, + "davidcz": true, + "denmerc": true, + "deubaka": true, + "dstokes": true, + "eagerod": true, + "eterna2": true, + "ettalea": true, + "evert0n": true, + "evkline": true, + "frk1705": true, + "fxkraus": true, + "fytriht": true, + "gemini5": true, + "ghe1219": true, + "glutton": true, + "gmturbo": true, + "harutlc": true, + "itonyyo": true, + "itsmyth": true, + "jacques": true, + "jalcine": true, + "janez89": true, + "jesfrk7": true, + "jirwong": true, + "jkrenge": true, + "jnoodle": true, + "joechow": true, + "joetail": true, + "junajan": true, + "kahboom": true, + "kerry95": true, + "khai96_": true, + "khinenw": true, + "kkho595": true, + "ksnieck": true, + "kurijov": true, + "laoshaw": true, + "laudeon": true, + "leodido": true, "lightky": true, - "mark12433": true, - "bhenav": true, - "milfromoz": true, - "timdp": true, - "max_devjs": true, - "lwgojustgo": true, - "arbazsiddiqui": true, - "ineva": true, - "crusaderltd": true, - "antjw": true, + "lijq123": true, + "lsmoura": true, + "mafikes": true, + "mamalat": true, + "maur1th": true, + "maxisam": true, + "megawac": true, + "mehrati": true, + "moonavw": true, + "moonpyk": true, + "nadimix": true, + "naholyr": true, + "nromano": true, + "nwinant": true, + "ostgals": true, + "pasturn": true, + "patrick": true, + "pdedkov": true, + "perrywu": true, + "piron_t": true, + "progmer": true, "rager_m": true, - "egantz": true, - "ziehlke": true, - "justinledouxweb": true, - "lionet": true, - "j.su": true, - "leobakerhytch": true, - "cclient": true, - "shanemileham": true, - "austencm": true, - "vinchik": true, - "yunlab": true, - "hibrahimsafak": true, - "ratneshn": true, - "seaseng": true, - "eirikbirkeland": true, - "garenyondem": true, - "uptownjimmy": true, - "adrienhobbs": true, - "ssljivic": true, - "hugojosefson": true, - "ryanlee": true, - "schwartzman": true, - "vutran": true, - "didil": true, - "misterioss": true, - "giovanni.bruno": true, - "ristostevcev": true, - "xxsnake28": true, - "rlihm": true, - "lijinghust": true, - "jorgebay": true, - "orkisz": true, + "rapt0p7": true, + "ray0214": true, + "rcastro": true, "rhyslbw": true, - "andreaj24": true, + "rifaqat": true, "royling": true, - "brend": true, - "martinkock": true, - "jalfcolombia": true, - "roman-io": true, - "krocon": true, - "koskokos": true, - "anh4n": true, - "xufz": true, - "gracheff": true, - "lisafrench": true, - "ziflex": true, - "pruettti": true, - "dimonfox": true, - "jedateach": true, - "lakipatel": true, - "bryanwood": true, - "troels.trvo.dk": true, - "werninator": true, - "trollwookiee": true, - "bsf": true, - "orit": true, - "dmikam": true, - "rwnet": true, - "awpmanuna": true, - "coalesce": true, - "apita-cc": true, + "rpgreen": true, + "ryanlee": true, + "sahilsk": true, + "sahlzen": true, + "scoffee": true, + "seaseng": true, + "serdarb": true, + "sfgarza": true, + "shaneli": true, + "shenaor": true, + "shivayl": true, + "simioni": true, + "skilbjo": true, + "smshin7": true, + "sopepos": true, + "soroush": true, "spanser": true, - "montanafox23": true, - "kruemelo": true, - "khinenw": true, - "ghe1219": true, - "ttian226": true, - "tongjieme": true, - "kevteljeur": true, - "ghost_gu": true, - "samlaudev": true, - "jasonwang1888": true, - "ferchoriverar": true, - "mkoc": true, - "grimtech": true, - "tht13": true, - "fredrb": true, - "0711levski": true, - "wzbg": true, - "menoncello": true, - "mseminatore": true, - "aristo_sh": true, - "dainov": true, - "arunrajmony": true, - "fanyegong": true, - "martii": true, - "recursion_excursion": true, - "cognivator": true, - "matsgm": true, - "ifeature": true, - "weconquered": true, - "demod": true, - "rokeyzki": true, - "abhisekp": true, - "moonavw": true, - "jtrh": true, - "heyimeugene": true, - "facuz": true, - "pe8ter": true, - "blackkoi0606": true, - "mauriciolauffer": true, - "joetail": true, - "freddieridell": true, - "genovo": true, + "ssh0702": true, + "staydan": true, + "subchen": true, + "superwf": true, + "tengisb": true, + "terkelg": true, + "tetsu3a": true, + "timvork": true, + "tmypawa": true, + "tooyond": true, + "tophsic": true, + "trusktr": true, + "trvrfrd": true, + "ungurys": true, + "vboctor": true, + "vinchik": true, "vonthar": true, - "toby_reynold": true, - "maykonlf": true, - "vikasediga": true, + "x0000ff": true, + "xeoneux": true, + "xgqfrms": true, + "yanghcc": true, + "yehudag": true, + "yogapan": true, + "zendayu": true, + "ziehlke": true, + "zonetti": true, + "2dxgujun": true, + "8bitalex": true, + "abhisekp": true, + "aclark64": true, + "adomvris": true, + "ahvonenj": true, + "aidenzou": true, + "alanshaw": true, + "alexkval": true, + "almgwary": true, + "amoiseev": true, + "anhulife": true, + "apita-cc": true, + "asfrom30": true, + "atonb117": true, + "austencm": true, + "avianflu": true, + "aztlan2k": true, + "bapinney": true, + "bcowgi11": true, + "bruce313": true, + "caligone": true, + "carlhong": true, + "cbarrick": true, + "chrisayn": true, + "chrisweb": true, + "cknowles": true, + "coalesce": true, + "colageno": true, + "comandan": true, + "congcong": true, + "cslasher": true, + "cuprobot": true, + "cyberien": true, + "damianof": true, + "dburdese": true, + "dearyhud": true, + "dercoder": true, + "dgarlitt": true, + "diegoazh": true, + "dimichgh": true, + "dimonfox": true, + "dizlexik": true, + "djamseed": true, + "djbrandl": true, + "djviolin": true, + "dolymood": true, + "dormi330": true, + "dzhou777": true, + "eagleeye": true, + "eberhara": true, + "edalorzo": true, + "empurium": true, + "endquote": true, + "erikvold": true, + "esundahl": true, + "evandrix": true, + "evegreen": true, + "fanjieqi": true, + "faraoman": true, + "forivall": true, "fourbits": true, - "slavqa": true, - "iori20091101": true, - "naholyr": true, - "jens1101": true, - "icerainnuaa": true, + "frankl83": true, + "gaborsar": true, + "gejiawen": true, + "ghost_gu": true, + "gigerlin": true, + "gimenete": true, + "gracheff": true, + "grimtech": true, + "hari1295": true, + "hecto932": true, + "hobbit71": true, + "hollobit": true, + "hyanghai": true, + "hyqhyq_3": true, "iamiurii": true, + "iamninad": true, + "ifeature": true, + "jcreigno": true, + "jdcalder": true, + "jens1101": true, + "jgoodall": true, + "jklassen": true, + "jmshahen": true, + "joeyblue": true, + "jon_shen": true, + "jorgebay": true, + "jshkurti": true, + "junyeong": true, + "kanongil": true, + "kiaratto": true, + "kimi_xin": true, + "koreyhan": true, + "koskokos": true, + "koulmomo": true, + "kruemelo": true, + "kwhitley": true, + "l0n9h02n": true, + "l2xbrain": true, + "lebowitz": true, + "leodutra": true, + "leonning": true, + "leonzhao": true, + "lobodpav": true, + "losymear": true, + "lyaotian": true, + "magicboy": true, + "manxisuo": true, + "mariod3w": true, + "markstos": true, + "marvelsq": true, + "mathiasm": true, + "maykonlf": true, + "mbildner": true, "merrickp": true, - "rundef": true, - "roccomuso": true, - "hohee": true, - "zhanghaili": true, - "megawac": true, - "dmdnkv": true, - "aztlan2k": true, - "luismoramedina": true, - "x0000ff": true, - "hobbit71": true, - "hoibatpham": true, - "subzero42": true, - "rocket0191": true, - "james3299": true, - "carlhong": true, - "brpaz": true, - "cknowles": true, - "angrykoala": true, - "almgwary": true, - "largepuma": true, - "mcl": true, - "faraoman": true, + "meshtech": true, + "mhaidarh": true, + "millercl": true, "mluberry": true, - "i.vispyanskiy": true, - "ayoungh": true, - "szymex73": true, - "tobyforever": true, - "sajera": true, - "dpjayasekara": true, - "evegreen": true, - "razr9": true, - "dyohns": true, - "gkodes": true, - "abuelwafa": true, - "rochejul": true, - "ungurys": true, - "superwf": true, - "thomas.miele": true, - "john-goldsmith": true, - "ivan.marquez": true, - "garrickajo": true, - "pixeleate": true, - "ymk": true, - "khai96_": true, - "kwhitley": true, - "sammok2003": true, + "mmierswa": true, + "moimikey": true, + "nalindak": true, + "nickchow": true, + "nketchum": true, + "nodecode": true, + "nukisman": true, + "oncletom": true, + "paeblits": true, + "pbhawsar": true, "pddivine": true, - "vzonys": true, - "pigram": true, - "dburdese": true, + "phil1929": true, + "philipjc": true, + "piotrj87": true, + "pnevares": true, + "pr-anoop": true, + "pruettti": true, + "putaoshu": true, + "quadroid": true, + "ratneshn": true, + "rbartoli": true, + "redbe4rd": true, + "risyasin": true, + "rmanalan": true, + "rochejul": true, + "rokeyzki": true, + "rreusser": true, + "rrobayna": true, + "s-konrad": true, + "saidgeek": true, + "samuelrn": true, + "santihbc": true, + "savostin": true, + "sbrajesh": true, + "scaffrey": true, + "scottkay": true, + "shahzaib": true, + "shatting": true, + "shieldax": true, + "sibawite": true, + "snehlsen": true, + "sprybear": true, + "ssljivic": true, + "staraple": true, "stoneren": true, - "lsmoura": true, - "luukmoret": true, - "huangkerui": true, - "frankl83": true, - "writeosahon": true, - "soenkekluth": true, - "boogy": true, - "hain": true, - "khurshedyu": true, + "stuligan": true, + "szymex73": true, + "tcauduro": true, "tdmalone": true, - "ahmed-dinar": true, - "quafoo": true, - "djviolin": true, - "aprilchen": true, - "amdsouza92": true, - "pretendentas": true, - "fsepulveda": true, - "segen": true, - "simioni": true, - "jricardoprog": true, - "laudeon": true, - "fenrir": true, - "iandstanley": true, - "ahvonenj": true, - "yesseecity": true, - "azevedo": true, - "igorsetsfire": true, - "dzhou777": true, - "mattw": true, - "ww522413622": true, - "langri-sha": true, - "fm-96": true, - "joechow": true, - "fgmnts": true, - "barenko": true, - "jirwong": true, - "adamdreszer": true, - "wickie": true, - "wujr5": true, - "tunjos": true, - "sanjorgek": true, - "jon_shen": true, - "gubi": true, - "rylan_yan": true, + "tfentonz": true, + "thekuzia": true, + "thitinun": true, + "thorsson": true, + "tkalfigo": true, + "tmcguire": true, + "tommyjs7": true, + "tommyzzm": true, + "tonydieu": true, + "topcloud": true, + "tosbodes": true, "trendoid": true, - "dimichgh": true, - "rajikaimal": true, - "travishuff": true, - "l2xbrain": true, - "bobxuyang": true, - "kodekracker": true, - "jetthiago": true, - "ahmetertem": true, - "tangweikun": true, - "zambon": true, - "roxnz": true, - "zoluzo": true, - "anoubis": true, - "miroklarin": true, - "jordan-carney": true, - "mafikes": true, - "l8niteowl": true, - "chirag8642": true, - "adeelp": true, - "3creatives": true, - "i3fox": true, - "rahulraghavankklm": true, - "chrisco": true, - "iuykza": true, - "magicboy": true, - "evanfreeman": true, - "izzy": true, - "pr-anoop": true, - "yuch4n": true, - "evdokimovm": true, - "leonzhao": true, - "arvindrsingh": true, - "cslasher": true, - "giussa_dan": true, - "aravindnc": true, - "suddi": true, - "djk": true, + "truongpv": true, + "trylobot": true, + "tsangint": true, + "ttian226": true, + "vchouhan": true, + "vitaliks": true, + "waterswv": true, + "wattanar": true, + "wfcookie": true, + "wilbeibi": true, + "wkaifang": true, + "woverton": true, + "xenomuta": true, + "xgheaven": true, + "xiaobing": true, "xmalinov": true, - "shuoshubao": true, - "daizch": true, - "rlafferty": true, - "scoffee": true, - "fytriht": true, - "qizai": true, - "pintux": true, - "erikvold": true, - "pbhawsar": true, - "sprybear": true, - "chinawolf_wyp": true, - "nickchow": true, - "joaogalli": true, "xueboren": true, - "trvrfrd": true, - "tkalfigo": true, - "vinnyfonseca": true, - "junos": true, - "duartemendes": true, - "bobjohnson23": true, - "wfalkwallace": true, - "comandan": true, - "smshin7": true, - "mickeyzhou": true, - "fxkraus": true, - "miadzadfallah": true, - "krugar": true, - "rajiff": true, - "nerov": true, - "sadmansamee": true, - "sketch_bear": true, - "dankle": true, - "cloudychris": true, - "pasturn": true, + "yash3492": true, + "yokiming": true, + "yvesroos": true, + "zemgalis": true, + "zeusdeux": true, + "zhangaz1": true, + "abuelwafa": true, + "adamkdean": true, + "airswoop1": true, + "alejcerro": true, + "alexxnica": true, + "amenadiel": true, + "andreaj24": true, + "aprilchen": true, + "aravindnc": true, + "aristo_sh": true, + "arulkumar": true, + "asawq2006": true, + "avenida14": true, + "awpmanuna": true, + "bencevans": true, + "bengsfort": true, + "bmpvieira": true, + "bobxuyang": true, + "bryanwood": true, + "chandimal": true, + "chriscalo": true, + "cilindrox": true, + "clementoh": true, + "cmilhench": true, + "codeshrew": true, + "cparker15": true, + "cpsubrian": true, + "crissmbox": true, + "daviddias": true, + "davidrlee": true, + "dbrockman": true, + "dennisgnl": true, + "devmoreno": true, + "dlpowless": true, + "doliveira": true, + "drdanryan": true, + "duckworth": true, + "edmondnow": true, + "edosrecki": true, + "elgubenis": true, + "emircanok": true, + "ephigenia": true, + "ezcabrera": true, + "fanyegong": true, + "fgribreau": true, + "freesuraj": true, + "fridurmus": true, + "gabroot85": true, + "gammasoft": true, + "grabantot": true, + "green_goo": true, + "guumaster": true, + "hash-bang": true, + "heartnett": true, + "henryfour": true, + "hfcorriez": true, + "hmacphail": true, + "ibakaidov": true, + "iceriver2": true, + "icirellik": true, + "igorissen": true, + "isenricho": true, "jakedalus": true, - "sfgarza": true, - "dg1an3": true, + "james3299": true, + "jaredvogt": true, + "jasoncmcg": true, + "jayharris": true, + "jedateach": true, + "jerkovicl": true, + "jesusgoku": true, + "jetthiago": true, + "jhillacre": true, + "joaogalli": true, + "joeferner": true, + "joemdavis": true, + "jorgemsrs": true, "joseph320": true, - "blakeredwolf": true, - "nuer": true, - "heartnett": true, - "bengi": true, - "yehudag": true, - "sibawite": true, - "ray0214": true, - "oldthunder": true, - "daniel-zahariev": true, - "meshtech": true, - "giovannism20": true, - "jdcalder": true, - "alexxnica": true, - "maycon_ribeiro": true, + "joshwyatt": true, + "juriwiens": true, + "justjavac": true, + "karmadude": true, + "kbeaulieu": true, + "kleintobe": true, + "kulakowka": true, + "l8niteowl": true, + "lakipatel": true, + "langpavel": true, + "largepuma": true, + "larrychen": true, + "lazycoder": true, + "leahcimic": true, + "leighakin": true, + "lellansin": true, + "leq382121": true, + "lucasjans": true, + "luukmoret": true, + "mark12433": true, + "mastayoda": true, + "max_devjs": true, + "mikemimik": true, + "milfromoz": true, + "mjurincic": true, + "mvolkmann": true, + "nachbar90": true, + "nanhualyq": true, "nbuchanan": true, - "lorn": true, - "valilutzik": true, - "lijq123": true, - "amzod": true, - "brunoescalona": true, - "kimi_xin": true, - "dm07": true, - "liangtongzhuo": true, - "ljmf00": true, - "rethinkflash": true, - "manojkhannakm": true, - "alvis": true, - "kkho595": true, - "sahlzen": true, - "arthur.meyer": true, - "yayayahei": true, - "thundermountain108": true, - "grabantot": true, - "timvork": true, + "netzzwerg": true, + "nickeljew": true, + "nikitka_m": true, + "nmccready": true, + "nomemires": true, + "otrlennon": true, + "piixiiees": true, + "pixeleate": true, + "pnhung177": true, + "rbecheras": true, + "rgraves90": true, + "rlafferty": true, + "rmartinus": true, + "roccomuso": true, + "rylan_yan": true, + "samlaudev": true, + "sanjorgek": true, + "sasquatch": true, + "schnarald": true, + "shakakira": true, + "sironfoot": true, + "slianfeng": true, + "sparkrico": true, + "squallium": true, + "starknode": true, + "subzero42": true, + "sujeet555": true, "swift2728": true, - "spacemoose": true, - "nguyenmanhdat2903": true, - "letecitanjir": true, - "jhillacre": true, - "tosbodes": true, + "telco2011": true, + "thepanuto": true, + "thomas-so": true, + "thomask33": true, + "timsmiths": true, + "tmaximini": true, + "tomgao365": true, + "tongjieme": true, + "trocafone": true, + "unboundev": true, + "undertuga": true, + "xxsnake28": true, + "yayayahei": true, + "yoavniran": true, + "yvanscher": true, + "zacbarton": true, + "zapastore": true, + "zhenzhong": true, + "zhuheyang": true, + "0711levski": true, + "3creatives": true, + "abdihaikal": true, + "agent_9191": true, + "ahmetertem": true, + "aitorllj93": true, + "ajohnstone": true, + "alexindigo": true, + "alexmercer": true, + "amdsouza92": true, + "angrykoala": true, + "anilcs0405": true, + "avivharuzi": true, + "blackwhite": true, + "blakedietz": true, + "byossarian": true, + "cestrensem": true, + "cfleschhut": true, + "chinaqstar": true, + "chirag8642": true, + "cognivator": true, + "craneleeon": true, + "daniel7912": true, + "davidbraun": true, + "devoidfury": true, "diangelium": true, - "jnoodle": true, - "bittercoffee": true, - "joe.li": true, - "kiaratto": true, - "majkel": true, + "dolphin278": true, + "donvercety": true, + "drspaceman": true, + "evdokimovm": true, + "f124275809": true, + "freshlogic": true, + "fsepulveda": true, + "garrickajo": true, + "genediazjr": true, + "giussa_dan": true, + "goodseller": true, + "guojinling": true, + "gyoridavid": true, + "hemphillcc": true, + "hoibatpham": true, + "huangkerui": true, + "huoshaolin": true, + "instazapas": true, "jasonzhouu": true, + "jillmolloy": true, + "joelwallis": true, + "john.pinch": true, + "johnnyeven": true, + "jswartwood": true, + "junjiansyu": true, + "justinshea": true, + "kappuccino": true, + "karlbright": true, + "kasiriveni": true, + "kenjisan4u": true, + "kentcdodds": true, + "kevteljeur": true, + "khurshedyu": true, + "kubakubula": true, + "langri-sha": true, + "leonardorb": true, + "lijinghust": true, + "lisafrench": true, + "liushoukai": true, + "liushuping": true, + "logeshpaul": true, + "luffy84217": true, + "lwgojustgo": true, + "marianboda": true, + "martinkock": true, + "maxmaximov": true, + "menoncello": true, "mgocobachi": true, - "d-band": true, + "micahjonas": true, + "mickeyzhou": true, + "minddiaper": true, + "miroklarin": true, + "misterioss": true, + "mjwilliams": true, + "mnlfischer": true, + "monkeymonk": true, + "nicholaslp": true, + "nornalbion": true, + "ocd_lionel": true, + "oldthunder": true, + "pengzhisun": true, + "princetoad": true, + "qqqppp9998": true, + "rajikaimal": true, + "rocket0191": true, + "romelperez": true, + "ruffle1986": true, + "samhou1988": true, + "sammok2003": true, + "schroeterm": true, "shreyawhiz": true, - "suryasaripalli": true, - "zhenguo.zhao": true, - "zhenzhong": true, + "shuoshubao": true, + "simplyianm": true, + "spacemoose": true, + "stonestyle": true, + "sushant711": true, + "syrontillp": true, + "tangweikun": true, + "tnagengast": true, + "tomjamescn": true, + "travishuff": true, + "twistieman": true, + "valilutzik": true, + "vapeadores": true, + "vikasediga": true, + "warapitiya": true, + "werninator": true, + "yconoclast": true, + "yesseecity": true, + "youxiachai": true, + "zaphod1984": true, + "zhanghaili": true, + "18670232733": true, + "Scryptonite": true, + "acollins-ts": true, + "adamdreszer": true, + "adityabakle": true, + "adrienhobbs": true, + "aereobarato": true, + "ahmed-dinar": true, + "ahsanshafiq": true, + "alexey_detr": true, + "andrewtlove": true, + "arnoldstoba": true, + "arunrajmony": true, + "arunvsuresh": true, + "brandonb927": true, + "canercandan": true, + "cedrickchee": true, + "cloudychris": true, + "crusaderltd": true, + "darryl.west": true, + "davidchubbs": true, + "dilterporto": true, + "elliotchong": true, + "emp.justine": true, "ericteng177": true, - "asfrom30": true, - "emircanok": true, - "edosrecki": true, + "evanfreeman": true, + "fampinheiro": true, + "fearnbuster": true, + "flumpus-dev": true, + "ganeshkbhat": true, + "garenyondem": true, + "heyimeugene": true, + "highgravity": true, + "iaincollins": true, + "iandstanley": true, + "icerainnuaa": true, + "inn0vative1": true, + "ioncreature": true, + "ivandimanov": true, + "jackchi1981": true, + "jamesbedont": true, + "jasonlotito": true, + "jbdoumenjou": true, + "jonatasnona": true, + "karlbateman": true, + "karnavpargi": true, + "kasperstuck": true, + "keithmorris": true, + "khaledkaram": true, + "knownasilya": true, + "kobleistvan": true, + "kodekracker": true, + "krisbarrett": true, + "linuxwizard": true, + "louxiaojian": true, + "lupomontero": true, + "luuhoangnam": true, + "maninbucket": true, "marinear212": true, - "npm-packages": true, - "tonerbarato": true, - "iamninad": true, - "arcticicestudio": true, - "vision_tecnologica": true, - "gresite_piscinas": true, - "granhermandadblanca": true, - "jondar": true, - "uojo": true, - "iceriver2": true, - "itcorp": true, - "colageno": true, - "kwcjr": true, - "gemini5": true, - "felegz": true, - "itsmyth": true, - "jillmolloy": true, - "sgpr": true, + "marlongrape": true, + "memoramirez": true, + "minichiello": true, + "morishitter": true, + "mseminatore": true, + "neaker15668": true, + "niftymonkey": true, + "sadmansamee": true, + "sammyteahan": true, + "schwartzman": true, + "silentcloud": true, + "sketch_bear": true, + "soenkekluth": true, + "srinivas543": true, "stanlindsey": true, - "zwwggg": true, - "whats": true, - "clementoh": true, - "alquilerargentina": true, - "vapeadores": true, - "emp.justine": true, - "hyanghai": true, - "amenadiel": true, - "yangzw": true, - "superchenney": true, + "swedendrift": true, + "techmatt101": true, + "tobyforever": true, + "tonerbarato": true, + "uptownjimmy": true, + "wangnan0610": true, + "weconquered": true, + "writeosahon": true, + "ww522413622": true, + "yeahoffline": true, + "~danpham304": true, + "arthur.meyer": true, + "arvindrsingh": true, + "battlemidget": true, + "bittercoffee": true, + "blackkoi0606": true, + "blakeredwolf": true, + "bobjohnson23": true, + "boustanihani": true, + "brandondoran": true, + "brentonhouse": true, + "bryanburgers": true, + "buzzalderaan": true, + "chriskinsman": true, + "damonoehlman": true, + "davidhalldor": true, + "demiurgosoft": true, + "dominik.palo": true, + "dpjayasekara": true, + "duartemendes": true, + "fanchangyong": true, + "gaboesquivel": true, + "goblindegook": true, + "henryheleine": true, + "hugojosefson": true, + "igorsetsfire": true, + "iori20091101": true, + "ivan.marquez": true, + "ivangaravito": true, + "jalfcolombia": true, + "jamesmgreene": true, + "jezzalaycock": true, + "jfromaniello": true, + "johnny.young": true, + "josejaguirre": true, + "josuehenry14": true, + "jricardoprog": true, + "justintormey": true, + "kerimdzhanov": true, + "khaihoangdev": true, + "leon.domingo": true, + "letecitanjir": true, + "loselovegirl": true, + "lucasbrigida": true, + "matiasmarani": true, + "matthewbauer": true, + "mohsinnadeem": true, + "montanafox23": true, + "mswanson1524": true, + "natterstefan": true, + "nickeltobias": true, + "nicolasleger": true, + "npm-packages": true, "oliverkascha": true, - "rshaw": true, - "ferx": true, - "crissmbox": true, - "hmacphail": true, - "fck": true, - "highgravity": true, - "junyeong": true, - "pajamasam": true, - "avenida14": true, - "jamesbedont": true, - "larrychen": true, - "kasiriveni": true, - "aidenzou": true, - "phil1929": true, - "alexmercer": true, + "omardelarosa": true, + "oussoulessou": true, + "paulomcnally": true, + "paulpdaniels": true, + "prabhash1785": true, + "pretendentas": true, + "rethinkflash": true, + "ristostevcev": true, + "runningtalus": true, + "salvatorelab": true, + "samhwang1990": true, + "sfpharmaplus": true, + "shanemileham": true, + "superchenney": true, + "thealphanerd": true, + "themiddleman": true, + "thomas.miele": true, + "tobiasnickel": true, + "toby_reynold": true, + "trollwookiee": true, + "trycatch9264": true, + "tylerstalder": true, + "uniquerockrz": true, + "vinnyfonseca": true, + "wfalkwallace": true, + "yourhoneysky": true, + "zhenguo.zhao": true, + "arbazsiddiqui": true, + "brunoescalona": true, + "chinawolf_wyp": true, + "crimeminister": true, + "denistrofimov": true, + "dmitrymatveev": true, + "emilien.jegou": true, + "everywhere.js": true, + "favasconcelos": true, + "ferchoriverar": true, + "frankblizzard": true, + "freddieridell": true, "gamersdelight": true, - "sdove1": true, + "gillesruppert": true, + "govindaraja91": true, + "hankeypancake": true, + "hibrahimsafak": true, + "humantriangle": true, + "jasonwang1888": true, + "jerome.d.russ": true, + "jordan-carney": true, + "jotadeveloper": true, "lassevolkmann": true, - "leor": true, - "jream": true, - "neaker15668": true, - "arefm": true, - "gabroot85": true, - "swedendrift": true, - "merbst": true, - "khaihoangdev": true, - "diegoazh": true, - "luffy84217": true, - "hari1295": true, - "bitzo": true, - "rmanalan": true, - "jota": true, - "kremr": true, - "yokiming": true, + "leobakerhytch": true, + "liangtongzhuo": true, + "manojkhannakm": true, + "markthethomas": true, + "mdedirudianto": true, + "miadzadfallah": true, "michellespice": true, - "emilien.jegou": true, - "zendayu": true, - "instazapas": true, - "zapastore": true, - "govindaraja91": true, - "zhuheyang": true, - "cyma-soluciones": true, - "tomgao365": true, - "71emj1": true, - "greenbud-seeds": true, - "shivayl": true, - "hanhq": true, - "laoshaw": true, - "rmartinus": true, + "nimblemachine": true, + "owenlancaster": true, + "parkerproject": true, "pedroteosousa": true, - "lixiaomeng8520": true, - "cr8tiv": true, - "sujeet555": true, - "avivharuzi": true, - "~danpham304": true, - "koreyhan": true, - "pftom": true, - "mdedirudianto": true, - "vjenks": true, - "ganeshkbhat": true, - "nrrb": true, - "staydan": true, - "ashco": true, - "sammy_winchester": true, - "guojinling": true, - "leq382121": true, - "sfpharmaplus": true, - "ostgals": true, - "ephigenia": true, - "trocafone": true, - "natterstefan": true, - "evert0n": true, - "piotrj87": true, - "ukuli": true, - "cab1729": true, - "mrf3": true, - "18670232733": true, - "aereobarato": true, - "isenricho": true, - "karnavpargi": true, + "piyushmakhija": true, "professorcoal": true, - "millercl": true, + "ramanshalupau": true, + "roboterhund87": true, + "sakthiifnotec": true, + "sandeepmistry": true, + "shen-weizhong": true, + "strangemother": true, + "themanspeaker": true, + "tylersmith.34": true, + "vladimirkazan": true, + "xavierharrell": true, + "andre_de_souza": true, + "arnold-almeida": true, + "avinashkoyyana": true, + "brandouellette": true, + "derickchou0129": true, + "eirikbirkeland": true, + "fabioelizandro": true, + "fvcproductions": true, + "giovanni.bruno": true, + "greenbud-seeds": true, + "hypergeometric": true, + "jakub.knejzlik": true, + "javimaravillas": true, + "johannestegner": true, + "john-goldsmith": true, + "joshua.marquez": true, + "lixiaomeng8520": true, + "luismoramedina": true, + "mananvaghasiya": true, + "matteospampani": true, + "maycon_ribeiro": true, + "popeindustries": true, + "projectweekend": true, + "ricardofbarros": true, + "rogier.spieker": true, + "ryanthejuggler": true, + "suryasaripalli": true, + "thebearingedge": true, + "tomas-sereikis": true, + "troels.trvo.dk": true, + "universemaster": true, + "allthingssmitty": true, + "andrewpmckenzie": true, + "arcticicestudio": true, + "brandonpapworth": true, + "cyma-soluciones": true, + "daniel-zahariev": true, + "docksteaderluke": true, + "flaviodelbianco": true, + "gautam.mehra762": true, "gestoria-madrid": true, - "itesic": true, - "vikum": true, - "zhangaz1": true, - "lgh06": true, - "rapt0p7": true, - "serdarb": true, + "jeffb_incontact": true, + "justinledouxweb": true, + "mauriciolauffer": true, + "melvingruesbeck": true, + "pensierinmusica": true, + "sierrasoftworks": true, + "soluzionisubito": true, + "swarnendu-dutta": true, + "thebespokepixel": true, + "animustechnology": true, + "gresite_piscinas": true, + "richarddavenport": true, + "rodrigo-medeiros": true, + "sammy_winchester": true, "shashankpallerla": true, - "henryheleine": true, - "edmondnow": true, - "fanjieqi": true, - "marvelsq": true, - "syrontillp": true, - "waterswv": true, - "kaycee": true, - "thekuzia": true, - "mohsinnadeem": true, - "losymear": true, - "markhe": true, - "mehrati": true, - "tooyond": true, - "xiaobing": true, - "bengsfort": true, - "aearly": true, - "oussoulessou": true, - "fearnbuster": true, - "yanghcc": true, - "kazem1": true, - "justjavac": true - }, - "readme": "![Async Logo](https://raw.githubusercontent.com/caolan/async/master/logo/async-logo_readme.jpg)\n\n[![Build Status via Travis CI](https://travis-ci.org/caolan/async.svg?branch=master)](https://travis-ci.org/caolan/async)\n[![Build Status via Azure Pipelines](https://dev.azure.com/caolanmcmahon/async/_apis/build/status/caolan.async?branchName=master)](https://dev.azure.com/caolanmcmahon/async/_build/latest?definitionId=1&branchName=master)\n[![NPM version](https://img.shields.io/npm/v/async.svg)](https://www.npmjs.com/package/async)\n[![Coverage Status](https://coveralls.io/repos/caolan/async/badge.svg?branch=master)](https://coveralls.io/r/caolan/async?branch=master)\n[![Join the chat at https://gitter.im/caolan/async](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/caolan/async?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/async/badge?style=rounded)](https://www.jsdelivr.com/package/npm/async)\n\n\n\nAsync is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/v3/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm i async`, it can also be used directly in the browser. A ESM/MJS version is included in the main `async` package that should automatically be used with compatible bundlers such as Webpack and Rollup.\n\nA pure ESM version of Async is available as [`async-es`](https://www.npmjs.com/package/async-es).\n\nFor Documentation, visit \n\n*For Async v1.5.x documentation, go [HERE](https://github.com/caolan/async/blob/v1.5.2/README.md)*\n\n\n```javascript\n// for use with Node-style callbacks...\nvar async = require(\"async\");\n\nvar obj = {dev: \"/dev.json\", test: \"/test.json\", prod: \"/prod.json\"};\nvar configs = {};\n\nasync.forEachOf(obj, (value, key, callback) => {\n fs.readFile(__dirname + value, \"utf8\", (err, data) => {\n if (err) return callback(err);\n try {\n configs[key] = JSON.parse(data);\n } catch (e) {\n return callback(e);\n }\n callback();\n });\n}, err => {\n if (err) console.error(err.message);\n // configs is now a map of JSON data\n doSomethingWith(configs);\n});\n```\n\n```javascript\nvar async = require(\"async\");\n\n// ...or ES2017 async functions\nasync.mapLimit(urls, 5, async function(url) {\n const response = await fetch(url)\n return response.body\n}, (err, results) => {\n if (err) throw err\n // results is now an array of the response bodies\n console.log(results)\n})\n```\n", - "readmeFilename": "README.md", - "bugs": { - "url": "https://github.com/caolan/async/issues" - }, - "homepage": "https://caolan.github.io/async/", - "keywords": [ - "async", - "callback", - "module", - "utility" - ], - "license": "MIT" -} + "travelingtechguy": true, + "alquilerargentina": true, + "nguyenmanhdat2903": true, + "rahulraghavankklm": true, + "theodor.lindekaer": true, + "timur.shemsedinov": true, + "samanthagmccormick": true, + "thundermountain108": true, + "vision_tecnologica": true, + "granhermandadblanca": true, + "programmer.severson": true, + "recursion_excursion": true, + "robertwarrengilmore": true + } +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/async.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/async.min.json index 973baa7f4d698..05566e8a027b5 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/async.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/async.min.json @@ -1,93 +1,149 @@ { "name": "async", "dist-tags": { - "latest": "3.2.0", - "next": "3.1.0" + "next": "3.1.0", + "latest": "3.2.6" }, "versions": { - "0.1.0": { + "0.1.4": { "name": "async", - "version": "0.1.0", + "version": "0.1.4", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.0.tgz", - "shasum": "ab8ece0c40627e4e8f0e09c8fcf7c19ed0c4241c" + "shasum": "29de4b98712ab8858411d8d8e3361a986c3b2c18", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.4.tgz", + "integrity": "sha512-z3WOSK7jjl/DwVZ5Y4g+7v+BSFY1XdYQln480eTUp9A/23zubrfQklzH+dtgB3KeT+8nbqaFJUaJEkplcCEPgQ==", + "signatures": [ + { + "sig": "MEUCID9EblVgyJHZ1n2FkIsNwzIEdz+u0xAw77dR5o4conu0AiEAuUcxhvP4Jeb12+wmgDPjPssxIQPwobGRzRhDp5wY858=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.1": { + "0.1.3": { "name": "async", - "version": "0.1.1", + "version": "0.1.3", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.1.tgz", - "shasum": "fb965e70dbea44c8a4b8a948472dee7d27279d5e" + "shasum": "629ca2357112d90cafc33872366b14f2695a1fbc", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.3.tgz", + "integrity": "sha512-HdubH4L9fhDRHv3OVz+i5YfDxZ1j0a7R0Q5SrD23Cv6LRPQ16bhbJu33j23P5BpgmokKmymLuxzKrZs9ZcQMWA==", + "signatures": [ + { + "sig": "MEUCICoo37sNyiclHlRp8810G2IKQ8n8dsKz2hRusY7y9w3OAiEAjG6iIfciz68VIqNIEwEmtXdiir6rHP5DL418P1vtbxg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.2": { + "0.1.0": { "name": "async", - "version": "0.1.2", + "version": "0.1.0", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.2.tgz", - "shasum": "be761882a64d3dc81a669f9ee3d5c28497382691" + "shasum": "ab8ece0c40627e4e8f0e09c8fcf7c19ed0c4241c", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.0.tgz", + "integrity": "sha512-9PGyP+84rspwZmkJxk/atgNCOO5LkZ+q1MQTg0SbI5tgkVjHM4iT3M/nzn40wkwAAXfqYMqEKyFnTGdLloG3CA==", + "signatures": [ + { + "sig": "MEQCIDx22dcfHtrSfCRTIK9/Dmz1vSlOBxWFhMseHpvyxs8FAiBITUWqm9hAsPe5/3h7i/qs1hbnqrDwptwcQqLt5gmTeQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.3": { + "0.1.1": { "name": "async", - "version": "0.1.3", + "version": "0.1.1", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.3.tgz", - "shasum": "629ca2357112d90cafc33872366b14f2695a1fbc" + "shasum": "fb965e70dbea44c8a4b8a948472dee7d27279d5e", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.1.tgz", + "integrity": "sha512-YwXZvW4E3yUyc/9HBv1LFxeCBeY2AC0hsB9JnDbufoTO9VU/HXyajvD9ATGlzqE9JKBSlIp3zHO1QAsG1SimlQ==", + "signatures": [ + { + "sig": "MEQCIGsxoel6nf3x+tSA6kd8+chO5y9JSlKD4SHO6npMrmQcAiAzd3/TuIdQlAcJbWDNKBK+sLcwlWfOz/oXqpv6yCqa8w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.4": { + "0.1.7": { "name": "async", - "version": "0.1.4", + "version": "0.1.7", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.4.tgz", - "shasum": "29de4b98712ab8858411d8d8e3361a986c3b2c18" + "shasum": "e9268d0d8cd8dcfe0db0895b27dcc4bcc5c739a5", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.7.tgz", + "integrity": "sha512-gElUZ5b8Tdin6tZK8Ls/Vadz8IpCnylQJoep5bd4aqB7Jb+aMJL8ugGAegkpBdf4HW07rk7Yohp0IbioMghX0w==", + "signatures": [ + { + "sig": "MEUCICZZdwOS1Syh7ewlb70iKc2D64inRhh0YHBUGgg3ehmXAiEA/9xeeVH144Ueqe4u68dtKmtPFmXMXyis1cGQKfpknsk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.5": { + "0.1.6": { "name": "async", - "version": "0.1.5", + "version": "0.1.6", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.5.tgz", - "shasum": "9d83e3d4adb9c962fc4a30e7dd04bf1206c28ea5" + "shasum": "2dfb4fa1915f86056060c2e2f35a7fb8549907cc", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.6.tgz", + "integrity": "sha512-gbXCpNZerhfYr8Q4MqwgODncwRzYIE9r7zsZQ2xur0PxeOXbDNVfgsuT4Fq5UxQ4VnkjtaYfvv++AJz3WfNFeg==", + "signatures": [ + { + "sig": "MEUCIAagICqHFXa54YGVSuslP/BmDsJjaHvsISHrsYxIRrhoAiEA4eM4O0o/YE4QdkPxQ204Qkp38fI2KUYHUCqjHvEwo3o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.6": { + "0.1.5": { "name": "async", - "version": "0.1.6", + "version": "0.1.5", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.6.tgz", - "shasum": "2dfb4fa1915f86056060c2e2f35a7fb8549907cc" + "shasum": "9d83e3d4adb9c962fc4a30e7dd04bf1206c28ea5", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.5.tgz", + "integrity": "sha512-KhhzvRCyjYe6SXWfASlCeRTO3xPOF4biDq3MO9l7LDjV7GVnwKS5EYeujPLlQ96RTZwpn94tGkgKsV5q/EZHkw==", + "signatures": [ + { + "sig": "MEYCIQDz7Pgb32wEC1fBezGEUuHlrlOVckBymFfqeaIJm+2KuQIhAJ3dESAlL+XZLdQHqiOfjItu6UWV/f1EbCd1CxdEVddO", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" } }, - "0.1.7": { + "0.1.2": { "name": "async", - "version": "0.1.7", + "version": "0.1.2", "dist": { - "tarball": "https://registry.npmjs.org/async/-/async-0.1.7.tgz", - "shasum": "e9268d0d8cd8dcfe0db0895b27dcc4bcc5c739a5" + "shasum": "be761882a64d3dc81a669f9ee3d5c28497382691", + "tarball": "https://registry.npmjs.org/async/-/async-0.1.2.tgz", + "integrity": "sha512-y7uCLBkkDe5614yPPM0Ch8MyOYvVvQjrzP7Xqua/HR2Ea+tht/zGIdppxnPi9yujy0O//0LuH5dfNN+5DFAMJQ==", + "signatures": [ + { + "sig": "MEUCIQDx/ZqWoNPdHkXCUfl+RRJD3hawX+xwwv1h8lNjQc1M7gIgSv2gHAaezX4xsAZA6LrhoJpoOZU3gS/4oJZf7wL3L/Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -97,8 +153,15 @@ "name": "async", "version": "0.1.8", "dist": { + "shasum": "52f2df6c0aa6a7f8333e1fbac0fbd93670cf6758", "tarball": "https://registry.npmjs.org/async/-/async-0.1.8.tgz", - "shasum": "52f2df6c0aa6a7f8333e1fbac0fbd93670cf6758" + "integrity": "sha512-5WGWFUyVb/6iKBPBfsewoI+HtHaTcfeHeKQNIpG8IKmH+r+Y34hLUt5AH7e9vU97SmuAVvZiqX9F9NUWFwUU6A==", + "signatures": [ + { + "sig": "MEUCIFHZFTal9MRg5V92uSwD72Dhby6bSDGdXddhKB7R5U9HAiEA8WOyxr+fZe2jc52kronNkbadCw/tFP33AB5vJqLRk5Y=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -109,7 +172,14 @@ "version": "0.1.9", "dist": { "shasum": "f984d0739b5382c949cc3bea702d21d0dbd52040", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.9.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.9.tgz", + "integrity": "sha512-to+lCTfZfYBMLaOWhmmYcfeRZv8SpjcSGTV3AXCOe0HcZ4l7DGD8F4DrpGjnL1Pdor1GoPrbah3ZoicEWYQpTw==", + "signatures": [ + { + "sig": "MEUCIQCQvspvJIlSwq4AwCC9DIP/sAJyOLjp1iOXsS/AEgQTLwIgYKfAqLWIVUSC+4r0XJuOSFz+w8NWbNAF4cMinX1NXKM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -120,7 +190,14 @@ "version": "0.1.10", "dist": { "shasum": "12b32bf098fa7fc51ae3ac51441b8ba15f437cf1", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.10.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.10.tgz", + "integrity": "sha512-IKQ+XgK9sP3w1hSbIwwVXrjfbnL2N6/lPc8yf0ODBiQlVnwkjTVYPx+yQYwVwUr/TVOpEVA2OKRINJBQp25Sng==", + "signatures": [ + { + "sig": "MEYCIQCn6Lu/CvjlY4S8r/MOGV7NoKkzfrLfgKrY3E2WhNlmiwIhAPuovHzsF3l+Wqk3QrglIOj5zSjCJohXmL0oQmSC65e8", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -131,7 +208,14 @@ "version": "0.1.11", "dist": { "shasum": "a397a69c6febae232d20a76a5b10d8742e2b8215", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.11.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.11.tgz", + "integrity": "sha512-UWxk0UvrSb4s+Yrr0IUXkgWGLi6oz9n5McjIU+G2g2IswXxs9/EwGz6eWiS69/NII/4hz/+nr1CXHtBicHOqBQ==", + "signatures": [ + { + "sig": "MEUCIQCqpTXHxY3Hmo8v4lhVUJNOvz9leak6i0m4MEi5RK/72gIgazXNy1XSVcKqWGwkUQ9An0HOKDyJhGYBLo8F41fSWwc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -142,7 +226,14 @@ "version": "0.1.12", "dist": { "shasum": "ab36be6611dc63d91657128e1d65102b959d4afe", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.12.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.12.tgz", + "integrity": "sha512-m3U65nGDodNLsrc1h0wyaxBLBgXcp1fOI0iyi0+yOCnuzCKQEfZsNlpheLJGe6R9f9ZpKOPQvbscKoxTf3+RZQ==", + "signatures": [ + { + "sig": "MEQCID0v3cVO5TOov/0sChcWNZUIFcPrCysYun/OYLESq51lAiBFwB/6QYk6fgarqiu9Hu7gNFaLTkgmr880uhBcp6y7HQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -153,7 +244,14 @@ "version": "0.1.13", "dist": { "shasum": "f1e53ad69dab282d8e75cbec5e2c5524b6195eab", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.13.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.13.tgz", + "integrity": "sha512-HUE5SMTTRRWqeu2bwx7zCZ+Gim/O0z6iOMCJnz0hcdHbeJPMC6dTptzQbVGa8HFJ3Hp6Lv8vJeZYOfG9PN1xjA==", + "signatures": [ + { + "sig": "MEUCIQC1XBOLfpUw6UvWA3gZi1NmNuazwhtuHyug9eBsXYkqMwIgdnXTuxg56dx6JRVP8qhClShal4wI+qJjKATsLXRDaDE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -164,7 +262,14 @@ "version": "0.1.14", "dist": { "shasum": "0fcfaf089229fc657798203d1a4544102f7d26dc", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.14.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.14.tgz", + "integrity": "sha512-enxRg7+yAOj2LXDzWpBv9WKi5dlQVnGG9j3ekGiIczm+gmzNXaZzqf7vf+wW9NwvA1k279EsCbSOumxmjv5mtA==", + "signatures": [ + { + "sig": "MEUCIQD6UR0wANweVzJujDe7z0O+mo00TWpl2LR8BXlFshwXeAIgZOLdXsF3L7n/lDIKg2Czz8IqSglVz6uyMYIUcmn+kw0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -175,7 +280,14 @@ "version": "0.1.15", "dist": { "shasum": "2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.15.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.15.tgz", + "integrity": "sha512-AGVE6WcRsWX4QudgrVhdDUKAgCv67EwmzP3yEny/AI7/WqM+J8CStwMbGqeXC9p8ih4qota04EaMim/WvA8OCw==", + "signatures": [ + { + "sig": "MEUCIE0YUrqnO8Q0NMwUaiQm/zWvIZHQQAfdIZSWckZKD/lrAiEA504BIEMfraj3F+VfQDbFVsX4uIx82XxqAgSSj3ctmTM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -186,7 +298,14 @@ "version": "0.1.16", "dist": { "shasum": "b3a61fdc1a9193d4f64755c7600126e254223186", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.16.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.16.tgz", + "integrity": "sha512-TrtaROD5B+de7cbqPG6z96Jc+CXbnlQLzGPTj6Marf2+yh9hCe0+PVFdNMFxcdfjOF+0T/HrdN7EzC+COuxQpA==", + "signatures": [ + { + "sig": "MEUCIGrtIMUE1Pqf0ZZxsZHGBC0pcZBtYYiglG6AwjDVGb5SAiEAtJtHa+HerK1Qe1rjf3Uf3pCT/jFLLOce3JnHqAG5i1k=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -199,12 +318,19 @@ "uglify-js": "1.2.x" }, "devDependencies": { - "nodeunit": ">0.0.0", - "nodelint": ">0.0.0" + "nodelint": ">0.0.0", + "nodeunit": ">0.0.0" }, "dist": { "shasum": "03524a379e974dc9ee5c811c6ee3815d7bc54f6e", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.17.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.17.tgz", + "integrity": "sha512-PvPaikCPsSEOfAR/je214lMCnaPLHAcA/KAjfEixFaQ7fSr44rrZZtD417vCn2JUt059QGZKKbaa8SZEDNPEvA==", + "signatures": [ + { + "sig": "MEUCIAF00fKoKWO4YrB/WJvpptvGLNheleNFn3Qyg2IuFvkDAiEAnrcbewblqTrZIRMyGuvet476VPOrHxgDmBd1Oha+C2c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -215,13 +341,20 @@ "name": "async", "version": "0.1.18", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "c59c923920b76d5bf23248c04433920c4d45086a", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.18.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.18.tgz", + "integrity": "sha512-BNk8X5AAA0bk1d1E2DJ/HgfP71qvoUZtjGGkIUI2eUo8IyXdc0u0tpFOuuRTXNU99iqb9/OoLD6XPF+xoNXaTw==", + "signatures": [ + { + "sig": "MEQCIGbpzknEnfC5K0dKlbduTsjP+S+sKIM7yxeAepeqhKrjAiB9YVzDRhERuR+YAUw4U5vNrH1cE/d4citggaoy7P/qgw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -231,13 +364,20 @@ "name": "async", "version": "0.1.19", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "4fd6125a70f841fb10b14aeec6e23cf1479c71a7", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.19.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.19.tgz", + "integrity": "sha512-Pr/gsr+9UBQPMjqAA+xVqfuCSOPzNGF79mgOTUOJnzahf4xDXBtak0aMlOqOwD+2gEkE7bNsd66qdfvBXcMOWQ==", + "signatures": [ + { + "sig": "MEYCIQCQYjlXXSckAyh4t4o/ZOJptydfkmIk03tpRUHBNcN8pAIhAL1ujP9UylSdcpsAcsuwRB0t0hq9oSFEFRRbJ4p1HN89", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -247,13 +387,20 @@ "name": "async", "version": "0.1.20", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "ba0e47b08ae972e04b5215de28539b313482ede5", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.20.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.20.tgz", + "integrity": "sha512-w4A6K4QUEfl7BrQGC7TGc/I5TFVi1qQKDQW1HsFvwNXbpYL+HPmuECxhQpZsYJ2z4WcRyL//8wgH6TEo/7dqtw==", + "signatures": [ + { + "sig": "MEUCIQDF9wPuKq/5lxektlLfbcoUPqMqhK3a+AfcUR1z6V7wxwIgKGROHgPQQ2rjcyw8r8ri0peByfddi3/vNeJMh2DG4bw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -263,13 +410,20 @@ "name": "async", "version": "0.1.21", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "b5b12e985f09ab72c202fa00f623cd9d997e9464", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.21.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.21.tgz", + "integrity": "sha512-nJClLgEUpW3NIGNhuZpp/mWlZV/wc4n7EWC3sOn3VjDLADjFMvQgnxKbsNAXeLeswU8snGNUlGrHthRz3vvbFg==", + "signatures": [ + { + "sig": "MEUCICsB8YCMfaV1pa6azmvMpjWvXeGIGSr27TvxvTXtTSQHAiEAnk3gGbRsLhvnYeNUMJHyAIBmHOSNHorlz3/O/ETzxOo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -279,13 +433,20 @@ "name": "async", "version": "0.1.22", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061", - "tarball": "https://registry.npmjs.org/async/-/async-0.1.22.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.1.22.tgz", + "integrity": "sha512-2tEzliJmf5fHNafNwQLJXUasGzQCVctvsNkXmnlELHwypU0p08/rHohYvkqKIjyXpx+0rkrYv6QbhJ+UF4QkBg==", + "signatures": [ + { + "sig": "MEYCIQDDqPsjio/NKLNOWiAERdNWlrviEM2ppmL3fFZXS9r6lwIhAPpBno0LRBxGoBzDk7EaRXnxVPKt7HCSM+TeMlNoR1QR", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -295,587 +456,825 @@ "name": "async", "version": "0.2.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "db1c645337bab79d0ca93d95f5c72d9605be0fce", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.0.tgz", + "integrity": "sha512-nnO8zZ7dtTBikdb+WBynUk+LIn2jNrEM38ZM9WLFNYGMhSA6rJhnGbOhkKInnUoE9rC5VFAuIzTtq8Cl1T+W2g==", + "signatures": [ + { + "sig": "MEYCIQCuVCblXiqX9GMhMEKP1SMbIELOmXqlcovU53kU0y/vkwIhAMXabhgQnQQJH3MQJQvNH7qRwcVUfqm38bv2TJub46dQ", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.1": { "name": "async", "version": "0.2.1", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "4e37d08391132f79657a99ca73aa4eb471a6f771", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.1.tgz", + "integrity": "sha512-hMyoohB59F7goU5qLI99Nl4ClmXb5/w/tsfPxW/LB7znoqngNtDTe6JKKPRQFGRbE9hrlbwy3et79dzIrBVL+A==", + "signatures": [ + { + "sig": "MEUCIEoatMcHLPccRP7m32zdIEnsCHtyrmINB9ZM0TShydtQAiEAnYHR87yfG/T48RxIg5XSuMtZk+tqTFM4OlWlNmsZsUI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.2": { "name": "async", "version": "0.2.2", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "8414ee47da7548126b4d3d923850d54e68a72b28", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.2.tgz", + "integrity": "sha512-tJRRWjpougYgbb9OIL5o1NCkMpAAo3wKznVG3ukqznOcfc/GMqo6MGVYOGbDUjwP93x3exAnrsFbQ7rD21sRyQ==", + "signatures": [ + { + "sig": "MEQCID3gx8+/AviHUXlfRYw6LqOMQEZyznVARiB7uHg0oBM5AiA6WPlKFKkfDwaYj6GQ/R34QCpnZOZW7ANg5p0Z1QJJBg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.3": { "name": "async", "version": "0.2.3", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "79bf601d723a2e8c3e91cb6bb08f152dca309fb3", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.3.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.3.tgz", + "integrity": "sha512-VUBA016fb0uHNgE4KJ8jVgR6WIsAqIIESLcebYhrp5tcEq5nmibVyqHtlJ4DE5chi4gzR04GpEyrqPyoyDUxvw==", + "signatures": [ + { + "sig": "MEQCID4s0i1Xcs/X40mnMn4pCxiceAuVMLe6YfH9RkNoFNePAiAzq9EPWmKUCtikDFKv884BJwCv/QSef2MnYN1AIFxO4Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.4": { "name": "async", "version": "0.2.4", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "0550e510cf43b83e2fcf1cb96399f03f1efd50eb", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.4.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.4.tgz", + "integrity": "sha512-YOlRWhY+HgDdAPGG23DAGKTcmeA2dRlqWx8lVCHKh44JxI0XPyaTzh2kRqL+VkR/0k3ACtWgfMbZOb2+YfrdmA==", + "signatures": [ + { + "sig": "MEUCIQDaLL1x4PzKGfX60Da8Fi8eUlZ8QlvcUeMh1PfdZA+zUgIgROy1WOQRGhg+aS+zeySmRnLc0FNg8fjvbUw9KiLB2V8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.5": { "name": "async", "version": "0.2.5", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "45f05da480749ba4c1dcd8cd3a3747ae7b36fe52", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.5.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.5.tgz", + "integrity": "sha512-8t/BPKmtCPGoCxp2K24E2MK3JGU/imGZJdhh2J7MjMWJw0/99RBq/fLdI8rZpoefIDf+wmMdvRyLkgxbA4k6ug==", + "signatures": [ + { + "sig": "MEUCIBvSEM6iUELojeTkPsgmUrWx3WSCaaFrnz1AU/55GJ9QAiEA1erL0DSvXqUXroiPDQHcyeoFFE+uGTMS3xu5jwBkVeI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.6": { "name": "async", "version": "0.2.6", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "ad3f373d9249ae324881565582bc90e152abbd68", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.6.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.6.tgz", + "integrity": "sha512-LTdAJ0KBRK5o4BlBlUoGvfGNOMON+NLbONgDZk80SX0G8LQZyjN+74nNADIpQ/+rxun6+fYm7z4vIzAB51UKUA==", + "signatures": [ + { + "sig": "MEUCIQD3apPEm+ULbSFLX6fqTKWpzjs8dPwoZ2aMRvSvEMcedQIgYRPSCIkpdL5Z7DBp0cqCbQvKNFTAY8L+NsC331MNFfQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.7": { "name": "async", "version": "0.2.7", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.7.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.7.tgz", + "integrity": "sha512-5BMKmTkzcOSMOjx4UdgwVuwVEtcoqiaxC8gCRXwyJ1RqjmWJs0IRRxvzF+rTpFpXr33nWKgDlkjzgmC5isM6pA==", + "signatures": [ + { + "sig": "MEYCIQDDMxV/g189H9/JJiquBaNS1u9z19UXPDiD2BoqIl+SfgIhAMBh4FwUR4EDXUrahoJTKgFp5jlJ55V5/H4bhR1asXaN", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.8": { "name": "async", "version": "0.2.8", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "ba1b3ffd1e6cdb1e999aca76ef6ecee8e7f55f53", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.8.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.8.tgz", + "integrity": "sha512-OvesHI7rvKyZiwRiNZfC7kPm/KlvgKYixkxpCyj7YgHVQu6DXjjcCtAnlY+sEApfs1QYhnU6ZKGhZkVwV3ESMA==", + "signatures": [ + { + "sig": "MEQCIAaI1MAxq3xFjX0LCR+dAKufh77XB57sUdL/26/x04uYAiAIMlNWA4TPemHdvm/8JeMFwl+g/ngXMgFjRgsVUglIJA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.9": { "name": "async", "version": "0.2.9", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "df63060fbf3d33286a76aaf6d55a2986d9ff8619", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.9.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.9.tgz", + "integrity": "sha512-OAtM6mexGteNKdU29wcUfRW+VuBr94A3hx9h9yzBnPaQAbKoW1ORd68XM4CCAOpdL5wlNFgO29hsY1TKv2vAKw==", + "signatures": [ + { + "sig": "MEQCICw8WvYWKlg4GA+BHZpXA6mhNuTzQkOgITiRjAoQUgGsAiBn69vkSJTplNSQfVcxvg5QLE3T/bx+Kw5aph0+f0iMaA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.2.10": { "name": "async", "version": "0.2.10", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "b6bbe0b0674b9d719708ca38de8c237cb526c3d1", - "tarball": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==", + "signatures": [ + { + "sig": "MEUCIQCXk3BnwZInzVs4J++eN0BacE5K5ZFVfDM+IEhYu3hZ/AIgZW0T2vqvCQ6qY7XlEPe6Ou4y5VP+NGZfrmEBgFmGhq8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.3.0": { "name": "async", "version": "0.3.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "6d2c543c25f514c602bb22916ac222a519290d5d", - "tarball": "https://registry.npmjs.org/async/-/async-0.3.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.3.0.tgz", + "integrity": "sha512-t0AbvoJp8ufti4iQnqGaD5+BqEvNE5G4IkRBut+X58yRmVxYX/0EMXuk7urOMqoDmRMAlODUQgDzEmytxBwmlw==", + "signatures": [ + { + "sig": "MEUCIQDHkon+iHzvV/kTD70bswF8V2yaONqlrnMFZHQLhlOLGAIgfi6t6Pmof6Jsnics504Iev9TyToh5JFGfn7ESoLK1wg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.4.0": { "name": "async", "version": "0.4.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "208bba02850129dacc2bc3959e4126570ae80b74", - "tarball": "https://registry.npmjs.org/async/-/async-0.4.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.4.0.tgz", + "integrity": "sha512-U/V24wqehhL9iASh8i9ocYjwBJQx++rQRA8oefLqbVCbRkOAahxR7MP6vfwtpTaVJhNH9CgWgTY3yAUwtDfyGw==", + "signatures": [ + { + "sig": "MEQCIALcT3hgZRKQLLY2NPDKkES8byo65LMCQRFrBGJIjECyAiARxKVY47BdjwsBhmUHcVUvU+rAOihL/umtmFVhbVhHNQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.4.1": { "name": "async", "version": "0.4.1", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "1985abade017df906bfaa8d77d424b25366b3a5b", - "tarball": "https://registry.npmjs.org/async/-/async-0.4.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.4.1.tgz", + "integrity": "sha512-Av6ptO/8zrd9U6Bv1p+zY/PMYvdVIno1YunAyQw2VlQBEFL+ozihMB7BIyKEQMmQIi/uIrpVEhvQ8MgE2DAFpg==", + "signatures": [ + { + "sig": "MEQCIBYYzwueFVGhI13TMExNvdcWQyfyZdZx9fpwPfyTl0vQAiA710RMqsG6I6zrw1NpKU6GLFWJItKcRnbq7ikhCFlq6w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.5.0": { "name": "async", "version": "0.5.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "524bc1cf3ed2b6adc7f4a8c4987dd9c4809c764f", - "tarball": "https://registry.npmjs.org/async/-/async-0.5.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.5.0.tgz", + "integrity": "sha512-SbEssEno13E5+zFBHXa3PQP2f2U/tq1xjq0mwb2yBIYwOk5SYh3hWdY3ABByIQgxDNQi/yRGCl1/qf4AT7G8ng==", + "signatures": [ + { + "sig": "MEUCIQCL6uogQDUOLrEEOMSkGp2PlliEHSO830YvFBKCk15weQIgSxQzTC3L0QtF3xTNsPdXIgVP+iviNRm8O76SWHCKeio=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.6.0": { "name": "async", "version": "0.6.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "025a31c8b1fb11e7481fa18dbdbc2bf2e434933a", - "tarball": "https://registry.npmjs.org/async/-/async-0.6.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.6.0.tgz", + "integrity": "sha512-ZOOAuacMq3yLwWL+QnaXpVwEuV6XF0QVL78edsEKBn+PYaL4kcDId/SYSLWm0s5GrWm3IIMDsaD7djfpZZQdxg==", + "signatures": [ + { + "sig": "MEUCIQDvA6j89g6w2PtFoek1qeQM91RxUAOTz6gS4WW7BCa91wIgeRSTgBUR4Va5q8avB9AiXRGXFDxpacG5UWDqpp9hFwE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.6.1": { "name": "async", "version": "0.6.1", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "594fe360968fcdd2d7e0a6d95a874e4e92c7a26d", - "tarball": "https://registry.npmjs.org/async/-/async-0.6.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.6.1.tgz", + "integrity": "sha512-egr4a5B/OVikzKT/uD+i0gO54+Yjm4j7rphMqfgWAAlicrszZRWge13YiswuiBYjZM/dQoaNOAnI31loFyR5Pw==", + "signatures": [ + { + "sig": "MEUCIDZpNIr69qKIBkyMrijBzDWRWTScgfjE8n7oofK0lRiiAiEA9EKMvBJ70KuEhn5kPCntp9uqBQNGT8yJNhTp2OTHPcs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.6.2": { "name": "async", "version": "0.6.2", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "41fd038a3812c0a8bc1842ecf08ba63eb0392bef", - "tarball": "https://registry.npmjs.org/async/-/async-0.6.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.6.2.tgz", + "integrity": "sha512-fWbn+CMBgn1KOL/UvYdsmH+gMN/fW+lzAoadt4VUFvB/t0pB4aY9RfRCCvhoA58jocHyYm5TGbeuZsPc9i1Cpg==", + "signatures": [ + { + "sig": "MEUCIQDNu32pZbP5qDcT8VwlbgJRnJDTaLHhKhpmcxcEMXsQTwIgBb/jCf8wfqGbkb/rBiArwx7jK3PvPthNy3NOQfeKfPc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.7.0": { "name": "async", "version": "0.7.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "4429e0e62f5de0a54f37458c49f0b897eb52ada5", - "tarball": "https://registry.npmjs.org/async/-/async-0.7.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.7.0.tgz", + "integrity": "sha512-9GReTNJtSSP+tNXZhlXuzPrRVlhH7Abwgf9qsV4NVLiChZpzFKvWGIwAss+uOUlsLjEnQbbVX1ERDTpjM5EmQg==", + "signatures": [ + { + "sig": "MEUCIQDI5W3AN6hMKHBiG1WI3R8Rfn17Wyr4FdIuucwf49ugiAIgTP2hXi7TzsOqxVIPtISFkduvc9jcBn56X6CXkiHquNA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.8.0": { "name": "async", "version": "0.8.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "ee65ec77298c2ff1456bc4418a052d0f06435112", - "tarball": "https://registry.npmjs.org/async/-/async-0.8.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.8.0.tgz", + "integrity": "sha512-M2LC+aqW7VetFcnFiYEbjUsmASW6GSsMNkRzhUzwHoQNfNIRClf5GLgozwuJ4tAMLAfjywrKyQ2wWiODJivQmg==", + "signatures": [ + { + "sig": "MEYCIQDWI8ZXzWzCEMMceuswU5bUv40LoGHeBzQDDT29BGvDXQIhAJPd/aa6G08LJuh331MG6huDJDwgbUBQ13wkOnuS+tMI", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.9.0": { "name": "async", "version": "0.9.0", "devDependencies": { + "nodelint": ">0.0.0", "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", - "nodelint": ">0.0.0" + "uglify-js": "1.2.x" }, "dist": { "shasum": "ac3613b1da9bed1b47510bb4651b8931e47146c7", - "tarball": "https://registry.npmjs.org/async/-/async-0.9.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.9.0.tgz", + "integrity": "sha512-XQJ3MipmCHAIBBMFfu2jaSetneOrXbSyyqeU3Nod867oNOpS+i9FEms5PWgjMxSgBybRf2IVVLtr1YfrDO+okg==", + "signatures": [ + { + "sig": "MEUCIQCI1Cj5C8kd39ibGV6rt+zZpzjwFzuunfoZqqAk851UagIgBgDBJ0HJybPXHn5QnRkRkOz/qWSr8CUrb2e7Dl6s2GA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "0.9.2": { "name": "async", "version": "0.9.2", "devDependencies": { - "nodeunit": ">0.0.0", - "uglify-js": "1.2.x", + "lodash": ">=2.4.1", "nodelint": ">0.0.0", - "lodash": ">=2.4.1" + "nodeunit": ">0.0.0", + "uglify-js": "1.2.x" }, "dist": { "shasum": "aea74d5e61c1f899613bf64bda66d4c78f2fd17d", - "tarball": "https://registry.npmjs.org/async/-/async-0.9.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==", + "signatures": [ + { + "sig": "MEUCIQCkWWXOG+S4KGmObeljhtJc2ZuIFC1Ri+ndBZR42cltdwIgcmQGu0VSb+7XvZkQZiGuPUraNudGgruKeF220pmenKE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.0.0": { "name": "async", "version": "1.0.0", "devDependencies": { - "benchmark": "~1.0.0", "jshint": "~2.7.0", "lodash": ">=2.4.1", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", + "benchmark": "~1.0.0", "uglify-js": "1.2.x" }, "dist": { "shasum": "f8fc04ca3a13784ade9e1641af98578cfbd647a9", - "tarball": "https://registry.npmjs.org/async/-/async-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", + "integrity": "sha512-5mO7DX4CbJzp9zjaFXusQQ4tzKJARjNB1Ih1pVBi8wkbmXy/xzIDgEMXxWePLzt2OdFwaxfneIlT1nCiXubrPQ==", + "signatures": [ + { + "sig": "MEQCIHgFN8rHIvkBBZOPON2hronH4CqbQEjZrtNpEhKfrca8AiBcyJzPNNsUJ+9M+IFH4PaQUd7JbvsI+60rmYV+pREY6w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.1.0": { "name": "async", "version": "1.1.0", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", + "nyc": "^2.1.0", + "yargs": "~3.9.1", "jshint": "~2.7.0", "lodash": ">=2.4.1", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" }, "dist": { "shasum": "2b33ea3e87fc0c5ed624f9e31a9c902c022da09b", - "tarball": "https://registry.npmjs.org/async/-/async-1.1.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.1.0.tgz", + "integrity": "sha512-oDfw1XAvqquMU5ffBq/8EbRPsQ8caU5im+YD1cwvYUNzs2u5IKm1+dE7n3IXyyNPIeCEMcM7Wg42CqrZCFjIdA==", + "signatures": [ + { + "sig": "MEYCIQDmpxLOAJAPzA6e9gy45kT+yHw3wS8I/OdFw23udDh/SwIhAK2J2JMAAnCzByvdUqwU9S23uZhCUSv7AlEHbqnP4yal", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.2.0": { "name": "async", "version": "1.2.0", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", + "nyc": "^2.1.0", + "yargs": "~3.9.1", "jshint": "~2.7.0", "lodash": ">=2.4.1", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" }, "dist": { "shasum": "9029580f93d05a7cab24f502c84707ac3ef57b10", - "tarball": "https://registry.npmjs.org/async/-/async-1.2.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.2.0.tgz", + "integrity": "sha512-wqBtHDvCb1m5eWz5w8FWMeghRk46hdwlp+MrLfzPDnjy9cgpkMYNdN0PXlC5rnCXkeZHOoR9prohE/D2TTUVtA==", + "signatures": [ + { + "sig": "MEUCIQCmuj8bYQfpaBiDlPkDuCmot5waarg/clbcHWkCOxQXWwIgXMOFbF8MFfMX0dEqGSP49NUwSMfZ2Qx70BmDd4XR8CY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.1.1": { "name": "async", "version": "1.1.1", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", + "nyc": "^2.1.0", + "yargs": "~3.9.1", "jshint": "~2.7.0", "lodash": ">=2.4.1", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" }, "dist": { "shasum": "753cb13df043ff08d810e4418d312d646ee1bbea", - "tarball": "https://registry.npmjs.org/async/-/async-1.1.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.1.1.tgz", + "integrity": "sha512-b2Jrm7t3GwqLqwm5abOsOx1o4uGqFvP3fpoEwkIqe6pANfSYCNVUxMXCY2N4yJjmjthfnsA65cftQdlXo6qohQ==", + "signatures": [ + { + "sig": "MEUCIA4okovwMu7jm5hb58WIiQn16CDSgKbPKp8KTxQBO11jAiEAnHE7VhcDz67WSf/3uPjYDCqXx25/KIAETjlUCqRPFg4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.2.1": { "name": "async", "version": "1.2.1", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", + "nyc": "^2.1.0", + "yargs": "~3.9.1", "jshint": "~2.7.0", "lodash": ">=2.4.1", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "1.2.x", - "yargs": "~3.9.1" + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "1.2.x" }, "dist": { "shasum": "a4816a17cd5ff516dfa2c7698a453369b9790de0", - "tarball": "https://registry.npmjs.org/async/-/async-1.2.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.2.1.tgz", + "integrity": "sha512-UMnr1f7iakrFTqRSvkCUv3Fs7dMHN5XYWXLlzmKUMhJpOYlCxgI/zQd6kYnEuxhCAULUfP0jtMSiTbpGNbhskw==", + "signatures": [ + { + "sig": "MEQCICvGzCv7B9U3R/arI7yXrrddlCOoxRXHAHmNdn+cV4QLAiBzwQ5PubG+z6dyy43ZzZ4SDy5pT2Xk+80HkpLo8h/Lhg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.3.0": { "name": "async", "version": "1.3.0", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "coveralls": "^2.11.2", + "nyc": "^2.1.0", + "xyz": "^0.5.0", + "yargs": "~3.9.1", "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", + "uglify-js": "~2.4.0" }, "dist": { "shasum": "a6f1631e8a595a663496d0a5586bd12007d4871d", - "tarball": "https://registry.npmjs.org/async/-/async-1.3.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.3.0.tgz", + "integrity": "sha512-JsebKhdkyE+QlWiFF+Mo9n2YBiFXkUNNLN8eLJqowTxTiFV70hDdgldy8Y+muTuOVeGNyOFawqR2zLqPquLyOg==", + "signatures": [ + { + "sig": "MEYCIQDsFqIyuGAFYlhiMIELfxFzyskLHz4WENjz+hkcdkAUSgIhANSEUAj0KN9DW/mlHoU53hzDzk+m2z+t2Tddw418lXOl", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.4.0": { "name": "async", "version": "1.4.0", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "jscs": "^1.13.1", + "rsvp": "^3.0.18", + "yargs": "~3.9.1", "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", - "native-promise-only": "^0.8.0-a", + "bluebird": "^2.9.32", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "es6-promise": "^2.3.0", + "native-promise-only": "^0.8.0-a" }, "dist": { "shasum": "35f86f83c59e0421d099cd9a91d8278fb578c00d", - "tarball": "https://registry.npmjs.org/async/-/async-1.4.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.4.0.tgz", + "integrity": "sha512-Zlt2pNm/fE+7BhKRkQrRhP0FXkQ6sS4amtfDhra4Q+VTrQJPFmDPxk15h+6nvlR6nWK7C1QbvkvsCO1auCbtUQ==", + "signatures": [ + { + "sig": "MEQCIB+MBmWTra9R7Lh0LkMBNndjARDw7uKQ22HyMJqLsnImAiADRi0rM8Yrpr0P1OQYVqVs9F7xjgx2uGunYtLm5uvu0A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.4.1": { "name": "async", "version": "1.4.1", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", + "bluebird": "^2.9.32", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" }, "dist": { "shasum": "1bc4895271551e524fd7fb338ddebad1a1440b74", - "tarball": "https://registry.npmjs.org/async/-/async-1.4.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.4.1.tgz", + "integrity": "sha512-Pbd2/QmBlQ6/fTzKC91ATKCTM6W+/oZ8/s9z2qk8NGXtTktrrR8mgK2Dpw1dJmuysPs92f/Dp0lZDru4RzqmOw==", + "signatures": [ + { + "sig": "MEUCIQC6xo5qUNhtgsTyYCOXWVBDW7UXIvQu3IG9FACmJv6ZmgIgXcHZRlGbiiUxjXFmuwbJNnogK7jrfMtNlST6edE26So=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.4.2": { "name": "async", "version": "1.4.2", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", + "bluebird": "^2.9.32", "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" }, "dist": { "shasum": "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab", - "tarball": "https://registry.npmjs.org/async/-/async-1.4.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.4.2.tgz", + "integrity": "sha512-O4fvy4JjdS0Q8MYH4jOODxJdXGbZ61eqfXdmfFDloHSnWoggxkn/+xWbh2eQbmQ6pJNliaravcTK1iQMpW9k4Q==", + "signatures": [ + { + "sig": "MEUCICtAw7kSoWAyUhpmg//x7m4Ak8Z/qwX3kx4NLEg/L6oVAiEA0jGUxxDj3fLnppE9VACV2OF1npNIMSZfmf6Hjc3DbWI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.5.0": { "name": "async", "version": "1.5.0", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" }, "dist": { "shasum": "2796642723573859565633fc6274444bee2f8ce3", - "tarball": "https://registry.npmjs.org/async/-/async-1.5.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.5.0.tgz", + "integrity": "sha512-m9nMwCtLtz29LszVaR0q/FqsJWkrxVoQL95p7JU0us7qUx4WEcySQgwvuneYSGVyvirl81gz7agflS3V1yW14g==", + "signatures": [ + { + "sig": "MEQCICqcezv7RJ9tBMQVHrLhsHo3y+pOQjWM2MhUp3Hceye5AiAbvNW4ykTwUE9c0lRHDENmnzgazYJ1F48tENbq68yGMQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.5.1": { "name": "async", "version": "1.5.1", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", - "lodash": "^3.9.0", - "mkdirp": "~0.5.1", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", + "yargs": "~3.9.1", + "jshint": "~2.8.0", + "lodash": "^3.9.0", + "mkdirp": "~0.5.1", "semver": "^4.3.6", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" }, "dist": { "shasum": "b05714f4b11b357bf79adaffdd06da42d0766c10", - "tarball": "https://registry.npmjs.org/async/-/async-1.5.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.5.1.tgz", + "integrity": "sha512-xpP8QJKDlqOhumIYy3wTwSAT6Pyw6+dK3KEG5JYq6dCY6HXP+Ykh3gnj+JI11HxnAjFQlG7ovtHmiukkTYHIkg==", + "signatures": [ + { + "sig": "MEQCIFMozfdH0IXik7NAi3lHTsOqv7lwAns80kx4+Xf/W57DAiAuMlK/LH2x3TLqDQ8If/r6hNzVyEZXugSL4Atzk+69rg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "1.5.2": { "name": "async", "version": "1.5.2", "devDependencies": { - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", + "xyz": "^0.5.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", + "mocha": "^2.2.5", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "lodash": "^3.9.0", "mkdirp": "~0.5.1", - "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "bluebird": "^2.9.32", + "nodeunit": ">0.0.0", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "xyz": "^0.5.0", - "yargs": "~3.9.1" + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6" }, "dist": { "shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a", - "tarball": "https://registry.npmjs.org/async/-/async-1.5.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", + "signatures": [ + { + "sig": "MEYCIQCT28L/dnB/p+z29NniEsMxyS80ae3dphdsymEpvzPBswIhAL1EgTCB4B19n55ng3u/KOL2ql5HT+rOe4zwl2AP3iY3", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0-alpha.0": { @@ -885,44 +1284,51 @@ "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.3", "gulp": "~3.9.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.3", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "~1.0.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "~1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "72acf81eee0d641e05af3cb16953863ec8b23fe1", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-alpha.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-alpha.0.tgz", + "integrity": "sha512-GInjvip6f39pJDApsq1NCGlOyAfTFFzH/mpLa5ZY/HGBK5Cp64HvVKAt2DrAA0DH+oEb98mKfAzjqBpt+YhSUw==", + "signatures": [ + { + "sig": "MEUCIBjKpqA2R33d1UcBgctaSbwaS0BpH2l8HoxDtErdgFL9AiEA4dW5stfTE6cvNJva0LyKI/ZoCTMuHZzi2FPo/t5i9Is=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0-rc.1": { @@ -932,44 +1338,51 @@ "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.3", "gulp": "~3.9.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.3", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "~1.0.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "~1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "5298bbe0317312a3c9314e6d7cf14f765fb48735", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.1.tgz", + "integrity": "sha512-17YWNSP5vMam9PBEqUiEWVAhACOpF17hk9NcrC1NsWphEBUbqWBM+ctgCFfSHDeJcoBZOCkOJue7Wyy8A/1X6w==", + "signatures": [ + { + "sig": "MEYCIQDtKCnRwOuLyys7Iy8Y0dWKWwjddAFhqVwBPIHlO6taSgIhAO0PSCDSmBIibV/P4FIQppQnfyM4vzwLSlGhkXxtyQyr", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0-rc.2": { @@ -979,44 +1392,51 @@ "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.3", "gulp": "~3.9.0", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.3", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "~1.0.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "~1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "6fc56eec72574ebfe43ad30aefef6206f1ad2494", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.2.tgz", + "integrity": "sha512-3DwnVa+sifQB22NIEPOHR7YeCTSvX3H63Sfytjt26V/EF0rmAyBw1QQRgUe2rjz7X+c1ilxBVXxFVv9T0/OBfw==", + "signatures": [ + { + "sig": "MEUCIFV6Zxi9/aKh+oh6x28LyRtuv5plHaKvXqDOJK2xzEfrAiEAkgvXnOxgGAaEdoRx/2X18W1ih5tvERz8pLO42bt/bk8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0-rc.3": { @@ -1026,42 +1446,49 @@ "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", "jscs": "^1.13.1", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "1fae1160594dd47dbe5431d4726d66b10f374d89", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.3.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.3.tgz", + "integrity": "sha512-rWW6LL1PHDEiN0uJ1b3xKO2AiYUWmWio0Jvu49Fy0DKPn3IMCrF+oYvD1/7Vpdc8jgAfmuO5593jCrk2+Ws+DQ==", + "signatures": [ + { + "sig": "MEYCIQCdbUyCLw7FYujOE1ukWJyXZFTCq4C1evz05H8hdM7L0QIhAOiL4EW8R3KLI4lZ/pKyyA4Yb8BvsRBFOZoT1cwB0Sqj", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0-rc.4": { @@ -1071,88 +1498,102 @@ "lodash": "^4.3.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", "jscs": "^1.13.1", - "jscs-jsdoc": "^1.3.2", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nodeunit": ">0.0.0", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "nodeunit": ">0.0.0", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" - }, - "dist": { - "shasum": "9b7f60724c17962a973f787419e0ebc5571dbad8", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.4.tgz" - } - }, - "2.0.0-rc.5": { + "babel-core": "^6.3.26", + "jscs-jsdoc": "^1.3.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" + }, + "dist": { + "shasum": "9b7f60724c17962a973f787419e0ebc5571dbad8", + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.4.tgz", + "integrity": "sha512-6tzimU1lFEgkjPjs8s4uvb3/ZLgKSadWudiDrPA+JPfE6XY5U4LGoWsaSt8SIMMnuntA7YNCCyaymTIcLWhaUg==", + "signatures": [ + { + "sig": "MEUCIQDi9RJxiL9YWg/fDTvmWjhVWsm77IBouD8HXOVpWg1uHQIgcqs5DoC/GaytmE7bc3fky8MUC2Gutzu4oSHkcHja47A=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + } + }, + "2.0.0-rc.5": { "name": "async", "version": "2.0.0-rc.5", "dependencies": { "lodash": "^4.8.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", "jscs": "^1.13.1", - "jscs-jsdoc": "^1.3.2", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "jscs-jsdoc": "^1.3.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "4d6ff31604e9715899c6368bf7d0e51dc44a1433", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.5.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.5.tgz", + "integrity": "sha512-x6OuBPzvQBz9vrTauWVQW/x+k4BRlblgmNJV3R5cAslPqP37Czr0ff/2yHc1uN4UwWOdLCjYbTm787dqESsSsA==", + "signatures": [ + { + "sig": "MEUCIQDbwmhG3WrYxsvrlNrVH4NyiKsL0x9+HFGtA1IGsEIx3gIgBW8oQXtiFeZ72+D/97fs/dsIiZfXm4ELdOIDP4e6j9w=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0-rc.6": { @@ -1162,42 +1603,49 @@ "lodash": "^4.8.0" }, "devDependencies": { - "babel-cli": "^6.3.17", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^2.1.0", "chai": "^3.1.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "fs-extra": "^0.26.7", "jscs": "^1.13.1", - "jscs-jsdoc": "^1.3.2", - "jshint": "~2.8.0", + "rsvp": "^3.0.18", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^2.1.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "jshint": "~2.8.0", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "babel-cli": "^6.3.17", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", - "yargs": "~3.9.1" + "babel-core": "^6.3.26", + "jscs-jsdoc": "^1.3.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^1.0.2", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "978fc4155d1fc30b8b58fc3f020102b2da02f2a4", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.6.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0-rc.6.tgz", + "integrity": "sha512-Ttsy/KUxdL8pSYcGGOAa2ZZdpukbDb+PMZQAY6xi/7pvgFzJk2RMh3KmFfe9zlvky+5e9EcGusPoP1iEgUbcoA==", + "signatures": [ + { + "sig": "MEYCIQDQUSU7qBGFuwnFsBW3WN1raAk+2gkEhud0DpYCU7c7JgIhAL+Hlw9tAtgTwTXqdYutk4g71e3NTFrZxQFIWlGg+erH", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.0": { @@ -1207,45 +1655,52 @@ "lodash": "^4.8.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "d0900ad385af13804540a109c42166e3ae7b2b9d", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.0.tgz", + "integrity": "sha512-x4YEotAaoO+dq8o23H0Clqm+b0KQ7hYHFfqxIz4ORzLzAdwH0K7S5/Q+mDo/wVyGdFYA0l7XE70Y9915PuEyqg==", + "signatures": [ + { + "sig": "MEYCIQCnGnEk12ZkWHl2wQCVuuVeEu9o9F6tXOb8FyfVZB1vXQIhAI2gIFj/6HiVHirum5Yp8lPf0lyLdLyQ+fnBeB7v8zqz", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.0.1": { @@ -1255,45 +1710,52 @@ "lodash": "^4.8.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "github:bestiejs/benchmark.js", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "github:bestiejs/benchmark.js", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "b709cc0280a9c36f09f4536be823c838a9049e25", - "tarball": "https://registry.npmjs.org/async/-/async-2.0.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.0.1.tgz", + "integrity": "sha512-t7yBK5Pwp8Gq7q6LkAd6vyzLapJuuBhKDnDlgsNFR5KEG5XFzsXN2DFdoEz4qtxPoQFkTMNon73q6+Yn+P8Mcg==", + "signatures": [ + { + "sig": "MEYCIQDnwe7F7a2eH1ybTm5lxtUeeniOTJSXxcaA2VfWp5IzsgIhAM2bgZcbK9xDqoBv1O7q3jCxnUXztJsWrhR4lK6c+/XW", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.1.0": { @@ -1304,45 +1766,52 @@ "lodash-es": "^4.14.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "132c1329c300e62a06656e21b102a01122d3806c", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.1.0.tgz", + "integrity": "sha512-5p+uCk1mws+xNgE6eC1mNmCbCD0cYsbFTvFTMlN4PSPkV8yVvHvaDJ0ioFDXFIc2IRl5LsUM/WwzJQ2TgjFrDw==", + "signatures": [ + { + "sig": "MEYCIQDNHtG81GWjBT+M6ibrZGu5tR0L/UB9eF4d20T0OOdVOAIhALh8CqRWOrwlQ1WhQOF5hzecNXpDox331UnOoAptCzqE", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.1.1": { @@ -1352,45 +1821,52 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "~0.1.2", - "babel-plugin-istanbul": "^1.0.3", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^2.9.32", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.20.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.11.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^0.13.2", - "karma-browserify": "^4.2.1", - "karma-firefox-launcher": "^0.1.6", - "karma-mocha": "^0.2.0", - "karma-mocha-reporter": "^1.0.2", "mocha": "^2.2.5", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.11.1", "rimraf": "^2.5.0", "rollup": "^0.25.0", - "rollup-plugin-node-resolve": "^1.5.0", - "rollup-plugin-npm": "~1.3.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.20.0", + "babelify": "^7.2.0", + "bluebird": "^2.9.32", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.4.0", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^0.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^4.2.1", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "~1.3.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^1.0.2", + "babel-plugin-istanbul": "^1.0.3", + "karma-firefox-launcher": "^0.1.6", + "rollup-plugin-node-resolve": "^1.5.0", + "babel-plugin-add-module-exports": "~0.1.2", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "e11b6d10043f2254efb61a21163d840ccddb8d28", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.1.1.tgz", + "integrity": "sha512-5+Y9xI64035cwyYCdm5mpQZVGntHPnuATveR8vTqE8cZdIv1CyOw19OFtHPF4gKVA4T6l7rZ6BQLOUHzKhilUg==", + "signatures": [ + { + "sig": "MEUCIFxbnZk90FXT6b0OlXMOZ9wmueTUvMQp9LTbsWTQm/zaAiEA0FwvhUiO/GOgkdOBx6RAjqP5DhtVU8JzjnJXK85+TrE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.1.2": { @@ -1400,47 +1876,54 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "612a4ab45ef42a70cde806bad86ee6db047e8385", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.2.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.1.2.tgz", + "integrity": "sha512-i0Jx7SEZNG5i+F9hrUILpfDkuVJxf+UqmsS6LVn3UdUegQryKplU5t5opYYkDPW0eKBeJUSiiuphgkUZagx5ZQ==", + "signatures": [ + { + "sig": "MEUCIEYj3uAuPH9N1rgkcPs5B2KrCbAUKSZ6EqQ6/MMGCycyAiEAoa9JLQ2/WM+B1anpBnmsVXgIh/JqX6YFjb5ukldEMIM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.1.4": { @@ -1450,47 +1933,54 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.4.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.1.4.tgz", + "integrity": "sha512-ZAxi5cea9DNM37Ld7lIj7c8SmOVaK/ns1pTiNI8vnQbyGsS5WuL+ImnU5UVECiIw43wlx9Wnr9iXn7MJymXacA==", + "signatures": [ + { + "sig": "MEYCIQDY848jXeVhgDobBHDSSHhSPCbXPHXtA+lUMrLzK4v7eQIhAOnUYgKCqhHrCkViD2xKRghOy4oIWasPPxfU0IKXh3wx", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.1.5": { @@ -1500,47 +1990,54 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "e587c68580994ac67fc56ff86d3ac56bdbe810bc", - "tarball": "https://registry.npmjs.org/async/-/async-2.1.5.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.1.5.tgz", + "integrity": "sha512-+g/Ncjbx0JSq2Mk03WQkyKvNh5q9Qvyo/RIqIqnmC5feJY70PNl2ESwZU2BhAB+AZPkHNzzyC2Dq2AS5VnTKhQ==", + "signatures": [ + { + "sig": "MEQCIEDtRUNUKvLjWe0/Yu2TiOgo5EDxsL23xNUBBNGJUFUWAiBsE65uwwkcdATuiuHqf20jrku7DOcmfnBndLcwQgTD0A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.2.0": { @@ -1550,47 +2047,54 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.16.0", - "babel-core": "^6.3.26", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.16.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.3.26", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "c324eba010a237e4fbd55a12dee86367d5c0ef32", - "tarball": "https://registry.npmjs.org/async/-/async-2.2.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.2.0.tgz", + "integrity": "sha512-b8NLjm2v8zgh50O70c2X4mEpWwCL9Bm9vfywD1OJdkdZwGzdDOFs7AXiACNYNei/lnFuMoZ9I71/1yXLw4v2yw==", + "signatures": [ + { + "sig": "MEYCIQDT5sG0X4R2lwe7+3dR4SqQQVEnwLYTztPMg7aN5AiEtgIhAI8FUHU8FlEAzXcVtapb4WjsGL0Dzx6QKvq2Uvk9znae", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.3.0": { @@ -1600,48 +2104,55 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "1013d1051047dd320fe24e494d5c66ecaf6147d9", - "tarball": "https://registry.npmjs.org/async/-/async-2.3.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.3.0.tgz", + "integrity": "sha512-uDDBwBVKsWWe4uMmvVmFiW07K5BmdyZvSFzxlujNBtSJ/qzAlGM6UHOFZsQd5jsdmWatrCMWwYyVAc8cuJrepQ==", + "signatures": [ + { + "sig": "MEYCIQDT9QM+B6ZFhGVL7aGIFCNOZ7Tq+2n0UccDajXbKlLrAwIhAJ0IX/DfVSRiO6hP5ShXixDlWXxxPLUbRRkhnX36NNhx", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.4.0": { @@ -1651,48 +2162,55 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "4990200f18ea5b837c2cc4f8c031a6985c385611", - "tarball": "https://registry.npmjs.org/async/-/async-2.4.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.4.0.tgz", + "integrity": "sha512-pCN/boWoTF+A78ccPWv37hweEgcY8PZr9BnU3EErtXAQ8BabFH8KMvtxC4uC3bGgblbsmIv9Dtr7pnaIpQBh2Q==", + "signatures": [ + { + "sig": "MEYCIQDJBLhnfTFzEKDwoLeOp3LtykgQWsTLHlDVDhrMwHNtLgIhALsIWgHn93Wi96B1spbLBQT8ovYRTQPmme3B6e8xpBNx", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.4.1": { @@ -1702,48 +2220,55 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { "shasum": "62a56b279c98a11d0987096a01cc3eeb8eb7bbd7", - "tarball": "https://registry.npmjs.org/async/-/async-2.4.1.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.4.1.tgz", + "integrity": "sha512-l4FGEG4ckq1nC3PSqULdowskm65HBAQfHPG4XH7VLRq0ZKsCWkcfLjVymfLrloqgrvijJrft/mPftclykhTA7w==", + "signatures": [ + { + "sig": "MEUCIB9Hh3n8E80ZV3LQUcRfC215m4GdwH+v7MPpPTXQ6b7EAiEAluUL4+Wt5FT70R1QBzu+HOaFIc5xNcJ0n+otXH+VQRQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.5.0": { @@ -1753,49 +2278,55 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { - "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", "shasum": "843190fd6b7357a0b9e1c956edddd5ec8462b54d", - "tarball": "https://registry.npmjs.org/async/-/async-2.5.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", + "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", + "signatures": [ + { + "sig": "MEUCIQCM8cX2U3IVZKKhzQx1w5AlNSDUI+fVf4857K1qT0NTNgIgdT4qwEl/kg2vU1uIWUI0bGikRvVHCHlRs1rgjPMpRFA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.6.0": { @@ -1805,49 +2336,55 @@ "lodash": "^4.14.0" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.24.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^7.2.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", + "nyc": "^7.0.0", "chai": "^3.1.0", - "cheerio": "^0.22.0", - "coveralls": "^2.11.2", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.4.2", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^1.3.0", - "karma-browserify": "^5.1.0", - "karma-firefox-launcher": "^1.0.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^3.1.2", - "native-promise-only": "^0.8.0-a", - "nyc": "^7.0.0", - "recursive-readdir": "^1.3.0", + "yargs": "~3.9.1", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^4.3.6", + "cheerio": "^0.22.0", + "babelify": "^7.2.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "watchify": "^3.7.0", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^2.11.2", "uglify-js": "~2.7.3", + "babel-core": "^6.24.0", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "vinyl-buffer": "^1.0.0", + "gh-pages-deploy": "^0.4.2", + "karma-browserify": "^5.1.0", + "recursive-readdir": "^1.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", "vinyl-source-stream": "^1.1.0", - "watchify": "^3.7.0", - "yargs": "~3.9.1" + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.0.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.3.16" }, "dist": { - "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", "shasum": "61a29abb6fcc026fea77e56d1c6ec53a795951f4", - "tarball": "https://registry.npmjs.org/async/-/async-2.6.0.tgz" + "tarball": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", + "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", + "signatures": [ + { + "sig": "MEUCIFo5RMn0FVposcCPYtd8sgqs3BJOjK7uYYMzxe11n9TiAiEA5OpT7b+9BLHQwJd/4+HQspjoUwPrZLiKbimjYL3NWZ8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] } }, "2.6.1": { @@ -1857,47 +2394,53 @@ "lodash": "^4.17.10" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.26.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", - "cheerio": "^0.22.0", - "coveralls": "^3.0.1", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^2.0.2", - "karma-browserify": "^5.2.0", - "karma-firefox-launcher": "^1.1.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^5.2.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", "uglify-js": "~2.7.3", - "yargs": "^11.0.0" + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", "shasum": "b245a23ca71930044ec53fa46aa00a3e87c6a610", "tarball": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", "fileCount": 133, + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", + "signatures": [ + { + "sig": "MEUCIQDNgK9Apoji4Tpp0QS7BrUKigrM5BQq6uq8ijCO+hpy4QIgRg7m9GIHHwB9eNAZcO7200SKozuA7In7LHhJS6nz0Ds=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 540920, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAkxWCRA9TVsSAnZWagAAMogQAJxPRPcF4lY8dlEv78Vm\nrE88f6xFuMnVUgJunHn43+mYg36DDYpKB5VQ3jaHjAaK1WHJYepuPzQSIRFr\ndNgRs62K6s5zC+q07rbv7KyrYOKfHpLOC+PGtpRcKEuMVTQ5lzps6cYYZu5x\njtjmYcTI3t0EuJpaTZgVygtQ8iyvXFBJyt1zzqMAsRRxQx4A8VvytLw96Arl\n97x1BirrYsaamseE0AcoCpOKnSBM5AGiO4A/SeTNFWbPx7eM8Pf2rEgV5ohz\n2z5bjj6zOWpL8jyFMPBblRE82YXeMvEp14tgaruLrb15+xE7QapfjZuk6AQZ\n+DofFTGQSdHk4PZKx7OhUZTNiWbbVvBxtLBAOeStod3BP7C+dCTsFre0R8Yu\nmgrQ+l94TGSBc1xK8uqyHtBT61UGly0v85eVfe3MXT8YsAWY0MiMEsuJVz8d\n9QCjecg21j3oyJAe6F05OMaRZe7yJdgalCO9sq/W42ZztIwqDGS+GbNTRFiu\nDfZh13rSqZIakyYoBXQTXzhaCeDrsJKblYlC+kCkbo71P9M2xBsDFnUF7byC\nLWMo4xC0xUypHFdOi2lVF+FvpLTld8OPXGZOjSlX82LI93jhciNYxeydxL1T\nbr0OJDiW09zNJR7H0ISNwcJK2tPqdmw6C8aMSzNYQnuCVX0MVhaWvhiJ7IlD\nHEkH\r\n=4QoQ\r\n-----END PGP SIGNATURE-----\r\n" } @@ -1906,50 +2449,56 @@ "name": "async", "version": "3.0.1-0", "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.4.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.4.3", + "babel-register": "^6.26.0", "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", "karma-browserify": "^5.3.0", - "karma-firefox-launcher": "^1.1.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", - "mocha": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-b+lONkCWH/GCAIrU0j4m5zed5t+5dfjM2TbUSmKCagx6TZp2jQrNkGL7j1SUb0fF1yH6sKBiXC7Zid8Zj94O6A==", "shasum": "ca06713f91c3d9eea3e966ace4093f41ef89f200", "tarball": "https://registry.npmjs.org/async/-/async-3.0.1-0.tgz", "fileCount": 123, + "integrity": "sha512-b+lONkCWH/GCAIrU0j4m5zed5t+5dfjM2TbUSmKCagx6TZp2jQrNkGL7j1SUb0fF1yH6sKBiXC7Zid8Zj94O6A==", + "signatures": [ + { + "sig": "MEQCIFzxHHkC9EOoEmzsjog3r1TesSJSh4fWVuwwvN1Ay8vXAiB9nJCz+gcatNQ9H0erkTw0A1FO61C1/rlk1ZBrhj3+aQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 484369, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsXPMCRA9TVsSAnZWagAA9Z0P/3Cl3srJ86yCqOSizOrX\neTBQVUdtiGvymV7aFriSNCTPq+d7KwKKBPnLosQpW9ZMbthdNMOBsEkx13ho\nnkmmdcBVWa+dweZ8+uWgKBTdvyorsLiIH5CXEHkQ2WEFKzBBMifV8qGAbu4F\n0PnF17EuIZvwxRBC6OqI1LOBLrK+qb4jE5a8lXR9//LA/Iop2xwIDXfgjavI\no/aDpqc1EgbwAS2zZb0uOxaCYbr75h4NyytCMOF3awm/K5R7RtGkyh2L1pvM\nRCMAf4n4M0kS9RbXkB1op9QEev7z9YSB2XgLKCAjDC12cbqqU6s3b+qTUYeM\nn3TDrf7V/ZEQjx23TK2Q9yoVi1dRGuotpC+8WYUmfO8hnGQ98y88MhT7Pvyh\nIDS8GciZaWUseOReaCBnb4F5cSvWMHTfqGGneLXftGLJGQFJY0RBW3p74NAI\nsslDxLDgbVB4R9NVAzWLcbalLyjoRW0OEqmTU+7EqgrBfDSb6w+bQCcpcoN/\nF7Q+8vedYNtXckMpLVsvrYK+0ubGLsUJ3coU5l0m4kf29Fv6xvpXZzfi9ouP\nQEcs3Xt2ldM+NRvUeAkH5Arazhy3OQa4CxFYVpqfvnjOOEUqSrjpDljuVGBn\nwnGwExazrMBCBnKBcWx9zKnaa3VLs55ALaKK3prbrj9MUPX8CH+NBaKpv8nM\nz7no\r\n=daBn\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -1962,47 +2511,53 @@ "lodash": "^4.17.11" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.26.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", - "cheerio": "^0.22.0", - "coveralls": "^3.0.1", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^2.0.2", - "karma-browserify": "^5.2.0", - "karma-firefox-launcher": "^1.1.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^5.2.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", "uglify-js": "~2.7.3", - "yargs": "^11.0.0" + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", "shasum": "18330ea7e6e313887f5d2f2a904bac6fe4dd5381", "tarball": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", "fileCount": 133, + "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", + "signatures": [ + { + "sig": "MEYCIQD5g90mUCM74ZCaf3szH7sxBTRXtvY9kcoVh5mHA0cEOgIhAM3CDKnpa/kj9rNM5ovB+VNsNih6kKbiY8AEs+/WNElG", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 540984, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY0paCRA9TVsSAnZWagAAfEsP/0uR0qKD416jeKor2uKv\nFO3HtnmTDNN/zvjRWACvxBYeTbJ3k+4xnN87dzmqcWruBE0hUka2r1QSCfdL\nSdkixgM7huFWyl/F1Ndf7BMSMkmwpvwgdPcLmtP1I2UqwpJ2YutFYRfbrqW6\nZl5OL3P30+94klwu9VTeLm58yVVYx4LAEuUN81wpvnHbEj0fdGMcYL/jbMtL\nAUEvdicjJqEe9J6gqDWwrxzNr6RKcqsXTl3KZgsCqjYerbM/4x/0hjySIr31\n7isLNleRGaWRvejGpPA/1J1oVXm96qNQSabB8jZV1soenyIQ6iceVbwB+k+7\nUCuLeNh+dT8vjhS0OvnMLTK3gJnaPFJdc0Ov2dUWIFY/AL+h3+6AoROb/UOc\nuo03gSF9WRuMA2MAbT2UBYdaeLZ9r/Z8ic1EioEdnAqiWUp623AGh2ZdZnv6\nkUrRxGJElv+PG9yQ2bHCdSW6Nycua0B+1anTufdsuoeHKdXzJYB61jQIxJlr\n3c44yNNnJehMPfAyxfAW8Vd6ye4FJiZBe4/7RwBKLv/HTGSW0bStz/HnXXCI\nr+Fiwplje5thLE0eGqRYA7UL7DSUCqIYHojVtskTqwvWS2Q7GTb/Ep27exLo\nguf9cOC0mHald8HxgZ92IBRA4Gt7/7KhWNZaTR4H9hmiZtVgz/NTxEc4uRTv\nfm7P\r\n=LP6x\r\n-----END PGP SIGNATURE-----\r\n" } @@ -2011,54 +2566,60 @@ "name": "async", "version": "3.0.0", "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", "gh-pages-deploy": "^0.5.0", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^5.2.0", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^2.0.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-LNZ6JSpKraIia6VZKKbKxmX6nWIdfsG7WqrOvKpCuDjH7BnGyQRFMTSXEe8to2WF/rqoAKgZvj+L5nnxe0suAg==", "shasum": "4c959b37d8c477dc189f2efb9340847f7ad7f785", "tarball": "https://registry.npmjs.org/async/-/async-3.0.0.tgz", "fileCount": 137, + "integrity": "sha512-LNZ6JSpKraIia6VZKKbKxmX6nWIdfsG7WqrOvKpCuDjH7BnGyQRFMTSXEe8to2WF/rqoAKgZvj+L5nnxe0suAg==", + "signatures": [ + { + "sig": "MEUCIFHSQhRyNkCKdMrfQ4uE3WL+Ga+zUEY4akRAX7W0jnSnAiEA2yAgUsIwQpAQNSBaBbWHkOl5LS7ggFWSSBYNOJykQSc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 687771, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4hCrCRA9TVsSAnZWagAA0xQP/3t8OScGLuvT83UFA0De\ntU1Ax5RM0/nj5x+1hB4Eo68OFcqLJNfMc2UkK+/PyUJ5g4zjyQlW0ENjc0ae\nTwdSdkY14oKlfYvYgiTXHjoO7qq1Bz6r/DrZsuGt3kz2ZfuGDAiwVhgEsth8\nuaS1AgwHwBKed+31R059ryvri+foIJq2helqJeDV4EVf9BpTQ5YEXUQJ2/qO\njOIbUvAl8bpzCAJLtIUv9l+szeJu7LGeMQMcDoOXmOHnvXcZDPymY6fVxoyf\ndkobmkVxSBog1ekekKegE0eouXzqY/w3AH0BkoW/udLI4S8UsTz9guKz2hLV\nGh38Wzx+xISMJ5LmcY8JqKGblETrzNK0ixRgnjHElyBopF3yw0wIk+P74Y1B\n658zaeQaqcK37QauFRENflvIkJ3AYCL4A58dWcN6zdgvt16K5LQ+u9Vd6abQ\nboaab3gVtJWJMGk6kt5x/EmOaDBmBUHDDX9/3YeONOEiRh5hWJGTdbMUEJoO\nmBn1oUXZaZQDxjdhyV+AByLKsjQ4tArdPTl1JMq8dAMWz1VO1GWtKb16HSlD\nEqIX6tts8AS+OTkdQmG72PQ1VlwYANTWOPa8il5vhWFCU13Dmdl3QhW9CJIu\nFXCjcjcPpC4DjWd2iULNS+qQO3fHH9Nl12ggP9yjxDZ3Wf+Lw1UEhQrm08Zo\n+5yT\r\n=q9pO\r\n-----END PGP SIGNATURE-----\r\n" } @@ -2067,54 +2628,60 @@ "name": "async", "version": "3.0.1", "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", "gh-pages-deploy": "^0.5.1", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^5.2.0", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^2.0.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-ZswD8vwPtmBZzbn9xyi8XBQWXH3AvOQ43Za1KWYq7JeycrZuUYzx01KvHcVbXltjqH4y0MWrQ33008uLTqXuDw==", "shasum": "dfeb34657d1e63c94c0eee424297bf8a2c9a8182", "tarball": "https://registry.npmjs.org/async/-/async-3.0.1.tgz", "fileCount": 137, + "integrity": "sha512-ZswD8vwPtmBZzbn9xyi8XBQWXH3AvOQ43Za1KWYq7JeycrZuUYzx01KvHcVbXltjqH4y0MWrQ33008uLTqXuDw==", + "signatures": [ + { + "sig": "MEUCIBV/4OPNZ6m/3aYHK+oMOY2QHJ7P2SfnsVrtBwZZ/GHyAiEAtp/eXkTrnGS9Xo1JcXP+7X+jzi9wVcTioUou1vmhq+s=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 689481, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6whnCRA9TVsSAnZWagAA37wP/2GudUWGTyBV7jK+h58r\n3i/gu5Dxsig6Hm/wYVa84yKgC17KAu5S2nEV/gzX8DQrxsZbbxzK38itcOhH\n//V/YQyfrHCDLCit01M6UOX3YvhDz/6R3YYCKfw+GL168TpXK+AJWUqbaSd9\nSpbMLEGnMRKgcOl6EO5eMPaBYdmbBPoeJF7SLluZK1IMgsx+LXP/AtTLU7ei\nXB/j6KajyT5fc1jgADNG+/uSctEE0+0XXbdp+pY08+N1IUGL4P6wqNaavqEX\nOe1W5KX/EpiOdisAmUVs3QO5lJqq1Q3EP48gAlyBy7iDhToKaEMAixV6512N\n7cgLDgufZ4Dj7zYec0uaQNVzVcJzOh6mH1u5JzBEs2KGVCQaaH/+k65srZO8\n9SnEB1PIM54n+9qxR5S5V+tDGTc3DGMIxa0n+v77oiKzPN7oY9BJKsUX8dZe\nGA8RFZhkaDXSg0LUGYZu6G8HNbGefOQfEdzkJewquIkGPiFnWfrBqFAioa4C\nxEHq+C+wTk3VSbAFu4FoW7Bv2lGJveguau6LhDCRBBopFr+iJS1wxCL1VCb1\njVznKAHGGAqDc2A2YR5Ql9BH+ikdQ334wZt4UqJ2kqior+zQkozaaJRYbVXI\nd1rqcKnEHx3aPVHCczwv+wNqvhRucJd3a7O8uZP1XmzySxLYijfAXnE11FFo\nI3zl\r\n=XwVF\r\n-----END PGP SIGNATURE-----\r\n" } @@ -2123,53 +2690,59 @@ "name": "async", "version": "3.1.0", "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.5", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^4.19.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.1", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", "es6-promise": "^2.3.0", - "eslint": "^4.19.1", - "eslint-plugin-prefer-arrow": "^1.1.2", - "fs-extra": "^0.26.7", - "jsdoc": "^3.4.0", - "karma": "^2.0.5", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^5.2.0", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^2.0.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.2", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-4vx/aaY6j/j3Lw3fbCHNWP0pPaTCew3F6F3hYyl/tHs/ndmV1q7NW9T5yuJ2XAGwdQrP+6Wu20x06U4APo/iQQ==", "shasum": "42b3b12ae1b74927b5217d8c0016baaf62463772", "tarball": "https://registry.npmjs.org/async/-/async-3.1.0.tgz", "fileCount": 137, + "integrity": "sha512-4vx/aaY6j/j3Lw3fbCHNWP0pPaTCew3F6F3hYyl/tHs/ndmV1q7NW9T5yuJ2XAGwdQrP+6Wu20x06U4APo/iQQ==", + "signatures": [ + { + "sig": "MEYCIQDJCH9Ucr//fwYacdZsT7RAALCW5akcSKK4p7ZTuUEr1wIhAJ4Ag0MgGnE1Se6VXu+9+sW+dpNobCKfYh4wja94Z0t4", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 693723, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDw5cCRA9TVsSAnZWagAAMCQP/jR2pQSeQf4QEewRMBpe\nPZZiv2WViB92+9wwgKU+qFWvUNJTSuTmOhA6XLgh1dvIee6/4SF+f2ddyXRl\nBrgUZDOPWoPDjr6mlQvOCjFHeDuPzAjwc58kNLFBEOZ9eVrgddmx4rH+T7K7\nZowq2YQsIVkU332lWYaahzfo0qTeJ9PpvYzIaWjF6/ivll3qnL5YTmclx2e+\nkNQK6H3yOar45Fo7W0Cqp8qV3pgep1+Mb23inSk5D35dOK1oBtSMulitDiCY\nrZrR/ieG6e5Ci3FwIFj1fqGpW3gHgitt261nlmLnyCknGGK0KJjIy+d2Gded\nFe0fBAxla7pJoUcVPt54YlOpZ2FoBwHDN5AdK8nPjJDtd3kfZZWLgC376xYo\nT4UCj/CNCW9/WEUUfK2jeU8HRcbJt+Md8tGivywBTXjBG/YZc4sJLTLZ7Tc+\nLbY1iPJK2J7SgevldiJaYuwBPjHmrFA8wQ6I2qB2lFpPfbD27dGlSNN0xIXn\nh9qh0yhXyBzisXwUC1wyAx/39AqrnP71kRAtT1rhMHnQQNtzejlAo/FJxZez\nkqtH/7yZgOcIhsNihN16lpzTN1hfwWo6kLJQbVruIPRaOaz6LsPflVqgupUR\nRohQaq6dp24C6HYKbSTOpEtiNTjwOrW/50s9TKaoUyfmqZXCaPI+egktx32v\n4BKu\r\n=DND2\r\n-----END PGP SIGNATURE-----\r\n" } @@ -2181,47 +2754,53 @@ "lodash": "^4.17.14" }, "devDependencies": { - "babel-cli": "^6.24.0", - "babel-core": "^6.26.3", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^2.0.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.2", + "nyc": "^11.8.0", "chai": "^4.1.2", - "cheerio": "^0.22.0", - "coveralls": "^3.0.1", - "es6-promise": "^2.3.0", - "eslint": "^2.13.1", - "fs-extra": "^0.26.7", - "gh-pages-deploy": "^0.5.0", + "rsvp": "^3.0.18", "jsdoc": "^3.4.0", "karma": "^2.0.2", - "karma-browserify": "^5.2.0", - "karma-firefox-launcher": "^1.1.0", - "karma-mocha": "^1.2.0", - "karma-mocha-reporter": "^2.2.0", "mocha": "^5.2.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^11.8.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", "rimraf": "^2.5.0", "rollup": "^0.36.3", - "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", "uglify-js": "~2.7.3", - "yargs": "^11.0.0" + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", "shasum": "d72625e2344a3656e3a3ad4fa749fa83299d82ff", "tarball": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", "fileCount": 133, + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "signatures": [ + { + "sig": "MEYCIQD857S8UdUC+qBlrrWY+L9DF7cU077+A9tDAplGt6fUdwIhALYFJBsmhophv350P/GOlwxNTyra4E100hFu8xAI3kG2", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 541050, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdK7smCRA9TVsSAnZWagAAV2AP/AioMbCD1rU19wSa+2pv\niIr/lLFIEGSIo5qtZMxMetPxAlp2GUH6PSGdTfx0gl8WnvPHBkBrd7TRl5Lb\nSeINx014ted9CwZmKbZHtkNl7NFpHt5Y8zn0Kdb32xTg54YJngakxBCJIXJ+\nGgmnZhkq9hQdwPYXTIpvxDCWpUFcsWEFBNSt8aab+OvOqIqdPvFyIyN6ZG48\n+0a5bmXgH1oD8XV6pPksmzeNGglFI9RdmQURF13rSWdOMC/RAeB4h8hCuGFg\ny/HfhxN9kM3dscqDu1HcmEZtv1JnX97MpD0dHAGmr7p3KPY/h0llCFA6YHBS\nMGiKuTP20qj6phD/TezgpiDNCip8N3n4yj2yuQRMIvi94emViuMXG2Raqcne\n5ZP+qFw18JjkeFchNLpDdIm1oEmcJJbRVopnRDnJbtcyg759DzDru+Zyx3S2\nsoenmGVUb1rUikxVcmCmWSf5IQfHcHxsZ/mjchbjr6pq6/RNsF7cOuKsDF6E\nfMxk1POJoVHEh4J/t64MRC3s0zHTe6SeWfeeNiLodCv+ITvHbq2HvsSPoPgQ\nLnCuxn2OBbQEYEpEgHvrmqcU7dEAPxkZSyTVXHd5NcyxE289C59RZju9YvC8\naxeWItb28EXYMmhNpUKqaDNC5VrD2PxTyA7/agtLNtaOKdF6lcq/IId6wPHt\nKBac\r\n=pBda\r\n-----END PGP SIGNATURE-----\r\n" } @@ -2230,53 +2809,59 @@ "name": "async", "version": "3.1.1", "devDependencies": { - "babel-core": "^6.26.3", - "babel-eslint": "^8.2.6", - "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^5.1.4", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", - "babel-preset-es2015": "^6.3.13", - "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", - "babelify": "^8.0.0", - "benchmark": "^2.1.1", - "bluebird": "^3.4.6", - "browserify": "^16.2.3", + "nyc": "^14.1.1", "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", "es6-promise": "^2.3.0", - "eslint": "^6.0.1", - "eslint-plugin-prefer-arrow": "^1.1.5", - "fs-extra": "^0.26.7", - "jsdoc": "^3.6.2", - "karma": "^4.1.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", - "karma-mocha": "^1.2.0", "karma-mocha-reporter": "^2.2.0", - "karma-safari-launcher": "^1.0.0", - "mocha": "^6.1.4", "mocha-junit-reporter": "^1.18.0", - "native-promise-only": "^0.8.0-a", - "nyc": "^14.1.1", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", "rollup-plugin-node-resolve": "^2.0.0", - "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" }, "dist": { - "integrity": "sha512-X5Dj8hK1pJNC2Wzo2Rcp9FBVdJMGRR/S7V+lH46s8GVFhtbo5O4Le5GECCF/8PISVdkUA6mMPvgz7qTTD1rf1g==", "shasum": "dd3542db03de837979c9ebbca64ca01b06dc98df", "tarball": "https://registry.npmjs.org/async/-/async-3.1.1.tgz", "fileCount": 137, + "integrity": "sha512-X5Dj8hK1pJNC2Wzo2Rcp9FBVdJMGRR/S7V+lH46s8GVFhtbo5O4Le5GECCF/8PISVdkUA6mMPvgz7qTTD1rf1g==", + "signatures": [ + { + "sig": "MEUCIQCIzoejYkVKxQJMa2mMuQYIn5WnTOP1fInr7p7GMvzT0wIgfZTOB532eI6Saay6p4NXKgKIlshRGAT55QK8UouGRdg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 693959, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK4SYCRA9TVsSAnZWagAAwq8P/2fzY1CQCkZxVry1UkOA\nEPhedbmCeYk9qjRvWN9jq0STU0K75i/XMxSJXCduFvkVsJ3zYIqN89c0vXPF\n27P+rhS38kgufjEy5hVpar0qW4vA4Z3507+5kFsG3K05sBP2lcj9VeJjsa1n\nF7ZV1FL7v/h/aIVAPTCpyfBG/uTvmYQQ0cS50SmIHTpcSJMJZNYZZZpHZogz\nvpvax2W7Mk3BcEx1g/RKCqGLOTA0RcD2aGRGH8VsnvCAvegHP38NTTeLNOmt\ng+cXtXNmOviN6w5HOo6UBI0Ik1i6P+vJHXpe+ixtGdGHrpCeH9ZCV8a4f66F\nJ4EJd4BqeBj19mumNM37nuhi7rR1WikMpcAi/2l+0pgTOb92lCDzD38qv+WN\nWHlPFi0PJhLQZPQM7skr2+fiBWSTQYK+WEeMuiivuc1leGTGA5lLAuz6mEWP\nMyoXNi8ie35oLPHKIulpvEqFcRuQ7ZAds9BI9sxH9mo2GPK7aDLoEJ/D0KBK\nJZI4irVDV/0NlS6fML4ZFhSyqLF4IpQzIRI2PTJVu31zOSKFHg3dfbpiu5U/\nsCcrcg4ZOGwjzWBODtq5TZcUec5G80q+m+sxaGITIkHoaRxF/iWTpO6hqtOV\nas0ypLfjj0qYdOhjtFSWCD1La+N+pabmNNRFkp9SYxFksmtY74QL2TL+WvYQ\nDSNr\r\n=9Euh\r\n-----END PGP SIGNATURE-----\r\n" } @@ -2285,57 +2870,468 @@ "name": "async", "version": "3.2.0", "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", "babel-core": "^6.26.3", + "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", "babel-eslint": "^8.2.6", "babel-minify": "^0.5.0", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-istanbul": "^5.1.4", - "babel-plugin-syntax-async-generators": "^6.13.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", "babel-preset-es2015": "^6.3.13", "babel-preset-es2017": "^6.22.0", - "babel-register": "^6.26.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "b3a2685c5ebb641d3de02d161002c60fc9f85720", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", + "fileCount": 137, + "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", + "signatures": [ + { + "sig": "MEYCIQDsBEc7qy7jygjb3KDpnFayZNyQhWFYPe6NvtWxihd3gAIhAJ9oosGeHPu/B5oTZ4Th/EyLQyS/OKtD30qcXTcPX+gw", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 693549, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUzvMCRA9TVsSAnZWagAA6+QP/RUibULPbDqgUE7W3NX3\nnG1BQwtjLgTNNoD9SPiV6Y/FUTV4/Ij13/YV4Dh2l6BuJgo5Wso+WBt3Hiu+\ngev59KScUYuGd6J0NQ7H8BNEn8EmJsBs7uKcXzgzEp2JubUKkdmPLaUbLBbW\nfKjAASAyPEISQ0dz9zGq9BclBk+FV+JqBoBlVbnMnN8LQDgjM4vgwuBwtyy3\nHQ9DSDEEW/9iNd1TfHH6cT3oCPgDutGN9aAvKhC6qDnx5CgNfz/tUsKY8/aI\nLbTxOI2Eg5N6PT5s1n33uUrpEiV2Kc9zDJAiAVYQuwJgRPMPy2ZoSaPGYDYE\n5fyAU8BqAQyuiSB7ZRLxWCNkQTj0UEIxcttEsPeQTCWWgb1SjVIG9BbYi/4L\nrfBw8v4QJ1I5FZJqxL61CSCyH2ugRlgk0iNEPuhMxeRavpvG08ifOs52l5rY\n1jtcJOPlctyOgpX2bXoQxd5cfrfjn/2mI33adNz/L8W9XNsB+YuP/5EsZ58K\n6sBSQnQHK3RKU6xsMpQ9EDYT/RVFj3lEQghhexB/AzIAIJmk88qYiksguVkz\n+zxxrJMUZ1KgfuH/DPcBL8sZS34y7c9Sd7DDNs0GSJjzcO1iMovLwIBPKCe/\npEjiCqHrFs/jerZlmxoIaKPJ9TBZgLyvR5CU4J7tDRTZI9hD8lzsNse3AB0+\nJf9y\r\n=bq6i\r\n-----END PGP SIGNATURE-----\r\n" + } + }, + "3.2.1": { + "name": "async", + "version": "3.2.1", + "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", "babelify": "^8.0.0", - "benchmark": "^2.1.1", "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", + "babel-core": "^6.26.3", "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "d3274ec66d107a47476a4c49136aacdb00665fc8", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.1.tgz", + "fileCount": 137, + "integrity": "sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg==", + "signatures": [ + { + "sig": "MEUCIHYAB61AMMtRzmJhI5+ookuln1Bx/8cFM+4ndFO7Pd/xAiEAjivxxhy+P1C8umkBRtHG749CQPcMIATds5fsiRa6IPE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 816097, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDHIOCRA9TVsSAnZWagAASZ4QAJ9oNtLFgm6xJSKlWtHj\nzXCemeIfFsrb3av9mSKR6/XYk5nSEijCgLjm5Ep5x11Exuxo8OM+7t8USiKR\nJ1Gg9i/qkCqYq8PTqPy3yR0D90o4CNCwzGRwe1eRG2Mo4IoFNWYoEi3NAEHb\nOpaj5TBuWkRBjGRF9UIWeulvL5l07lOnWuvulCyHFqqvbL8bMGdpd6vwLzoo\nv4WGpiA0rshZa4v2IygeUU9CfB3eiRvzl3mKRfL+tbqaW96AS8oFcTmQXaT2\nm8M9iP4vkyKXO6cKFKfetdxEFYN3dteHwJakEAKC+bLayuK39K2Ge03qhwzH\npXXS7rllcf/PfIOU0YvZ+jNtRGsitNeaCRSEfRrvmw+5VHkEH4qtB2MQHOJP\nfnYoIMEPgOxpPJo8O2FyVBNuTRgUi4p4gMlya0wa+RdXAyOj1XuLLDySZxTO\nh7lAxPmTJERrebABvSZbGbqT2N+JdeFfc7qMUKYgGiqxcsI5jmTYWNjQOmWV\ndxesXNsNXoR2H0SFq+YlwlU+FYytIOS5oyBATfB2RdjsRGbftPKCnQL0SSAC\nie4UHknwV/rJYXkBHYhPzeAdah6XNPGVII36lU5oBHpO0EkmkosdyqT8Jw57\nzHWQphT7prBNITcRZ1jSFhiXmgDT1tGUlt/K0pIU0B4WuXkw5x9cEp/QQC/X\nECze\r\n=PRfx\r\n-----END PGP SIGNATURE-----\r\n" + } + }, + "3.2.2": { + "name": "async", + "version": "3.2.2", + "devDependencies": { + "nyc": "^14.1.1", "chai": "^4.2.0", + "rsvp": "^3.0.18", + "jsdoc": "^3.6.2", + "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rimraf": "^2.5.0", + "rollup": "^0.63.4", + "semver": "^5.5.0", "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", "es6-promise": "^2.3.0", - "eslint": "^6.0.1", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "karma-edge-launcher": "^0.4.2", + "native-promise-only": "^0.8.0-a", + "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", "eslint-plugin-prefer-arrow": "^1.1.5", - "fs-extra": "^0.26.7", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "2eb7671034bb2194d45d30e31e24ec7e7f9670cd", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", + "fileCount": 137, + "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==", + "signatures": [ + { + "sig": "MEQCIBgWpQwOsHT9iNgOpz9BoF2+C1+WwgyJ9Gn274tNeedOAiB1XYBYsrX45OueFMecnHgjoVnf0T6hVPoPgfTBIY5UmA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 816672 + } + }, + "3.2.3": { + "name": "async", + "version": "3.2.3", + "devDependencies": { + "nyc": "^14.1.1", + "chai": "^4.2.0", + "rsvp": "^3.0.18", "jsdoc": "^3.6.2", "karma": "^4.1.0", + "mocha": "^6.1.4", + "yargs": "^11.0.0", + "eslint": "^6.0.1", + "rollup": "^0.63.4", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "benchmark": "^2.1.1", + "coveralls": "^3.0.4", + "babel-core": "^6.26.3", + "browserify": "^16.2.3", + "es6-promise": "^2.3.0", + "karma-mocha": "^1.2.0", + "babel-eslint": "^8.2.6", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", "karma-browserify": "^5.3.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "karma-edge-launcher": "^0.4.2", - "karma-firefox-launcher": "^1.1.0", + "native-promise-only": "^0.8.0-a", "karma-junit-reporter": "^1.2.0", + "karma-mocha-reporter": "^2.2.0", + "mocha-junit-reporter": "^1.18.0", + "babel-plugin-istanbul": "^5.1.4", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^1.1.0", + "eslint-plugin-prefer-arrow": "^1.1.5", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "ac53dafd3f4720ee9e8a160628f18ea91df196c9", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "fileCount": 137, + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==", + "signatures": [ + { + "sig": "MEUCIQDz66uC2MbtiqkGR5ZPK2R3LyfFtEWXsF6SgdU49u/JrAIgeZ1T9uXz4rYbh3LsTK6ZMWbEHJFc66aiXvOwr58D3XU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 820507, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh24AMCRA9TVsSAnZWagAA+loP/3QXGjSCmmNkz04uWaPt\n9PQJ2uycfydYdkUm96nVoMJZltSO2y6DbfhmdeqndRoKTQtnbwlmfq9ng6vz\n+srcqm4vjelRHPpYlZlTp2fBfNAw7uY4zlFsBUjAgYM4GE8L4wnHW4ARq84K\nuGLn1pDIUb2nzydrWwj3LFnooaPSTNwtkEGjBxgBjROpxJf/JmXX2XMWKw4G\nzq89y/5OK4LXIixgpl7m/5CvkETElVbqSTk/VPxFgRYw48vzEF4MZh+w79s9\nkrEWwmqiVxsWNB5E1+HtCfDKxh5cjmUpdx8DybAGRxb6Jfrg3gNuFXesIGeI\nE31+rIMD23oesDoVtx23ISotkGid2w7Eh7PTJMx1hDd6b39uwxDYJ+62UOvL\nEntW4t821oEbRTp6UUjuMZC2eimhygmy+FASQic5loGMcFwn91iCGGj4d3e5\nLJQmE+9ykucdgDL6/We/OyeLmiXYVjjmSP8HulioZw5eEuLMYlNZ5FO6Ijro\nOy8NxA+ngSBdOA8QPIjHYYkPIUqFalWTV2CciuHQAUtaou3TqRFRnLP/3OZ0\nLbqreVlOlv73s4g7UVwBny4yuJ0JI0DvzGlbX9kYbjvlWDWqBx6cQSiD39Qz\nPx8mWVs/hwgJBAxKB0Q8tm8sAyAKvqBmSWHsmTEpARF0JqkBGK+rQz2MvW19\n/2zV\r\n=8M/Z\r\n-----END PGP SIGNATURE-----\r\n" + } + }, + "2.6.4": { + "name": "async", + "version": "2.6.4", + "dependencies": { + "lodash": "^4.17.14" + }, + "devDependencies": { + "nyc": "^11.8.0", + "chai": "^4.1.2", + "rsvp": "^3.0.18", + "jsdoc": "^3.4.0", + "karma": "^2.0.2", + "mocha": "^5.2.0", + "yargs": "^11.0.0", + "eslint": "^2.13.1", + "rimraf": "^2.5.0", + "rollup": "^0.36.3", + "semver": "^5.5.0", + "cheerio": "^0.22.0", + "babelify": "^8.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^0.26.7", + "babel-cli": "^6.24.0", + "benchmark": "^2.1.1", + "coveralls": "^3.0.1", + "uglify-js": "~2.7.3", + "babel-core": "^6.26.3", + "browserify": "^16.2.2", + "es6-promise": "^2.3.0", "karma-mocha": "^1.2.0", + "gh-pages-deploy": "^0.5.0", + "karma-browserify": "^5.2.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^2.0.1", + "karma-firefox-launcher": "^1.1.0", + "rollup-plugin-node-resolve": "^2.0.0", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "706b7ff6084664cd7eae713f6f965433b5504221", + "tarball": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "fileCount": 133, + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "signatures": [ + { + "sig": "MEUCIQCKW29ZLtxpGVBPdzIdTmD/BqOYrisJ7L0fQva05kNN9QIgSP+kWyIfhhUxQkkJic2hrdcBNtZ86M/W4YJoDkE+6FE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 541303, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiV1e3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmprMg/+K/kylAW6VjOJrIABgxFedlr8L5qeaabchILjWewaoWtwh/aZ\r\nY4Ssx0ukLZfGPU39IloAzDhPxe2GmG/a6E+F+q3BkwWpFpAC17YFQj3eKNQO\r\nuP8dC0bDP4tPb/+pi+tHweTN4wZeTrWZcVP85smfBr7ODNxFq2ukR0LQtgg3\r\ncxwaI4Eo+2L6/joM/f4GOPuUnol8hfOmnYD7cNPn7t9ChHKCC1Y1yR9wGGby\r\n0QQ10Zlm91FMQzSw5WCly6JE8aWzk/KFpLT1/NzHXbXL4NxC7hXnLJGiWC7+\r\nm0U6jPgfkEPc0GNOTgS5b4AJNhJHLKTDE4AcCjslsa49Y9MEl6d/Q783cdme\r\nc2BJ5GaYcGkm7IdAQ7dLZS+crnCKgAkBis03lyrAixV3vzUZBTLKZN2Hy4gb\r\npnKiYSrvCQ+9PEr4J7Cgh9JykEGBwk9ildtjmNUMRybzZA0PoSHlEGTkymeT\r\nkyd4qzalRmoWCsVTzXgQr0nsSzAD+/ATIaTjUOO+TjNYTUYSJ0YVGrXUrtHQ\r\nW3uRTYuxUwBp8ifGvwqg4+4BosAimg0wQIEsZCFh8oXx5UIlJhUo8hga4tyx\r\ngYhHK+AEaXeNzgWKQ4MyZ0drvKLfpBRHYCupSaxGPcRyrW2WqL3uLjvil1SV\r\n7KfttotRxmyJB8dsmkd8mdNyk61Hrm068Dc=\r\n=Ab5D\r\n-----END PGP SIGNATURE-----\r\n" + } + }, + "3.2.4": { + "name": "async", + "version": "3.2.4", + "devDependencies": { + "nyc": "^15.1.0", + "chai": "^4.2.0", + "rsvp": "^4.8.5", + "jsdoc": "^3.6.2", + "karma": "^6.3.12", + "mocha": "^6.1.4", + "yargs": "^17.3.1", + "eslint": "^8.6.0", + "rollup": "^2.66.1", + "semver": "^7.3.5", + "cheerio": "^0.22.0", + "babelify": "^10.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^10.0.0", + "benchmark": "^2.1.1", + "babel-core": "^6.26.3", + "browserify": "^17.0.0", + "es6-promise": "^4.2.8", + "karma-mocha": "^2.0.1", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^8.1.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "native-promise-only": "^0.8.0-a", + "@babel/eslint-parser": "^7.16.5", "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^6.1.1", "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^2.1.2", + "eslint-plugin-prefer-arrow": "^1.2.3", + "rollup-plugin-node-resolve": "^5.2.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "2d22e00f8cddeb5fde5dd33522b56d1cf569a81c", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "fileCount": 137, + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "signatures": [ + { + "sig": "MEYCIQCyfhDqY64diAlRW27C7/19Gl2Ukz1GOfln1mFh2SDJ+wIhAOPqbe0YAqe2skH5pjvV90MMGZNnjK718g2IM8Z1V9Aa", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 820627, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJins0VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoznw//bU9qZjo/bW8nHUZKZW+Iwnlq1iA1gBGnxWUlxq5hdcouTyw6\r\nSj+HdkIb+J5egSfjiVUHk6gayLmBp2/SPuujj8kSJGpcVYR4/KvGot7QYVs8\r\nLn0wtcwgxncLYyekYoTntXilepKg/iSPOSBCZEb8ZnTvumNOAV3R/Rdg/cJn\r\njWXXWaGBhazJwLpQdubJTsjwAtMq2YGCKIt7ESkVU39NbUp3LKo9Txu0pt/m\r\nCTYBs6H5gzy5CIlDF3UHFaznKpPg+R9LecdHIK9ehKnWFSyHuCaV7Net1MM5\r\nsSxAO7215rHnXbcoAoF/tydZcFf1pjDI4FmNFeYhnYg3XD8cajhtDKMIGyIe\r\nbvGD7NaYE8rqVQ89g9kjXIk6B4HoObAA8rOsB30XQxlWi85CZs7g0yECWcRi\r\naIFs3akmF1V+uGzjDwQPGYhjXEnxc0fDt96Z3o0MUTKDAFApqkmxGlsdrlVL\r\n/rCoP6pUjRujgPDVJS5ywvIUEmdwL4AYefXGelTjubMoaiL6RqToIs6j6GtP\r\n65p7QEcGR2IBHHIDKJDZWayQp3TsP055n8lOHau6hoYGkE4CFj4/FpmJ7kDu\r\nd4bub10x/F7eXnnzkatk0H/tU8tjRs2nu2NEDWmP7f5oDE3KsPGMhj6lY3Nt\r\nkJJT3fktwIgxPxON1izHOtobgo0s4Y+F84Q=\r\n=3WXo\r\n-----END PGP SIGNATURE-----\r\n" + } + }, + "3.2.5": { + "name": "async", + "version": "3.2.5", + "devDependencies": { + "nyc": "^15.1.0", + "chai": "^4.2.0", + "rsvp": "^4.8.5", + "jsdoc": "^3.6.2", + "karma": "^6.3.12", "mocha": "^6.1.4", - "mocha-junit-reporter": "^1.18.0", + "yargs": "^17.3.1", + "eslint": "^8.6.0", + "rollup": "^4.2.0", + "semver": "^7.3.5", + "cheerio": "^0.22.0", + "babelify": "^10.0.0", + "bluebird": "^3.4.6", + "fs-extra": "^11.1.1", + "benchmark": "^2.1.1", + "browserify": "^17.0.0", + "@babel/core": "7.23.2", + "es6-promise": "^4.2.8", + "karma-mocha": "^2.0.1", + "babel-minify": "^0.5.0", + "babel-register": "^6.26.0", + "karma-browserify": "^8.1.0", + "rollup-plugin-npm": "^2.0.0", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", "native-promise-only": "^0.8.0-a", - "nyc": "^14.1.1", - "rimraf": "^2.5.0", - "rollup": "^0.63.4", - "rollup-plugin-node-resolve": "^2.0.0", + "@babel/eslint-parser": "^7.16.5", + "karma-mocha-reporter": "^2.2.0", + "babel-plugin-istanbul": "^6.1.1", + "karma-safari-launcher": "^1.0.0", + "karma-firefox-launcher": "^2.1.2", + "eslint-plugin-prefer-arrow": "^1.2.3", + "rollup-plugin-node-resolve": "^5.2.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2" + }, + "dist": { + "shasum": "ebd52a8fdaf7a2289a24df399f8d8485c8a46b66", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "fileCount": 137, + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "signatures": [ + { + "sig": "MEUCIFKWDNzB+mCeiEILJjVgpASf4Vp5eiO6zAd9GUhs33eGAiEAh8icT+I0sShyVf6DNJ8KNZ6T4aw43NqbaYIBDDtwDnU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 807668 + } + }, + "3.2.6": { + "name": "async", + "version": "3.2.6", + "devDependencies": { + "@babel/eslint-parser": "^7.16.5", + "@babel/core": "7.25.2", + "babel-minify": "^0.5.0", + "babel-plugin-add-module-exports": "^1.0.4", + "babel-plugin-istanbul": "^7.0.0", + "babel-plugin-syntax-async-generators": "^6.13.0", + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", + "babel-preset-es2015": "^6.3.13", + "babel-preset-es2017": "^6.22.0", + "babel-register": "^6.26.0", + "babelify": "^10.0.0", + "benchmark": "^2.1.1", + "bluebird": "^3.4.6", + "browserify": "^17.0.0", + "chai": "^4.2.0", + "cheerio": "^0.22.0", + "es6-promise": "^4.2.8", + "eslint": "^8.6.0", + "eslint-plugin-prefer-arrow": "^1.2.3", + "fs-extra": "^11.1.1", + "jsdoc": "^4.0.3", + "karma": "^6.3.12", + "karma-browserify": "^8.1.0", + "karma-firefox-launcher": "^2.1.2", + "karma-mocha": "^2.0.1", + "karma-mocha-reporter": "^2.2.0", + "karma-safari-launcher": "^1.0.0", + "mocha": "^6.1.4", + "native-promise-only": "^0.8.0-a", + "nyc": "^17.0.0", + "rollup": "^4.2.0", + "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-npm": "^2.0.0", - "rsvp": "^3.0.18", - "semver": "^5.5.0", - "yargs": "^11.0.0" + "rsvp": "^4.8.5", + "semver": "^7.3.5", + "yargs": "^17.3.1" }, "dist": { - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", - "shasum": "b3a2685c5ebb641d3de02d161002c60fc9f85720", - "tarball": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "shasum": "1b0728e14929d51b85b449b7f06e27c1145e38ce", + "tarball": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", "fileCount": 137, - "unpackedSize": 693549, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUzvMCRA9TVsSAnZWagAA6+QP/RUibULPbDqgUE7W3NX3\nnG1BQwtjLgTNNoD9SPiV6Y/FUTV4/Ij13/YV4Dh2l6BuJgo5Wso+WBt3Hiu+\ngev59KScUYuGd6J0NQ7H8BNEn8EmJsBs7uKcXzgzEp2JubUKkdmPLaUbLBbW\nfKjAASAyPEISQ0dz9zGq9BclBk+FV+JqBoBlVbnMnN8LQDgjM4vgwuBwtyy3\nHQ9DSDEEW/9iNd1TfHH6cT3oCPgDutGN9aAvKhC6qDnx5CgNfz/tUsKY8/aI\nLbTxOI2Eg5N6PT5s1n33uUrpEiV2Kc9zDJAiAVYQuwJgRPMPy2ZoSaPGYDYE\n5fyAU8BqAQyuiSB7ZRLxWCNkQTj0UEIxcttEsPeQTCWWgb1SjVIG9BbYi/4L\nrfBw8v4QJ1I5FZJqxL61CSCyH2ugRlgk0iNEPuhMxeRavpvG08ifOs52l5rY\n1jtcJOPlctyOgpX2bXoQxd5cfrfjn/2mI33adNz/L8W9XNsB+YuP/5EsZ58K\n6sBSQnQHK3RKU6xsMpQ9EDYT/RVFj3lEQghhexB/AzIAIJmk88qYiksguVkz\n+zxxrJMUZ1KgfuH/DPcBL8sZS34y7c9Sd7DDNs0GSJjzcO1iMovLwIBPKCe/\npEjiCqHrFs/jerZlmxoIaKPJ9TBZgLyvR5CU4J7tDRTZI9hD8lzsNse3AB0+\nJf9y\r\n=bq6i\r\n-----END PGP SIGNATURE-----\r\n" + "unpackedSize": 807741, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGVIkMhFwMbLDtCb8+z9GFMA6NspoYw4xXsNMwAcOtdvAiEAhQIpoN7wNHYrlvNiTc2Cnw5bRI3O5tOocA0iLdunyQI=" + } + ] } } }, - "modified": "2020-03-05T17:23:38.004Z" -} + "modified": "2024-08-19T23:24:23.544Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/async/-/async-0.9.2.tgz b/workspaces/arborist/test/fixtures/registry-mocks/content/async/-/async-0.9.2.tgz new file mode 100644 index 0000000000000000000000000000000000000000..93ad1a5f18512bac148a59491c6b9435c532ee20 GIT binary patch literal 20948 zcmV)JK)b&miwFP!000001MPj;a@LvW0Z8O>^6Yu?syl5&G}%nTuo=nRm zOYzN*$=P|FFK78M&c$e!4)8@GqI4(**<_NXVj7iYoWrwGmJ6!rJkQc>RzQJa%#}`} zglZcn{S_(#=*DlNS$Ur2`0ja>jiXe&9=wjup>2A55$A>M$ZGgqxXw>M#8;Qlp#mNs z!M(8i4>yBoJnjQltNU4*jFa+8-A=OMY#cv;n`5dikEdCYlv#cS_5H$S%Bv~CUA-g#UE^&&J8QJ8VN{&c^JnYfqj1gi>gQ-;T5X(Oc$cJu@oX6Dxf0%D@N|E7=f&&Ya56NHUhO^K zeRHt;fbNg=^p^2imh-T6o$qOq69ya<)*WSRwm?+I1r1e!O5lSP{AXEr%6vVYH%wjh zA{%E5g5)gCat9(0AFhNC&A72^Cyb{Sfcn{GoSy)`OtUmjOY02{$+@$^5M2A{U-JDG z4ffB#W7_!t+M~_Qt@SGZUtfK+`IZ0w8rPr2jzr5KIQr)3hgmWnii0vLfpK3XkvPnw zi=+_G_l`S?W0mx1d60xze&({h;^OST_45dL|FcO{fIR3f@>w?s0_uf;mLee;wP4H_ zm*>ggTuk%qA_1W!3aAH!QMn9q<}%8MJuyXs7|q5;E(IuqKsJ0x(lc=h4AvD$e~T`n z1L6mv*cpT1nVp>rU?pcs3NqtLKr=v_@eoB>Fe_rN;^+;KBfyDA1Or0y{JFrWk3~PvE{ix1 zZKz=RN(0+Luq=*<9q2yMU6^Dm-EDD7HqQN83K$v@qCA@c)Yn%neWW~(uzw_K2$Zv87LCP{ zDiMvBf?`%o0o;Y?oKB+YX-}Ny@o+YX@z*FB1JdHJI2xRv{?~v0UzplLT*lN5QDl?2 zs_z6IeJ3sR4A60$T|y(%D2GwRW2_Zs6=W0sx&-l+kKhG0f_ON_4i|A?X;+{EK!aD= z3@~wwwc(H?8e%gSFda}*WFrX{#P>)P@MjzcN&&*28d+%p7%r^7qf9$bXh{Ktf&Ww<|&L3sUy#$E9@bD&l)Aphrp_X>+X|4c7UgA zP9Ne=2?#=~7mXdj*5i+WFon|zgdJ6a(8ZbyyANu5J1oU@E8Sm27>2AAcpeAPIW4}dn>k04 z%Yq5QO3_LDDIUzqn2ATVTOjL>#2G*#RbA@|1Y(XrN=L-!BLdsy`Be~!Nepsli0BnT zZ(!a4&>%T;5CTQIRBGuJ754Z5#N}*w1=9sXib)qMTKO1Nq{W?B6reZK-&?`-x@3wpj1! zhua24)7hjS=N6{_A_#}Ea;7?{?sZh2hakjtX&hbXHUJoo-xYCrm`q~maK|D8sqv~t zpq}wq@frEybq@r^D&2r0tm%z7*c!a+i47n~-*{z5{9KIM)*J*OfAl7L(-Z2SV}4CY zIRffK`Wi&2QXs*ddIpLJ1|(G!gukp0a0#wT^@6!&DdLN0JOff1s=|se0JD6<>9ML( zaBYZq@d()jAVNG!K=C(L|LL{w@uRwQU&_P3wdg40?w4V@XaYX0wc#6Zp7C;oU z{#2GI5F9>$Wfh?SoN-uO(==k&J@D39bnU2d--A98`cM zKVhh@Ab_!EoS7Iq?wx0@Pqh{yIip&lCV==kaJ(1UWjfBHAu)Ggu(N!?6t0;$GR>hZ zB}RER367YlYR#&_#n26d9h9GGR07``18N`#MCdBbYery0g+sh!I}wOAg+DpyHK5&| zc7gdIdDS%CAUHXB5ksxn6t#`*lM`{I>|ejuY5P9%=yHYahZWm!?uuox{$05Bp)cO2 zEP4vys|2S##{M5zbq<1q3aAh=yc{cZUw|el;WBlhYJ@NA8Mz}?j_8c@g z(6=^25d`lG7$&pU^Kvo{p0eg6&?WTj0nYP^(T5(0A|E_^pbh-*pRVwW@8^8?J%i5> z+b}Al9^b#qGvw6m>JxoEj`LD$HIm;U4VzvVY#NaE7h!!YQlEon8B4P%cqooo^F8kT z8UJ?mlLOXV<#WC>Z(k*oq*O2IhToxr4Nu{ZzBd)=8~sjKqki)nsg=WX{$)Qk)!Fx4 zB9Bq{;XD3iKQ-Uk_o@Wh1N07m*-!V;_B5~PmfsKKQntpw?5CzR`<_b_Szi8dh41*6 zdOC^u*+jMv)Ra>(`oYhDbLtw&!BoR#s^#%{jAgo#{IaU5BQe^TK1EEu72~I85lg&JpE9m->awcr$i7C z02dN(_@``Bn_k$gx>2A5E4PRlYV=c1NBogN^O5hP>2!RxD=9_aRNk2xs666wA7}B5 zTB08kj(L*hNqP0}>YejI_7QBjjCzPaWSg^+9^qewt|g-j{orRxI^tvX+v>CKDL+er zSsj8Eh>z88ep7-DM&qI%)-y9=>sF#1x@IMdnZ%PU`3H?p{#3JTz0o)PZk(OrQ}`oi zJ)vR1AKBXsaC$UOm;}vTH<0Fp#pa$y0+&3VJpjDGS$QBuhGE` z3I{s?E*K)o9<4$cIHSHnmMc6#2?tR(I0L;Z0@W+#x*avpSihucAx)2g17l^hmKCC+vLk&W#mNccC(RM48av7d zKmfuDL7Th4ZyuUXcCc?2O3;U9P^fPrMfnjS1X+D(cNYdkvx9T1L634D>SaIZWLA`9 zc{7kRgd^y+IOph)ljGxg2iWio*oyk1HQ&a8E1=I8u|{LIr4_=`Pzstl z<)FfuGiES3&QNvDrg8cbJvO8=TRt6h;}E&?8fF2FVL7&)RX4CIm^XaM6p;;+Q4$YX z(8~&O`NLs0ZD{KjM<6ihNYuFugMd z!|fo@)N$S25%pfGUcj~Ktn>ww8+MB2#mY4Bz0QlNE1uq zTlzs-EBr4Rb?81E$LSd$-1lN*U3BGQno|>-)M^YkxH8McI7`o#qzbH&ap|Ql=9ak@ z@fb{TJrOT5a=YN1Pr0LJDD@stt+HG^thK6q4U5hC$f}IoWH*|BtP(+oMHIBCk+*5A zT3{+8R#>Y%G+&?}+Uf^!P4tTvWj0mC95C!~-_g4PH5$+@*Eg zQOpMT3%!t6x;BIB%ZpugY0p|oUFKWQmE`9~E%Kj?a>Oj)uocq@cvcFG-<9kvm*+y1xNdfkUPU0vns%pRjqVe`HCOe=GV)Ix* zn4U0z$v(I>oI%);zZ=K`z)5wTTEi{0tEEULU?@jvoXraOE&!>QlBcyKf<(ntDl3jY zF)7SEp~DEBZw6Q4RX-{R=fv+b(W0INOzt^|@p>;CCxzWv%rUU?g8G0<*W@v}r4l3C zUnXpuM4tdM6Tx0s@>^NZgU?YtaDeptSA(>6@<&jDaN@NBu)}MIL+S9TiT}SHynQ2A z2UrElL8^e&zcWp!Xkh!A<+3Vv5sNbz1mY4K^)QnC-Gf7z<0Q0|2_|mc2lT=BtcHFC zh3MuCY!Xd1gF=s7Gw*-LT|$j9jV}#o$?sc;{uO>dMb<(n&+cH&L(20U;|_ubuFMi( zL9~BZRPAYD96e@cYYhIkj=#7)Z>=cV`pLpNwzZ@nHNUdPD1QSj`_=?} zJ2hJ^kl28{l`35a=dYkhf7PFVBmMc0!hiAQLcG@y=8f5}N5VGqVWzznX1w+#^5Y`L zH4)cL=VesQS7eA?Gj|5c87EPJEBvQiA9Q6uE@!wGq@o!|9OS4pWX+Lfh%cZljh5m( z%Y25q99RlraB^tdYI^t<-Q!DUU(sL?Ps>7wK{^qSr%-Er3R4@Lj-qi9pFTk>A7(KJ z)9|+ji}a_&Z@xLOZ#(e+j2By9s4tz0xoE>OFTr=g%=3jz%3-)T}Npwpltp_hhe6zp{3^#ZMT z5{OwgvAkA<6a+6pK1x9qA<5)%Q~*On2!JY#zAq4T1#VfSHB^|BQU)w=tft)zjW~$3 ztV3%?JDF0U;$>583-qxaq__}_hcd&kx=_Yzi7d6{V{I@AYfeBDGr16UNoEGa4S=PH zSHlB%MLblo?gaTKB9Ia8sP~@5GIBmDBV}UH#~f|i-C8vB+_L>KXKEcuu5q=+=4hfLR-AR8q+^yR2wAHal0J8)68%tH%{GvqX%j_j zb%2vo-pQkMw1T2n*dnwX_Qpx+2Z-X!MLft-UMSFdUqY)0vVStN*!5GIYH+(j3A~nE z(?hQlldD_6UD;qHeFjBEI;9j_U}B*Qye>#g@NB7D`-RlG>06_;rSR6fQv zb*gEbo=XQnsKU!UQT?^Jer!g3OYL-Ztm}14ka;D{Tx(8hW@%rP4%X&TXb^ARMSrql zL@OeLo-HajNNS+0fGG_QERk3VQ|(pwb!IdmLGh18e3zwN4qep);oBAgu8ctAu&FJ9 zNR1=*+kMD00>5x~3?p3LMviM5(w-149hK>adRhR5m|^i4Y+98h2_0jM!A`)9SwWYG zG{FfZqp=?cPQ!{xRvZYTgOB5ULQz9B4P6HUw4TC>)}Aatz46yZ>mSoBFQZh+8MT*d zPSEj}Vh7IgR@qkI=Q9H5vR2&m$-)BtcDm1uRJcUTc*WkQ20lEO3rphx{ZU>_l5zJYfPC8m zx&tVHJ~x`m{*~jWg1)My0e0KbSQtI!D!9+G`TeYEB6M0gm1IX0&~ZD5x`b9nwvf_X zp;`2W=h(+2y1kG6=KAB@g-)~9Lp#!h51X<7(7MDH>4jj%Y93d7ybS>_a`!Z2X&cvS zh-hV&B^~tgrK?Yp=iR52nz!KumvyWSSPe>Pv#Z|$k`t+07-*?)bu=@#$zwrp*n1Sb30!1hgb;yqw|K($sBI)0M+Rp7NK~l z$KHzOnOr^((K8v5Nqu)J=iTC(%=vbKEwC-|vvSufR~2Kv38{_k&hS{$~d-9Oy=3923-uw(`fdRZ=ywkdC55t7u7mWD}=ECT+l z^B=_^a$Uq40)GLP!Z!@6J6c{x|z!n-fX< z-fDR*IQmKEdi5(U(6Ub24|E(M5Rw9 zM(Doun8r}?QvNO-Oft>mizJ&BI=f#rq-2lxywuu~!&Gq@_KtmP>x7EgwUWK%)C*>b z^Xw9{5UH2J%&Mda-lAx{Op3T?*97PiCl_(yqg@W$RB$3vvjlvwSL&RW)2t{GOk<>c zTdB%fX3eZ>LGD+X=D5UF>Y$r|B5UoP+jU8xL=gW_~++=IZ|1Je8?2a6c$ zNR^a|>5_qP4vmj-`c>ncm8q6u1(#wTKEwd&hYy)1F$s!H-beY{bgmu@Ac)~Bxf5Lr z8VM^25kf)~p+~#VU+-{=Q}HTFL9(62;$RvNlF@+b)48E8FE7J*Fo~9FdsiCq+B&7} zq{r)9>noe#+6r`eu>6;Bt1AMv`wh^Cme!e{1i|+l1|1Jz{KAM&cED5d6;H=e zi6JZnX(vU34VYLPo^hX$mY8jcX_Om08Ae3dnMpGyM~>UILQ)tZF>s-A@gE~pE%_PPSvV^ySTMJG~2{DsGYc+61TPOix!h}<8jVn zvd&x`tE1uAwE>B>OMxpDV6!o^qGsXLoa#Qd+u`1Hn-%Y%6si=cGr?$**=U4`H=E)U zmOudL?drXoR87oee*NWTX12p0_i(3XZEAv>Ii7Vq#1ZvgHge3V04bkDs?tpw@@VGM zE_k_7sCT;+5Usf#y^vUwP+&;w1dkf*FoyeXa@}om%`_Q6qkf=^c~IXLzYuiRdfesp zJ7qagYLHfObcWhCCCAli9CqqhSZZtZWt0#vr#xIYQgM`1O4mO}w^`V`+N#9_ZPHMSb4e{jKxGqjl4 zY)W~3FC5kupG}PYo?Em8s)w)NQo{P(N0R4DG0RdG-FL`@DII|IHAkiji=ColrZ~ri z;GDJ)!XU#t%4j{8U!`=LlrBD-n0B}EI!~3rmb-Z!x$VX(c^R=vK%^zRo77kb+XvD? zuQsrv|5EO3rBCHo^S1Wd?NDZFtF7Db?d2Zabu;gMn``aT=hw5>=50Wh<8Ih|{09(P z9&7LBq{yjfH4XA@2Um1@Vw6^5nx}Yh!B8rl;&hbq9>p>C1->|~L~027qKtYv|G4;%rEo;`hjfXmK!=`$qh;ayvA6 z?~GI4`;p`ohDkJJ1PAf_iQ+U^62x-WsLLdQq=I6He&q6K7e*hM?m?y%ztw1DYH_m( zn(t{e08cp#2EPs$Q2g7ZjK&F+dYCsr6J<9Z0foEW@Jt$-_M|N0F{t!sfO|cAAu8dZ z{{+1wyr0D0+veZc#-RkKvd^`IW4Np!6R#ol7=DR31WjgYkqA4;X+seXhTn&k{qPb_ zu0e+z!799pHWlJ7yIE4|125E(9=w$_J(FvixL?x_Pr(#%M<{-PSfH_E%PzoZ3fWN= zQh`R8t+MoEY(fbU1aj!LLhJk$cUs79yFoB|2b9^fsAsvSI}`y?M!8dAD)?-tLM%aZ zOVvrB&rFWiyKr%x5#K08>PeFau~@)`=&X_I={t{;T_vp);kqsR31s zH4h@!n_Z^vw#|U5t{tJ{EEV0%-56LN#>MQ8(G9E&+T7$-)7R9G^&YMjv>F{!RYPR6 z_Q%SohWUXRxG0@daFh|F%K2z1eTDT}<+yWZ6k*{pJC5Y+AK$a#QT30y8&XQO?-P5q zROq(QdD-mvGKA3N`Lgvkk6){@dQ;&e06>^m_;+s;*Rae;X@iPhdOG6tNL3Mb!cz(+np zEzh}K$3Jm8>Y!b9dPaXpojphMkn^G1d-5efvrz!woOPg77eA3(*OdA z(Pe!!$ZOq2)v)H3*WMnz2y=?HpVFya6bdtv;Zg*6(!DhhlRFPwh z&iJrLujvdoS*-J@o$kD3x3+l)ax3DGR)p2Z3YqI8ot$sD zJ2)=}0BEwN=tQ**;wM9lH-fiInE86L9%2peqP$dV2-B&|t2>Ixw+rZNiPr4w42CwN zQ;gLCh-PsDqlNKAB{x#_B1?u8;+n>szlu~`(oe7sy$CrN&+zEoFn~UUXK~qCTEVuL zoVaPqF->?r1@Od-=}0^8p-(_JvP3w+Q}2rqpCYNLz=e-&mz?mihWHj+>e1H#DLM*J zJzZi~QF2D88jDUc>6e1+p>)h)v1x(Yb%W+a}I#*8tG}1Pi7;nN0J){ zwn?wvW=a^WI*LZKREA+*%bHl9so<7M4&G(^=E?*z+>FgqUli6oYFl}@&OL& zG$#UE=lKv_a3uw6`Zwu7mp{>q-nVxvRF1%_lh+N?Gc=sQXL2;S@t{`X7@hy^=7XS< z`gGUnu7lyEbjC5*r<5{qaOId1@|-{CC}u)&74Iretxqu_C@pz{@}_-sfvSVzlI*0( zdJ(rXo9Z<&yEjb&yV$C#ICaE0V;s%~yc8yu+Q6g1}+MREkVib%CsD^SXH zT3bZYT!6^j>3oKF0)9mnJLelQX$!(Y6W}_c(F}0!sl`E z0;DB7xOx@SZFn-Leo!%joIg+FEdfcc);HD%Q$Ri^fER7Z*YH5P`dvxe*esDqtYmaG)r6!*%Io?W3{Ym^%R)JGCW!y;lcw90w+ll zvgI|V@eGGDKQu8N#k{yN&w`aoOHQTKI2#T&(Yy@!o)!9})E4ef@Bk-2(>WGqa?k13y2w-`g8Qyuv6jSt(%vZGq9X)!2ee z%rq;Ed7y9<=a|4O7jDr9GoczR>G;roUay(o`Kp!@Tu!6{m>vT6p6dSqv)oiWX9y<9 z$$8OpLe@E8Lqb`5CNgw~+tcvo_5i3dB`VJMStgK!HXdEYOh$=tM{lwj%{u$SK58cz zt7FExt*8&aQzXx05PozDB{2(B@;v7_UUNiYAP?3A>)XQ3;A2RTfo_=SL|)a? z^IDnou~|6PIyESI*%^yL+su?zIVL6dDqtm-HSqBNPS^9ZH%+@B;$>L{Y9s^w2O0nRJpf52vx#Wo7=M zNSx&vAPxNFSu6q!Wul1E9^dSF`MXJ(@G7$qWtdmK^!e!h2pku z1&3|eD%L%C7|^6jTZ3LT#kqkJ3%C~;p0+J$$Qz75K?&@hp!J!t>BH1Ij7O2oHZx1* zQJ)0c=QMFu--FA2K8NpN=RSN7E*S3uJp;Q%ZD|RjW?NczZgD$$XE-cW9DLP?K0J>- zJ~#AZ>D`d`Vo6(+t7PftFsB_8cxO=)I5Y^PjbPi5xS8F%K(lwWd+*l5JiB+E(KWCr zoB5K$NNI3!0UdcjT8V3P6?Ll%CbokgC(l-a%RHr0a$ey6+i$zo1xJs0RvabAwuyG# zZm2m*eZb1i=P{o=Ro|Cc;H~-}cd7axOSf4cwbpTFrO`?8#v2s+Lb6fmJm}-T3l0fH z5?ASQ++~_XXN>7VKMUF+A|pA2oMRVAoY&&2EU5`f2q$dAZz&|%YCy*GY6UW&l~Nf> zTaDw8JFr#K$%Mi_Oec8ffXq`!TL%{2-p)fZYl}KwIx9t>H@S6+%+Mhy) zyOj`DdqsK9mU)@$=cQRR!@cY>#}6%j)VIr3Vk%7^Srw|Ri$Zmy$ehXSu5DWh-DIS+ z-0fCqb%M6T%RRAXaXTn5UjQp8MKp@_+HYglCdJxR#4Ey%VoPFfuOyl*El1wjQ5JOmg!Uf)?Svgw% z%TgEFn6=nTbV{>K0Hw(S`+304%h-WaRpqIfQav>qeoAy$!2t{gsvh@6>7iJ??07l} zJ?!_yFPe`?-2m##qp4myr#&*JXNf27K&RXUzHk}kjJ!d0^5;X?gyQzAo3R%d3Q3e} zAK=?#y194e7@^gfk$(2aXLO#txX`xThkkZ>X*vhqcno;^XrGTq8wHHdA zg<4DLhB&UYRF(5rPJs@N(WxZcB5@Qm5x7VBWLRM*iXYe;GA$)5N%dED4hdQ*z`U?1 zA8647#09CNSh6`>9;<=B&;;*cBRc_Uyb`UCr|X^Ikx+4dv(8!{w)R)s11c{hB@r!3 z+IX){Z?QiwWkzJV(Oi2;Y3ne^9sqz&{?-Zuw{vp5mw3p<2{yYej+QjUp}0MuUL6!w zVc>&_sT^wf+ris6VNv2HLEvlp09F@P%6#TT26|pKiW;EFl)m=I)SQL`TY~m+IQrve z5XnrQ8c4_70ItG~Pe38~fKYOVbt}M_`fdssIiP|DTjJqVF^VRtkW!MSA2`#Ko#@Qu z-Uv5)WtGwrGY!zme< zurPF{$rOo}dQN^UIxdW|kYg3ww@&f%C9uOkGzY{CL~Y52Jh=?#!Q>ve;GH?)t+^py zijK)MQsakSz&bgBZVjayvcw9MZp9WoC{kr-(`?%5F2czeq43{ho8h2|%NyJ%mKd#d zomW*K1<%3cBkYA?YET#RGt9&hsGHfjO8=Iba+)QlySg9?iyjPl8Mlzz%kmXc-J7^j2Z@ zr-EDItSf<8mQZT0S{T)9pQe$XjL6bnn#NtLf%Gd`9h6>qit7c2BZq=ke9wtq_f;y7 zwE*cL4WAC{{9SWq2*t&7t^U2uJb1EARA3@*aT;)vU$b~Z&_TN9%8WDSRAs6;1L=mj zB&VTx!7EPm!DguJZI9OCO!EQRnu=~Ptt_qMk)%;z{JMT z7W)zhGBNsSoLzSB&F(ZdC+|^0JdKAcwZ6{4!+3>AimPH0y_)P%T!U7SG`l}=(^tHe$2~H>|!jT-Q{SE3)nWOP}9_I1uH*kL@R@r zSPPWeuAY~SdfovaO}O3dQM(iJicVoM_{W1W9t)L z$vS}DB5J)zhM160F1QAqXhddkqm`s_f=s#Bs3}_JGfEvGHW(`IV#Dom1@E7OCvqdn zG`f-`S%(jP^iIAv-*xAx-g6*U+$p+B?L*OWMIXFDBF&DyN$clKX&<3g4BB&y)h=^#Zo`N>`umAkt(>VU{U;p`klv2w1HB@H_UizR4 zI*Gf}WxBDK?9~dbOcRd_E$W0usUJ+T;Y^t(hNw_bA%6&PZyBax$8msMm{Ao9Ly0pW zmin`X+&;HPbLK7$0JV~-r?z79bbk@W6{uJpnVGa^bC?30+o7$1OuT?fJuXz@Nm1Vm zyF2U9AKeouLXCRLZCK^jsUT&1;DWjkzu*)NrVgCrQEFEpr~Qd6#0Bh+@3QI3-Rh;+ zihG8oSCTI{Xm5xK5tR%KYg^(NwZ<#8y9-xq-ZRcIE5}@^=X3zTIXgi6fZlYx@?PK3Z2Ft>Z_>Di**B+2pVtmBoC1PuuK6yAvH>$DQRQ%kaE;rPjde zmC`_^RsbTvPCzdG_RhqET_!a;E1?h3hg?i7`4BEW)#%jU zztaGXF%<}Fr&c@l=6+nYQf$)U;>_C4lQaCI!juCV2$5W9go8|;iKF8ulAtwS zSn^m$4sm(uMzT^fVMLUv&Pt2oWbT$BI+bb&{~4_{wvrL7QI+nT95Hr=KnqYNKVT}| z3~Vw+gTZVv88ex1=Rm?mSSAk8+Z3o@IBo?1Kg2HOW!&lyc`GTavA zB*WOUWJp;ff@|!_S)B4&dz);|NF?GJ+q5hZm_15XC~-;m24A@53f5yXYLKR7o-+sc z7&+9sHgPUv6@H4iNNc*PgWA4vk*%`L-g;I+yhCRn2zzw^Kj=rdXZF+E#{{a~^xks? z(Je0ZcE%&LH>{)Z5*aNny$9MiDmUGdT~j$aBse_xX4CJ-4%*ApxYg0zta!=e;NF+X zxUhgUi6>d|53^-P-c#PrBWV5{(?ud#QgWM0s1rK>q}iiMLHtBAH0S7a;AB{dSu)T` zDD*Hep=423e02yMj+QmSn^aLX8#q1;d|nLc@)%&p?IYPJ0}rPhk`Ow@F`t^477dW_|K^w)%8_WKJx67+$Kbwu}=>n&cR@&Ppy$T!S|9Lr9BMd7GOf~z?TSF zK8aBuB)Z4>q?Ms;nF?a2Fep??Fnd>I|Y~yCnI|Upy(iu)uUi5 zz6v*fmHCr&2R#X{p9B>}OJS&NPi|ft@#G_0u-sTyvKCo9KuwJJDy@{*0i;&<^sdG_ zSDB?%lF?5vSrJ%XDFt&yC}SkDpq$~KU1KfvIDb}Yc7)pG+B4M-0}TBL#g8y4taX%} z8L9;bDfUr*ZfMSoVw|1n{^OdC#~Q_~!`Ycl^9>|#C)~hAB04c1EvGF1K=N4Widi1u zAqcE8$yBw)Y&r$&RDX;sOw#4)BwaccodOq5U{YVcr1#GOBPX~_vNytHb7e9eJBXg! z7OKKUy+Ui^)UhkW{3hZ1%+R>2ax^uzmJ=2L<|-`uboW zFzTjP9Lqpv{;0ep-#HpLMUf2>vi67BV5W~gmdBZQkSZS>$S)prsgYqEjRR=`s#n^% z3(}{|6Uon$bTFO`)dC^DrtPe9X$@r+0-*@_(8eD1vxjS1$q4_(G_2{YKTeAC9>`a$ zxECoIs#3_CS<5)qv1Q=ETHCUoh^-hK{(_uZ(z624UOMEV6kse8c>5Fr@i;Khk zii}#MxM#)T^)6c68$-TbT%<*L6ZJFNgQMm+&B|mD%P@tc;7;(Y%2&mCr0i-07&-oe zh)&<);pEsnu8~uKHHv6jZmSFvjnE%=#lhQ`hd=G??~1(x@oxX^f9$>3eIXv~9Kij9 zp7?3+@W;3B4+WIi-+6QRck%Y6*m?7J@jv$7yy%JD|M_lz_uxRh-4FI&zk9W}3(xl6 zJb(56#on90iXY&+H*XKctG(BIhfwL^TY(MAs`hpdu(H>?`_F%b+npcwUhN(Jy%)UP zJA8w6zI?kccEr1#{lmTI?_cfgi+At$-@QH9h2~#CwQu&`yxfOYc3uc(L<(=dZi;)mx}#Kfq$#JMq(xyZ8v(+kyW*Kiqr!28Z$d?VH1Wxb49x_Yd`_ zKkXgt_QcNq-T?yS<^J2(y#T=pU%aJC;JY`wTnmC)I5Pr8@c#Y5uC7qL*xh*rb;0z! zai;G}6Ix%dd%KkUr{vKo?s&r#y!YEiyZm2$w7FK5{~M1UZGDyhzs7|c`~%dFA8d;U zq^Ul@HOdFWxS(^afVtzFA89RVS#IGq+cr4`&?LhxH<*+=rJY}HG7Svz&SEDzP{z&Ppid!PoYI=KF=C+ag@ivGhgk1moTyqb*fy^T5azxw!5mHyYa zwl==f|F3ZYC7jJDxjNe6C(<5=zuSQJ%Sfkds}J1fzJI;$ekuCzXP0sQ z8Du|R?exF4{%E~M|6lF@U+MY+SO!{)9f1TS7tu8uez;7Yu%9~tZ{g`!a7_p2fNr<*w&C!?$7pRw?RwQxQB zq~72+<0SQb!-u)h^JnYfqj1gifB|sG!%+a74AqxstWv)r0p*Xi`fR=mEDOYwi3`0l%nHvYf1y0N)Y z)BiS@mELzpeAoZy{D0-)H-UJ_3>$yUVR29dOBt_mqsJIZ?Z@Mo@;K2cQ{*26#w#Qr zh7v2m%EOolv#1MtlV=pu3fq!SIYF zdic#VLHkm5Xqfvw9#RFxLRlF{`dWd|X6?#}Jh4xdGv7mzYVUL*c_NV2jO@BeS(A>h zPB2cZV;@(=LznBK&luRXYHK;M)rDZ-Z@T~-fG1_b-=%Y=9z54u%_0-zFQd*McsBV` z2k`s^_thws(aAhNW*xk`8TMMuK4rqoieg#C?5g-y3U4)v50*4&bW&yqvIos7ZwC-4m;PQtVI=+cQCbLv{bZ{+BhAS^sBeG8v${tq=#!g`PcoCYFw5HWaGq zc*&hgYLynQZCr8A+OgY09gg$$(b@L!=P8EWnT&nn+h<~}Hl=Fc3KTs`j-hIVd0vOM z-Kj}5U93-tFxUqST&*;$P?+C#^w-sfRih^V0)`2zHv}JU-*o2_kD}h9wf|g?TNSn& z?$$^`e(RZ_Jf>qi8^O_|&?X;H_{$c!aDh&xCLe%q0tT$a-mrxCJ)sJ>LII0{W)Ti{LmDW`c;Bj~!6>l%ocQSag^PyWUh!-}% zNb;e=wyr&0lD)@|T+k3>!syN11Vgj_?d3^ST*bYM1VcW|aw>&^SHt(QBE@s59yL;A zVcAG;oFPs#OJ%OGC1hCNbgDZay44AjmDuu|YtoydtFUuJ_Z@_AMUc91z_?{q=8FKK zkwk2Z?(MFv3TK-_?PF&f21QmnGxfyNHFqqP{`%0(Iq&e6gS2CCQr!1(-yP+DD_yO1 zvpU~T=1%rEF538KyVBEkVBBH87oP0}ChvyOwbZwEVeCJETStjMGd~@bp-Y;qJsaN` zvE9Hc?F72@k&}w2b9kaMFh@`{Dg~c`dUr*GgwVBNDfc{5HLTi08$8ZAr5@Nd z!OI@Ecg}?c3RHlqZIDi@OML%KGy}iV<63vGy}i=<6aHa50+ionR5Ez=q>5;~@#FW6 zZf5s$+-UGnH*76b*VS}bOm+GiUOAKHL$4adnvtwJW_5WHPS)FscBc0?LcYqV8irKw z=bXM$UwEDtuhV_vWGk`|%&pZ&1{%?;xL+fQR~Y_PrwDl-T03FrjTtAprVby1Vlgpg zdvZYRQ3Jglw+u#gvC`?PNmm~U_eD86@Tyqj3z0uwH)H`cOD-G0;?y7U6v)|!i7kww zjv6ftLcNwpOZs1`)Z_Hhd24(`c?{KK)Losqr~%%P(B=%0hgo}cNe8ZURF|JhIR4we z=^;K{plwyQnRBQHT6l}iQ&ok_Vr>zwYJ+V~5xf@Qvelvsa9efxxfxz_I2yIL02fx5 zg6ZIxbx4N1~j@JUC$4gVj?OXG|x%N_oTcT5!3TPi|W;o2=skE2P);Z`gO&xiIt6LGuB+e8&UdL^o;u4a1DC(FSum#X&XIn zv@2y>e6mehtIs5$n*=_0)6;I#2UMfB@j|&HW+ACCht*ekf}<7sI99W3_j8R5VBIY8 zsUt_9LYkOk=+Q;H(Xc2O7J#llppCd=Ak1i2Ium$5`v5jd!bZ;!;FtgprY1U+~P7z zmr7L??vNCet2n(9MN)Deo+7lM*|b)`F8DbNro!HCKooUX{~`n-*9klX(1QF9g3dvD z7vZaG8?KE7@J-U6wbRgoseJs*0kQrF(=v~1-|*AwC$)*%r`7UX%@(sYL?SY3ymFyI zD15Sk5XwqyJ<9H4M>W#YttudK^tl%%c?Bi}0Gk*`37vU&OBvbB>p!#fys;Q*6Cqw= zLHRsStnixBr@2})UX6zJZRm^Osyb0*d1-}KL_N`OG4LangkU%J`B$|&tr%@pBmr6d zyqV%9Rw{(Eg&IHX*2{UMno|~#zlg^^E+QX4bE6;g;YNhUd zC7{)X=-k}^ZQX&*Ll8ZgHiGcOZoQlbL3CN0DPn4(w#b(zyfDh_opIyl;@AZoMxcE* zq__|E)M;!M7wv#)Ect~@WCia$^Ej>>F8J)3 zJ#7_o%*!8IXR>(`{W`_X=8){T0VcxDlUmpreRikC+S~D5ncGIGKBj})`qv_k?B;2% z9V@lKXsc^W9z)u>YZ$0r)3lZm<5Ah;#28HhkP&b0U?%S?e1t_q1p`oTFnAfi)6e|G zq%s6#q|=NZQ%^5T*%NSx6vd862k24h3V)T>u` zj5}s?tXd+3L&M=K`Fc+1m#!t8rNwzND%}vS>ly&Ei+I7ReNoS*x%Sv+1xQ`~C^@DW zM}H)rJCXwP+{PWSs@58$4o|>b*3tw9#Es|bWa+lx85a$fmz|d!@MU$IdcEq zn1It&cg~CiF^JGG!ascIF%b+9>&Z0H7NmI z(a4WH+Ci?Ezc~7E+y!2%es7B-^|P{i zqOr&~wg$;`!=*Vt_H%^$nW8_8BJmO*Ua~R#bF_Lqk6KjiEm{PHlSHF<-{ES$k~|U2 ziPa2RDV=k8(YBgzHFAVyak(hB@BOX%w2f+YAC4tR{6$^Qx%FW~)#&#svngePia*Yf zUYHETdBW!#YV_C17b%x?YwP!ICg+O{z8=Kev03GOU9L_f@)T^u6*{0zGRdBJ9hK){ z)Mr7huz4Afxr<`Hx?0Iq;kKtXcFjZObusP4=k{%W021csEZVppGigI_}t9Xg;^Zt3~4-`!s_lP|fMCfvBx> zXnENZF?0KY`Ugx;>IH4t+R&?c3N0TTW-Xt}LkakB#U>B*i`|zy?_V9B9PYi|J;37_ zE6SfbyU^7Ofz!N)i5sdD0TXo)0S5ldvvgEhYvX}D^Rab%iN$uX=PnGSprm>#Z{%^3 z&UkE9*y{T0=mVbCm`m=*$N6%?)}UJ7G|G#3FD(@`*H(!qG&F-CyUe5MG#(yuSM_Yj z#|CTUgMGhM$xH@jR33!sOf1bPsY3E?3-i%m@rw8J22t)> zob#)ywR8;JEzzS>bUk3C!*!q0pCkOo<}~#oR}l#zt%I|?v8}q?j`umC<3Yx1$2*9_u?RyXVy2Qg}M(p|e97Z|WC9Z~D z5fw;sd_1_>?!5Fe$?+^pl~NjWf$EN`qX;73DR=IH$L*e=Yqyuwxw~%FKxprogY*no zd>eSJn(u2Xh7+~d6yxWa%X`%|@5Rhf713cSW=E|)n9o-pfkbD}v?wEFIuYx!=ZZhO z&mAA8ol308Vzqk|@%j1~UK&spOlVY;Zlcp$KON{*4vds^-l=FzwD38tha~Hj&->*& zt!zgvpOSB0wre|W=0rh`njAZLjnd9sdREuH(TeKUqOJjT&2tf`t2uyO^B(FdBOD3C zyJ1}|$jU7uy2EoH{T zT3U4(&5Js}2w(%-X0@(I*s^V{!IE`fsmf;$PMdZp$d6^z>_XkCM)s;+)pi&x+PR{> zx!_l2xs?d%uYC9a2fka2t^Ue<|A@>t@mW1(bs-9;WfFa`SD-8#31jpB(rH?*nIop8m?!JAED zj2LCbsoNaISqq7UV)c+9?uLu2m-DTo9SA21j8g6!+BtPud%X#7? zby=%0`Wp*(GBB;`yvQtK7*MXhbfL}IyE8oB{|uUjzYsoW(OYjte)8Vwzf%7<7#G;HrxI)+<^a)#=!3 zQqC@DXRk2b(hZ*^DOlNM=OeEL^~5x5Fs~)pKZY`WNM(&mKNs~xuGiH{wB1dMUG+JW zi(RzPb=+K2$6g3~=F3haPec~OJW5iLDBm_>SNCH(v98~>?e}cs z5I=_0WTWLJ-+NaED(uCzknEQnv&8e}IBx3A%H&%UG?3U51>O>0m}K{^f6?ELWPN9_iNzt<`J;JRta7`pZfX&XdJ<;(R? z?L#siZ?{^)l9t6Yk5Q`;(UZ`k(vZaSJBF%E!vk; zSSmyum@;oYy?OMiBMP(YQ2*BOoO$rat4-X^?TKcGjZ@e>Lj&B&V$zn8`(k_u08+;LM{asaLoVZ6#HijBLS*<;=9!m<;KBg*H9L+s*34w{sZe8H?~2&0erh z4odw+ZJF>OhAHkjGoT8(xBw!!aVK~O;iA2$9G##p&_3V9eDW`8p&F3|A|oE&Yea47 z`*lsk!qzKfNS`~Uj%q1BD@aJhofq`e=e%lz1zo=>=A>U*J z)%>L&eMZqVPqI8Iul{{eh33LlwTdh zQ4UHsht3aTGV~`sAsep8iuGg6Rk^%Y)vMza5l2;HdChIO%GgA#<0*dOTWpvlSP>Ta zR&+X8?XtXE>x%Ec|K4jo%kFl#^Qsp|P}gx6Qy6*}Iu8U&RLIS*fb;OMZ_8C_=g*9+ zX9wEx>bWf@tDL~EcB=!(uXd|KjBSG=zpizw)mz>l=&}&`QgIN6cXg3`dt#MecD-iv z@6S{PtUf?u<0C90K;L{4fmlR_Uo%@RPnlN$JaOuMdlBb(GK|SMM1dI%2Jy56)&}1U zDNEZVMnRd!BuZ1->7>v?*YuJ61&;7pjK?g(l>7n)I=@dFPLu(t+tx*fG41>Os9Yh| z*KGoI00uzj6{OSXYMe!mI8kl{1Pflze3my`vO*R>d)E10HR$y?FtS(lL+Zx1`tezv z4fFylBOCcn4uu7!fo!))Ch%3)D{sIZ`LY~c%~n`Dr{wG2IH4R`V;nc2Nhs%|S$oEd z4;jPa4zH_mIuAnoTW#TXveWe$@|5&&LayJh9nbZ=Xalza*Cb_j8~2e{<4M}ha!^66 zNuUjY&ZKnhIckDbbsFoYn7W!bzt_tjFXr$O$8Rw8%RFuT^z zwrig`o-EJCZ_0mMs1$6a6BpPzUK6l5$97A)acn#th{Mjq_<<}bi1j` zrZP#YjqVl`O~#%lKRz&rb3sNtv~8cjh|4VO7jp_Py1M|c<^<>77cIW2dTg6>dn0er zXY>`(*@k`y)J=E7J6GFKF-CZ1=Sd~@4Ns=Fo38~-)x%@&ygXb<25!ez9sPPa50nUH zxXe32%l>kKa~Nc;A?@6sM+r{hIma?IAiwu18U9vpj&QP%+j^r;oH{EOO6OA<0N3A` zwvRfxxKwvB{y8o-pm$v>(Gv-L33^?96EO#zwkxtg$u%&}_JG}izRk8GY4L0Z7_Nm@JSQ(f)>a|`T| z^GYzR{Rp#)EFyGVyGhZk>?cpCcln*(P%Ewb0v8IDu_{AbNLA&rhZbYrP0-SSnXiN> zKZDgZe?et^&nxF7;z8bcdDz-D(OV z>b#w$HZfWnymbaFzV&$@^tX+%*R8?RD!3f*!RiIFmb5zuM%TXXs8kK6wLvyZ7dk17 z3dYqyXkW51D(RhMS%(Zq@rM36ZdOQXjX) z^m<*g*<_j(@xpjpS<3n7aK0);`Pwu-0`hIKNkIF-LV zT9HtbTUCfyDtk5;p$>;M2K~BVtwhjy-TdmO+?L0qQa-xx#rmC%-*x}k&oVuhq^K#Y zt?}l%hH81o99*Sf z%JV$CM26X>G6RZM!jjB;d$*o-Qqh}i7>7UevajW9kSEGlTn*^nHc;=kF_Ns8|UVHjq~p?nmGP>e%d)YZu3Ce{Lg|_CNg&t|{PSbQZ4^vnkHt z3JzmgK3tweDg4O`z?HkSvAVkYcym+G-!1;Ty8ej&uC8vZuCIwdt*vjaZ*4x_c>L(` zpH|nl9&fF~`}-PX+cm@Z4d}{U>*2u&{r7ir{rQ`fS&^^wlXN9cFGLEQAqapZ4lxr~ zah}b_Lv&I1qdrhYKgRsGBD+i#ujtQ8J{C1fK%9uEpTUEEb{Xd@aXARFCW%?%LmW@B zEUpC1rXos*VsB|EKvhSl&(E0VDo&x97z0$uv5cv|1O=<04UuM-0Ub#&6rHdjb>%Ze%Hn zV|<3Yiqzj?>6kmV_vZPl_b+61UJq8rb8M>aa?qSSA1((6$ zR-O!qKXD}Z_d|RIxIcuRKx<2=v!w-ndY(<P95`Jv zy6Wg*_2h2-byN;~wdm#=YH~(2w>F0_)#`GFZq@W#3#6~t*X!%`_4<1KD%bx5@Kbyj H0D=JklPaKB literal 0 HcmV?d00001 diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.json b/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.json index 04b27583a1f0f..61bf5e5501f1b 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.json @@ -1,10 +1,10 @@ { "_id": "balanced-match", - "_rev": "24-2132965ec6ea72f62bf7a7dcb47e2006", + "_rev": "34-4b79c477b535c95b4e41227edc231cc0", "name": "balanced-match", "description": "Match balanced character pairs, like \"{\" and \"}\"", "dist-tags": { - "latest": "1.0.0" + "latest": "3.0.1" }, "versions": { "0.0.0": { @@ -43,7 +43,14 @@ "_id": "balanced-match@0.0.0", "dist": { "shasum": "86efc32ae583496c1c1fbb51cd648de0363ebb03", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.0.tgz", + "integrity": "sha512-daYFGv8RHJKIcx7l5jAzeS86+pMEgTAcbF7Q89qnrgRVI1GEDkuGABNGzkcWYrUwUZJ4+uUf8hF4n3SZMIPVOQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHVHvgnAs1bDFoDI6+/pz7mkkZXVfz8thHg0hQ7Y9K/8AiBABPKzjsOSHdHyBJ6tGAMBNjzJTn1XASzfvfo3CnZfAQ==" + } + ] }, "_from": ".", "_npmVersion": "1.3.11", @@ -111,7 +118,14 @@ "_id": "balanced-match@0.0.1", "dist": { "shasum": "2c408589c3288fc8a152c535ed853f77763899ae", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.1.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.1.tgz", + "integrity": "sha512-obnFpTIt83MxrUxnHfs4npfChWAw0YcBQui+hI1awrVPzIqpKKkQ7KTunVRKAfauTptPQXZohaPs1hf38HJ05A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCO2l/CrUtV26QU2sOMNhCk02ZePiXNQy7szGHJTneWmgIgNhB9Yc4EEGiKzMSbdGAEskqxf6DeIZLLX63/pzCdMrE=" + } + ] }, "_from": ".", "_npmVersion": "1.3.11", @@ -179,7 +193,14 @@ "_id": "balanced-match@0.1.0", "dist": { "shasum": "b504bd05869b39259dd0c5efc35d843176dccc4a", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.1.0.tgz", + "integrity": "sha512-4xb6XqAEo3Z+5pEDJz33R8BZXI8FRJU+cDNLdKgDpmnz+pKKRVYLpdv+VvUAC7yUhBMj4izmyt19eCGv1QGV7A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIADDYF41QH1NuQ+/2uuuSzZelNXhFB1Tqi2YjQq7OuYaAiEA2BMkJ/3Tbk/knnCvb/33vauA8Rw/9xhG5PA90ipzB/U=" + } + ] }, "_from": ".", "_npmVersion": "1.4.3", @@ -262,7 +283,14 @@ ], "dist": { "shasum": "38f6730c03aab6d5edbb52bd934885e756d71674", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz", + "integrity": "sha512-kuRgl0wyQa2pmUzVVyVQp0E04p//9u7J6Hi0Hd7fpF2Le1waUYUPmOcp6ITXNBYtBfzu9zw+aTG5eLLfYWHd1A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDorE0C4ozrLlU3/RXjoBGDnTQ1vGfaj6q66FYyGhfNsAiAWgloiwUeWMBJxB1SfnfDam7lkrmul37OR/Jb9PSXVQQ==" + } + ] }, "directories": {} }, @@ -327,7 +355,14 @@ }, "dist": { "shasum": "7bc658b4bed61eee424ad74f75f5c3e2c4df3cc7", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz", + "integrity": "sha512-euSOvfze1jPOf85KQOmZ2UcWDJ/dUJukTJdj4o9ZZLyjl7IjdIyE4fAQRSuGrxAjB9nvvvrl4N3bPtRq+W+SyQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBJ3wjKXLgAZjSqy9mOktUcOqNoQh8JSEPhMyfNsbo5hAiEA8V3Y/Vugo26oLm+5dp6W9C4PB4wKNnoPMiESz7Lj3yg=" + } + ] }, "maintainers": [ { @@ -398,7 +433,14 @@ }, "dist": { "shasum": "a91cdd1ebef1a86659e70ff4def01625fc2d6756", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz", + "integrity": "sha512-bgB9RrUMd3G7drkg5+Gv+dMZTUSFbfrrp61qsQGlTdCdIPqdzF9UG2G5Ndlg6zR3ArNeGGXMIYSYFZRRtZaT9Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFVZKtSpYwgtaTT2Kqf1h7zkwzrSJagLcLLzTDM+RwSQIgPQSY7OnNwUniyQQvJ0f8cHvHD6YlDcpo6cvfszyv234=" + } + ] }, "maintainers": [ { @@ -469,7 +511,14 @@ }, "dist": { "shasum": "84818b70e91d9ac8b4d77df20e9239e80c025089", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.0.tgz", + "integrity": "sha512-0fxU/CUKHz4ojATahMymHO3MC7xccEcNISC+fNroLYitQjVUP3rEAwV8lsviJMjTlrLza4cH/TCH9kBHvSDf1Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIARCRZyc0v8nLUsZoBLVE8r0ayj+33hDa41xwLM8c7m/AiBnlZGwQD0ZJGpLfKojVsbLVxsG7CKYEgLd/AL1D791KQ==" + } + ] }, "maintainers": [ { @@ -544,7 +593,14 @@ }, "dist": { "shasum": "19053e2e0748eadb379da6c09d455cf5e1039335", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.1.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.1.tgz", + "integrity": "sha512-vgW4YcTHFsmsL5q8x0ovPQfwzEdFCoQXv6HBse+E46uZNwA+lE5+V1G9ap3IaUz0oM9JPFiJ8tnDZjqdReFSqA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAytkJMWi5v5v1dWj3sCpqNsfuHH8wnB0+ogc3MURhfqAiEAn3aM52dUjjGxYPD6DhQHUkMuJlqw/RQRUZbTpgvycUk=" + } + ] }, "maintainers": [ { @@ -619,7 +675,14 @@ }, "dist": { "shasum": "cb3f3e3c732dc0f01ee70b403f302e61d7709838", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha512-STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDwR6gkoRTPsOQQNI/+S71bhdZoeEMHWYyKDMsSzVwixAIhAIllfa3v0fyWYS51UxB+4wbQk2LCtxJhWSjseBejXl9z" + } + ] }, "maintainers": [ { @@ -696,7 +759,14 @@ }, "dist": { "shasum": "89b4d199ab2bee49de164ea02b89ce462d71b767", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha512-9Y0g0Q8rmSt+H33DfKv7FOc3v+iRI+o1lbzt8jGcIosYW37IIW/2XVYq5NPdmaD5NQ59Nk26Kl/vZbwW9Fr8vg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDN5U38zzaYjzNgiGzGDWu9nnWtcbrB6JezTyfWwriLJAiBjOrytimT7VRffO2Y/7LWXIOmsJFjo5toVuTAXyucXZg==" + } + ] }, "maintainers": [ { @@ -709,9 +779,455 @@ "tmp": "tmp/balanced-match-1.0.0.tgz_1497251909645_0.8755026108119637" }, "directories": {} + }, + "1.0.1": { + "name": "balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "1.0.1", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "scripts": { + "test": "prettier-standard && standard && tape test/test.js", + "bench": "matcha test/bench.js", + "release": "np" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^7.4.0", + "prettier-standard": "^16.4.1", + "standard": "^16.0.3", + "tape": "^4.6.0" + }, + "keywords": [ + "match", + "regexp", + "test", + "balanced", + "parse" + ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "gitHead": "91e65ccc2a89ae0d81bb57e287131011f41a20db", + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + "_id": "balanced-match@1.0.1", + "_nodeVersion": "15.9.0", + "_npmVersion": "7.7.6", + "dist": { + "integrity": "sha512-qyTw2VPYRg31SlVU5WDdvCSyMTJ3YSP4Kz2CidWZFPFawCiHJdCyKyZeXIGMJ5ebMQYXEI56kDR8tcnDkbZstg==", + "shasum": "4f46cf3183a02a6a25875cf9a4240c15291cf464", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.1.tgz", + "fileCount": 5, + "unpackedSize": 7083, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbBCwCRA9TVsSAnZWagAAyIwP/3NssbM+7PI+JjP3izQc\nc6+ePWLbBz5smmilqFyHnv8z2Ouv5PBBO6EVyyRX80DPy7KPPFUFXNOS00Vw\n8yHZ+EyaWzamt6yVDRNxx2DGf8jDzB1Axh8NwkIQKfnwsBxt/wVJFojLo6Rn\nuGOXhy2n5nbZ1JavWL8aquTx/6maPoyEu3omopwrDEhxcAmz50czBRPb8sPH\n+fQYl9SgkJdMUDAUNr65pj77v+gR4glViT838GWsoa32f/Wt/e8Na034+IeU\nzSwnEmA0cvGj2/ubkiAifPIshIXDXcEm0aSRn5lrCzmInGKtD124F5vinY3d\nXZ7CD1YGv2zQ703HZLVhAugd2/4l1Ac3Uf8bGSOFc4ipzwYXUOH8OUlIWKDU\nQ/ktMaueuBENMU4cs/ys3th5qZQFmv0vT8L8VAC1ybJ+tDF80bvvNnIlhwgb\nj2elsnB4uj5DjvDq/hjRHLODAXSJWnikm9gDtRHMcIOy6tJI39UIRfG6br0K\n6MqtN7TE4UkkkPaUEEKPv53fhABsCkkhWVKd2oW04i+hn53Iu7FZm2Pgx5yu\nC82gcej2byggT97RO9PtiNbCtkvJXm52I5dg6lIJ2/Xsqb16O///kgmD7n8/\n8u/9HNauhKbhg0wGuZJgcy0hBbOYFSJOfM+S26UHADWiPcEkJ4fc7nlqG9vv\nmMTG\r\n=ftTQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDlcpMP2h5zkcX0B8nr6vV/qhflEMPCULRG0/JGC4+B3AiAQ6pXxP1MfFPEU2M5/jichFV38qfuD5MdVDPrp4Wu9eA==" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/balanced-match_1.0.1_1617694895808_0.352537932704025" + }, + "_hasShrinkwrap": false, + "deprecated": "this package has been deprecated" + }, + "1.0.2": { + "name": "balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "1.0.2", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "scripts": { + "test": "tape test/test.js", + "bench": "matcha test/bench.js" + }, + "devDependencies": { + "matcha": "^0.7.0", + "tape": "^4.6.0" + }, + "keywords": [ + "match", + "regexp", + "test", + "balanced", + "parse" + ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "gitHead": "c7412e09b95d6ad97fd1e2996f6adca7626a9ae8", + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + "_id": "balanced-match@1.0.2", + "_nodeVersion": "15.9.0", + "_npmVersion": "7.7.6", + "dist": { + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "shasum": "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "fileCount": 5, + "unpackedSize": 6939, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbFk9CRA9TVsSAnZWagAAZCkP/2oCPlLyH1O+2fxJepxC\nP64dIPH4FmdtcuRV6m9JSSnNayjLyl7KZSkzngJveJAVMwBH2oSO40HVruAc\njNGdawU0sm41Tvkxm0K9AhiT5pfqBHv6KBj/sR5+2iF56zAM7pxrc8eTsgj9\nHBAYq5ZoePKf+Kki77ilWwK1Z7VXekk3KNgPd4jsbZ58JGL2dLVmqJcOPAfx\nTRECI9NV5oyHl+EsOGnMnAB8Z7GvNH+/sVo5lWZkldStJDjlj3mZq9fxMo5I\nw/2pmVPI8dvYYA6r3mp55YYDyvWA49CoRgTHXqEy4tpHmmdTAdB2Je+3j/n0\nvbJm74Ab6CnZnwa9Oaowz+VcKkcczXICTxPj0D+ddvVksD+6VpnAz79Jyia5\nqApDNXnYv+8bdnMwhnA2tQ0vz10HANuZ1xfpXE9Yy4Py/1LsTvExovYsie1G\n9RQ1GkIpGwwyOuzbDqHtrRjduAy35VNtIw2nQTCRLz87w/7DV+RbTvaT1Fp7\nb4WQN9z6BoX0Bl/Qi8PXTDN5J8M83MsRThoYm20M0nAVeGbxrfHTMJoXvxF9\ntlHuV3E7W7x3lvG0za7wLn9p76uOzxDX8Osr5POJ/GpEVciz0PWcbHQHFHUm\nxB+x3O0C9eAdKW/9/7/YA9zMqdqcMuwg6f26neIYIk10oZQyRriBoV6OZtIy\ntw1n\r\n=eH8s\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHRQpAKwqTgs0SDP5KcV7MzsuTPMEkHeNqJFBOy5hYMwAiB/QgzhE/4zo/h6mn5Sl6u4YP0UZKqPYCZe5GhyLntdKA==" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/balanced-match_1.0.2_1617713469141_0.18827857838975826" + }, + "_hasShrinkwrap": false + }, + "2.0.0": { + "name": "balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "2.0.0", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "scripts": { + "test": "prettier-standard && standard && tape test/test.js", + "bench": "matcha test/bench.js", + "release": "np" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^7.4.0", + "prettier-standard": "^16.4.1", + "standard": "^16.0.3", + "tape": "^4.6.0" + }, + "keywords": [ + "match", + "regexp", + "test", + "balanced", + "parse" + ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "gitHead": "1c56fa33180a54e0e69a3fae9d60c191e74c4174", + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + "_id": "balanced-match@2.0.0", + "_nodeVersion": "15.9.0", + "_npmVersion": "7.7.6", + "dist": { + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "shasum": "dc70f920d78db8b858535795867bf48f820633d9", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "fileCount": 5, + "unpackedSize": 7083, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbFnBCRA9TVsSAnZWagAAnBUQAIwSae9EWp8mawlco66Y\nsYcwEHdv5Cc7shxnCSIeYYGgowelCQgirX5QrJHKmPEj10UfrJJvCnHu4uMC\nvyztZIDLxtg3xWMaTObZfVRCO23S90Po81YDJBvOtrRciRGqQmZ+HWmuRYDu\nI7rtvXMK/yc31dnkOjTPBd6FjufQRfH+OyS1cPJP5/ZyXxZsiNi28jIDe/1R\nKETSdx279AtQo+vUL6uK+OnKF9Rxo8GXeabM+4dRezqWtYW1B2RugEKuhSk5\nlwXOrjJEioG+TaIozgXY8X/0hiyRW6mCisMtFE3aYxhgp/WxPwlyNV6k+dtz\nqsnrwPLlZyVg0IX16MbHXJBbr0yvynSbN2t1eUZ1kX36wquzuIMDk6H/1XNY\nhhAydNkpFGICPedeLkFVvVFjpx+zeVryhMj3sq+P5FYdIDcHkhxFDX8s3cfp\ntIrtY7Y59hMsdDnIUwp4qqOvxG7DuuEFprWG38BIVCa0hE3yA+vQ5+ACUmBo\no6DM/RUgXwuqFghoYRX00fxKSedVIWfX8f6nPyG0WhN5svfdPlC/0qayvE0r\nGllsfW6la8n1yVN8jey9we2x0OdLutG4rYB5gEzl91DoLJjP9TopCdNnZhhC\nuM3d6jLW/BVRgPTU7z6YBCXiESw0lntphDMotVZBPeXz2CTqGTNbE4vKAJq4\nROwK\r\n=8h9J\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCwPXtClY2xRtpUhfN8Otf+E02dH+DO55UcSuJ0vi+LrAIhALiaQS2V+1k2zJKf/lBKrxIRH8shIVFuYbpjfo7ABZ38" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/balanced-match_2.0.0_1617713601488_0.5951607210108762" + }, + "_hasShrinkwrap": false + }, + "3.0.0": { + "name": "balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "3.0.0", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "type": "module", + "scripts": { + "test": "standard --fix && node--test test/test.js", + "bench": "matcha test/bench.js", + "release": "np" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^8.0.4", + "standard": "^17.1.0", + "test": "^3.3.0" + }, + "keywords": [ + "match", + "regexp", + "test", + "balanced", + "parse" + ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "engines": { + "node": ">= 16" + }, + "gitHead": "7faf963591218df292de64f542bccbb5a85de93f", + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + "_id": "balanced-match@3.0.0", + "_nodeVersion": "20.3.1", + "_npmVersion": "9.6.7", + "dist": { + "integrity": "sha512-roy6f9Ri49dpBe1EUBikUsqhJfEVlW+oLV7JFwGm17PdkZ81xVreEYNEIsytl9NQ6fvvvJRXHyVe60O5ve6i1w==", + "shasum": "c47006ef8f61f4c7ffbecbd69b2fe9c56fb8773c", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-3.0.0.tgz", + "fileCount": 4, + "unpackedSize": 7127, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHfh6+e4G478Rijxgz6qRQLhcQiHzmBYVuJ1mzlE6FC7AiB5VfbD/aHfrYbKC3EUC85l/DO4yGx4JK96abS4fwZ5bA==" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/balanced-match_3.0.0_1696493478956_0.8748467054054856" + }, + "_hasShrinkwrap": false + }, + "3.0.1": { + "name": "balanced-match", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "version": "3.0.1", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "exports": "./index.js", + "type": "module", + "scripts": { + "test": "standard --fix && node--test test/test.js", + "bench": "matcha test/bench.js", + "release": "np" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^8.0.4", + "standard": "^17.1.0", + "test": "^3.3.0" + }, + "keywords": [ + "match", + "regexp", + "test", + "balanced", + "parse" + ], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "engines": { + "node": ">= 16" + }, + "gitHead": "bb2612142d2d40f46636319ce50197deb6254425", + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + "_id": "balanced-match@3.0.1", + "_nodeVersion": "20.3.1", + "_npmVersion": "9.6.7", + "dist": { + "integrity": "sha512-vjtV3hiLqYDNRoiAv0zC4QaGAMPomEoq83PRmYIofPswwZurCeWR5LByXm7SyoL0Zh5+2z0+HC7jG8gSZJUh0w==", + "shasum": "e854b098724b15076384266497392a271f4a26a0", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-3.0.1.tgz", + "fileCount": 5, + "unpackedSize": 12334, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEHsKepAWqy0XBNt9lRc2IKfkNV2LfAzNNev+dVSGip1AiEAvZJxo1yLwJNtvZRe+9qcUinlJ6fC6btDmG+KvqyP4+g=" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/balanced-match_3.0.1_1696685643512_0.5915305955862984" + }, + "_hasShrinkwrap": false } }, - "readme": "# balanced-match\n\nMatch balanced string pairs, like `{` and `}` or `` and ``. Supports regular expressions as well!\n\n[![build status](https://secure.travis-ci.org/juliangruber/balanced-match.svg)](http://travis-ci.org/juliangruber/balanced-match)\n[![downloads](https://img.shields.io/npm/dm/balanced-match.svg)](https://www.npmjs.org/package/balanced-match)\n\n[![testling badge](https://ci.testling.com/juliangruber/balanced-match.png)](https://ci.testling.com/juliangruber/balanced-match)\n\n## Example\n\nGet the first matching pair of braces:\n\n```js\nvar balanced = require('balanced-match');\n\nconsole.log(balanced('{', '}', 'pre{in{nested}}post'));\nconsole.log(balanced('{', '}', 'pre{first}between{second}post'));\nconsole.log(balanced(/\\s+\\{\\s+/, /\\s+\\}\\s+/, 'pre { in{nest} } post'));\n```\n\nThe matches are:\n\n```bash\n$ node example.js\n{ start: 3, end: 14, pre: 'pre', body: 'in{nested}', post: 'post' }\n{ start: 3,\n end: 9,\n pre: 'pre',\n body: 'first',\n post: 'between{second}post' }\n{ start: 3, end: 17, pre: 'pre', body: 'in{nest}', post: 'post' }\n```\n\n## API\n\n### var m = balanced(a, b, str)\n\nFor the first non-nested matching pair of `a` and `b` in `str`, return an\nobject with those keys:\n\n* **start** the index of the first match of `a`\n* **end** the index of the matching `b`\n* **pre** the preamble, `a` and `b` not included\n* **body** the match, `a` and `b` not included\n* **post** the postscript, `a` and `b` not included\n\nIf there's no match, `undefined` will be returned.\n\nIf the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `['{', 'a', '']` and `{a}}` will match `['', 'a', '}']`.\n\n### var r = balanced.range(a, b, str)\n\nFor the first non-nested matching pair of `a` and `b` in `str`, return an\narray with indexes: `[ , ]`.\n\nIf there's no match, `undefined` will be returned.\n\nIf the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `[ 1, 3 ]` and `{a}}` will match `[0, 2]`.\n\n## Installation\n\nWith [npm](https://npmjs.org) do:\n\n```bash\nnpm install balanced-match\n```\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", + "readme": "# balanced-match\n\nMatch balanced string pairs, like `{` and `}` or `` and ``. Supports regular expressions as well!\n\n[![CI](https://github.com/juliangruber/balanced-match/actions/workflows/ci.yml/badge.svg)](https://github.com/juliangruber/balanced-match/actions/workflows/ci.yml)\n[![downloads](https://img.shields.io/npm/dm/balanced-match.svg)](https://www.npmjs.org/package/balanced-match)\n\n## Example\n\nGet the first matching pair of braces:\n\n```js\nimport balanced from 'balanced-match'\n\nconsole.log(balanced('{', '}', 'pre{in{nested}}post'))\nconsole.log(balanced('{', '}', 'pre{first}between{second}post'))\nconsole.log(balanced(/\\s+\\{\\s+/, /\\s+\\}\\s+/, 'pre { in{nest} } post'))\n```\n\nThe matches are:\n\n```bash\n$ node example.js\n{ start: 3, end: 14, pre: 'pre', body: 'in{nested}', post: 'post' }\n{ start: 3,\n end: 9,\n pre: 'pre',\n body: 'first',\n post: 'between{second}post' }\n{ start: 3, end: 17, pre: 'pre', body: 'in{nest}', post: 'post' }\n```\n\n## API\n\n### const m = balanced(a, b, str)\n\nFor the first non-nested matching pair of `a` and `b` in `str`, return an\nobject with those keys:\n\n- **start** the index of the first match of `a`\n- **end** the index of the matching `b`\n- **pre** the preamble, `a` and `b` not included\n- **body** the match, `a` and `b` not included\n- **post** the postscript, `a` and `b` not included\n\nIf there's no match, `undefined` will be returned.\n\nIf the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `['{', 'a', '']` and `{a}}` will match `['', 'a', '}']`.\n\n### const r = balanced.range(a, b, str)\n\nFor the first non-nested matching pair of `a` and `b` in `str`, return an\narray with indexes: `[ , ]`.\n\nIf there's no match, `undefined` will be returned.\n\nIf the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `[ 1, 3 ]` and `{a}}` will match `[0, 2]`.\n\n## Installation\n\nWith [npm](https://npmjs.org) do:\n\n```bash\nnpm install balanced-match\n```\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", "maintainers": [ { "name": "juliangruber", @@ -719,7 +1235,7 @@ } ], "time": { - "modified": "2017-06-15T13:26:50.817Z", + "modified": "2023-10-07T13:34:03.844Z", "created": "2013-10-13T12:26:00.713Z", "0.0.0": "2013-10-13T12:26:03.806Z", "0.0.1": "2014-01-08T10:12:05.995Z", @@ -730,7 +1246,12 @@ "0.4.0": "2016-04-07T08:46:59.982Z", "0.4.1": "2016-05-01T19:07:46.040Z", "0.4.2": "2016-07-18T09:43:12.562Z", - "1.0.0": "2017-06-12T07:18:30.595Z" + "1.0.0": "2017-06-12T07:18:30.595Z", + "1.0.1": "2021-04-06T07:41:35.956Z", + "1.0.2": "2021-04-06T12:51:09.276Z", + "2.0.0": "2021-04-06T12:53:21.623Z", + "3.0.0": "2023-10-05T08:11:19.087Z", + "3.0.1": "2023-10-07T13:34:03.685Z" }, "author": { "name": "Julian Gruber", @@ -759,7 +1280,7 @@ "klap-webdevelopment": true, "scottfreecode": true, "arteffeckt": true, - "puranjayjain": true - }, - "_attachments": {} -} + "puranjayjain": true, + "flumpus-dev": true + } +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.min.json index c7234091e20f2..e0350ab0f69d7 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match.min.json @@ -1,7 +1,7 @@ { "name": "balanced-match", "dist-tags": { - "latest": "1.0.0" + "latest": "3.0.1" }, "versions": { "0.0.0": { @@ -12,7 +12,14 @@ }, "dist": { "shasum": "86efc32ae583496c1c1fbb51cd648de0363ebb03", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.0.tgz", + "integrity": "sha512-daYFGv8RHJKIcx7l5jAzeS86+pMEgTAcbF7Q89qnrgRVI1GEDkuGABNGzkcWYrUwUZJ4+uUf8hF4n3SZMIPVOQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHVHvgnAs1bDFoDI6+/pz7mkkZXVfz8thHg0hQ7Y9K/8AiBABPKzjsOSHdHyBJ6tGAMBNjzJTn1XASzfvfo3CnZfAQ==" + } + ] } }, "0.0.1": { @@ -23,7 +30,14 @@ }, "dist": { "shasum": "2c408589c3288fc8a152c535ed853f77763899ae", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.1.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.1.tgz", + "integrity": "sha512-obnFpTIt83MxrUxnHfs4npfChWAw0YcBQui+hI1awrVPzIqpKKkQ7KTunVRKAfauTptPQXZohaPs1hf38HJ05A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCO2l/CrUtV26QU2sOMNhCk02ZePiXNQy7szGHJTneWmgIgNhB9Yc4EEGiKzMSbdGAEskqxf6DeIZLLX63/pzCdMrE=" + } + ] } }, "0.1.0": { @@ -34,7 +48,14 @@ }, "dist": { "shasum": "b504bd05869b39259dd0c5efc35d843176dccc4a", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.1.0.tgz", + "integrity": "sha512-4xb6XqAEo3Z+5pEDJz33R8BZXI8FRJU+cDNLdKgDpmnz+pKKRVYLpdv+VvUAC7yUhBMj4izmyt19eCGv1QGV7A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIADDYF41QH1NuQ+/2uuuSzZelNXhFB1Tqi2YjQq7OuYaAiEA2BMkJ/3Tbk/knnCvb/33vauA8Rw/9xhG5PA90ipzB/U=" + } + ] } }, "0.2.0": { @@ -45,7 +66,14 @@ }, "dist": { "shasum": "38f6730c03aab6d5edbb52bd934885e756d71674", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz", + "integrity": "sha512-kuRgl0wyQa2pmUzVVyVQp0E04p//9u7J6Hi0Hd7fpF2Le1waUYUPmOcp6ITXNBYtBfzu9zw+aTG5eLLfYWHd1A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDorE0C4ozrLlU3/RXjoBGDnTQ1vGfaj6q66FYyGhfNsAiAWgloiwUeWMBJxB1SfnfDam7lkrmul37OR/Jb9PSXVQQ==" + } + ] } }, "0.2.1": { @@ -56,7 +84,14 @@ }, "dist": { "shasum": "7bc658b4bed61eee424ad74f75f5c3e2c4df3cc7", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz", + "integrity": "sha512-euSOvfze1jPOf85KQOmZ2UcWDJ/dUJukTJdj4o9ZZLyjl7IjdIyE4fAQRSuGrxAjB9nvvvrl4N3bPtRq+W+SyQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBJ3wjKXLgAZjSqy9mOktUcOqNoQh8JSEPhMyfNsbo5hAiEA8V3Y/Vugo26oLm+5dp6W9C4PB4wKNnoPMiESz7Lj3yg=" + } + ] } }, "0.3.0": { @@ -67,7 +102,14 @@ }, "dist": { "shasum": "a91cdd1ebef1a86659e70ff4def01625fc2d6756", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz", + "integrity": "sha512-bgB9RrUMd3G7drkg5+Gv+dMZTUSFbfrrp61qsQGlTdCdIPqdzF9UG2G5Ndlg6zR3ArNeGGXMIYSYFZRRtZaT9Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCFVZKtSpYwgtaTT2Kqf1h7zkwzrSJagLcLLzTDM+RwSQIgPQSY7OnNwUniyQQvJ0f8cHvHD6YlDcpo6cvfszyv234=" + } + ] } }, "0.4.0": { @@ -78,7 +120,14 @@ }, "dist": { "shasum": "84818b70e91d9ac8b4d77df20e9239e80c025089", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.0.tgz", + "integrity": "sha512-0fxU/CUKHz4ojATahMymHO3MC7xccEcNISC+fNroLYitQjVUP3rEAwV8lsviJMjTlrLza4cH/TCH9kBHvSDf1Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIARCRZyc0v8nLUsZoBLVE8r0ayj+33hDa41xwLM8c7m/AiBnlZGwQD0ZJGpLfKojVsbLVxsG7CKYEgLd/AL1D791KQ==" + } + ] } }, "0.4.1": { @@ -89,7 +138,14 @@ }, "dist": { "shasum": "19053e2e0748eadb379da6c09d455cf5e1039335", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.1.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.1.tgz", + "integrity": "sha512-vgW4YcTHFsmsL5q8x0ovPQfwzEdFCoQXv6HBse+E46uZNwA+lE5+V1G9ap3IaUz0oM9JPFiJ8tnDZjqdReFSqA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAytkJMWi5v5v1dWj3sCpqNsfuHH8wnB0+ogc3MURhfqAiEAn3aM52dUjjGxYPD6DhQHUkMuJlqw/RQRUZbTpgvycUk=" + } + ] } }, "0.4.2": { @@ -100,7 +156,14 @@ }, "dist": { "shasum": "cb3f3e3c732dc0f01ee70b403f302e61d7709838", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha512-STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDwR6gkoRTPsOQQNI/+S71bhdZoeEMHWYyKDMsSzVwixAIhAIllfa3v0fyWYS51UxB+4wbQk2LCtxJhWSjseBejXl9z" + } + ] } }, "1.0.0": { @@ -112,9 +175,141 @@ }, "dist": { "shasum": "89b4d199ab2bee49de164ea02b89ce462d71b767", - "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha512-9Y0g0Q8rmSt+H33DfKv7FOc3v+iRI+o1lbzt8jGcIosYW37IIW/2XVYq5NPdmaD5NQ59Nk26Kl/vZbwW9Fr8vg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDN5U38zzaYjzNgiGzGDWu9nnWtcbrB6JezTyfWwriLJAiBjOrytimT7VRffO2Y/7LWXIOmsJFjo5toVuTAXyucXZg==" + } + ] + } + }, + "1.0.1": { + "name": "balanced-match", + "version": "1.0.1", + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^7.4.0", + "prettier-standard": "^16.4.1", + "standard": "^16.0.3", + "tape": "^4.6.0" + }, + "dist": { + "integrity": "sha512-qyTw2VPYRg31SlVU5WDdvCSyMTJ3YSP4Kz2CidWZFPFawCiHJdCyKyZeXIGMJ5ebMQYXEI56kDR8tcnDkbZstg==", + "shasum": "4f46cf3183a02a6a25875cf9a4240c15291cf464", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.1.tgz", + "fileCount": 5, + "unpackedSize": 7083, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbBCwCRA9TVsSAnZWagAAyIwP/3NssbM+7PI+JjP3izQc\nc6+ePWLbBz5smmilqFyHnv8z2Ouv5PBBO6EVyyRX80DPy7KPPFUFXNOS00Vw\n8yHZ+EyaWzamt6yVDRNxx2DGf8jDzB1Axh8NwkIQKfnwsBxt/wVJFojLo6Rn\nuGOXhy2n5nbZ1JavWL8aquTx/6maPoyEu3omopwrDEhxcAmz50czBRPb8sPH\n+fQYl9SgkJdMUDAUNr65pj77v+gR4glViT838GWsoa32f/Wt/e8Na034+IeU\nzSwnEmA0cvGj2/ubkiAifPIshIXDXcEm0aSRn5lrCzmInGKtD124F5vinY3d\nXZ7CD1YGv2zQ703HZLVhAugd2/4l1Ac3Uf8bGSOFc4ipzwYXUOH8OUlIWKDU\nQ/ktMaueuBENMU4cs/ys3th5qZQFmv0vT8L8VAC1ybJ+tDF80bvvNnIlhwgb\nj2elsnB4uj5DjvDq/hjRHLODAXSJWnikm9gDtRHMcIOy6tJI39UIRfG6br0K\n6MqtN7TE4UkkkPaUEEKPv53fhABsCkkhWVKd2oW04i+hn53Iu7FZm2Pgx5yu\nC82gcej2byggT97RO9PtiNbCtkvJXm52I5dg6lIJ2/Xsqb16O///kgmD7n8/\n8u/9HNauhKbhg0wGuZJgcy0hBbOYFSJOfM+S26UHADWiPcEkJ4fc7nlqG9vv\nmMTG\r\n=ftTQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDlcpMP2h5zkcX0B8nr6vV/qhflEMPCULRG0/JGC4+B3AiAQ6pXxP1MfFPEU2M5/jichFV38qfuD5MdVDPrp4Wu9eA==" + } + ] + }, + "deprecated": "this package has been deprecated" + }, + "1.0.2": { + "name": "balanced-match", + "version": "1.0.2", + "devDependencies": { + "matcha": "^0.7.0", + "tape": "^4.6.0" + }, + "dist": { + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "shasum": "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "fileCount": 5, + "unpackedSize": 6939, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbFk9CRA9TVsSAnZWagAAZCkP/2oCPlLyH1O+2fxJepxC\nP64dIPH4FmdtcuRV6m9JSSnNayjLyl7KZSkzngJveJAVMwBH2oSO40HVruAc\njNGdawU0sm41Tvkxm0K9AhiT5pfqBHv6KBj/sR5+2iF56zAM7pxrc8eTsgj9\nHBAYq5ZoePKf+Kki77ilWwK1Z7VXekk3KNgPd4jsbZ58JGL2dLVmqJcOPAfx\nTRECI9NV5oyHl+EsOGnMnAB8Z7GvNH+/sVo5lWZkldStJDjlj3mZq9fxMo5I\nw/2pmVPI8dvYYA6r3mp55YYDyvWA49CoRgTHXqEy4tpHmmdTAdB2Je+3j/n0\nvbJm74Ab6CnZnwa9Oaowz+VcKkcczXICTxPj0D+ddvVksD+6VpnAz79Jyia5\nqApDNXnYv+8bdnMwhnA2tQ0vz10HANuZ1xfpXE9Yy4Py/1LsTvExovYsie1G\n9RQ1GkIpGwwyOuzbDqHtrRjduAy35VNtIw2nQTCRLz87w/7DV+RbTvaT1Fp7\nb4WQN9z6BoX0Bl/Qi8PXTDN5J8M83MsRThoYm20M0nAVeGbxrfHTMJoXvxF9\ntlHuV3E7W7x3lvG0za7wLn9p76uOzxDX8Osr5POJ/GpEVciz0PWcbHQHFHUm\nxB+x3O0C9eAdKW/9/7/YA9zMqdqcMuwg6f26neIYIk10oZQyRriBoV6OZtIy\ntw1n\r\n=eH8s\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHRQpAKwqTgs0SDP5KcV7MzsuTPMEkHeNqJFBOy5hYMwAiB/QgzhE/4zo/h6mn5Sl6u4YP0UZKqPYCZe5GhyLntdKA==" + } + ] + } + }, + "2.0.0": { + "name": "balanced-match", + "version": "2.0.0", + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^7.4.0", + "prettier-standard": "^16.4.1", + "standard": "^16.0.3", + "tape": "^4.6.0" + }, + "dist": { + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "shasum": "dc70f920d78db8b858535795867bf48f820633d9", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "fileCount": 5, + "unpackedSize": 7083, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbFnBCRA9TVsSAnZWagAAnBUQAIwSae9EWp8mawlco66Y\nsYcwEHdv5Cc7shxnCSIeYYGgowelCQgirX5QrJHKmPEj10UfrJJvCnHu4uMC\nvyztZIDLxtg3xWMaTObZfVRCO23S90Po81YDJBvOtrRciRGqQmZ+HWmuRYDu\nI7rtvXMK/yc31dnkOjTPBd6FjufQRfH+OyS1cPJP5/ZyXxZsiNi28jIDe/1R\nKETSdx279AtQo+vUL6uK+OnKF9Rxo8GXeabM+4dRezqWtYW1B2RugEKuhSk5\nlwXOrjJEioG+TaIozgXY8X/0hiyRW6mCisMtFE3aYxhgp/WxPwlyNV6k+dtz\nqsnrwPLlZyVg0IX16MbHXJBbr0yvynSbN2t1eUZ1kX36wquzuIMDk6H/1XNY\nhhAydNkpFGICPedeLkFVvVFjpx+zeVryhMj3sq+P5FYdIDcHkhxFDX8s3cfp\ntIrtY7Y59hMsdDnIUwp4qqOvxG7DuuEFprWG38BIVCa0hE3yA+vQ5+ACUmBo\no6DM/RUgXwuqFghoYRX00fxKSedVIWfX8f6nPyG0WhN5svfdPlC/0qayvE0r\nGllsfW6la8n1yVN8jey9we2x0OdLutG4rYB5gEzl91DoLJjP9TopCdNnZhhC\nuM3d6jLW/BVRgPTU7z6YBCXiESw0lntphDMotVZBPeXz2CTqGTNbE4vKAJq4\nROwK\r\n=8h9J\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCwPXtClY2xRtpUhfN8Otf+E02dH+DO55UcSuJ0vi+LrAIhALiaQS2V+1k2zJKf/lBKrxIRH8shIVFuYbpjfo7ABZ38" + } + ] + } + }, + "3.0.0": { + "name": "balanced-match", + "version": "3.0.0", + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^8.0.4", + "standard": "^17.1.0", + "test": "^3.3.0" + }, + "dist": { + "integrity": "sha512-roy6f9Ri49dpBe1EUBikUsqhJfEVlW+oLV7JFwGm17PdkZ81xVreEYNEIsytl9NQ6fvvvJRXHyVe60O5ve6i1w==", + "shasum": "c47006ef8f61f4c7ffbecbd69b2fe9c56fb8773c", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-3.0.0.tgz", + "fileCount": 4, + "unpackedSize": 7127, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHfh6+e4G478Rijxgz6qRQLhcQiHzmBYVuJ1mzlE6FC7AiB5VfbD/aHfrYbKC3EUC85l/DO4yGx4JK96abS4fwZ5bA==" + } + ] + }, + "engines": { + "node": ">= 16" + } + }, + "3.0.1": { + "name": "balanced-match", + "version": "3.0.1", + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "np": "^8.0.4", + "standard": "^17.1.0", + "test": "^3.3.0" + }, + "dist": { + "integrity": "sha512-vjtV3hiLqYDNRoiAv0zC4QaGAMPomEoq83PRmYIofPswwZurCeWR5LByXm7SyoL0Zh5+2z0+HC7jG8gSZJUh0w==", + "shasum": "e854b098724b15076384266497392a271f4a26a0", + "tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-3.0.1.tgz", + "fileCount": 5, + "unpackedSize": 12334, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEHsKepAWqy0XBNt9lRc2IKfkNV2LfAzNNev+dVSGip1AiEAvZJxo1yLwJNtvZRe+9qcUinlJ6fC6btDmG+KvqyP4+g=" + } + ] + }, + "engines": { + "node": ">= 16" } } }, - "modified": "2017-06-15T13:26:50.817Z" -} + "modified": "2023-10-07T13:34:03.844Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match/-/balanced-match-1.0.2.tgz b/workspaces/arborist/test/fixtures/registry-mocks/content/balanced-match/-/balanced-match-1.0.2.tgz new file mode 100644 index 0000000000000000000000000000000000000000..6629c915f1e5af3d2f36bfe9e2de90be25389df1 GIT binary patch literal 2668 zcmV-y3X}C8iwFP!00002|LqxTbKAHvpZP2Hluj%q3?=z>t)1jfvFVttEO{jP(u|Xi zKoXLWP$Wx`wlyC8_wE8DMa#Y+`A-hL4q__EP({46BbT+MF%yR@H9(8 zoPYLA=>$O0O%EWsY<)5nfQLT4w)59G;Ri%-$v}9#-ZB+xLr=Pqzo^dA6ubat1w5Rl zGgI-&apOp)cX8W<>*lx(L|PsiOJn88ih&8ARy;{2&e23-HZSIt!*cuP@Dt2Qmjej1 zAW&?Juvp45g@Y<_TX$F~%H>mO(ys{tpQLD&n9k@QmsyY==2%SR8mXP4KdG}uG3BmL zp#(&K0qqinFqlv=QtL#(o7d2yFd^|9Xf^V13FQ0w^=r3yFHOE=0(BIh4i$K*!-I+= z-^(0G%IAt`pDS?y*E11tsINr+pe;{H-{Xv$|*;meBi-Fkxk^(hhil zUzJ+j#6oLB{M%LbS_?8DmlVbI1{n#T);Qf!iN4AbeWg||4PGffROOVO!Rf;aRE3$q zVg+3qD^U+bbzqV^U-?FnNX@1b+U$P*T{Z@Mql{iI!b)va9QC{kYQng z#a_vTv@aCRolv~TERme}s=}$pvUCgH||1x(>bJtp_qHsQ`+`GxNf8zY#b&l-b(6;9O zqxb*qcI#gMzrVM?$^VZr>bQkA4C5$@7rNZ8dkxrbwRhmoP7cqo*4A6{z5V;y6w7eq zoF{W3DZ_)1Fyje#7cj-9Gv&SslZ11?2A}GMDK{aFusm1*Zf{s`Lgc2HUUB;d1|DjH zm_|B7HZq!|*DT?xmS9pwp1^I%2S4(%IS*5&I$O2XLp_~ws10+9T0;r(ISW992F(>y zaE*CC%2H|})WHYxz}6=8g3Ko!is?YiMJ|EJm3t&IH8P17ke(*YBVSDDKUZeOnHvZ> zGr2sWs)7uC;`cXfH+`kH_$6p?Gz5F9+N}U+(jf88`)@n2bVlO!Da|W zaz*1uhK!WN&)iE1Lg8;&5J@`kVW#qFh)4V+~|rcTXgipC`DDZ3KW2N71ex7 z&KT8dLz@F+UFOn>PAbs%bdW^yV9iVm<)7Lx?4OL@cLp{%LpUGwe{qiO zW2kk8_+B&Ny)!!PUyJ}T2A$sM1N2Xz)B6DbaC*lk*#A5q*ux?82ZnQY-gRt*IlZIq z#j(?S2XB$C*B?RG!4-~7M|~iHIV;B=60|sM~SQOgQeGb>7*Es*hX-2BB%~;QgshAd=U? zzoU`U?~xft{oZJRuO?bK7?q^&ouO?)XW$IUAt!_WnQ4$ak)p4dAYISaT*%dMCnAVK z?-xV6WC+K0r;EIXL`)_Y$kwJb_=D&Ff!#Si`+d^?H}e0!%Jpmce{XMhlm8!MJcYa6 zu3@Zo_>{*mb5z^=@$Fb;i1Bhv+x_^J`z8mxYT}~>!z|Vp2-sd`0ZRaTOiZ>?B?2bl z8q?nohH?4BrJIR>WUw@opXxCb;%B#~TSUt5UxSt^;uN3|}F`WcaKm`VQ(YinY*SDeMXV`by9x6+RSM(r__H+BQGc;4 zUSn+kona4L-?}Sei*91D&X7^Stst7#%lo3O+bt8emh^+G;Z}sVA*#*&<&y4Bwi-zI zJ#e*u)QNm zP0gAXH)Nq+>VC1~uR9Z|Fc`RrdjZD6FXduWt&p!uL@Aj50bImmI_)>q&jDEI0 z<;Eh`J+u;QiD=ep!6lUiXRTjp{+7#*B?(*TRi~B;ZiJ{8ykh$GjR~*Z{1KFff0hVA z+k_qXN^DvtZ09inhwko!Ky}H6@t(YOiFt69oXVuwz~;2Fbs}6}{F82XE0AKN8B!G> z(uH=6M_*7BZ_$FTZu<>mbIP(gW!apvY))DJ z|4vzoR>jhnq0N(v9tGA~%!5bj|8er({r~pv&gT68QAUyP4xmPT?%LJ25wkSmQFs8= abhJ6_+l= 18" + }, + "gitHead": "b01a637b0578a7c59acc7d8386f11f8d0710b512", + "bugs": { + "url": "https://github.com/juliangruber/brace-expansion/issues" + }, + "_id": "brace-expansion@3.0.0", + "_nodeVersion": "20.3.1", + "_npmVersion": "9.6.7", + "dist": { + "integrity": "sha512-P+6OwxY7i0tsp0Xdei2CjvVOQke51REB4c2d2wCckcMn6NBElNqLuzr6PsxFCdJ3i/cpGEkZ/Nng5I7ZkLo0CA==", + "shasum": "2ba8d16a84bb3b440107587dae0fa59cf8672452", + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-3.0.0.tgz", + "fileCount": 7, + "unpackedSize": 12214, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEC9uzfKooJ89Q8QLlD+tzLeFwFe/78sLtWLDO3ReypKAiBnVIsCDBixEed2GXe6+kCRV/O2pdWrYiYU+YT9S1FG4A==" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/brace-expansion_3.0.0_1696685462916_0.3750340778742729" + }, + "_hasShrinkwrap": false + }, + "4.0.0": { + "name": "brace-expansion", + "description": "Brace expansion as known from sh/bash", + "version": "4.0.0", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/brace-expansion.git" + }, + "homepage": "https://github.com/juliangruber/brace-expansion", + "exports": "./index.js", + "type": "module", + "scripts": { + "test": "standard --fix && node --test", + "gentest": "bash test/generate.sh", + "bench": "matcha bench/bench.js" + }, + "dependencies": { + "balanced-match": "^3.0.0" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "standard": "^17.1.0" + }, + "keywords": [], + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "license": "MIT", + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "engines": { + "node": ">= 18" + }, + "gitHead": "6a39bdddcf944374b475d99b0e8292d3727c7ebe", + "bugs": { + "url": "https://github.com/juliangruber/brace-expansion/issues" + }, + "_id": "brace-expansion@4.0.0", + "_nodeVersion": "20.3.1", + "_npmVersion": "9.6.7", + "dist": { + "integrity": "sha512-l/mOwLWs7BQIgOKrL46dIAbyCKvPV7YJPDspkuc88rHsZRlg3hptUGdU7Trv0VFP4d3xnSGBQrKu5ZvGB7UeIw==", + "shasum": "bb24b89bf4d4b37d742acac89b65d1a32b379a81", + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-4.0.0.tgz", + "fileCount": 8, + "unpackedSize": 12770, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDrhNEy/hwZjHIlsHCYab0+IHgrz7kDfa1w6u/e+kx1EAIgOp8c3E2/Sn13tVi4fV1P31KM5fQX1SqJtVtpcVNa8gI=" + } + ] + }, + "_npmUser": { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "juliangruber", + "email": "julian@juliangruber.com" + }, + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/brace-expansion_4.0.0_1709035002841_0.7308632197804894" + }, + "_hasShrinkwrap": false } }, - "readme": "# brace-expansion\n\n[Brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html), \nas known from sh/bash, in JavaScript.\n\n[![build status](https://secure.travis-ci.org/juliangruber/brace-expansion.svg)](http://travis-ci.org/juliangruber/brace-expansion)\n[![downloads](https://img.shields.io/npm/dm/brace-expansion.svg)](https://www.npmjs.org/package/brace-expansion)\n[![Greenkeeper badge](https://badges.greenkeeper.io/juliangruber/brace-expansion.svg)](https://greenkeeper.io/)\n\n[![testling badge](https://ci.testling.com/juliangruber/brace-expansion.png)](https://ci.testling.com/juliangruber/brace-expansion)\n\n## Example\n\n```js\nvar expand = require('brace-expansion');\n\nexpand('file-{a,b,c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']\n\nexpand('-v{,,}')\n// => ['-v', '-v', '-v']\n\nexpand('file{0..2}.jpg')\n// => ['file0.jpg', 'file1.jpg', 'file2.jpg']\n\nexpand('file-{a..c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']\n\nexpand('file{2..0}.jpg')\n// => ['file2.jpg', 'file1.jpg', 'file0.jpg']\n\nexpand('file{0..4..2}.jpg')\n// => ['file0.jpg', 'file2.jpg', 'file4.jpg']\n\nexpand('file-{a..e..2}.jpg')\n// => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg']\n\nexpand('file{00..10..5}.jpg')\n// => ['file00.jpg', 'file05.jpg', 'file10.jpg']\n\nexpand('{{A..C},{a..c}}')\n// => ['A', 'B', 'C', 'a', 'b', 'c']\n\nexpand('ppp{,config,oe{,conf}}')\n// => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf']\n```\n\n## API\n\n```js\nvar expand = require('brace-expansion');\n```\n\n### var expanded = expand(str)\n\nReturn an array of all possible and valid expansions of `str`. If none are\nfound, `[str]` is returned.\n\nValid expansions are:\n\n```js\n/^(.*,)+(.+)?$/\n// {a,b,...}\n```\n\nA comma separated list of options, like `{a,b}` or `{a,{b,c}}` or `{,a,}`.\n\n```js\n/^-?\\d+\\.\\.-?\\d+(\\.\\.-?\\d+)?$/\n// {x..y[..incr]}\n```\n\nA numeric sequence from `x` to `y` inclusive, with optional increment.\nIf `x` or `y` start with a leading `0`, all the numbers will be padded\nto have equal length. Negative numbers and backwards iteration work too.\n\n```js\n/^-?\\d+\\.\\.-?\\d+(\\.\\.-?\\d+)?$/\n// {x..y[..incr]}\n```\n\nAn alphabetic sequence from `x` to `y` inclusive, with optional increment.\n`x` and `y` must be exactly one character, and if given, `incr` must be a\nnumber.\n\nFor compatibility reasons, the string `${` is not eligible for brace expansion.\n\n## Installation\n\nWith [npm](https://npmjs.org) do:\n\n```bash\nnpm install brace-expansion\n```\n\n## Contributors\n\n- [Julian Gruber](https://github.com/juliangruber)\n- [Isaac Z. Schlueter](https://github.com/isaacs)\n\n## Sponsors\n\nThis module is proudly supported by my [Sponsors](https://github.com/juliangruber/sponsors)!\n\nDo you want to support modules like this to improve their quality, stability and weigh in on new features? Then please consider donating to my [Patreon](https://www.patreon.com/juliangruber). Not sure how much of my modules you're using? Try [feross/thanks](https://github.com/feross/thanks)!\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", + "readme": "# brace-expansion\n\n[Brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html),\nas known from sh/bash, in JavaScript.\n\n[![CI](https://github.com/juliangruber/brace-expansion/actions/workflows/ci.yml/badge.svg)](https://github.com/juliangruber/brace-expansion/actions/workflows/ci.yml)\n[![downloads](https://img.shields.io/npm/dm/brace-expansion.svg)](https://www.npmjs.org/package/brace-expansion)\n\n## Example\n\n```js\nimport expand from 'brace-expansion'\n\nexpand('file-{a,b,c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']\n\nexpand('-v{,,}')\n// => ['-v', '-v', '-v']\n\nexpand('file{0..2}.jpg')\n// => ['file0.jpg', 'file1.jpg', 'file2.jpg']\n\nexpand('file-{a..c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']\n\nexpand('file{2..0}.jpg')\n// => ['file2.jpg', 'file1.jpg', 'file0.jpg']\n\nexpand('file{0..4..2}.jpg')\n// => ['file0.jpg', 'file2.jpg', 'file4.jpg']\n\nexpand('file-{a..e..2}.jpg')\n// => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg']\n\nexpand('file{00..10..5}.jpg')\n// => ['file00.jpg', 'file05.jpg', 'file10.jpg']\n\nexpand('{{A..C},{a..c}}')\n// => ['A', 'B', 'C', 'a', 'b', 'c']\n\nexpand('ppp{,config,oe{,conf}}')\n// => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf']\n```\n\n## API\n\n```js\nimport expand from 'brace-expansion'\n```\n\n### const expanded = expand(str)\n\nReturn an array of all possible and valid expansions of `str`. If none are\nfound, `[str]` is returned.\n\nValid expansions are:\n\n```js\n/^(.*,)+(.+)?$/\n// {a,b,...}\n```\n\nA comma separated list of options, like `{a,b}` or `{a,{b,c}}` or `{,a,}`.\n\n```js\n/^-?\\d+\\.\\.-?\\d+(\\.\\.-?\\d+)?$/\n// {x..y[..incr]}\n```\n\nA numeric sequence from `x` to `y` inclusive, with optional increment.\nIf `x` or `y` start with a leading `0`, all the numbers will be padded\nto have equal length. Negative numbers and backwards iteration work too.\n\n```js\n/^-?\\d+\\.\\.-?\\d+(\\.\\.-?\\d+)?$/\n// {x..y[..incr]}\n```\n\nAn alphabetic sequence from `x` to `y` inclusive, with optional increment.\n`x` and `y` must be exactly one character, and if given, `incr` must be a\nnumber.\n\nFor compatibility reasons, the string `${` is not eligible for brace expansion.\n\n## Installation\n\nWith [npm](https://npmjs.org) do:\n\n```bash\nnpm install brace-expansion\n```\n\n## Contributors\n\n- [Julian Gruber](https://github.com/juliangruber)\n- [Isaac Z. Schlueter](https://github.com/isaacs)\n- [Haelwenn Monnier](https://github.com/lanodan)\n\n## Sponsors\n\nThis module is proudly supported by my [Sponsors](https://github.com/juliangruber/sponsors)!\n\nDo you want to support modules like this to improve their quality, stability and weigh in on new features? Then please consider donating to my [Patreon](https://www.patreon.com/juliangruber). Not sure how much of my modules you're using? Try [feross/thanks](https://github.com/feross/thanks)!\n\n## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n", "maintainers": [ { "name": "juliangruber", @@ -1220,7 +1595,7 @@ } ], "time": { - "modified": "2020-10-05T11:41:14.203Z", + "modified": "2024-02-27T11:56:43.413Z", "created": "2013-10-13T12:58:47.118Z", "0.0.0": "2013-10-13T12:58:50.153Z", "1.0.0": "2014-11-30T09:58:55.317Z", @@ -1237,7 +1612,10 @@ "1.1.9": "2018-02-09T09:53:36.709Z", "1.1.10": "2018-02-09T21:13:29.675Z", "1.1.11": "2018-02-10T07:42:22.313Z", - "2.0.0": "2020-10-05T11:41:11.973Z" + "2.0.0": "2020-10-05T11:41:11.973Z", + "2.0.1": "2021-02-22T16:18:13.617Z", + "3.0.0": "2023-10-07T13:31:03.177Z", + "4.0.0": "2024-02-27T11:56:43.001Z" }, "author": { "name": "Julian Gruber", @@ -1260,6 +1638,7 @@ "i-erokhin": true, "scottfreecode": true, "shaomingquan": true, - "sbruchmann": true + "sbruchmann": true, + "flumpus-dev": true } -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/brace-expansion.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/brace-expansion.min.json index 10f5aeacbe295..219cb162a5539 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/brace-expansion.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/brace-expansion.min.json @@ -1,7 +1,7 @@ { "name": "brace-expansion", "dist-tags": { - "latest": "2.0.0" + "latest": "4.0.0" }, "versions": { "0.0.0": { @@ -16,7 +16,14 @@ }, "dist": { "shasum": "b2142015e8ee12d4cdae2a23908d28d44c2baa9f", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-0.0.0.tgz", + "integrity": "sha512-ZjZtiom0CcPQjWOvuqQsl/jP/GbJYO9oRJwJiZcB0f2e4PM3EAwoxAzTJBOcUJ0SSlKShb0wB5bkpzoH4YgbYg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDIz68OppfZj5bE9pvkPOiULQUHgRnY5X0txTOV7vNCFQIhAI4tRdbxB4npUxcuFaodGaFxxqwJMGQt0kUIqjs5WvNq" + } + ] } }, "1.0.0": { @@ -31,7 +38,14 @@ }, "dist": { "shasum": "a01656d12ebbbd067c8e935903f194ea5efee4ee", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.0.0.tgz", + "integrity": "sha512-lpqC6FxtM5XVWHdevRkMRPWSpsoLOWqurCALDPKm0VnLHf3DQ2rqFO8WBc6ierDnXeiMnCzwtDl6PgZrPY7xxA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHiiZuTN8rlOZuQfGyNVObHLXk06S8FCymzz59nrA6kIAiEAkQNqXm+yIrcqfrgeOfchnIebTgu7lM/7ohwc2jaPqnY=" + } + ] } }, "1.0.1": { @@ -46,7 +60,14 @@ }, "dist": { "shasum": "817708d72ab27a8c312d25efababaea963439ed5", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.0.1.tgz", + "integrity": "sha512-agencL/m7vghsxEHLqdfg0cz3hHCEo46p+VCthmo2ldRTsmW7DANziRJnYCzGPT2Rc6OaYoNmiC9Fq/6laK8Lg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCGL4FbAvj1GETCGq8al+snilcC+LBgaWobxTbx8NWHZAIhANmwsSB+I/6UwWGG0pJTZ61b1BqcCFCycRpzUjMB5IUG" + } + ] } }, "1.1.0": { @@ -61,7 +82,14 @@ }, "dist": { "shasum": "c9b7d03c03f37bc704be100e522b40db8f6cfcd9", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.0.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.0.tgz", + "integrity": "sha512-jW1t9kL3kiXzovHnEgYNuYMnF+hHB1TlyK2wox32dPrWRvwNEJlXz3NdB5mdjFK1Pom22qVVvpGXN2hICWmvGw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDAPkyBXMMTJXxO2G60LgymQM/x1fVRSoTL+X3M2ijMQAIhAIy8QqTEZzxuJKSFpS2zCFxK5+XDyIaYWZeOlil5bFAa" + } + ] } }, "1.1.1": { @@ -76,7 +104,14 @@ }, "dist": { "shasum": "da5fb78aef4c44c9e4acf525064fb3208ebab045", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "integrity": "sha512-8sehXzl+5+hVq+azy8bdvi/vdY1DA0eKIM+k+wK4XqBAy3e0khAcxN+CMIf6QObpDLR4LXBBH8eRRR500WDidg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAMsztomnUx31iO0XaIv4hcdVeg9nUiL0BNflX2zT1mKAiEAnKJYmKMf1DIPlz3tsslDFKMUMZBV5K6i41Erb0rdfOE=" + } + ] } }, "1.1.2": { @@ -91,7 +126,14 @@ }, "dist": { "shasum": "f21445d0488b658e2771efd870eff51df29f04ef", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", + "integrity": "sha512-QY1LGlHZzEwE7NbolI6UYCtLE2zp0I49Cx7anmMGHjwPcb5E/fN/mk5i6oERkhhx78K/UPNEwLjLhHM3tZwjcw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGzXvMvui4rDxLgCCSSd5sHHHnPnkk+FFuMXmUmTPuasAiAI9w6HqWYhvFwjJ1Lt2kvx9juCc42nu86lNVjZVmiVBw==" + } + ] } }, "1.1.3": { @@ -106,7 +148,14 @@ }, "dist": { "shasum": "46bff50115d47fc9ab89854abb87d98078a10991", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz", + "integrity": "sha512-JzSkuJYnfzmR0jZiCE/Nbw1I9/NL2Z2diIfhffu5Aq3nihHtfO8CNYcwxmAyTKYKWyte1b1vYBHMVhMbe+WZdw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDTtnEPVW6mkENQFogGyd+jwVVZk4fv5oQrv59tJZl+LQIhAIDBZRtfmnRz3bd3iBTboDlyyKBBzKcmMQRB4i13N8Aa" + } + ] } }, "1.1.4": { @@ -121,7 +170,14 @@ }, "dist": { "shasum": "464a204c77f482c085c2a36c456bbfbafb67a127", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.4.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.4.tgz", + "integrity": "sha512-wpJYpqGrDNnMWoi1GX8s8C4/SkHCuuLV0Sxlkvc4+rEBTNkUI2xLiUU3McR0b5dVw71Yw50l+sBGhusHNnjFnw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDv5gzTuC2pQtSUO2lUpdIu+EEkjv5yy57Xfhq9mKbJZAIgNucwl3w78pmRKhcaEEkqf8ALdEUhrSTClfu6fid9vy8=" + } + ] } }, "1.1.5": { @@ -136,7 +192,14 @@ }, "dist": { "shasum": "f5b4ad574e2cb7ccc1eb83e6fe79b8ecadf7a526", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.5.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.5.tgz", + "integrity": "sha512-FtnR1B5L0wpwEeryoTeqAmxrybW2/7BI8lqG9WSk6FxHoPCg5O474xPgWWQkoS7wAilt97IWvz3hDOWtgqMNzg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDcdxKt/UDpxuuF6QUTSAj+Ndice1oRjJYdg0ZT4vFlxAiEA/qg6+kDz31bAvPhuTGit0IkXoFtpj5xgb9i8K7XPmOM=" + } + ] } }, "1.1.6": { @@ -151,7 +214,14 @@ }, "dist": { "shasum": "7197d7eaa9b87e648390ea61fc66c84427420df9", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz", + "integrity": "sha512-do+EUHPJZmz1wYWxOspwBMwgEqs0T5xSClPfYRwug3giEKZoiuMN9Ans1hjT8yZZ1Dkx1oaU4yRe540HKKHA0A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD32m58z3rzGaG1vElCS5FolKUXPn6odedg6Xfq9KZQOAIgWSBG2qBNxWBr+2EzNkySLFXLqC2Gj9ZQkHSOkPDUabM=" + } + ] } }, "1.1.7": { @@ -167,7 +237,14 @@ }, "dist": { "shasum": "3effc3c50e000531fb720eaff80f0ae8ef23cf59", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz", + "integrity": "sha512-ebXXDR1wKKxJNfTM872trAU5hpKduCkTN37ipoxsh5yibWq8FfxiobiHuVlPFkspSSNhrxbPHbM4kGyDGdJ5mg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDjfkyICBvvj8rQb/0E8LXObvB5Ip4Son+jWmF+agQUewIgYtJplpbk9QT8k8fK4+mvwW/2SG88zw7RyfanboCbDYs=" + } + ] } }, "1.1.8": { @@ -183,7 +260,14 @@ }, "dist": { "shasum": "c07b211c7c952ec1f8efd51a77ef0d1d3990a292", - "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz" + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha512-Dnfc9ROAPrkkeLIUweEbh7LFT9Mc53tO/bbM044rKjhgAEyIGKvKXg97PM/kRizZIfUHaROZIoeEaWao+Unzfw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCnJTT7JQLt62sEnsf0tHq2Bjs0s5hzFPLTKZ0ezxe48wIhAMjCqrWYo5zNLTOR2UuSzCxYcXppfgandM0w69ZeHWpY" + } + ] } }, "1.1.9": { @@ -202,7 +286,13 @@ "shasum": "acdc7dde0e939fb3b32fe933336573e2a7dc2b7c", "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.9.tgz", "fileCount": 3, - "unpackedSize": 9867 + "unpackedSize": 9867, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCAFhLoOH1TGldXfcUQuons91mJSbJrZN7qvWgErbY1lwIhALBOh4f4dcTZ4xMkCIZbI0YlooUneFTZMFuQiPvTFZVW" + } + ] } }, "1.1.10": { @@ -221,7 +311,13 @@ "shasum": "5205cdf64c9798c180dc74b7bfc670c3974e6300", "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.10.tgz", "fileCount": 4, - "unpackedSize": 10964 + "unpackedSize": 10964, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDli7mxJRbuSCfeiMcIL+s+gaQlXvfuResXwhPtt2QeKwIhAOXD8xbx/PBIDoeu5Oy4kLIhozwj20XbJgDGdsYvwrnj" + } + ] } }, "1.1.11": { @@ -240,7 +336,13 @@ "shasum": "3c7fcbf529d87226f3d2f52b966ff5271eb441dd", "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "fileCount": 4, - "unpackedSize": 11059 + "unpackedSize": 11059, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC2I9J9tPlxp6j/HHQEZt6m3oGHr2r9mzmIpCuNqtxU8AIgEDoaUyizhrLzwPIwhskq7pIaySeBQHqkhwY/BQL5cCk=" + } + ] } }, "2.0.0": { @@ -259,9 +361,94 @@ "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.0.tgz", "fileCount": 5, "unpackedSize": 11241, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfewZYCRA9TVsSAnZWagAAd70P/2QT8aQ9+pjZQwM2pk0Z\nB/jNeaDu5O0/Y06KZF3Pzcxl9SFVCWfEr+7WP5mqb+R+dbthggNppICoM2Tk\nmilkoIgrUecspuKsvnJ0qJRYDSktSwD1IgcY/V3Yr8jCW5J56tU5SiUozvuj\nl3od5svv9vsPilwIHnMoRS4p00La7dlKK6v6R9QgdIF300jd+F++5GmSZOmj\nRxQslhhmFcM0nxIrJ1Ku06Tino2o8E8R0XzBUZS42uexstrDk9DGTtQmjqUn\nvnR/KRlJVppSdOeQ5P0L1UjvDObub5XUdfRo4JnQDrPrDZMdItLZ8CeoEVPh\nIwBCNCBoeWxbbPgAr4QdYMTpyIidFpMDd2lhNB+UTibold67Of4tbOn5KcOG\nac1lCdmturxz0AkyxawmQDkelpLdnatWdBzwGmPDk/Nh6bCSR03iKEgT3oJI\nu+NtciBopPto2emV8eN6E9yvlpGz8b7qDxi7FgOSYvEZ4Vy7spRpj6mS8PYl\nXbkTFUaNDr1KIMHlvXjeYX1I0MfFeE5u1uWovNS+bRmPYqVo78kRxJmlEL/J\nsOGS+PEnPx2thCA9VU4IZ+uGn1dx5mR28xylmatytWU2o3kXF4clXVeosSOl\nZYBAoXlsicuQxhrLzwvkReVpfCYNYVLTRjjn1eLrrba+M+FxT8ULtj6Z5Zh+\nqlBk\r\n=GlK9\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfewZYCRA9TVsSAnZWagAAd70P/2QT8aQ9+pjZQwM2pk0Z\nB/jNeaDu5O0/Y06KZF3Pzcxl9SFVCWfEr+7WP5mqb+R+dbthggNppICoM2Tk\nmilkoIgrUecspuKsvnJ0qJRYDSktSwD1IgcY/V3Yr8jCW5J56tU5SiUozvuj\nl3od5svv9vsPilwIHnMoRS4p00La7dlKK6v6R9QgdIF300jd+F++5GmSZOmj\nRxQslhhmFcM0nxIrJ1Ku06Tino2o8E8R0XzBUZS42uexstrDk9DGTtQmjqUn\nvnR/KRlJVppSdOeQ5P0L1UjvDObub5XUdfRo4JnQDrPrDZMdItLZ8CeoEVPh\nIwBCNCBoeWxbbPgAr4QdYMTpyIidFpMDd2lhNB+UTibold67Of4tbOn5KcOG\nac1lCdmturxz0AkyxawmQDkelpLdnatWdBzwGmPDk/Nh6bCSR03iKEgT3oJI\nu+NtciBopPto2emV8eN6E9yvlpGz8b7qDxi7FgOSYvEZ4Vy7spRpj6mS8PYl\nXbkTFUaNDr1KIMHlvXjeYX1I0MfFeE5u1uWovNS+bRmPYqVo78kRxJmlEL/J\nsOGS+PEnPx2thCA9VU4IZ+uGn1dx5mR28xylmatytWU2o3kXF4clXVeosSOl\nZYBAoXlsicuQxhrLzwvkReVpfCYNYVLTRjjn1eLrrba+M+FxT8ULtj6Z5Zh+\nqlBk\r\n=GlK9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCr5ZL6FcHVP65o923WcJjCEbbjT/6loKJU+zYITXIhbQIgGEfe3/Y91JY20BO7ZulW1OEI8SlP/Xvlh6hngSAJcF4=" + } + ] + } + }, + "2.0.1": { + "name": "brace-expansion", + "version": "2.0.1", + "dependencies": { + "balanced-match": "^1.0.0" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "tape": "^4.6.0" + }, + "dist": { + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "shasum": "1edc459e0f0c548486ecf9fc99f2221364b9a0ae", + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "fileCount": 5, + "unpackedSize": 11486, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgM9lGCRA9TVsSAnZWagAAkYIQAIalRvvQqAOlBPALOfU+\nuIHTUBeNj/D6vRuqzPgWQVtUxRpdvXMI/aLxJx38aeZ6WgCvZWBQn3jItTEs\n3H2zWGue5+DAeWvBCqxSjdVV4ai+4EJuyS4+1D1qTm2syzT0aPdYRlhVMA/s\nOpiuPVHF1vqwSwPMCUXNW1sMi4N0qJzpAInYOCQ2NFUFZb5OssTqYQ1bzdl1\nRq/FtfkqOmz7OC/879lo3SCp+uvdXmkkQnSOGVU65HvzJp/NIvsFk5pHwo68\naRXefo/GRnqGFwFYOSqUUlBVjgEJYFdRVrYN+CNHK8iNJ6cphqz3EE1Edl1d\njT1SsFm9dJCqkfz5M/tW03vbMV88MYKhdDff5/Fugz4vcCAKfp+JcJolxUxz\nYXnB/xH/MsIEFIqwfDHYf+HFDZsZk7kJKm5JUciIV9CORiWtHz4d/y+4FYZM\n48okE1VAa5E7DVlGhTEUJUUt05JHztbm4EPklRd4/il61edoL516wp1XryxB\nSG3Jb+wLHH/ZHUQHpqrnBWvs68fxE8848EwiWIPKUk7pP/MtHdftjw2ouPSa\nD3EeHKJirZ3GAJqmwDy/vrOSB5/bQX82dGviV097AdPpnCAH6HJuaXBww+lN\nXgbxcuBiXlMuQAxpmQ578BOIGHnCo9EeauL2Ik9pHissAPUcpFCSUVZvXC3P\nJbt7\r\n=ayXm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDgNFdV3ddgnkb39ucmGYRgdjxRfJEZcnAt+BXCAQaVPgIhAKW05a01tUGrzy0G/gZFOVqMptjiKbs9uy+dDpF0C75F" + } + ] + } + }, + "3.0.0": { + "name": "brace-expansion", + "version": "3.0.0", + "dependencies": { + "balanced-match": "^3.0.0" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "standard": "^17.1.0" + }, + "dist": { + "integrity": "sha512-P+6OwxY7i0tsp0Xdei2CjvVOQke51REB4c2d2wCckcMn6NBElNqLuzr6PsxFCdJ3i/cpGEkZ/Nng5I7ZkLo0CA==", + "shasum": "2ba8d16a84bb3b440107587dae0fa59cf8672452", + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-3.0.0.tgz", + "fileCount": 7, + "unpackedSize": 12214, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEC9uzfKooJ89Q8QLlD+tzLeFwFe/78sLtWLDO3ReypKAiBnVIsCDBixEed2GXe6+kCRV/O2pdWrYiYU+YT9S1FG4A==" + } + ] + }, + "engines": { + "node": ">= 18" + } + }, + "4.0.0": { + "name": "brace-expansion", + "version": "4.0.0", + "dependencies": { + "balanced-match": "^3.0.0" + }, + "devDependencies": { + "@c4312/matcha": "^1.3.1", + "standard": "^17.1.0" + }, + "dist": { + "integrity": "sha512-l/mOwLWs7BQIgOKrL46dIAbyCKvPV7YJPDspkuc88rHsZRlg3hptUGdU7Trv0VFP4d3xnSGBQrKu5ZvGB7UeIw==", + "shasum": "bb24b89bf4d4b37d742acac89b65d1a32b379a81", + "tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-4.0.0.tgz", + "fileCount": 8, + "unpackedSize": 12770, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDrhNEy/hwZjHIlsHCYab0+IHgrz7kDfa1w6u/e+kx1EAIgOp8c3E2/Sn13tVi4fV1P31KM5fQX1SqJtVtpcVNa8gI=" + } + ] + }, + "engines": { + "node": ">= 18" } } }, - "modified": "2020-10-05T11:41:14.203Z" -} + "modified": "2024-02-27T11:56:43.413Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.json b/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.json index 0aff19b5c73fa..fcf35d245a56a 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.json @@ -1,10 +1,10 @@ { "_id": "concat-map", - "_rev": "7-0c8e4d38de42e94c53f5313a84c313f4", + "_rev": "15-60df2eb6ac2bf61fd5195f753003c9ab", "name": "concat-map", "description": "concatenative mapdashery", "dist-tags": { - "latest": "0.0.1" + "latest": "0.0.2" }, "versions": { "0.0.0": { @@ -54,7 +54,14 @@ "_defaultsLoaded": true, "dist": { "shasum": "604be9c2afb6dc9ba8182e3ff294fdd48e238e6d", - "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.0.tgz", + "integrity": "sha512-w53m3Q7KbL6gVnOoDvkA21Ho4G4YkikBfhX4qX/aLViZ0FrCQwFcA6Fiv3aBtnNUd6b8MR2KIli9I9RRG6ujow==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQChhdaWNNzdWch7y3nMoIP3xSd0u96Zn9Lp27cweI3IPQIhAKBmLxSNlWyspz7L4Q57pM8zVpb4FnEL7Rl+696tW7AO" + } + ] }, "maintainers": [ { @@ -128,7 +135,14 @@ "_id": "concat-map@0.0.1", "dist": { "shasum": "d8a96bd77fd68df7793a73036a3ba0d5405d477b", - "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFE1dLaDH74qdfcVe+NrAWhI69S5OkTt0Kl0nuw0SdvPAiEA3VVG9Mk5FAY//r4V5Y9annPnv0R898ie0+9NE9Yq0rs=" + } + ] }, "_from": ".", "_npmVersion": "1.3.21", @@ -142,20 +156,157 @@ "email": "mail@substack.net" } ] + }, + "0.0.2": { + "name": "concat-map", + "description": "concatenative mapdashery", + "version": "0.0.2", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/concat-map.git" + }, + "main": "index.js", + "keywords": [ + "concat", + "concatMap", + "map", + "functional", + "higher-order" + ], + "directories": { + "example": "example", + "test": "test" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "lint": "eslint --ext=js,mjs .", + "pretest": "npm run lint", + "tests-only": "tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.1", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.0", + "safe-publish-latest": "^2.0.0", + "tape": "^5.6.1" + }, + "license": "MIT", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "testling": { + "files": "test/*.js", + "browsers": { + "ie": [ + 6, + 7, + 8, + 9 + ], + "ff": [ + 3.5, + 10, + 15 + ], + "chrome": [ + 10, + 22 + ], + "safari": [ + 5.1 + ], + "opera": [ + 12 + ] + } + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + }, + "gitHead": "8c91c7c37eb89cf47bddfc4b4f7aac813fa11abe", + "bugs": { + "url": "https://github.com/ljharb/concat-map/issues" + }, + "homepage": "https://github.com/ljharb/concat-map#readme", + "_id": "concat-map@0.0.2", + "_nodeVersion": "18.10.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-xGo3rY/AH8WxqkYSvsNV9yB79sN2oNVOXnmSMYLx28CVFBsXiEFCkcf6WIiWjk5VWKr4/1fV+KG5I4442xE2hg==", + "shasum": "f497c5b65881435aa6860a55eb541f1601f63394", + "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.2.tgz", + "fileCount": 9, + "unpackedSize": 11454, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDSYCJeKkpso2D9dzzVUCNKXGBTBFEeNcp14t08vPpoAAiEAiJRax4kCtLHSCQEUBYfZXnMoGhKM2QbUHq4TiP8DQmU=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRuwyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqo1g/+MGYt6Aetoj2EK3cpTPdgO+dKXbkaOOCU4amtrp7OG/ViIU0f\r\nEWJBhDrdSbMItq3qfHe6HWCAnkboz4nG2Gosi+bxrYW/KPeEDw18Tjse/DUG\r\nIbv2eib9Wt4gl5eDKn+2+1L6VVDkYyY/ti0jiqR+XX1tG9x/Dpb6h8vzch08\r\nsc/y6IfHElfwiIlq3BGqlrl9lmQ9q/ZHAKjFsFKgHvMCwUuh8dr6KBMPCgL0\r\nI3MSJhxkmS/KWnlgBPfhmgh+OrXBB3X7bujdyoKS3wDQWwjMBzvWDbhQIdg5\r\ne0szmRXaGMgLnCXllkViqEAv0SxeXGP2hsAIeBp9iHpQL3ZOpZQIkeCgoujn\r\nqLo9AltK6yqvQS0ubfJxXYHNQKBIztDXg/gcWGtI4Pc5wUx6EJLVBSPvmCOs\r\nSV2E2JS9lLIxXGye/CYwQFHP43MeK8pd1tU5IeytQsVWyrLuOib/4Ztv6mQG\r\nog7JAvOtNWIXypv+zJlQ8Dy7+lT35YjiwwQd1Sp8m8Edg8r7s6syCTviaicK\r\nHX/1z4AUUdPKWKXSR6sXPN3CwNs4yG+8Z/GHYBMtckhuwByqu2eLXiVIRytc\r\nzj1Ka8G5ZpQhhJiV/prBuUMbU+JfjsH80HgiZUUmBPNmyO9VQTne2D5W7P9x\r\n2tmkXT2B3ZrP10QRkXUK4gqEcnt4/w/GbDI=\r\n=Xgn2\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "ljharb", + "email": "ljharb@gmail.com" + }, + "maintainers": [ + { + "name": "substack", + "email": "substack@gmail.com" + }, + { + "name": "ljharb", + "email": "ljharb@gmail.com" + }, + { + "name": "nopersonsmodules", + "email": "nopersonsmodules@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/concat-map_0.0.2_1665592369896_0.6483951265901502" + }, + "_hasShrinkwrap": false } }, - "readme": "concat-map\n==========\n\nConcatenative mapdashery.\n\n[![browser support](http://ci.testling.com/substack/node-concat-map.png)](http://ci.testling.com/substack/node-concat-map)\n\n[![build status](https://secure.travis-ci.org/substack/node-concat-map.png)](http://travis-ci.org/substack/node-concat-map)\n\nexample\n=======\n\n``` js\nvar concatMap = require('concat-map');\nvar xs = [ 1, 2, 3, 4, 5, 6 ];\nvar ys = concatMap(xs, function (x) {\n return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];\n});\nconsole.dir(ys);\n```\n\n***\n\n```\n[ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]\n```\n\nmethods\n=======\n\n``` js\nvar concatMap = require('concat-map')\n```\n\nconcatMap(xs, fn)\n-----------------\n\nReturn an array of concatenated elements by calling `fn(x, i)` for each element\n`x` and each index `i` in the array `xs`.\n\nWhen `fn(x, i)` returns an array, its result will be concatenated with the\nresult array. If `fn(x, i)` returns anything else, that value will be pushed\nonto the end of the result array.\n\ninstall\n=======\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install concat-map\n```\n\nlicense\n=======\n\nMIT\n\nnotes\n=====\n\nThis module was written while sitting high above the ground in a tree.\n", + "readme": "# concat-map [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nConcatenative mapdashery.\n\n## example\n\n``` js\nvar concatMap = require('concat-map');\nvar xs = [ 1, 2, 3, 4, 5, 6 ];\nvar ys = concatMap(xs, function (x) {\n return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];\n});\nconsole.dir(ys);\n```\n\n\n```js\n[ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]\n```\n\n## methods\n\n```js\nvar concatMap = require('concat-map')\n```\n\nconcatMap(xs, fn)\n-----------------\n\nReturn an array of concatenated elements by calling `fn(x, i)` for each element\n`x` and each index `i` in the array `xs`.\n\nWhen `fn(x, i)` returns an array, its result will be concatenated with the\nresult array. If `fn(x, i)` returns anything else, that value will be pushed\nonto the end of the result array.\n\n## install\n\nWith [npm](http://npmjs.org) do:\n\n```sh\nnpm install concat-map\n```\n\n## license\n\nMIT\n\n## notes\n\nThis module was written while sitting high above the ground in a tree.\n\n[package-url]: https://npmjs.org/package/concat-map\n[npm-version-svg]: https://versionbadg.es/ljharb/concat-map.svg\n[deps-svg]: https://david-dm.org/ljharb/concat-map.svg\n[deps-url]: https://david-dm.org/ljharb/concat-map\n[dev-deps-svg]: https://david-dm.org/ljharb/concat-map/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/concat-map#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/concat-map.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/concat-map.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/concat-map.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=concat-map\n[codecov-image]: https://codecov.io/gh/ljharb/concat-map/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/concat-map/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/concat-map\n[actions-url]: https://github.com/ljharb/concat-map/actions\n", "maintainers": [ { - "name": "substack", - "email": "mail@substack.net" + "email": "ljharb@gmail.com", + "name": "ljharb" } ], "time": { - "modified": "2014-01-30T03:06:35.982Z", + "modified": "2023-06-22T16:31:35.118Z", "created": "2012-06-08T04:31:26.867Z", "0.0.0": "2012-06-08T04:31:28.515Z", - "0.0.1": "2014-01-30T03:06:35.982Z" + "0.0.1": "2014-01-30T03:06:35.982Z", + "0.0.2": "2022-10-12T16:32:50.075Z" }, "author": { "name": "James Halliday", @@ -164,13 +315,25 @@ }, "repository": { "type": "git", - "url": "git://github.com/substack/node-concat-map.git" + "url": "git://github.com/ljharb/concat-map.git" }, - "readmeFilename": "README.markdown", + "readmeFilename": "README.md", "users": { "markthethomas": true, "klap-webdevelopment": true, - "wenbing": true + "wenbing": true, + "flumpus-dev": true + }, + "homepage": "https://github.com/ljharb/concat-map#readme", + "keywords": [ + "concat", + "concatMap", + "map", + "functional", + "higher-order" + ], + "bugs": { + "url": "https://github.com/ljharb/concat-map/issues" }, - "_attachments": {} -} + "license": "MIT" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.min.json index 8ba09eafeda00..82ffa538c48d4 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/concat-map.min.json @@ -1,7 +1,7 @@ { "name": "concat-map", "dist-tags": { - "latest": "0.0.1" + "latest": "0.0.2" }, "versions": { "0.0.0": { @@ -16,7 +16,14 @@ }, "dist": { "shasum": "604be9c2afb6dc9ba8182e3ff294fdd48e238e6d", - "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.0.tgz", + "integrity": "sha512-w53m3Q7KbL6gVnOoDvkA21Ho4G4YkikBfhX4qX/aLViZ0FrCQwFcA6Fiv3aBtnNUd6b8MR2KIli9I9RRG6ujow==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQChhdaWNNzdWch7y3nMoIP3xSd0u96Zn9Lp27cweI3IPQIhAKBmLxSNlWyspz7L4Q57pM8zVpb4FnEL7Rl+696tW7AO" + } + ] }, "engines": { "node": ">=0.4.0" @@ -34,9 +41,51 @@ }, "dist": { "shasum": "d8a96bd77fd68df7793a73036a3ba0d5405d477b", - "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFE1dLaDH74qdfcVe+NrAWhI69S5OkTt0Kl0nuw0SdvPAiEA3VVG9Mk5FAY//r4V5Y9annPnv0R898ie0+9NE9Yq0rs=" + } + ] + } + }, + "0.0.2": { + "name": "concat-map", + "version": "0.0.2", + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.1", + "auto-changelog": "^2.4.0", + "eslint": "=8.8.0", + "in-publish": "^2.0.1", + "npmignore": "^0.3.0", + "safe-publish-latest": "^2.0.0", + "tape": "^5.6.1" + }, + "directories": { + "example": "example", + "test": "test" + }, + "dist": { + "integrity": "sha512-xGo3rY/AH8WxqkYSvsNV9yB79sN2oNVOXnmSMYLx28CVFBsXiEFCkcf6WIiWjk5VWKr4/1fV+KG5I4442xE2hg==", + "shasum": "f497c5b65881435aa6860a55eb541f1601f63394", + "tarball": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.2.tgz", + "fileCount": 9, + "unpackedSize": 11454, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDSYCJeKkpso2D9dzzVUCNKXGBTBFEeNcp14t08vPpoAAiEAiJRax4kCtLHSCQEUBYfZXnMoGhKM2QbUHq4TiP8DQmU=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRuwyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqo1g/+MGYt6Aetoj2EK3cpTPdgO+dKXbkaOOCU4amtrp7OG/ViIU0f\r\nEWJBhDrdSbMItq3qfHe6HWCAnkboz4nG2Gosi+bxrYW/KPeEDw18Tjse/DUG\r\nIbv2eib9Wt4gl5eDKn+2+1L6VVDkYyY/ti0jiqR+XX1tG9x/Dpb6h8vzch08\r\nsc/y6IfHElfwiIlq3BGqlrl9lmQ9q/ZHAKjFsFKgHvMCwUuh8dr6KBMPCgL0\r\nI3MSJhxkmS/KWnlgBPfhmgh+OrXBB3X7bujdyoKS3wDQWwjMBzvWDbhQIdg5\r\ne0szmRXaGMgLnCXllkViqEAv0SxeXGP2hsAIeBp9iHpQL3ZOpZQIkeCgoujn\r\nqLo9AltK6yqvQS0ubfJxXYHNQKBIztDXg/gcWGtI4Pc5wUx6EJLVBSPvmCOs\r\nSV2E2JS9lLIxXGye/CYwQFHP43MeK8pd1tU5IeytQsVWyrLuOib/4Ztv6mQG\r\nog7JAvOtNWIXypv+zJlQ8Dy7+lT35YjiwwQd1Sp8m8Edg8r7s6syCTviaicK\r\nHX/1z4AUUdPKWKXSR6sXPN3CwNs4yG+8Z/GHYBMtckhuwByqu2eLXiVIRytc\r\nzj1Ka8G5ZpQhhJiV/prBuUMbU+JfjsH80HgiZUUmBPNmyO9VQTne2D5W7P9x\r\n2tmkXT2B3ZrP10QRkXUK4gqEcnt4/w/GbDI=\r\n=Xgn2\r\n-----END PGP SIGNATURE-----\r\n" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } } }, - "modified": "2014-01-30T03:06:35.982Z" -} + "modified": "2023-06-22T16:31:35.118Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.json b/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.json index e47d160ef75fd..aa1d91676fc90 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.json @@ -1,6 +1,6 @@ { "_id": "fs.realpath", - "_rev": "4-d3017f8ed051ae38fe0d33e4bfbefbfb", + "_rev": "7-7da7f670d6d64e1fadaf3d4f78662b2c", "name": "fs.realpath", "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", "dist-tags": { @@ -52,7 +52,14 @@ }, "dist": { "shasum": "ee31b09e1272a8c6e58714abcacded5bd7cf7c6d", - "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-0.0.0.tgz", + "integrity": "sha512-mQ7DpI54Eq1EtmaGFFZJ38KOMYOjihJV9Cwt+G5ji451VEU2ElaSsX3KmrQb4scwfBKRvGg9uW0A/tPBJY5Q6g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE6SaHY9E2pv9d6iOIeUV2An5SB5FGEWLapyMcFGxAvSAiBOQ/VJuz20k/vshJjqEeAaUPnTFllGhI3OvT/bSsnXWw==" + } + ] }, "maintainers": [ { @@ -111,7 +118,14 @@ }, "dist": { "shasum": "1504ad2523158caa40db4a2787cb01411994ea4f", - "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAYne0uqca6r1qObnwja+Mei2NoRfwQZeId/mz7to93EAiBGlPursDIknfkmCLPo9Kxo6SCxl81JRfeLNZDCtRf4Lg==" + } + ] }, "maintainers": [ { @@ -134,7 +148,7 @@ } ], "time": { - "modified": "2016-11-01T17:25:20.989Z", + "modified": "2023-06-22T16:32:05.628Z", "created": "2016-06-15T18:38:49.471Z", "0.0.0": "2016-06-15T18:38:49.471Z", "1.0.0": "2016-06-15T18:39:05.978Z" @@ -161,7 +175,7 @@ "readmeFilename": "README.md", "users": { "scottfreecode": true, - "mojaray2k": true - }, - "_attachments": {} -} + "mojaray2k": true, + "flumpus-dev": true + } +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.min.json index f55bf54393c0e..080b30d452717 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/fs.realpath.min.json @@ -9,7 +9,14 @@ "version": "0.0.0", "dist": { "shasum": "ee31b09e1272a8c6e58714abcacded5bd7cf7c6d", - "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-0.0.0.tgz" + "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-0.0.0.tgz", + "integrity": "sha512-mQ7DpI54Eq1EtmaGFFZJ38KOMYOjihJV9Cwt+G5ji451VEU2ElaSsX3KmrQb4scwfBKRvGg9uW0A/tPBJY5Q6g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE6SaHY9E2pv9d6iOIeUV2An5SB5FGEWLapyMcFGxAvSAiBOQ/VJuz20k/vshJjqEeAaUPnTFllGhI3OvT/bSsnXWw==" + } + ] } }, "1.0.0": { @@ -17,9 +24,16 @@ "version": "1.0.0", "dist": { "shasum": "1504ad2523158caa40db4a2787cb01411994ea4f", - "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAYne0uqca6r1qObnwja+Mei2NoRfwQZeId/mz7to93EAiBGlPursDIknfkmCLPo9Kxo6SCxl81JRfeLNZDCtRf4Lg==" + } + ] } } }, - "modified": "2016-11-01T17:25:20.989Z" -} + "modified": "2023-06-22T16:32:05.628Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/glob.json b/workspaces/arborist/test/fixtures/registry-mocks/content/glob.json index 9e8981fad9cee..80023a10a85f0 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/glob.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/glob.json @@ -1,63 +1,60 @@ { "_id": "glob", - "_rev": "804-6748dc2c01d50cc06372cddee7fe8001", + "_rev": "876-ec1a269f789db4cc5c05b1386add4885", "name": "glob", - "description": "a little globber", "dist-tags": { - "latest": "7.1.6", - "legacy": "4.5.3" + "legacy": "4.5.3", + "v7-legacy": "7.2.0", + "latest": "11.0.0", + "legacy-v10": "10.4.5" }, "versions": { "1.1.0": { "name": "glob", - "description": "glob/fnmatch binding for node", + "version": "1.1.0", "author": { + "url": "http://blog.izs.me/", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "version": "1.1.0", - "main": "./lib/glob", - "scripts": { - "preinstall": "node-waf configure build" + "email": "i@izs.me" }, "_id": "glob@1.1.0", + "dist": { + "shasum": "b855e0709ddc7d9c5f884acc6155677b437ec135", + "tarball": "https://registry.npmjs.org/glob/-/glob-1.1.0.tgz", + "integrity": "sha512-S1mOxBSA7gMtE6ga3VlXWVz3EpFHRyTJV45G8+/ySCIa2nnSb+5bHu1Du5o7WV22L0z48ApnaQhoPaSPQQoa+w==", + "signatures": [ + { + "sig": "MEYCIQDhbG8XpfbX2G33GeMikMnzdtB2ZIUZyOwrU7YTxbgxNwIhAIWsUqNUGlLrOiBVKmrr9QEisVAyHNeC2/V/wJ75xdDc", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./lib/glob", + "files": [ + "" + ], "engines": { "node": "*" }, - "_engineSupported": true, + "modules": { + "glob.js": "lib/glob.js" + }, + "scripts": { + "preinstall": "node-waf configure build" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", "_npmVersion": "0.2.14-6", - "_nodeVersion": "v0.3.5-pre", + "description": "glob/fnmatch binding for node", "directories": { "lib": "./lib" }, - "modules": { - "glob.js": "lib/glob.js" - }, - "files": [ - "" - ], + "_nodeVersion": "v0.3.5-pre", "_defaultsLoaded": true, - "dist": { - "shasum": "b855e0709ddc7d9c5f884acc6155677b437ec135", - "tarball": "https://registry.npmjs.org/glob/-/glob-1.1.0.tgz" - } + "_engineSupported": true }, - "2.0.9": { + "2.0.7": { "name": "glob", - "description": "glob/fnmatch binding for node", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "version": "2.0.9", - "main": "./lib/glob", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "homepage": "https://github.com/isaacs/node-glob", + "version": "2.0.7", "keywords": [ "glob", "pattern", @@ -66,53 +63,61 @@ "posix", "fnmatch" ], + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "glob@2.0.7", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, + "dist": { + "shasum": "4f2b7b496b7b72e5e680449d1279800b7db82459", + "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.7.tgz", + "integrity": "sha512-N272T/DgFT1wA1kQAEaU290YzR+ql5LkPp82F9iSvn23wY2aysKNPUovsi7q9KFFE2Mere7lKmV6Jv5Q5+Tnyw==", + "signatures": [ + { + "sig": "MEQCIDTNlUR3yjBWwn4uleNvxbqGbUl7HTk+99Qkypei7ntBAiB26sWFHOVoZmjztuPq4/7IjIe+ry41gvnbVX+TS2TCJw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./lib/glob", "engines": { "node": "0.4" }, + "scripts": { + "preinstall": "node-waf clean || true; node-waf configure build" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@2.0.9", - "scripts": { - "preinstall": "node-waf clean || true; node-waf configure build" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "dependencies": {}, - "devDependencies": {}, - "_engineSupported": false, "_npmVersion": "1.0.30", + "description": "glob/fnmatch binding for node", + "directories": {}, "_nodeVersion": "v0.5.8-pre", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "cc550540fed1001d82326e2f16763da4d20071f7", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.9.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {} + "devDependencies": {}, + "_engineSupported": false }, "2.0.8": { "name": "glob", - "description": "glob/fnmatch binding for node", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, "version": "2.0.8", - "main": "./lib/glob", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "homepage": "https://github.com/isaacs/node-glob", "keywords": [ "glob", "pattern", @@ -121,53 +126,61 @@ "posix", "fnmatch" ], + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "glob@2.0.8", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, + "dist": { + "shasum": "5342337c3f194250e1d7625ed6b77b5195a41845", + "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.8.tgz", + "integrity": "sha512-ktU9wpVDv6wWurjgNfv3+yifW5eF45heecJxPe8diTMNTOhWVbMXuthldz0ds7SBAR9cP8yk+FatPwNDzSWDaQ==", + "signatures": [ + { + "sig": "MEQCIE+/BzcsLpPTrUjn01whpIX1Kt4uUPUtL8C2ojLlPJUHAiBwtmhSuUXWf7OZVfDx5x6vNIwpJegQqRWBMCmIufkd1A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./lib/glob", "engines": { "node": "0.4" }, + "scripts": { + "preinstall": "node-waf clean || true; node-waf configure build" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@2.0.8", - "scripts": { - "preinstall": "node-waf clean || true; node-waf configure build" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "dependencies": {}, - "devDependencies": {}, - "_engineSupported": false, "_npmVersion": "1.0.30", + "description": "glob/fnmatch binding for node", + "directories": {}, "_nodeVersion": "v0.5.8-pre", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "5342337c3f194250e1d7625ed6b77b5195a41845", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.8.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {} + "devDependencies": {}, + "_engineSupported": false }, - "2.0.7": { + "2.0.9": { "name": "glob", - "description": "glob/fnmatch binding for node", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "version": "2.0.7", - "main": "./lib/glob", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "homepage": "https://github.com/isaacs/node-glob", + "version": "2.0.9", "keywords": [ "glob", "pattern", @@ -176,53 +189,61 @@ "posix", "fnmatch" ], + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "glob@2.0.9", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, + "dist": { + "shasum": "cc550540fed1001d82326e2f16763da4d20071f7", + "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.9.tgz", + "integrity": "sha512-WQ6OYVKnZi7ww1CbPp+7oiHlrT/yJ7QjslwMY00JEUAJEzTQm01pCX58L7XreOgAC90nrHNihiQRbhDoXHHTCA==", + "signatures": [ + { + "sig": "MEUCIHJY3sJa7WbOmaI2CaLbwyIPtBlxKeU56Zmi5jFfQFfzAiEAsik957SSNrE63oVeY7Oj5ywerSg85Pzk7NOGFm0Hngc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./lib/glob", "engines": { "node": "0.4" }, + "scripts": { + "preinstall": "node-waf clean || true; node-waf configure build" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@2.0.7", - "scripts": { - "preinstall": "node-waf clean || true; node-waf configure build" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "dependencies": {}, - "devDependencies": {}, - "_engineSupported": false, "_npmVersion": "1.0.30", + "description": "glob/fnmatch binding for node", + "directories": {}, "_nodeVersion": "v0.5.8-pre", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "4f2b7b496b7b72e5e680449d1279800b7db82459", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.7.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {} + "devDependencies": {}, + "_engineSupported": false }, "2.1.0": { "name": "glob", - "description": "glob/fnmatch binding for node", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, "version": "2.1.0", - "main": "./lib/glob", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "homepage": "https://github.com/isaacs/node-glob", "keywords": [ "glob", "pattern", @@ -231,66 +252,88 @@ "posix", "fnmatch" ], + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "glob@2.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, + "dist": { + "shasum": "69fd2f3541a4802a2d928270c5caaaa0009552b0", + "tarball": "https://registry.npmjs.org/glob/-/glob-2.1.0.tgz", + "integrity": "sha512-zzNDSGN7VX+a3gQqmg+DgEChyK0SG9W014bPOCO/V0TN0FDrJY37o3fagxhfbbXQAz4jwn6iPRDp/l8yIFB5dg==", + "signatures": [ + { + "sig": "MEUCIQCi/jSmhlEpk65axJLI7J5Q/vFR1qls8GZWqA+WYHKsswIgE7yARQTyaRZWRUnSkcpAr7wrbxkt2CpQDjJ+4Juqrxg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "./lib/glob", "engines": { "node": "0.6" }, + "scripts": { + "preinstall": "node-waf clean || true; node-waf configure build" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@2.1.0", - "scripts": { - "preinstall": "node-waf clean || true; node-waf configure build" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "dependencies": {}, - "devDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.0.105", + "description": "glob/fnmatch binding for node", + "directories": {}, "_nodeVersion": "v0.6.1-pre", + "dependencies": {}, "_defaultsLoaded": true, - "dist": { - "shasum": "69fd2f3541a4802a2d928270c5caaaa0009552b0", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.1.0.tgz" + "devDependencies": {}, + "_engineSupported": true + }, + "3.0.0": { + "name": "glob", + "version": "3.0.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.0.0", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "277715af94dec8c1096a34664bccc11cae0dcd5c", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.0.tgz", + "integrity": "sha512-aWr8sRnhS1mp9hJagBvAXo6EsDL/JdqHtGKJNzYE/wH+PqgKPn3ROwMotnryOSN6nterCSmKM78m4rkD9HR5fQ==", + "signatures": [ + { + "sig": "MEYCIQDVvt5POqAzDpWF4W5lq5ybTae+NNS4qNrKgGyu2bMqGwIhAOGzo0yCvVDXsGHROKm5sI4AnE6bC1oRb5Mj041+WIVY", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "fast-list": "1", - "minimatch": "0.1", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -298,52 +341,60 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.0.0", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.0-2", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.6.8-pre", - "_defaultsLoaded": true, - "dist": { - "shasum": "277715af94dec8c1096a34664bccc11cae0dcd5c", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.0.tgz" + "dependencies": { + "inherits": "1", + "fast-list": "1", + "minimatch": "0.1", + "graceful-fs": "~1.1.2" + }, + "_defaultsLoaded": true, + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.0.1": { + "name": "glob", + "version": "3.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.0.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.0.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "90899b05973a70b1106b38bb260f537ebfac58ce", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.1.tgz", + "integrity": "sha512-tlyiXzgGnZ6CyI4h9NNj3SjJlAQcYlcASZiozVsLw9R3nVciHELg7Y19c7pFi/4saxXRcU748ggBa/e9vgVM4A==", + "signatures": [ + { + "sig": "MEUCICoSjU8KDH4R5O9VrgtuDuKvYJWW7YobIfKpoXddmY4LAiEAwqIhG5Jx0hCbref/ZaO1wVzBo/UmuBLHwogUKnNaHFw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "fast-list": "1", - "minimatch": "0.1", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -351,51 +402,60 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.0.1", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.0-2", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.6.8-pre", + "dependencies": { + "inherits": "1", + "fast-list": "1", + "minimatch": "0.1", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "90899b05973a70b1106b38bb260f537ebfac58ce", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.1.tgz" + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.0": { + "name": "glob", + "version": "3.1.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.1.0", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "0c042fd73dd483e52728e2946f40398f3600a51d", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.0.tgz", + "integrity": "sha512-8A3TQTJML6pS5iSiLw9tnhD3wjWU9ydUk+ZI1/hN8+iTVKCvMEXMIT4Jjc5AiMqCXrqlS8sQMtRyOdSC9cn6og==", + "signatures": [ + { + "sig": "MEUCIQCWN96Y5sQUbDlK/0g+8me3+9f153f4z6BOUtX8hgXuUAIgK/NovHgLlXm0wXcVS1kYAhu7H7frzpNWEbzrPGEhE6Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -403,51 +463,59 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.0", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.1", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.5-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "0c042fd73dd483e52728e2946f40398f3600a51d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.0.tgz" + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.1": { + "name": "glob", + "version": "3.1.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.1.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "e9bf369aacb3c449a55e01906ae7932b806589f9", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.1.tgz", + "integrity": "sha512-GIVdoII4fWZ3PsXtbDCHQ+Km6bvbqNfjBcsWPauwmLFNFQomsrio4T461K73XdbBD0D9DddvI94BF7WaKkESyg==", + "signatures": [ + { + "sig": "MEQCIE8i8RRKIlxqsUbBhKHq989cfh/DZAlRCuEyDjPd7SJeAiAFJxHrXXOXYN+4fQm2E9XhjqxoPQLkg7pl5wWjOeeLcA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -455,51 +523,59 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.1", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.1", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.5-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "e9bf369aacb3c449a55e01906ae7932b806589f9", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.1.tgz" + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.2": { + "name": "glob", + "version": "3.1.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "glob@3.1.2", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "e99bda93662781bbdf334846e075ce257dbf031c", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.2.tgz", + "integrity": "sha512-0rQpNYblqAiwbJkPGSSrh57pzf5C3hZUTnjRlQWvSSiYmktIE/EBYWuyoKL9MenfyxPapScr6bD222hQ80qypQ==", + "signatures": [ + { + "sig": "MEQCIEXzh2oLhEVFEZYWJrAHWs9eh8x5Ps72Ca0ZuTeeJwbtAiBmWnV2iJ0K3sj9LO3z9zM5LvALYfdS6+pTk9ejr4/P+w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -507,51 +583,59 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.2", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.1", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.5-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "e99bda93662781bbdf334846e075ce257dbf031c", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.2.tgz" + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.3": { + "name": "glob", + "version": "3.1.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.1.3", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "03a5bb907b789e24f1aa31ea845a212f8099cf6e", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.3.tgz", + "integrity": "sha512-LIRhlbZbCrdieMdgpYwFKG/r/a8MfhpapJRvyKsBjIEbq7rTRGAQdAMvMXiXF3yBwLR6Y+ZL9GVSo5DlS99zoA==", + "signatures": [ + { + "sig": "MEYCIQDpz+O19TVsCgNqfqsAxqMhBzvmbW5rWuULNjcPfrSLgAIhANPSV/hzG24xoBYg5V+gg6yv9JID4sjXnBGiN9bvPZzi", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -559,51 +643,59 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.3", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.1", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.5-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "03a5bb907b789e24f1aa31ea845a212f8099cf6e", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.3.tgz" + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.4": { + "name": "glob", + "version": "3.1.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.1.4", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "a2f0363e27f4f0add2633c2faf65feb91f8df2cf", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.4.tgz", + "integrity": "sha512-BEV1AZiZO3VRMWOqIm5DyKyZva5yEU0rUeiSXFNMWY9EqhVyCOrvPMDQOC/2G8RUDYiOd+luvF+H/wJYra9yEQ==", + "signatures": [ + { + "sig": "MEUCIEXGOTxgKHFGiLx/jjxJTvCbtsYC8mZGoflIFlL+Yz8xAiEArJ0QcstV+P4Oc3LQr1HLK8vXjNg/1jQxwbiiRF9RsSI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "0.1", - "mkdirp": "0.2", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -611,51 +703,59 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.4", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.1", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.5-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "a2f0363e27f4f0add2633c2faf65feb91f8df2cf", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.4.tgz" + "devDependencies": { + "tap": "0.1", + "mkdirp": "0.2", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.5": { + "name": "glob", + "version": "3.1.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "glob@3.1.5", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "26aa4feb912b1d22a1d83a4309c1a9f82cc5a2e0", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.5.tgz", + "integrity": "sha512-sKAqC3hbMvJhhJEzqiw/5rhLMDlhpla/6VHLZNukzBupU8eATokDQ2rhfHYCWQ4cd8Hcz4M7PMx4vEYfMiTi5Q==", + "signatures": [ + { + "sig": "MEYCIQCQa9xPb1P0Y0vL67YHV7R+RHCzQmGnTyr2Pecm5f9xeQIhAK5MYrpK64xOKq8taHZtdIe9OkZPS34+1Pj6LcOoA16z", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "~0.2.3", - "mkdirp": "0", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -663,51 +763,59 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.5", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.4", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.6-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "26aa4feb912b1d22a1d83a4309c1a9f82cc5a2e0", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.5.tgz" + "devDependencies": { + "tap": "~0.2.3", + "mkdirp": "0", + "rimraf": "1" }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.6": { + "name": "glob", + "version": "3.1.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "glob@3.1.6", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "46280e57c83a7225026a4d46dc2ca55b674d8a34", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.6.tgz", + "integrity": "sha512-MB+HsOM+LLAcTNNQlZalxeanwcZzDlCjYnsaiyjfT+Nj8O8GZVncebnADHOBjhj8vJCnYc8aXpMaDKFzkjTgAQ==", + "signatures": [ + { + "sig": "MEUCIQDiAw2vvRJmyRzUHdue2JZfvtlveZNGrntsbBXlhd06oAIgODnzImLk9qN6KrH0zh90XT4gCuaNY2Hms6/XKtGJ+K8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "~0.2.3", - "mkdirp": "0", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, @@ -715,1364 +823,1550 @@ "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.6", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.4", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.6-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "46280e57c83a7225026a4d46dc2ca55b674d8a34", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.6.tgz" + "devDependencies": { + "tap": "~0.2.3", + "mkdirp": "0", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.7": { + "name": "glob", + "version": "3.1.7", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "BSD", + "_id": "glob@3.1.7", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.7": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.7", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "ded55665aa60fe02cecf876ca57bf5a405e161b8", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.7.tgz", + "integrity": "sha512-kbG7tNPFB08prAnAh0vAX+eHbgJps+svCcCqL8zyw66j/32n1JoQIWZ3OAQXP5bcJY0jXK2UMihzx5xPNLPWGw==", + "signatures": [ + { + "sig": "MEUCIQCBgrlDAsb7xH8VvmIll4T81Lul6RcErab7LzQphlCvjAIgGHIXn7jnbKVETjXrUftJxQEkvkMWikp1rj474V2cXQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "~0.2.3", - "mkdirp": "0", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, - "license": "BSD", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.7", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.9", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.7-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "ded55665aa60fe02cecf876ca57bf5a405e161b8", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.7.tgz" + "devDependencies": { + "tap": "~0.2.3", + "mkdirp": "0", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.9": { + "name": "glob", + "version": "3.1.9", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "BSD", + "_id": "glob@3.1.9", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.9": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.9", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "e2b9003d46b6b7531b3d7b3b8bd6f774138c0b2d", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.9.tgz", + "integrity": "sha512-MBkCJykxz63PRIaaFWLHdxIm7MvrpDPIv1eqAu79yZocbTB9d+abtE2fzlHASgALUu2VYOvO8vKYs4cOKXNeNA==", + "signatures": [ + { + "sig": "MEYCIQDJpSG+vet1ps70log7PKTVAQQZnsi0WHr03XiIc0gb7QIhAOwO3rH/YhVkT00CxMkk8rYQEjDQ21UIkkSXqkHEkUWi", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "~0.2.3", - "mkdirp": "0", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, - "license": "BSD", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "_id": "glob@3.1.9", - "optionalDependencies": {}, - "_engineSupported": true, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, "_npmVersion": "1.1.10", + "description": "a little globber", + "directories": {}, "_nodeVersion": "v0.7.7-pre", + "dependencies": { + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.1.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "e2b9003d46b6b7531b3d7b3b8bd6f774138c0b2d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.9.tgz" + "devDependencies": { + "tap": "~0.2.3", + "mkdirp": "0", + "rimraf": "1" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "3.1.10": { + "name": "glob", + "version": "3.1.10", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "BSD", + "_id": "glob@3.1.10", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.10": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.10", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "a789f184bc83c18b5b2da98c93f3bd4f343b7613", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.10.tgz", + "integrity": "sha512-I/vJvLYikgbzkmxyBRlDy/eobGEjcM81Q7x6OJbcV6B/biHqtA3soQYkfGNpV61J3zkItCC5xTcT08cPMRo3Pw==", + "signatures": [ + { + "sig": "MEYCIQD1nbgvfuxuNfoholVlMdCYvrgPrBRXzoMXVg0AYMoS6wIhALesZdGpomTkcePMMTeMzBl/DOZRdmsSJFr1BIMqW45y", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.11": { + "name": "glob", + "version": "3.1.11", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "_id": "glob@3.1.10", - "dist": { - "shasum": "a789f184bc83c18b5b2da98c93f3bd4f343b7613", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.10.tgz" - }, + "_id": "glob@3.1.11", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.11": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.11", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "c46ec5783444360b6435649712dd047bae3cadef", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.11.tgz", + "integrity": "sha512-KYFNyLhA21SiTB6EsMwGztQ39SZFjCwR5Y6roS41YEUVBvRtmL0fYUYzAvUusdJBY9YqofXsFR0hrgYZK3Lpxg==", + "signatures": [ + { + "sig": "MEUCIQDZ/UEghHaQBUD+NfEB79gv/M0AGMHFaLjqMovzAkPACwIgJUqW/0BoD9Rrdu6oy9vi/43VOw2qGzZgoph3wEGBAK4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.12": { + "name": "glob", + "version": "3.1.12", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "_id": "glob@3.1.11", - "dist": { - "shasum": "c46ec5783444360b6435649712dd047bae3cadef", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.11.tgz" - }, + "_id": "glob@3.1.12", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.12": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.12", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "4b3fd0889a68d9805f47ef4b3c6950e88455dc29", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.12.tgz", + "integrity": "sha512-JV+jZ60eYrTc+eW/lq6vd8+5Ronsnxus4EQ3p/2l+fYULFCzHWpDek6WrbrN3sz3McHgwAZlh8OAuJp06TRpFQ==", + "signatures": [ + { + "sig": "MEQCIDEg5+c9XKjo5pGaJ3ISvdy1H/kM2dQ9tg1t9040gNLKAiAGP2/jAVHiZGKiCS9yqdd5CsiRasVHy01+e7jdy9+s7Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.13": { + "name": "glob", + "version": "3.1.13", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "_id": "glob@3.1.12", - "dist": { - "shasum": "4b3fd0889a68d9805f47ef4b3c6950e88455dc29", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.12.tgz" - }, + "_id": "glob@3.1.13", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.13": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.13", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "ae3763e6070e6bcdabde7ef11bedec66666b6609", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.13.tgz", + "integrity": "sha512-0DIB2Ox2WeF3GzVmK+FzODhrjDnh9IIqKYXE/FprkhfbYorR6YNZ3jis9JoQTRQyU7/sGmlcn+4JryIinpbd8Q==", + "signatures": [ + { + "sig": "MEUCIET5Lw1nLJ9p9vUdpBfWugIPoZvekmKl7IDQgswgkv3lAiEAtiRD31hO878zJuedKFMg2mGjVP9JDvabqPoM6TtGvd4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, - "dependencies": { - "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" - }, - "devDependencies": { - "tap": "~0.3", - "mkdirp": "0", - "rimraf": "1" - }, "scripts": { "test": "tap test/*.js" }, - "license": "BSD", - "_id": "glob@3.1.13", - "dist": { - "shasum": "ae3763e6070e6bcdabde7ef11bedec66666b6609", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.13.tgz" - }, - "_npmVersion": "1.1.62", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {} - }, - "3.1.14": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.14", + "deprecated": "Glob versions prior to v9 are no longer supported", "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "main": "glob.js", - "engines": { - "node": "*" + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "1.1.62", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.3", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.14": { + "name": "glob", + "version": "3.1.14", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.14", - "dist": { - "shasum": "f97a731c41da6695dc83944bbb2177e9a29b363d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.14.tgz" - }, - "_npmVersion": "1.1.63", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.15": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.15", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "f97a731c41da6695dc83944bbb2177e9a29b363d", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.14.tgz", + "integrity": "sha512-vsywJsa3Vtj88VIeLyzrKhjM7djI5ZmlWRjMF9aVVQoSY97pNzmfroi+5oSzvlXHD9Fq7PFMlii/gyQzCXX0DA==", + "signatures": [ + { + "sig": "MEUCIQCpcIQdu6TmScPLPtabVv0Xhixbl/PgbMjg5asIylmyxgIgNfMFlLahsn4l51Nc5zT1bizYvqoIhCwdUTwPKsy+wpc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.1.63", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { - "tap": "~0.4.0", + "tap": "~0.3", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.15": { + "name": "glob", + "version": "3.1.15", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.15", - "dist": { - "shasum": "9a15a57627d92aeca41ae00bea8eac90452de0b1", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.15.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.16": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.16", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "9a15a57627d92aeca41ae00bea8eac90452de0b1", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.15.tgz", + "integrity": "sha512-3LflqnJfTX5dpwn24ZyFRM+Ic0+v0gS2So98lk8/64LkFHZoGXv3rFF1Fl/6blJ1YOmIOKK1tDjjDczo0QSmIg==", + "signatures": [ + { + "sig": "MEUCIQDMyvdLdY0JpuR1mryv3wP8KEdrQtuw2vWPQwW1w9KUwAIgEUA2RznDpQ9O6+k3LxWRlJN8gUMuuQDAVXoxWd/DLeE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.2", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.16": { + "name": "glob", + "version": "3.1.16", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.16", - "dist": { - "shasum": "114e8fcfbdbe863ab694110cdcc1cd9b04ddd01e", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.16.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.17": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.17", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "114e8fcfbdbe863ab694110cdcc1cd9b04ddd01e", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.16.tgz", + "integrity": "sha512-/U5mfimVnaM6FFza1jWPGhWoRXEGnD3+iJ6MEunHNUCgYRtNfmzwFr70FNAf5Lef1vAtoD5MpVOGUja4goaQwQ==", + "signatures": [ + { + "sig": "MEQCIDzNuRjQJ3leNuCLr6LcnFc6z3VHJQCmqpV/3sUzm07BAiBUJ9p5nxyJwYwBY6mfT+sawnAQHqrKPT/W49u2WqSJ1g==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.2", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.17": { + "name": "glob", + "version": "3.1.17", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.17", - "dist": { - "shasum": "7dbe1d6f1e2ef039f6ba681616d39e135892088d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.17.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.18": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.18", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "7dbe1d6f1e2ef039f6ba681616d39e135892088d", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.17.tgz", + "integrity": "sha512-VXWQ8Km+nvO4ZS1U+S7mMJOdTqPgCp9CGQKvZVZKxl6hUYa1zIt/1H/zZu0djw/n0TCfOBqe/SdcJWEZ2z1HiA==", + "signatures": [ + { + "sig": "MEUCIQCB0i3AmqFbx38vkTs1fKFDDD4Maf1cysBJQ8kljdwVYAIgbRev+RlFflMlW8sJk1rLQpDW36cS7SntY7yy2wLqiQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.2", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.18": { + "name": "glob", + "version": "3.1.18", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.18", - "dist": { - "shasum": "276a2d773e3d02ef52a4eca2800913cc02208b25", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.18.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.4", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.19": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.19", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "276a2d773e3d02ef52a4eca2800913cc02208b25", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.18.tgz", + "integrity": "sha512-AmHUiKUr6jZC0rMC1+Qm5IAvYydrSOXb6FPxazs6VSNUNbbvsYJ69WThEFPFN2snLum426Xj9lGPQ/WOx/0kbQ==", + "signatures": [ + { + "sig": "MEUCIQCPZ79vdlwDujr0S2bPx+MGybuMQXQ32509uSq+Uv9N/QIgVMD1uqDCJyaVNuIHEMT9yPdVJMqWGNCV6xdqKxuRUQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.4", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.19": { + "name": "glob", + "version": "3.1.19", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.19", - "dist": { - "shasum": "1fa6031c187d28bf714849bbd75482e9369eb43c", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.19.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.9", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.20": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.20", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "1fa6031c187d28bf714849bbd75482e9369eb43c", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.19.tgz", + "integrity": "sha512-9Kn6Il8I6d90mAglajiLH6ZHhEfQTRR0rW1bq5q6FwrMTrp27IjbIper3xyg8Gt8QpFZPUi2jSL7LrQ/WgM2/A==", + "signatures": [ + { + "sig": "MEQCIGepaUpPwMlAMQFp38tK6Sf+Nxz3o660wDA+brlsNwATAiBcanFSe+YcUfr3J2Rc5fMgm12B27nn5w3YJMfTV6wi/A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.9", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.20": { + "name": "glob", + "version": "3.1.20", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.20", - "dist": { - "shasum": "4de526bcbf870dcf98269ad2afe81055faf21b60", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.20.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.10", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.1.21": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.1.21", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "4de526bcbf870dcf98269ad2afe81055faf21b60", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.20.tgz", + "integrity": "sha512-8lxuO3JIMG6B6OH7tkg8iFj0bBwKOH90lpbxXPTfQPqanRQhxWusmtJDWa2MumOuEStU/QvNErZiCGUlJyvzUA==", + "signatures": [ + { + "sig": "MEYCIQDsWyfliQUdDJ5jGsLfZHs0BwmftMNn6ykV05TuKmV3nQIhALUjBPMoRX3P29SMfkotCTYdC7U21B0HEI0W0Ih2qrkb", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.10", + "description": "a little globber", + "directories": {}, "dependencies": { - "minimatch": "~0.2.11", - "graceful-fs": "~1.2.0", - "inherits": "1" + "inherits": "1", + "minimatch": "0.2", + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.1.21": { + "name": "glob", + "version": "3.1.21", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.1.21", - "dist": { - "shasum": "d29e0a055dea5138f4d07ed40e8982e83c2066cd", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.12", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.2.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "d29e0a055dea5138f4d07ed40e8982e83c2066cd", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "integrity": "sha512-ANhy2V2+tFpRajE3wN4DhkNQ08KDr0Ir1qL12/cUe5+a7STEK8jkW4onUYuY8/06qAFuT5je7mjAqzx0eKI2tQ==", + "signatures": [ + { + "sig": "MEQCICeDOAZNEGLIpKWnRhHQgGht5EMOxWDbGsrGmAMwL1JTAiBRWPp28lRU59u3AP/hNzaj0rOsO5u5tPm4xAY0VdGu9w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.12", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "~0.2.11", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.0": { + "name": "glob", + "version": "3.2.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.2.0", - "dist": { - "shasum": "ddec9ac2c56e116f4c340657e2bfe5d7b78b53a3", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.0.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.18", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.2.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "ddec9ac2c56e116f4c340657e2bfe5d7b78b53a3", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.0.tgz", + "integrity": "sha512-q5Cw8XhvFSIQhXlwhVNtSmh7YLc8MipQlDPqQInjJtbX2x4EWDrHRqO0wHvz3r/qzhbdhvyxn7/uv9HzBDuWgg==", + "signatures": [ + { + "sig": "MEUCICIZ6uq7+j3FYZ0U5eFn+sr6RV+cw5qdbqwmu4bzWrBDAiEA6VjmHKi2Z3S4j+OlvPoqkYsdKdUNBt4r46hckmTs95c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.18", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "~0.2.11", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.1": { + "name": "glob", + "version": "3.2.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", "_id": "glob@3.2.1", - "dist": { - "shasum": "57af70ec73ba2323bfe3f29a067765db64c5d758", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.1.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.18", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.2.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "57af70ec73ba2323bfe3f29a067765db64c5d758", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.1.tgz", + "integrity": "sha512-wvxQZUqjkvW//FJMr/DCmPlAOFcrmf2ojnUddQTdgAQ5XkKL8ILfob0Rz+Ch/fSiols6EtiHRJS3i9W0kBRZmQ==", + "signatures": [ + { + "sig": "MEYCIQCCySm2RkJszkH0TPcPcN6KzpgUFpGpY9EduKUGarTrfgIhAPt5BiHa5vlAQWRNlCQq4Xxx3d0xw/cfZC9xqT6fMaSq", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.2.18", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "1", "minimatch": "~0.2.11", - "graceful-fs": "~2.0.0", - "inherits": "2" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.3": { + "name": "glob", + "version": "3.2.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, "_id": "glob@3.2.3", - "dist": { - "shasum": "e313eeb249c7affaa5c475286b0e115b59839467", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "e313eeb249c7affaa5c475286b0e115b59839467", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz", + "integrity": "sha512-WPaLsMHD1lYEqAmIQI6VOJSPwuBdGShDWnj1yUo0vQqEO809R8W3LM9OVU13CnnDhyv/EiNwOtxEW74SmrzS6w==", + "signatures": [ + { + "sig": "MEUCIF1LpLjHYJv0455MHm3umPltcWELOfzLjbOeEns7rAjWAiEAr+fDRdE4uwQtBtKxKNgGyZk1FgNfDU686P/n/gUWUZs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.3.2", + "description": "a little globber", + "directories": {}, "dependencies": { + "inherits": "2", "minimatch": "~0.2.11", - "inherits": "2" + "graceful-fs": "~2.0.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.4": { + "name": "glob", + "version": "3.2.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, "_id": "glob@3.2.4", - "dist": { - "shasum": "673c00d7a5a80aa6b5e4eb16101f057e111f4122", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.4.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.4", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "673c00d7a5a80aa6b5e4eb16101f057e111f4122", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.4.tgz", + "integrity": "sha512-DV+VSW1KUXbEYDdTKfG9sUlO7aorZiE+b16EeMYyIStARRp+Bdd2rdJSmt6Q9+mTaT3EmQNt1m1QOeScv/cnzA==", + "signatures": [ + { + "sig": "MEQCIHVBSjD87pUEWgpOmzU+j60zlrUgh3UD1IHxyEDWshRiAiBxNHMXn8UCUZK95HZeVXEMXDY1eNwqN3qa6vYwHcl/fg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.3.4", + "description": "a little globber", + "directories": {}, "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.5": { + "name": "glob", + "version": "3.2.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, "_id": "glob@3.2.5", - "dist": { - "shasum": "341c68efc0d99c1d8d90746d7b57c8de38700d77", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.5.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.4", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "341c68efc0d99c1d8d90746d7b57c8de38700d77", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.5.tgz", + "integrity": "sha512-Y6Wjf7c0XK2mEi+QUSvsRXlYc58MNCDfjy1/ubhkUxdqeqX+BVNPZtIGLw3NqBInagDyIss9C0+SRaTP8o28Pw==", + "signatures": [ + { + "sig": "MEUCIGfuHCa4Y18PWga6AFKxN6fdDx1h05XEbqu92T3LSEECAiEAiueYEwcsWOvPPuoljny0fiozdKF3dWgev4ymQSM5Mqw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.3.4", + "description": "a little globber", + "directories": {}, "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.6": { + "name": "glob", + "version": "3.2.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, "_id": "glob@3.2.6", - "dist": { - "shasum": "28c805b47bc6c19ba3059cbdf079b98ff62442f2", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.6.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.4", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.7": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.7", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "28c805b47bc6c19ba3059cbdf079b98ff62442f2", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.6.tgz", + "integrity": "sha512-1WeSYiNFQBMbt705fYMJQWTJPkPlCD9pEPDScTUrS1uQI5gvhgoyhedTObUVNZ1X98LDLwAGFKoi9jgIPNByZQ==", + "signatures": [ + { + "sig": "MEUCIQDiN6oLvnCivEGclbTz550xAzGd03h2SO4mKJApsS7qHAIgQ9q8jr5U9Ag8jsY1h5OXFQM5oHCCxFCtYsj/2F3nbRQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.3.4", + "description": "a little globber", + "directories": {}, "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.7": { + "name": "glob", + "version": "3.2.7", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@3.2.7", - "dist": { - "shasum": "275f39a0eee805694790924f36eac38e1db6d802", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.7.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.14", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.8": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.8", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "275f39a0eee805694790924f36eac38e1db6d802", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.7.tgz", + "integrity": "sha512-DaADhstzS42quruVnBdaZUrbSv3I+8K+7QQ5WrKQ1oFcBYJR9iuDNoz4MVxJlOhL4b8ETTAFZA6x755SiaUx2A==", + "signatures": [ + { + "sig": "MEQCIHSeThP3D7/5v7vpGOSZZUA/y9tF5lgUQynwIsJnMwNsAiA+5VkTzeUjRHEeyogiGRkZzVVrRrQv29UNk/iPNmxMWA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.3.14", + "description": "a little globber", + "directories": {}, "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js" + } + }, + "3.2.8": { + "name": "glob", + "version": "3.2.8", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@3.2.8", - "dist": { - "shasum": "5506f4311721bcc618c7d8dba144188750307073", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.8.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.23", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.9": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.9", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "5506f4311721bcc618c7d8dba144188750307073", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.8.tgz", + "integrity": "sha512-Y3icmja4O+RjRYHMc97ggBZOljMWzBFGEOk96IXbNGRbQEZrz15HAcqe89t9WUcmcDdVVNAK5ar2lTpL+SutNA==", + "signatures": [ + { + "sig": "MEYCIQDCu9dRWiJSPeLyQEN+41uBFLGO+MOdu7X8O3boALX18QIhAO/hFsT80EDnI7B6jTdKHWybbMGb6Ce3BZ3hHFXhgXdO", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.3.23", + "description": "a little globber", + "directories": {}, "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + } + }, + "3.2.9": { + "name": "glob", + "version": "3.2.9", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@3.2.9", - "dist": { - "shasum": "56af2289aa43d07d7702666480373eb814d91d40", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.9.tgz" - }, - "_from": ".", - "_npmVersion": "1.4.4", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "3.2.10": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "3.2.10", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "56af2289aa43d07d7702666480373eb814d91d40", + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.9.tgz", + "integrity": "sha512-xWlmQw1Sy45ZED7rN0t2h6HhtnlGU2ADbIsi8QyK9qtHOseaTYokI8EZA6AQm2pVZKYw4MzvTocrhHCdx1VM4A==", + "signatures": [ + { + "sig": "MEYCIQDsHexEE9EyGzfX0igCmB6Z1nitmIZtuEYUZk/Y++x9QQIhAOo0EngBmpridTh2kFXU8ApTUJNF9cjgtF2KgUB9SH6p", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.4.4", + "description": "a little globber", + "directories": {}, "dependencies": { "inherits": "2", - "minimatch": "^0.3.0" + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + } + }, + "3.2.10": { + "name": "glob", + "version": "3.2.10", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "gitHead": "4e00805b5529af626bf0512d6810c27a96ca2a12", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@3.2.10", - "_shasum": "e229a4d843fdabca3dd8cdc96c456e29c6e79f13", - "_from": ".", - "_npmVersion": "1.4.10", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "e229a4d843fdabca3dd8cdc96c456e29c6e79f13", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.10.tgz" - }, - "directories": {} - }, - "3.2.11": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "3.2.11", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.10.tgz", + "integrity": "sha512-HfZfJ+uJi2+VAzo7xgUwIHB2jhq+Iqm1NkwSJgUxDh9cTFHP3WBNV2/sMQM2tyaBsE+NrPLKfLQLbEOLjfh7nQ==", + "signatures": [ + { + "sig": "MEYCIQDBe7e5uRCR78lHqUH5ga0UXOligk9DCho+GBte/cH3tAIhAKpnYvikQFeX1vEXPASKUkVywNNMHDPeqkCJSInM66ag", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "e229a4d843fdabca3dd8cdc96c456e29c6e79f13", "engines": { "node": "*" }, + "gitHead": "4e00805b5529af626bf0512d6810c27a96ca2a12", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.4.10", + "description": "a little globber", + "directories": {}, "dependencies": { "inherits": "2", - "minimatch": "0.3" + "minimatch": "^0.3.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + } + }, + "3.2.11": { + "name": "glob", + "version": "3.2.11", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "gitHead": "73f57e99510582b2024b762305970ebcf9b70aa2", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@3.2.11", - "_shasum": "4a973f635b9190f715d10987d5c00fd2815ebe3d", - "_from": ".", - "_npmVersion": "1.4.10", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "4a973f635b9190f715d10987d5c00fd2815ebe3d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz" - }, - "directories": {} - }, - "4.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", + "integrity": "sha512-hVb0zwEZwC1FXSKRPFTeOtN7AArJcJlI6ULGLtrstaswKNlrTJqAA+1lYlSUop4vjA423xlBzqfVS3iWGlqJ+g==", + "signatures": [ + { + "sig": "MEYCIQDgFq9ZHt+tWhoxIJ/CCGyItkNuOS4Xd0fYAQmb7DW+2QIhANpaywYGTVZfJtRxzh9cpwXsVxsq1iVW6j6Ck4DeZqKp", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "4a973f635b9190f715d10987d5c00fd2815ebe3d", "engines": { "node": "*" }, - "dependencies": { - "inherits": "2", - "minimatch": "^0.3.0" - }, - "devDependencies": { - "tap": "~0.4.0", - "mkdirp": "0", - "rimraf": "1" - }, + "gitHead": "73f57e99510582b2024b762305970ebcf9b70aa2", "scripts": { "test": "tap test/*.js", "test-regen": "TEST_REGEN=1 node test/00-setup.js" }, - "license": "BSD", - "gitHead": "865070485630b8f13c632bb6352a2a425011cd2f", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.0.0", - "_shasum": "63305c37caaef9d977da9a5d2250bf7f56a07c1d", - "_from": ".", - "_npmVersion": "1.4.10", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "dist": { - "shasum": "63305c37caaef9d977da9a5d2250bf7f56a07c1d", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.0.tgz" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.4.10", + "description": "a little globber", + "directories": {}, + "dependencies": { + "inherits": "2", + "minimatch": "0.3" }, - "directories": {} + "devDependencies": { + "tap": "~0.4.0", + "mkdirp": "0", + "rimraf": "1" + } }, - "4.0.1": { + "4.0.0": { + "name": "glob", + "version": "4.0.0", "author": { + "url": "http://blog.izs.me/", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "email": "i@izs.me" }, - "name": "glob", - "description": "a little globber", - "version": "4.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "license": "BSD", + "_id": "glob@4.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "dist": { + "shasum": "63305c37caaef9d977da9a5d2250bf7f56a07c1d", + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.0.tgz", + "integrity": "sha512-jMkTc4c1YF7AQtBWIoC/fCQ+HxwLeuJOd8eczAA016MKtUpGiHRscw1/Dnq4rA6Zb+XVOfKLF9FiDIs4Q5c8Hg==", + "signatures": [ + { + "sig": "MEYCIQC2RvPvAtTR2wr01THzzUhTL2WCLf0yQQg/6crGIkxnPgIhAOrT4G8x3lg1wMnO6gssQv8FPk44OzJFtEtgRQBRJFUB", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "63305c37caaef9d977da9a5d2250bf7f56a07c1d", "engines": { "node": "*" }, + "gitHead": "865070485630b8f13c632bb6352a2a425011cd2f", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.4.10", + "description": "a little globber", + "directories": {}, "dependencies": { "inherits": "2", "minimatch": "^0.3.0" @@ -2081,179 +2375,195 @@ "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + } + }, + "4.0.1": { + "name": "glob", + "version": "4.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "gitHead": "0cb424c09289d2299722af9439b395fdef9a31ec", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.0.1", - "_shasum": "3fd646db1447a38535e16e39aaba65d08bc59140", - "_from": ".", - "_npmVersion": "1.4.13", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "3fd646db1447a38535e16e39aaba65d08bc59140", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.1.tgz" - }, - "directories": {} - }, - "4.0.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.0.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.1.tgz", + "integrity": "sha512-iF/6qmH+6jI4fV6g5dTpPCrbQmfazhzvrDaeVnxDtICZbyuimmCfTFLvg1XrcinUOUzEmBT5VNmZQ8ERs8Kfaw==", + "signatures": [ + { + "sig": "MEUCIAb7eusHI4+fMkxBnxlXt6FEGeaXgoXsY4NHufFCl8CIAiEArkr76QnuXwM8qv3xIWH7mjvKz7pXcNc4uTQA67WVNwM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "3fd646db1447a38535e16e39aaba65d08bc59140", "engines": { "node": "*" }, + "gitHead": "0cb424c09289d2299722af9439b395fdef9a31ec", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.4.13", + "description": "a little globber", + "directories": {}, "dependencies": { "inherits": "2", - "minimatch": "^0.3.0", - "once": "^1.3.0" + "minimatch": "^0.3.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + } + }, + "4.0.2": { + "name": "glob", + "version": "4.0.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "gitHead": "4e85a5bcb2f28f82fa9836b6b2baba8af8e31e96", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.0.2", - "_shasum": "d57dbdf54984dd7635c8247d1f2ebde2e81f4ee1", - "_from": ".", - "_npmVersion": "1.4.13", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "d57dbdf54984dd7635c8247d1f2ebde2e81f4ee1", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.2.tgz" - }, - "directories": {} - }, - "4.0.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.0.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.2.tgz", + "integrity": "sha512-GryVXE7tNRPfkQFZsdPJDKNwY2pCBktJinUrvSWRRI/1GS8tqhPFbL+P03rT0A27r7BdVh9ZIOqic6Flb1+6qg==", + "signatures": [ + { + "sig": "MEQCIGO5DKlTJ2UBsCsFa9GBAldr3yiqWxQyPJ3ge5zVb9/5AiBKKeTMO0EOpo6m2aYd88TKEWAsTc44SVYKcgju5Xubtw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "d57dbdf54984dd7635c8247d1f2ebde2e81f4ee1", "engines": { "node": "*" }, - "optionalDependencies": { - "graceful-fs": "^3.0.2" + "gitHead": "4e85a5bcb2f28f82fa9836b6b2baba8af8e31e96", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "1.4.13", + "description": "a little globber", + "directories": {}, "dependencies": { - "inherits": "2", - "minimatch": "^0.3.0", "once": "^1.3.0", - "graceful-fs": "^3.0.2" + "inherits": "2", + "minimatch": "^0.3.0" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" - }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + } + }, + "4.0.3": { + "name": "glob", + "version": "4.0.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "gitHead": "3e6881cb2c584f540c814476629b5bbdfccf36f2", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.0.3", - "_shasum": "cb30c860359801cb7d56436976888fc4a09a35db", - "_from": ".", - "_npmVersion": "1.5.0-pre", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "cb30c860359801cb7d56436976888fc4a09a35db", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.3.tgz" - }, - "directories": {} - }, - "4.0.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.3.tgz", + "integrity": "sha512-SVDFlCGAi+bcuxrBgZD+DP0eM3B59SFqPCGWEtuJbZLrde/rBmKv19k9qxiUJpERPP1Bse9FqU/+f00hLDUmgQ==", + "signatures": [ + { + "sig": "MEUCIQCHBlq2jgHSukSsAlFvBE706QfTuiznhZv/OZUX+Xlx2QIgMwpQJRgsfL0u0QxJ9u4p7NFbJx2mgnlMDZMpN4yr0ng=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "cb30c860359801cb7d56436976888fc4a09a35db", "engines": { "node": "*" }, - "optionalDependencies": { - "graceful-fs": "^3.0.2" + "gitHead": "3e6881cb2c584f540c814476629b5bbdfccf36f2", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "1.5.0-pre", + "description": "a little globber", + "directories": {}, "dependencies": { + "once": "^1.3.0", "inherits": "2", "minimatch": "^0.3.0", - "once": "^1.3.0", "graceful-fs": "^3.0.2" }, "devDependencies": { @@ -2261,60 +2571,68 @@ "mkdirp": "0", "rimraf": "1" }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + "optionalDependencies": { + "graceful-fs": "^3.0.2" + } + }, + "4.0.4": { + "name": "glob", + "version": "4.0.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "BSD", - "gitHead": "b7c1296f7fad4eac9fa560058cb6f737ef99d267", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.0.4", - "_shasum": "730ce0190d87eca7812398018e21be712b4d69d2", - "_from": ".", - "_npmVersion": "1.5.0-alpha-1", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "730ce0190d87eca7812398018e21be712b4d69d2", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.4.tgz" - }, - "directories": {} - }, - "4.0.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.0.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.4.tgz", + "integrity": "sha512-sIM2I1HwSPRPjneCCsQpBdH6UDxXdp8pnMApvo/ixRK85N/HroyYlbE1bH6pZEY/x2rFlkeIEuDK+KACkXvRTg==", + "signatures": [ + { + "sig": "MEUCIFbzR4ZxzURmk2EchSfz7lrAAluLz9vk3VNPKzPPKrRHAiEAsA8KSblhfNb4MMy5mb+yjQRFSzm3yzcB41U2Fm67m84=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "730ce0190d87eca7812398018e21be712b4d69d2", "engines": { "node": "*" }, - "optionalDependencies": { - "graceful-fs": "^3.0.2" + "gitHead": "b7c1296f7fad4eac9fa560058cb6f737ef99d267", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "1.5.0-alpha-1", + "description": "a little globber", + "directories": {}, "dependencies": { - "inherits": "2", - "minimatch": "^1.0.0", "once": "^1.3.0", + "inherits": "2", + "minimatch": "^0.3.0", "graceful-fs": "^3.0.2" }, "devDependencies": { @@ -2322,3579 +2640,3957 @@ "mkdirp": "0", "rimraf": "1" }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + "optionalDependencies": { + "graceful-fs": "^3.0.2" + } + }, + "4.0.5": { + "name": "glob", + "version": "4.0.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "a7d85acf4e89fa26d17396ab022ef98fbe1f8a4b", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.0.5", - "_shasum": "95e42c9efdb3ab1f4788fd7793dfded4a3378063", - "_from": ".", - "_npmVersion": "1.4.21", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "95e42c9efdb3ab1f4788fd7793dfded4a3378063", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.5.tgz" - }, - "directories": {} - }, - "4.0.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.0.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.5.tgz", + "integrity": "sha512-jHngryFt8ytHGnMrhN8EiDRoc+xptXEDIOpiw08VO7mfe/iSav0fYlNSTacfQ2Hsm63ztxXabyL8xK+OrwdH8g==", + "signatures": [ + { + "sig": "MEUCIEsft21Au+xOYJQixX8bSv3g/WHuFBRjoppoVMbreqXxAiEA2DtwYfOqPpHZ+P8JQ/2maM6iVugAgp6qNZLhT2NlxIQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "95e42c9efdb3ab1f4788fd7793dfded4a3378063", "engines": { "node": "*" }, + "gitHead": "a7d85acf4e89fa26d17396ab022ef98fbe1f8a4b", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "1.4.21", + "description": "a little globber", + "directories": {}, "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { "tap": "~0.4.0", "mkdirp": "0", "rimraf": "1" }, - "scripts": { - "test": "tap test/*.js", - "test-regen": "TEST_REGEN=1 node test/00-setup.js" + "optionalDependencies": { + "graceful-fs": "^3.0.2" + } + }, + "4.0.6": { + "name": "glob", + "version": "4.0.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "6825c425e738eaffa315d8cdb1a4c3255ededcb3", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.0.6", - "_shasum": "695c50bdd4e2fb5c5d370b091f388d3707e291a7", - "_from": ".", - "_npmVersion": "2.0.0", - "_nodeVersion": "0.10.31", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "695c50bdd4e2fb5c5d370b091f388d3707e291a7", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz" - }, - "directories": {} - }, - "4.1.2-beta": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.1.2-beta", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz", + "integrity": "sha512-D0H1thJnOVgI0zRV3H/Vmb9HWmDgGTTR7PeT8Lk0ri2kMmfK3oKQBolfqJuRpBVpTx5Q5PKGl9hdQEQNTXJI7Q==", + "signatures": [ + { + "sig": "MEQCIAn2vmj4VIvvjLSQOnEA6zusvw6v1nyABdesJ3ikk8idAiA9zsR39hUvB7K3RsiPt0dBnLRfZzrJKRP8lxkK9OSChg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "695c50bdd4e2fb5c5d370b091f388d3707e291a7", "engines": { "node": "*" }, + "gitHead": "6825c425e738eaffa315d8cdb1a4c3255ededcb3", + "scripts": { + "test": "tap test/*.js", + "test-regen": "TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.0.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.31", "dependencies": { - "graceful-fs": "^3.0.2", - "inflight": "^1.0.4", + "once": "^1.3.0", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "mkdirp": "0", + "rimraf": "1" + } + }, + "4.1.2-beta": { + "name": "glob", + "version": "4.1.2-beta", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "ce51a67847ad69a8272ccc2d73c72a1135b90d8d", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.1.2-beta", - "_shasum": "e75800b358138fb78d7b664bbe690d2a0dc5f26b", - "_from": ".", - "_npmVersion": "2.1.9", - "_nodeVersion": "0.10.31", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "e75800b358138fb78d7b664bbe690d2a0dc5f26b", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2-beta.tgz" - }, - "directories": {} - }, - "4.1.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.1.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2-beta.tgz", + "integrity": "sha512-R6kzyQH2jSS3Xv19BCmAddEws9P3OEz8La5THa5PKsLDmcFVVBE1qYoSiRbktULBD3Z/X5xT15MxOcMDvsrATA==", + "signatures": [ + { + "sig": "MEQCIFURzyUL+FXAZszmK0t7IBCpWYlU/chU8Jogbc48Lq/DAiByp5K3pV/gVrPLY8SlwaibIEta6DBBOiPkOII8PtY5sQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", + "_shasum": "e75800b358138fb78d7b664bbe690d2a0dc5f26b", "engines": { "node": "*" }, + "gitHead": "ce51a67847ad69a8272ccc2d73c72a1135b90d8d", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "rm -f v8.log profile.txt; tap test/*.js", + "bench": "bash benchmark.sh", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.31", "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.1.2": { + "name": "glob", + "version": "4.1.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "f9076fd1b1b2386adf32316ddbbe03f13d240066", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.1.2", - "_shasum": "02f574bfc533ae4c18776014a5070dced4ff25b8", - "_from": ".", - "_npmVersion": "2.1.9", - "_nodeVersion": "0.10.31", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "02f574bfc533ae4c18776014a5070dced4ff25b8", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2.tgz" - }, - "directories": {} - }, - "4.1.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.1.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2.tgz", + "integrity": "sha512-tudBXF7rK+njEkAo73NtDmqQlmnTtX6BilNqAcdUeMoz+/hbjEbCcToYnEFrtJeaUoh086of4hHpE24MsqaPWA==", + "signatures": [ + { + "sig": "MEQCIFzXBadxBGOPu4sZBvRGd/aocrzaEFn3wXHA6WTyiXqHAiAZTHRzexdJD5hYgd7Zv82UuFzznJlTOYyQ/uMXf5rzaA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", - "engines": { + "_from": ".", + "_shasum": "02f574bfc533ae4c18776014a5070dced4ff25b8", + "engines": { "node": "*" }, + "gitHead": "f9076fd1b1b2386adf32316ddbbe03f13d240066", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "rm -f v8.log profile.txt; tap test/*.js", + "bench": "bash benchmark.sh", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.31", "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.1.3": { + "name": "glob", + "version": "4.1.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "260522a60eb5f82802ac3a0c6e56af252f95c10a", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.1.3", - "_shasum": "80a6e1cec932cbea7e7188615328327b44ec308d", - "_from": ".", - "_npmVersion": "2.1.9", - "_nodeVersion": "0.10.31", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "80a6e1cec932cbea7e7188615328327b44ec308d", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.3.tgz" - }, - "directories": {} - }, - "4.1.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.1.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.3.tgz", + "integrity": "sha512-6p/fA1A6H44+b2iApug7V4EEat3l4PA9+1N0Ri5X/lcs7sNoUc31T4z0M9a64gQbpuJvWJv5TwQOEXO18UvU8g==", + "signatures": [ + { + "sig": "MEYCIQCFKW88IWMnzrdkh5NlYBeSSfXC7tpuvqSW5l5LdVbYAQIhAM+8Dpvo9kkwoFdvwtgmqC3iWWWurVTF1SOIHDeXeS2b", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", - "files": [ - "glob.js", - "sync.js", - "common.js" - ], + "_from": ".", + "_shasum": "80a6e1cec932cbea7e7188615328327b44ec308d", "engines": { "node": "*" }, + "gitHead": "260522a60eb5f82802ac3a0c6e56af252f95c10a", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "rm -f v8.log profile.txt; tap test/*.js", + "bench": "bash benchmark.sh", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.31", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.1.4": { + "name": "glob", + "version": "4.1.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "bca4480f8c591956e3875c7ac822a86abcbf18f6", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.1.4", - "_shasum": "2277e1ae742f5ca669aaf4d29d40a71f52447a2f", - "_from": ".", - "_npmVersion": "2.1.9", - "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "2277e1ae742f5ca669aaf4d29d40a71f52447a2f", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.4.tgz" - }, - "directories": {} - }, - "4.1.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.1.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.4.tgz", + "integrity": "sha512-HKVoNSHkHtFw03zFXPvZSkuydqDar5sploDmvzIIX6qvrvADol0KRSwuvN7zVGEhxWygMKR/pWZM0vLXh/Mhvw==", + "signatures": [ + { + "sig": "MEQCIH9qikhhVTXxqx35VZkGYdRtdgGti2A3wO8ci82HBw+pAiBu879WUiwKEIiDN9jHjrJ+OJnrw5kqaijf4KBajAPCVQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "2277e1ae742f5ca669aaf4d29d40a71f52447a2f", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "bca4480f8c591956e3875c7ac822a86abcbf18f6", "scripts": { - "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "c99255fb295b83ac81f0623342bcb921c5c139b4", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.1.5", - "_shasum": "d0bbc943d7fa0409a3450c9f9d6a5d6c4bbb1946", - "_from": ".", "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^1.0.0" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.1.5": { + "name": "glob", + "version": "4.1.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.1.5", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "d0bbc943d7fa0409a3450c9f9d6a5d6c4bbb1946", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.5.tgz" - }, - "directories": {} - }, - "4.1.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.1.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.5.tgz", + "integrity": "sha512-kmxcBusd45xlyDnvDE9dOfEeQwPXDabZ/vi37djZcYRbV7ayy9DZWzujc2xO9OIVT5CkSaug+n/WixAPM0MB4w==", + "signatures": [ + { + "sig": "MEYCIQCHvwAtayFBotLue4kPptCkOKiQv3GnoQw+C7eUgdJbnwIhAL8qFiRM5qEJaCuvYhP/W2+Edr5jtUVPDb3QCTbAruKA", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "d0bbc943d7fa0409a3450c9f9d6a5d6c4bbb1946", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "c99255fb295b83ac81f0623342bcb921c5c139b4", "scripts": { - "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "e982bbb102583895212266eb153225170f3bdeb9", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.1.6", - "_shasum": "1fc61e950d2bcf99f89db2982c4c1236d320c465", - "_from": ".", "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^1.0.0" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.1.6": { + "name": "glob", + "version": "4.1.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.1.6", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "1fc61e950d2bcf99f89db2982c4c1236d320c465", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.6.tgz" - }, - "directories": {} - }, - "4.2.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.2.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.6.tgz", + "integrity": "sha512-rRWexDVOn4kMYAAi6uVXSdgEXc3H+baohJyI3cJ/MCyIZA7edkc+jv75pWlG1bo3XdG3Ph6PCB9BzQupFEhTxA==", + "signatures": [ + { + "sig": "MEQCIFLodX/N4+c+UlfLqJlHKOytJkMVWvnXey94tqeZtYKOAiAggEkFqYor0p+sXOygD0oltsfPjoTy3wKVzFWa2wVTCw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "1fc61e950d2bcf99f89db2982c4c1236d320c465", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "e982bbb102583895212266eb153225170f3bdeb9", "scripts": { - "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "d47ef887ac89464332da4eea2f1ad29dfa4618eb", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.2.0", - "_shasum": "6fdc41c7d23b5028055ecf899229587635b9b689", - "_from": ".", "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^1.0.0" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.2.0": { + "name": "glob", + "version": "4.2.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.2.0", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "6fdc41c7d23b5028055ecf899229587635b9b689", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.0.tgz" - }, - "directories": {} - }, - "4.2.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.2.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.0.tgz", + "integrity": "sha512-L7c9MXogV5Vy0tnAZzm+C+RcxI6W1zW1SFk3pOkd7cpfGQkMEMwRq5FHOTFMoa7WnDGiUQJLcZi+WnZdi3IIeg==", + "signatures": [ + { + "sig": "MEUCIQDWFh127MnD3qCLug7W4ZRZnloPfFPMIH2GGnXBJ4ulewIgBq4/bqFiBUPYY+CB+NPN/ELud3ZOIqF/R1h9EzHp00Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "6fdc41c7d23b5028055ecf899229587635b9b689", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "d47ef887ac89464332da4eea2f1ad29dfa4618eb", "scripts": { - "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "c5313b5e3a5f5227617b40d8914a41d5dfc8c095", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.2.1", - "_shasum": "aa04f06cca652ec724bc16c54cbdd42027d5c9f1", - "_from": ".", "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^1.0.0" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.2.1": { + "name": "glob", + "version": "4.2.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.2.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "aa04f06cca652ec724bc16c54cbdd42027d5c9f1", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.1.tgz" - }, - "directories": {} - }, - "4.2.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.2.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.1.tgz", + "integrity": "sha512-egpQ4Kuo19cNpTLipVw5fh8UMJLHewMX34gHP3E2qAJ13VeP2jzZpg4uoaUYC9sTP6mLwmQDt/5VSvLwhzuGLA==", + "signatures": [ + { + "sig": "MEUCIQDssiDz8YiGm6EBd5jmvVJ978+m1y74PdTv9T7ru1hERwIgfaiOL8ya8VuJzEpiYhNFNW7ClyOvoNuL1DjsclXSqJc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "aa04f06cca652ec724bc16c54cbdd42027d5c9f1", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "c5313b5e3a5f5227617b40d8914a41d5dfc8c095", "scripts": { - "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "d7625eea7c09602b36a1fb5fe08404ec86917578", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.2.2", - "_shasum": "ad2b047653a58c387e15deb43a19497f83fd2a80", - "_from": ".", "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^1.0.0" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.2.2": { + "name": "glob", + "version": "4.2.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.2.2", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "ad2b047653a58c387e15deb43a19497f83fd2a80", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.2.tgz" - }, - "directories": {} - }, - "4.3.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.3.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.2.tgz", + "integrity": "sha512-H4PDCzDKDTzJccMAFe0YW3hbtdOiKXcoh+Ef8wpum604UvUIjX8jEq8KNfRTnAaOlLtTv78UONLWnkPffiqdhA==", + "signatures": [ + { + "sig": "MEUCIQCj3SPkfmGtv6F+mGrP/vY0iYEa9hgNSgZEb/Y3D9nWiQIgB3cg2VCMT9THIeUGJOxLI7Y3VW+k2qisytQAz0fVCaE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "ad2b047653a58c387e15deb43a19497f83fd2a80", "engines": { "node": "*" }, + "gitHead": "d7625eea7c09602b36a1fb5fe08404ec86917578", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "rm -f v8.log profile.txt; tap test/*.js", + "bench": "bash benchmark.sh", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.1.9", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.16", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.3.0": { + "name": "glob", + "version": "4.3.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "207085343b443a890f8eba225735857900b5892b", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.3.0", - "_shasum": "f997613c65db52e4118708d1276cfb9383d6fae7", - "_from": ".", - "_npmVersion": "2.1.11", - "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "f997613c65db52e4118708d1276cfb9383d6fae7", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.0.tgz" - }, - "directories": {} - }, - "4.3.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.3.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.0.tgz", + "integrity": "sha512-k87nf3Uncr55khpt2sE2Y+bmCBi1Az5obxAOIT9UBRy/mWXE+bSnXq9mXHIqbId0H9IGHwKqKkPL1Y0Xtnkc6Q==", + "signatures": [ + { + "sig": "MEQCIEkI1DtQW+EsqrCgZXONmWH0MQjTOalrifQCeIqqw/BiAiA3C3/RYeutNBUu+LAFPeKNxjwf1vx3QyN68iS9cQyFyw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "f997613c65db52e4118708d1276cfb9383d6fae7", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "207085343b443a890f8eba225735857900b5892b", "scripts": { - "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", "test": "rm -f v8.log profile.txt; tap test/*.js", - "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "bc6458731a67f8864571a989906bc3d8d6f4dd80", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.3.1", - "_shasum": "9d09096f89b4d30949e784e83f312af3ca04ec14", - "_from": ".", "_npmVersion": "2.1.11", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.0" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.3.1": { + "name": "glob", + "version": "4.3.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.3.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "9d09096f89b4d30949e784e83f312af3ca04ec14", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.1.tgz" - }, - "directories": {} - }, - "4.3.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.3.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.1.tgz", + "integrity": "sha512-Zl/Xzacx5EtwM4dI2GX6HVr51L4wtykFzA/ZY4vV+SwxOVGA2n6cju3q8vea2Xy1zeaHLeRhgEtqxoDVTvkMoQ==", + "signatures": [ + { + "sig": "MEYCIQD76K0GcbgVrXXJu/JSGYIfb41sD95GRWuSfG8P9niEGAIhAK5KRwFG58o9U0Lvm4AiW0ij2kvT2DnRC2UW6aMIGRcU", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "9d09096f89b4d30949e784e83f312af3ca04ec14", "engines": { "node": "*" }, + "gitHead": "bc6458731a67f8864571a989906bc3d8d6f4dd80", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "rm -f v8.log profile.txt; tap test/*.js", + "bench": "bash benchmark.sh", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "rm -f v8.log profile.txt; TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.1.11", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.16", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.3.2": { + "name": "glob", + "version": "4.3.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "941d53c8ab6216f43a6f5e8e01245364ba90cfe9", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.3.2", - "_shasum": "351ec7dafc29256b253ad86cd6b48c5a3404b76d", - "_from": ".", - "_npmVersion": "2.1.14", - "_nodeVersion": "0.10.33", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "351ec7dafc29256b253ad86cd6b48c5a3404b76d", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.2.tgz" - }, - "directories": {} - }, - "4.3.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.3.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.2.tgz", + "integrity": "sha512-JYIXSTOk9yu3BUk15+HB0EmbO7bPUTSkn+I6j89d7iuXh7x+/Juh9baOGHW6wc4xI3VgCcHbVFW8e3Ru2pHJLA==", + "signatures": [ + { + "sig": "MEYCIQCHCZrHsRZy9ozQD2haXpas0g1AAIxm34Bjt/XeyKMmFgIhAJNy2ZaZujgmgUPASMYbes0/QWMGc1a4yLSyYQSXCPUU", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "351ec7dafc29256b253ad86cd6b48c5a3404b76d", "engines": { "node": "*" }, + "gitHead": "941d53c8ab6216f43a6f5e8e01245364ba90cfe9", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.1.14", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.33", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.3.3": { + "name": "glob", + "version": "4.3.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "a4b2cdb3a0026557b2e0930e4687d8d8c51625bf", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.3.3", - "_shasum": "6e9caf6594d61ce49a3f0ac2c7ad7c73f07afbff", - "_from": ".", - "_npmVersion": "2.2.0", - "_nodeVersion": "0.10.35", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "6e9caf6594d61ce49a3f0ac2c7ad7c73f07afbff", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.3.tgz" - }, - "directories": {} - }, - "4.3.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.3.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.3.tgz", + "integrity": "sha512-LR/wRIFDvmUnuvlrr2nlnwYSHccQk0L3LmuXl/kD881R0V1J82UshqGQEWAhDrjBCFrl1jESq+x9dZRR5XDO+Q==", + "signatures": [ + { + "sig": "MEQCIF2BZUn3PTyhVdr/MaI1LP+U2MP+sjzXyogKOG7SBJHqAiAA7jC9Mf+TtN8+zue2K10DWXRSCgwfpa9UVMzV5R1YDg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "6e9caf6594d61ce49a3f0ac2c7ad7c73f07afbff", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "~0.4.0", - "tick": "0.0.6" - }, + "gitHead": "a4b2cdb3a0026557b2e0930e4687d8d8c51625bf", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "7ad3aa4a7254e6d20ce6fc71b772a6156935acb0", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.3.4", - "_shasum": "97f3fca7200e6b369653ce4f68b894882cd6f44b", - "_from": ".", "_npmVersion": "2.2.0", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.35", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.3.4": { + "name": "glob", + "version": "4.3.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.3.4", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "97f3fca7200e6b369653ce4f68b894882cd6f44b", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.4.tgz" - }, - "directories": {} - }, - "4.3.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.3.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.4.tgz", + "integrity": "sha512-nhpuoUWkTW4L+QJDyz2AkK7vx5dmN8tVmb0gvOEskXaiCczljE+4Of+AfFG6xYllFGRXvmZaOzSrvr/3WcSB6Q==", + "signatures": [ + { + "sig": "MEQCIAUDSxozOVFVc9Wzzo/WZv6ZHw8To3gZsurILUU5L1HQAiBPuJdaRolqIDHtYeyr0yev2DInuOeDOz/inZvpqbXM2w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "97f3fca7200e6b369653ce4f68b894882cd6f44b", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "7ad3aa4a7254e6d20ce6fc71b772a6156935acb0", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "9de4cb6bfeb9c8458cf188fe91447b99bf8f3cfd", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.3.5", - "_shasum": "80fbb08ca540f238acce5d11d1e9bc41e75173d3", - "_from": ".", "_npmVersion": "2.2.0", + "description": "a little globber", + "directories": {}, "_nodeVersion": "0.10.35", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "~0.4.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.3.5": { + "name": "glob", + "version": "4.3.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.3.5", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "80fbb08ca540f238acce5d11d1e9bc41e75173d3", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz" - }, - "directories": {} - }, - "4.4.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.4.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz", + "integrity": "sha512-kOq1ncUyUvkZdl7BgKa3n6zAOiN05pzleOxESuc8bFoXKRhYsrZM6z79O5DKe9JGChHhSZloUsD/hZrUXByxgQ==", + "signatures": [ + { + "sig": "MEQCIAd+DQAqmRcTvSDvOWAF/Xd4CfkN3ZQOrOY9sUzD9udmAiB3eeNUqL9FJRbDEPHzGofWXH37mgMuMDkbtv6DuhSykA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "80fbb08ca540f238acce5d11d1e9bc41e75173d3", "engines": { "node": "*" }, + "gitHead": "9de4cb6bfeb9c8458cf188fe91447b99bf8f3cfd", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.2.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "0.10.35", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.4.0": { + "name": "glob", + "version": "4.4.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "57e6b293108b48d9771a05e2b9a6a1b12cb81c12", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.4.0", - "_shasum": "91d63dc1ed1d82b52ba2cb76044852ccafc2130f", - "_from": ".", - "_npmVersion": "2.6.0", - "_nodeVersion": "1.1.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "91d63dc1ed1d82b52ba2cb76044852ccafc2130f", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.0.tgz" - }, - "directories": {} - }, - "4.4.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.4.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.0.tgz", + "integrity": "sha512-GnUF3HBbfpPk95tylSIHbEPHLfpyBFenC+u91PZvgmGkbPqlTk0vHLHJwyDjHTLnEOtGSCmqT1BATsJSpC7nDA==", + "signatures": [ + { + "sig": "MEUCIBI8s1PsZHmQRwv2ZnQJpk4c1wtQcEODll7GH+pbWskMAiEAwrE7NF3ndjvz7BasRCR4BuYwuybRmFhy6jJSyYEF8gM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "91d63dc1ed1d82b52ba2cb76044852ccafc2130f", "engines": { "node": "*" }, + "gitHead": "57e6b293108b48d9771a05e2b9a6a1b12cb81c12", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.6.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.1.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.4.2": { + "name": "glob", + "version": "4.4.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "c13abc0df649ec29f8cfec42f818412887736aa1", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.4.2", - "_shasum": "3ef93e297ee096c1b9b3ffb1d21025c78ab60548", - "_from": ".", - "_npmVersion": "2.6.0", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "3ef93e297ee096c1b9b3ffb1d21025c78ab60548", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.2.tgz" - }, - "directories": {} - }, - "4.5.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.5.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.2.tgz", + "integrity": "sha512-uDfQml82dlkWsiYk+CdoOdJe09vfPUjTFBM23krHsaFuaC5/o4A5bLX95h7ccc/Fs/JjC5DuMwPgiIzTBV5WpA==", + "signatures": [ + { + "sig": "MEQCIGJ4klvYaDWjKFyDyEam03wn4PgWGya1FkkucX/WoA5LAiAWqWbJmAWWxkVHaumC4SM5P/kFsOMlPUx9P0v0HqQu1Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "3ef93e297ee096c1b9b3ffb1d21025c78ab60548", "engines": { "node": "*" }, + "gitHead": "c13abc0df649ec29f8cfec42f818412887736aa1", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.6.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.4.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.5.0": { + "name": "glob", + "version": "4.5.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "e9b8379dd31b66a5353a73193619e2b59287b5ee", + "_id": "glob@4.5.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.5.0", - "_shasum": "d6511322e9d5c9bc689f20eb7348f00489723882", - "_from": ".", - "_npmVersion": "2.7.0", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], "dist": { "shasum": "d6511322e9d5c9bc689f20eb7348f00489723882", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.0.tgz" - }, - "directories": {} - }, - "5.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.0.tgz", + "integrity": "sha512-eDrQCxD92Dqybu5aBoWG5VMgghYBckqon5jF4FpFJ1groSWw4inre5H2kPzPpKxSMr3B38OCVZFoUAGEnFwGag==", + "signatures": [ + { + "sig": "MEUCIAbf2KVrWMfDGK8EDwMwSUbtB1qouNB1Gjlt9x5JtxekAiEAid3/QadQFpK/8shddrYFEdn2T1Jl/ZnZEr/tTs+nMiA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "d6511322e9d5c9bc689f20eb7348f00489723882", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "e9b8379dd31b66a5353a73193619e2b59287b5ee", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "abdad4c2e6b0ff22850401ff746194183b950da1", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@5.0.0", - "_shasum": "bb00d4e340932eb101dc2a30e4127ddd51ed15ed", - "_from": ".", "_npmVersion": "2.7.0", + "description": "a little globber", + "directories": {}, "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.0": { + "name": "glob", + "version": "5.0.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@5.0.0", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "bb00d4e340932eb101dc2a30e4127ddd51ed15ed", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.0.tgz" - }, - "directories": {} - }, - "4.5.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.5.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.0.tgz", + "integrity": "sha512-yDzsu+zVAh22VFLSmknJfWgsyuuyIB+dEFhtZVyF4tX6aUXElfvPtiQDHikp3fjjqs6WUSasPWlqdrmCOvIwjA==", + "signatures": [ + { + "sig": "MEUCIExGsBy4EnHxDw8JhStF8RKxcjaZCKR7RSA0qUJmM1WaAiEAs71FAKSIHWUGLMvT0wPirZd7B8HmRtRHBzkqIlvTW88=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "bb00d4e340932eb101dc2a30e4127ddd51ed15ed", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "abdad4c2e6b0ff22850401ff746194183b950da1", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "e01059844faf86a09a3ae2b0382fc57a0ce9e327", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.5.1", - "_shasum": "a5c7c6407ad7a8d272041c8102420790a45a65cb", - "_from": ".", "_npmVersion": "2.7.0", + "description": "a little globber", + "directories": {}, "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.5.1": { + "name": "glob", + "version": "4.5.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@4.5.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "a5c7c6407ad7a8d272041c8102420790a45a65cb", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.1.tgz" - }, - "directories": {} - }, - "5.0.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.1.tgz", + "integrity": "sha512-P3/TjFjWKJjGTC1U7p4HyhnghCQNcjv3zrGpclU2o7X0ZEso+M7b+8/4eFejW7YuTXPBx8XkYYa1GnNab+0Y5A==", + "signatures": [ + { + "sig": "MEYCIQD52ot+QcAjbej6oHtLVgZg69U/DDYxlNr4F3LAhZ4sBAIhAKtE446BLOz6BYjeTB4B2LsCoiDOFb+QBasnlXvsZdsV", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "a5c7c6407ad7a8d272041c8102420790a45a65cb", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "e01059844faf86a09a3ae2b0382fc57a0ce9e327", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "860db3d29b608e7ca3bdb272086c679fa080663d", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@5.0.1", - "_shasum": "523a401ab9397f71b0ee4f25d72f20cbc1a15691", - "_from": ".", "_npmVersion": "2.7.0", + "description": "a little globber", + "directories": {}, "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.1": { + "name": "glob", + "version": "5.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@5.0.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "523a401ab9397f71b0ee4f25d72f20cbc1a15691", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.1.tgz" - }, - "directories": {} - }, - "4.5.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.5.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.1.tgz", + "integrity": "sha512-FHtzZy9Hf8Pawki/LzglE+zASLtl8x0ArPoC2/2oIxxiT3i+29e4CxvOoYl841xfwW6Tsws6L4g2fNDLTsmDog==", + "signatures": [ + { + "sig": "MEQCICrZoEUniwcRnJwlTD+ir6FtpdOTcVkUxG+G/8XpWXGUAiAuNeCCJbM/WEa0kaBJ0+dzBcii/nUcsPLTRm78/COdGw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "523a401ab9397f71b0ee4f25d72f20cbc1a15691", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "860db3d29b608e7ca3bdb272086c679fa080663d", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" - }, - "license": "ISC", - "gitHead": "7a80196eeee070aa09dd33a6183a45f731c42b58", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@4.5.2", - "_shasum": "1204118bab03289c654f8badaede29b52e07cdb4", - "_from": ".", - "_npmVersion": "2.7.0", - "_nodeVersion": "1.4.2", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "dist": { - "shasum": "1204118bab03289c654f8badaede29b52e07cdb4", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.2.tgz" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.7.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.4.2", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" }, - "directories": {} + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } }, - "5.0.2": { + "4.5.2": { + "name": "glob", + "version": "4.5.2", "author": { + "url": "http://blog.izs.me/", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "email": "i@izs.me" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "license": "ISC", + "_id": "glob@4.5.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "dist": { + "shasum": "1204118bab03289c654f8badaede29b52e07cdb4", + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.2.tgz", + "integrity": "sha512-ypWM3qCe7u53YTq1GRyWLWd9cnXZD3WQ5KpK+ZYnaOqG7XbJF63y4H9rK7aRr3i5yrzVMApUrWFzNXLLen+QSQ==", + "signatures": [ + { + "sig": "MEUCIQCDQTXHPlt+VLSick10y/B9dbDubIa8weWnGS6mZRJrwAIgYum/YG5rarVHtzQ2jfVyKtAkv+FpTxtX1G+2icczxU0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "1204118bab03289c654f8badaede29b52e07cdb4", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "7a80196eeee070aa09dd33a6183a45f731c42b58", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "87d334f8b6e05c19feb2438c583b1b457a5e106a", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@5.0.2", - "_shasum": "78ac7605fae5e739677af57bee0483269ff641c4", - "_from": ".", "_npmVersion": "2.7.0", + "description": "a little globber", + "directories": {}, "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.2": { + "name": "glob", + "version": "5.0.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@5.0.2", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "78ac7605fae5e739677af57bee0483269ff641c4", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.2.tgz" - }, - "directories": {} - }, - "4.5.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "4.5.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.2.tgz", + "integrity": "sha512-fMOENyrNFuYR6yAue/Ca2vvR2ICpsm6KZH7daa9rFO2n86/vwXOo1vijA8+dYsyaIY4cstHVd+we2jPvDL02EQ==", + "signatures": [ + { + "sig": "MEYCIQDvOupqUuMrPYM5CYngFBRPpkgBwHKLoI8/ySnRGIdYrAIhAIj4Uyd9H6S+GMVzegmi2/aQ3t8jt5+NURjSuOKTOlPS", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "78ac7605fae5e739677af57bee0483269ff641c4", "engines": { "node": "*" }, + "gitHead": "87d334f8b6e05c19feb2438c583b1b457a5e106a", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.7.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.4.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "4.5.3": { + "name": "glob", + "version": "4.5.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "a4e461ab59a837eee80a4d8dbdbf5ae1054a646f", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@4.5.3", - "_shasum": "c6cb73d3226c1efef04de3c56d012f03377ee15f", - "_from": ".", - "_npmVersion": "2.7.1", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "c6cb73d3226c1efef04de3c56d012f03377ee15f", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz" - }, - "directories": {} - }, - "5.0.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha512-I0rTWUKSZKxPSIAIaqhSXTM/DiII6wame+rEC3cFA5Lqmr9YmdL7z6Hj9+bdWtTvoY1Su4/OiMLmb37Y7JzvJQ==", + "signatures": [ + { + "sig": "MEQCIAsj5TO5eeMBJKnaGecH+V/ghiPpljfNbfNO+JOGjE2QAiBBnmpwKJAZFkB+FiZg7IDTPBKg9uZeSCu0wYFXn2vf/A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "c6cb73d3226c1efef04de3c56d012f03377ee15f", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "a4e461ab59a837eee80a4d8dbdbf5ae1054a646f", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "license": "ISC", - "gitHead": "2f63d487885fbb51ec8fcb21229bebd0e515c3fb", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@5.0.3", - "_shasum": "15528c1c727e474a8e7731541c00b00ec802952d", - "_from": ".", "_npmVersion": "2.7.1", + "description": "a little globber", + "directories": {}, "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.3": { + "name": "glob", + "version": "5.0.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@5.0.3", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "15528c1c727e474a8e7731541c00b00ec802952d", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.3.tgz" - }, - "directories": {} - }, - "5.0.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.3.tgz", + "integrity": "sha512-yUhfF1lGzpd9gmqwUpfkth+9T9tld5g83RkrvYmL98c1YVRgHLaBTJdoJjSMKI90GLKXf+eKm8DjhD96nOmNVw==", + "signatures": [ + { + "sig": "MEQCIEA5cr3XrEyOtSTWINRS6Dms/n4ZDQzoSCGhZ795gtifAiAxQgD04nAB2+dlGAVs+QncNU1BwjFSnuDDzi3ELPtfMQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "15528c1c727e474a8e7731541c00b00ec802952d", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^0.5.0", - "tick": "0.0.6" - }, + "gitHead": "2f63d487885fbb51ec8fcb21229bebd0e515c3fb", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" - }, - "license": "ISC", - "gitHead": "c443cb723500d3817a4ad0af3e98a22c8f29f5ce", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "homepage": "https://github.com/isaacs/node-glob", - "_id": "glob@5.0.4", - "_shasum": "084cf799baba0970be616911ed57f14d515d0673", - "_from": ".", - "_npmVersion": "2.7.6", - "_nodeVersion": "1.4.2", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.7.1", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.4.2", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1" + }, + "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.4": { + "name": "glob", + "version": "5.0.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@5.0.4", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "084cf799baba0970be616911ed57f14d515d0673", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.4.tgz" - }, - "directories": {} - }, - "5.0.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.4.tgz", + "integrity": "sha512-nIkqtPfXlawz0WCYinomF7lnS0Gxo2MWz32wBSirIm2iCx0/BP4KhYkjfc53LVpz1F3IyM+mm8PhTxuwGWMe2A==", + "signatures": [ + { + "sig": "MEUCIQDT1RsGO8uVxn31Getu+CMmYUigQqU+LeR00MoKUH1s3gIgE0akyVkrIbkCIUuatlritjGyMdwpoGO6arKY6ogqtAY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "084cf799baba0970be616911ed57f14d515d0673", "engines": { "node": "*" }, + "gitHead": "c443cb723500d3817a4ad0af3e98a22c8f29f5ce", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.7.6", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.4.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.5": { + "name": "glob", + "version": "5.0.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "9db1a83b44da0c60f5fdd31b28b1f9917ee6316d", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob", "_id": "glob@5.0.5", - "_shasum": "784431e4e29a900ae0d47fba6aa1c7f16a8e7df7", - "_from": ".", - "_npmVersion": "2.7.6", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, "dist": { "shasum": "784431e4e29a900ae0d47fba6aa1c7f16a8e7df7", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.5.tgz" - }, - "directories": {} - }, - "5.0.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.5.tgz", + "integrity": "sha512-n5ttBg32CBaIMp5S+DfcXZN8mxxN66+0HTkTuACRZ5LKJWcqjFQ3H+oKkdGYFfAgkVuMnXazf3c0Ah3fYWc0pQ==", + "signatures": [ + { + "sig": "MEUCID47u2zAGzY7Vquf+3bsOBA/3pdb49OFleEmlYfp9fLgAiEAgSd/EYFkkyw+3nU1FRX1sJL4CQ4TZeEh7Uly0pcK1ps=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "784431e4e29a900ae0d47fba6aa1c7f16a8e7df7", "engines": { "node": "*" }, + "gitHead": "9db1a83b44da0c60f5fdd31b28b1f9917ee6316d", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.7.6", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "1.4.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^0.5.0", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^1.0.3", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "rimraf": "^2.2.8" + } + }, + "5.0.6": { + "name": "glob", + "version": "5.0.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "7a0d65d7ed11871be6b5a68dc6f15e3f4b3fb93d", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.6", - "_shasum": "51f1377c8d5ba36015997655d22bd7d20246accd", - "_from": ".", - "_npmVersion": "2.9.1", - "_nodeVersion": "2.0.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "51f1377c8d5ba36015997655d22bd7d20246accd", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.6.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.7": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.7", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "51f1377c8d5ba36015997655d22bd7d20246accd", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.6.tgz", + "integrity": "sha512-QcThOHvvODl+o1zkOhQBqGUFFiKFNVdNCScGukZ+KnWLiicDGMM1GNOE3K9wmU4WViDW7P83l2PdFQljXnFpkA==", + "signatures": [ + { + "sig": "MEQCIByuFwv6uz8+k6GpWj67nwb0nlH57dY9P7oq3FWebhFXAiA46LihIUyOFnk7WWy1SbnbvDpB1jiQEcEzsaqvSqDMFQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "51f1377c8d5ba36015997655d22bd7d20246accd", "engines": { "node": "*" }, + "gitHead": "7a0d65d7ed11871be6b5a68dc6f15e3f4b3fb93d", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.9.1", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.0.3", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "npm run profclean && tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.7": { + "name": "glob", + "version": "5.0.7", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "cfd963c3c95e51864d69092e32479ddb73c3278e", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.7", - "_shasum": "9748021208e3fd7c3bcc7167ddbd2f1f94676a43", - "_from": ".", - "_npmVersion": "2.10.0", - "_nodeVersion": "2.0.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "9748021208e3fd7c3bcc7167ddbd2f1f94676a43", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.7.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.9": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.9", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "9748021208e3fd7c3bcc7167ddbd2f1f94676a43", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.7.tgz", + "integrity": "sha512-CKR2BnCxBw4aDX25S1+MJHfTNFHzbAUWmq+M9tcWUJJMc+g/Zyner/QrHHBfPNa0DUWQlCDKzJPXLoLgbTTn/w==", + "signatures": [ + { + "sig": "MEUCIGmbj7Xz7BukcyQO2AHhiBwEOuctbk3Bj0g0gRjhlH9BAiEAiY65L+J5h8/Nw6Ewzb/zeSUMCv9m/XzpZw77tK59KzY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "9748021208e3fd7c3bcc7167ddbd2f1f94676a43", "engines": { "node": "*" }, + "gitHead": "cfd963c3c95e51864d69092e32479ddb73c3278e", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "npm run profclean && tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.10.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^1.0.3", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^1.1.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "rimraf": "^2.2.8" + } + }, + "5.0.9": { + "name": "glob", + "version": "5.0.9", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "7530e8887d8c588744e16eed1b5dac797fead705", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.9", - "_shasum": "79d1051c65b75020c00d449aa3d242e1ab0aee78", - "_from": ".", - "_npmVersion": "2.10.1", - "_nodeVersion": "2.0.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "79d1051c65b75020c00d449aa3d242e1ab0aee78", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.9.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.10": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.10", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "79d1051c65b75020c00d449aa3d242e1ab0aee78", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.9.tgz", + "integrity": "sha512-gx5KRp1nOZwTh1drkYa2wtN2bgCnxs5P5ItGzal6jZorZYLxH+M/x9Ju/u1b7vu+f3YJjiSR5+x/Xi6H29KJyQ==", + "signatures": [ + { + "sig": "MEUCIQDH3lNaZ7deppctDQGH97qX2oRy0phfh7UqGD8pfbuIMwIgWjzJ4j6rf0hFB4JmFjwT8ptXgtGSZCyxjbfU2fgog30=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "79d1051c65b75020c00d449aa3d242e1ab0aee78", "engines": { "node": "*" }, + "gitHead": "7530e8887d8c588744e16eed1b5dac797fead705", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.10.1", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^1.1.0", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "rimraf": "^2.2.8" + } + }, + "5.0.10": { + "name": "glob", + "version": "5.0.10", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "e3cdccc0e295c2e1d5f40cf74c73ea17a8319c5c", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.10", - "_shasum": "3ee350319f31f352cef6899a48f6b6b7834c6899", - "_from": ".", - "_npmVersion": "2.10.1", - "_nodeVersion": "2.0.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "3ee350319f31f352cef6899a48f6b6b7834c6899", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.10.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.11": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.11", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "3ee350319f31f352cef6899a48f6b6b7834c6899", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.10.tgz", + "integrity": "sha512-BwngbHV6VlIQbO37ciQvGWcTr1cFg7SyPLpwSXkLIBZ2dSX8+FkCQJO/2fctk8yRtBHTTXBLL47EnG7SC+O5YQ==", + "signatures": [ + { + "sig": "MEUCIDfIBsIRAuwXTrhLNHNvEpFfjZn9C07eIfEcncwi5TVBAiEArGJpNNXWAhvywlDnmPHXsx/EztTW38pTq0Hl5juG4j0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "3ee350319f31f352cef6899a48f6b6b7834c6899", "engines": { "node": "*" }, + "gitHead": "e3cdccc0e295c2e1d5f40cf74c73ea17a8319c5c", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.10.1", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.11": { + "name": "glob", + "version": "5.0.11", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "38ff16ceb73bd73a69ee769707a0755f86ec2dc3", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.11", - "_shasum": "ce1756b16ce00d804d8a890ab0951bd07cf0d2ae", - "_from": ".", - "_npmVersion": "2.12.0", - "_nodeVersion": "2.2.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "ce1756b16ce00d804d8a890ab0951bd07cf0d2ae", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.11.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.12": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.12", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "ce1756b16ce00d804d8a890ab0951bd07cf0d2ae", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.11.tgz", + "integrity": "sha512-78yc7q5w6wTJ9KSbu5Eot8/ieXcI6LWGcDyiyPujDUKCLvL8Po7J9LS3+95S7AZnc2rHeoNLnJ9T/l0a1NBLHw==", + "signatures": [ + { + "sig": "MEUCIQDFhKNh00tn2oJGbl/UVm6I47Le9vzXe99Dq4nuXBNMxQIgS4JfdLq+w4KhfrETQORQ+9C6IBfBhMXK/v3BX6GIQKQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "ce1756b16ce00d804d8a890ab0951bd07cf0d2ae", "engines": { "node": "*" }, + "gitHead": "38ff16ceb73bd73a69ee769707a0755f86ec2dc3", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.12.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.2.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.12": { + "name": "glob", + "version": "5.0.12", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "9439afd114a16460ad29cd2fb23267ddd45dd688", + "_id": "glob@5.0.12", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@5.0.12", - "_shasum": "3861d827ae59ff38d206eb096659fb0800acee27", - "_from": ".", - "_npmVersion": "3.0.0", - "_nodeVersion": "2.2.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, "dist": { "shasum": "3861d827ae59ff38d206eb096659fb0800acee27", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.12.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {} - }, - "5.0.13": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "5.0.13", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.12.tgz", + "integrity": "sha512-6DZh6LKLIoaHjQ2b30I83i+vfD2HkKdr1MCarwBZdYJG+IOPmnX/Pm9/6Rw3EhiX0XI7riJM78rlQaHbCt863g==", + "signatures": [ + { + "sig": "MEQCICJ4bp72L4xB7LYEHKfV0DYeem4OGPio/iH3kAfT4pquAiB8Kne5ZTzVa9OSRg0pcXxvFJmbm3Co+6Ryu3sF5BuaMA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "3861d827ae59ff38d206eb096659fb0800acee27", "engines": { "node": "*" }, + "gitHead": "9439afd114a16460ad29cd2fb23267ddd45dd688", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.0.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.2.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "bash benchclean.sh" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.13": { + "name": "glob", + "version": "5.0.13", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "507733d3c97f073ac676f58f2b6f2fe4c00f3e1c", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.13", - "_shasum": "0b6ffc3ac64eb90669f723a00a0ebb7281b33f8f", - "_from": ".", - "_npmVersion": "3.0.0", - "_nodeVersion": "2.2.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "0b6ffc3ac64eb90669f723a00a0ebb7281b33f8f", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.13.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.14": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.14", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "0b6ffc3ac64eb90669f723a00a0ebb7281b33f8f", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.13.tgz", + "integrity": "sha512-UUX7KcKGxsailKUG+md76uvcasQ+pwcb5X6o97LcqGobNvcBvXvWPvhAF+FndmzEXBFB9xdT2ME5DkzS8F5zIg==", + "signatures": [ + { + "sig": "MEQCICYp5xLqfxarGf0K+TLFZMd55/P0nCzHSwQoQwAGi1gPAiAy2wHBUyLlzyoMH0BT01u3ox4AvfHnXh0Fj2lxd5FwJg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "0b6ffc3ac64eb90669f723a00a0ebb7281b33f8f", "engines": { "node": "*" }, + "gitHead": "507733d3c97f073ac676f58f2b6f2fe4c00f3e1c", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "bash benchclean.sh", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.0.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.2.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.14": { + "name": "glob", + "version": "5.0.14", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "c47d4514f8f93f23b589afa18947306116bfe40f", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.14", - "_shasum": "a811d507acb605441edd6cd2622a3c6f06cc00e1", - "_from": ".", - "_npmVersion": "3.1.0", - "_nodeVersion": "2.2.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "a811d507acb605441edd6cd2622a3c6f06cc00e1", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.14.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "5.0.15": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "5.0.15", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "a811d507acb605441edd6cd2622a3c6f06cc00e1", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.14.tgz", + "integrity": "sha512-1rcw2zix4pUpRFlR3cV4xETcGbb0msEOM6hg6Gkg0FGEz3IewZO8fqSz/h7RoRGWYKm6NjTU1LJhs9vpfVrrQg==", + "signatures": [ + { + "sig": "MEUCIQD590Br+ONzKb8ZDhSe1gjtmuXdIV8+ezqSYYUc0B882AIgBqJIHGABvNfOfXcULnBbssa3H2uwMN+s6E0gTCdUC04=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "a811d507acb605441edd6cd2622a3c6f06cc00e1", "engines": { "node": "*" }, + "gitHead": "c47d4514f8f93f23b589afa18947306116bfe40f", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.1.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "2.2.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", + "minimatch": "^2.0.1", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "5.0.15": { + "name": "glob", + "version": "5.0.15", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "3a7e71d453dd80e75b196fd262dd23ed54beeceb", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@5.0.15", - "_shasum": "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1", - "_from": ".", - "_npmVersion": "3.3.2", - "_nodeVersion": "4.0.0", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "6.0.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "6.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1", + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", + "signatures": [ + { + "sig": "MEQCICSF1b1kLhbpPCJ1kpa+sSdfLCS0077AIfADIT8Nq/01AiB9AnrJiCaob65zOkQjcQsOYuwWQGpQUXmJCtDpXkmcZQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1", "engines": { "node": "*" }, + "gitHead": "3a7e71d453dd80e75b196fd262dd23ed54beeceb", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.3.2", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "6.0.1": { + "name": "glob", + "version": "6.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "3741149fe4fe7060794e85da1bd8cecde623d90b", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@6.0.1", - "_shasum": "16a89b94ac361b2a670a0a141a21ad51b438d21d", - "_from": ".", - "_npmVersion": "3.3.2", - "_nodeVersion": "4.0.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "16a89b94ac361b2a670a0a141a21ad51b438d21d", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.1.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "6.0.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "6.0.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "16a89b94ac361b2a670a0a141a21ad51b438d21d", + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.1.tgz", + "integrity": "sha512-kDh+dhHZZb/oFY9mI/Dj5vra6A1X+KzeDEqQ6TdY4Cd3OpDv/mLC4YgyQse+u+EXJhjfdmwYkwl0QRvgy01mUQ==", + "signatures": [ + { + "sig": "MEQCICVw/NGfWeHh7ygwiVf/zFPU/2CyDS8WIbO58Ky7SKaQAiAhTsfNmDFhtO+/vdcTLNYzdMXW7DuUL9e1+Q3uXE6F6g==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "16a89b94ac361b2a670a0a141a21ad51b438d21d", "engines": { "node": "*" }, + "gitHead": "3741149fe4fe7060794e85da1bd8cecde623d90b", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.3.2", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "6.0.2": { + "name": "glob", + "version": "6.0.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "19f5928d703d2ae9beeffe404d53b0fc01b35eca", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@6.0.2", - "_shasum": "4bfaf2d6f1d89a3d95e9d4660bd88faccce00565", - "_from": ".", - "_npmVersion": "3.3.2", - "_nodeVersion": "4.0.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "4bfaf2d6f1d89a3d95e9d4660bd88faccce00565", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.2.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "6.0.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "6.0.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "4bfaf2d6f1d89a3d95e9d4660bd88faccce00565", + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.2.tgz", + "integrity": "sha512-JooOqUzAow8HhtRyx4NryS/iAXAedco+J6gi8S79bwEVt9bIuHspU8LTrydOtcfzLh+HOWH9OwYwuiQEgFHdFw==", + "signatures": [ + { + "sig": "MEUCIQChmEm0vAQ19FwoYvISO0mWtiyDPLqJiSKogtyIGo+jggIgPrRPSMnkSRzeM7DpCxkccu+NAXzNC1sBfdC3bO+59Wo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "4bfaf2d6f1d89a3d95e9d4660bd88faccce00565", "engines": { "node": "*" }, + "gitHead": "19f5928d703d2ae9beeffe404d53b0fc01b35eca", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.3.2", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "6.0.3": { + "name": "glob", + "version": "6.0.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "dd5b255ff9b161d23f81c4d0a381ca46a97d049a", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@6.0.3", - "_shasum": "5f02cd89587ce58b154ae0855de02a2e63986fca", - "_from": ".", - "_npmVersion": "3.3.2", - "_nodeVersion": "4.0.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "5f02cd89587ce58b154ae0855de02a2e63986fca", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.3.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "6.0.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "6.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "5f02cd89587ce58b154ae0855de02a2e63986fca", + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.3.tgz", + "integrity": "sha512-Dduih7Ur3A689wMJiNkamAhdGbPISfdhJNEA26xA5glc24gvjY+3YAkVkcCfEVu8X9cxzHeJSK3T3m6iYBWb+g==", + "signatures": [ + { + "sig": "MEUCIFPXvyl323nLigNaBUp1JwS9BpRsqQpNcqFoKyIoLbHxAiEA2672H0AR8lTR1a9k8ymSSeluTFRm0sQmaOrU3i/8V8U=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "5f02cd89587ce58b154ae0855de02a2e63986fca", "engines": { "node": "*" }, + "gitHead": "dd5b255ff9b161d23f81c4d0a381ca46a97d049a", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.3.2", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^1.1.4", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^5.0.0", - "tick": "0.0.6" - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "rimraf": "^2.2.8" + } + }, + "6.0.4": { + "name": "glob", + "version": "6.0.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "3bd419c538737e56fda7e21c21ff52ca0c198df6", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@6.0.4", - "_shasum": "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22", - "_from": ".", - "_npmVersion": "2.14.15", - "_nodeVersion": "4.0.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {} - }, - "7.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22", + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + "signatures": [ + { + "sig": "MEUCID32Vg26xYO0/3oY/dyz4vGw9iILyjMWdXVkgtUoAskUAiEAuUXRcCcvmzRelIws4wSzKuth8wSwcyOkcMIFXfAdog0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22", "engines": { "node": "*" }, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^5.0.0", - "tick": "0.0.6" - }, + "gitHead": "3bd419c538737e56fda7e21c21ff52ca0c198df6", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" - }, - "license": "ISC", - "gitHead": "8e8876f84232783fd2db3182af5fa33cc83f1989", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.0.0", - "_shasum": "3b20a357fffcf46bb384aed6f8ae9a647fdb6ac4", - "_from": ".", - "_npmVersion": "3.7.0", - "_nodeVersion": "4.0.0", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "dist": { - "shasum": "3b20a357fffcf46bb384aed6f8ae9a647fdb6ac4", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.0.tgz" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "2.14.15", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.0.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "path-is-absolute": "^1.0.0" + }, + "devDependencies": { + "tap": "^5.0.0", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + } + }, + "7.0.0": { + "name": "glob", + "version": "7.0.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "ISC", + "_id": "glob@7.0.0", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-5-east.internal.npmjs.com", - "tmp": "tmp/glob-7.0.0.tgz_1455132435010_0.6941273615229875" - }, - "directories": {} - }, - "7.0.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "3b20a357fffcf46bb384aed6f8ae9a647fdb6ac4", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.0.tgz", + "integrity": "sha512-Fa+aQV0FFMU4/Jg5mquHjv5DikTujeAWOpbGa9lsG2Qa+ehYxbGN3cCY/T+C+jAS8gKBnYN2MbrdNm0UCAcp7w==", + "signatures": [ + { + "sig": "MEUCICbS3ZjGX8rYMavXnVfl52CMspzMO0wAS0cxcZTEvSVuAiEA5SxKa/RLia909dJyidlb19VlOCX7/y6Ow/22HyGNhls=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "3b20a357fffcf46bb384aed6f8ae9a647fdb6ac4", "engines": { "node": "*" }, + "gitHead": "8e8876f84232783fd2db3182af5fa33cc83f1989", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.7.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.0.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.0.0.tgz_1455132435010_0.6941273615229875", + "host": "packages-5-east.internal.npmjs.com" + } + }, + "7.0.1": { + "name": "glob", + "version": "7.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "d5924d3fe6dba126230b53847f327551a42f3824", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@7.0.1", - "_shasum": "2bc2492088dd0e0da9b5b095d85978c86c2db52a", - "_from": ".", - "_npmVersion": "3.7.3", - "_nodeVersion": "5.6.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "2bc2492088dd0e0da9b5b095d85978c86c2db52a", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.1.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-13-west.internal.npmjs.com", - "tmp": "tmp/glob-7.0.1.tgz_1457160907434_0.4145621987991035" - }, - "directories": {} - }, - "7.0.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.0.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "2bc2492088dd0e0da9b5b095d85978c86c2db52a", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.1.tgz", + "integrity": "sha512-mdlW46/bzjpPEKiVNHrb3bygt/dsk05a1tGLxkaDzlmMT6l35IlzDVWB8Ym1F42/0EwLcVYxRUF0brlW912fBw==", + "signatures": [ + { + "sig": "MEUCIQDBf50yNg6ZOEElIBWv3JB3qeJQcm10lMh1Jy0Xo5ENxgIgDR0DHBO9Z1Tyucc/Uc9EjR6owz0BK97B+hZJybGTAsY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "2bc2492088dd0e0da9b5b095d85978c86c2db52a", "engines": { "node": "*" }, + "gitHead": "d5924d3fe6dba126230b53847f327551a42f3824", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.7.3", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "5.6.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^5.0.0", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^5.7.0", - "tick": "0.0.6" + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.0.1.tgz_1457160907434_0.4145621987991035", + "host": "packages-13-west.internal.npmjs.com" + } + }, + "7.0.3": { + "name": "glob", + "version": "7.0.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "2fc2278ab857c7df117213a2fb431de090be6353", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@7.0.3", - "_shasum": "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58", - "_from": ".", - "_npmVersion": "3.7.3", - "_nodeVersion": "5.6.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/glob-7.0.3.tgz_1457166529288_0.7840580905321985" - }, - "directories": {} - }, - "7.0.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz", + "integrity": "sha512-29GbP/ojh64xLytvuPybLeLD4zw5fO8XoHkGujSGJI4qRilQ3czhFdnlVVrdH2o7DZ4pgyqNgDafaF0EZIU4oQ==", + "signatures": [ + { + "sig": "MEUCIEs2G59o/nKiXqqzUtSIEtJsobDgY+pzPjnNlwo92N02AiEAtA/PcaQPMddcTiHTe1hQkX7TAjWJME3qdFF9q4zGD+4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58", "engines": { "node": "*" }, + "gitHead": "2fc2278ab857c7df117213a2fb431de090be6353", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.7.3", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "5.6.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.0.3.tgz_1457166529288_0.7840580905321985", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "7.0.4": { + "name": "glob", + "version": "7.0.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "3f883c43fec4f8046cbea9497add3b8ba4ef0a37", + "_id": "glob@7.0.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.0.4", - "_shasum": "3b44afa0943bdc31b2037b934791e2e084bcb7f6", - "_from": ".", - "_npmVersion": "3.9.3", - "_nodeVersion": "6.2.1", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "dist": { "shasum": "3b44afa0943bdc31b2037b934791e2e084bcb7f6", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.4.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/glob-7.0.4.tgz_1466098181857_0.6043217403348535" - }, - "directories": {} - }, - "7.0.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "7.0.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.4.tgz", + "integrity": "sha512-3tbJl15hKbgLoSBcHv5WCCrrMnjdXsholv2YfBgX53Tx6IRkZIJdLDVROiFtl7WT70jbzFd8yxgwZlx1p0iQdg==", + "signatures": [ + { + "sig": "MEQCIEDOHRK2IodL9reLFhCi1SlHo6uBrwcmxTW2i95Ofml3AiBtmM/HwLU04M26M/xcYXbH9w1sR01ixrY+tbK3pv6Q6Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "3b44afa0943bdc31b2037b934791e2e084bcb7f6", "engines": { "node": "*" }, + "gitHead": "3f883c43fec4f8046cbea9497add3b8ba4ef0a37", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.9.3", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "6.2.1", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", + "minimatch": "2 || 3", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.0.4.tgz_1466098181857_0.6043217403348535", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "7.0.5": { + "name": "glob", + "version": "7.0.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "1319866c764e1a1bb39114dcbc2c1d518bb9b476", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@7.0.5", - "_shasum": "b4202a69099bbb4d292a7c1b95b6682b67ebdc95", - "_from": ".", - "_npmVersion": "3.9.1", - "_nodeVersion": "4.4.4", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "b4202a69099bbb4d292a7c1b95b6682b67ebdc95", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/glob-7.0.5.tgz_1466471133629_0.7749870484694839" - }, - "directories": {} - }, - "7.0.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.0.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "b4202a69099bbb4d292a7c1b95b6682b67ebdc95", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz", + "integrity": "sha512-56P1ofdOmXz0iTJ0AmrTK6CoR3Gf49Vo3SPaX85trAEhSIVsVc9oEQIkPWhcLZ/G4DZNg4wlXxG9JCz0LbaLjA==", + "signatures": [ + { + "sig": "MEYCIQCjxGP43JOjqeqZ8srm09/BqSpBnd/3WKLjZDiRGbitBQIhAKacOKqal7avmtDc8qXiLZ1IRo82KB81/JcQ3k8vRFiT", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "b4202a69099bbb4d292a7c1b95b6682b67ebdc95", "engines": { "node": "*" }, + "gitHead": "1319866c764e1a1bb39114dcbc2c1d518bb9b476", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.9.1", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.4.4", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.2", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.0.5.tgz_1466471133629_0.7749870484694839", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "7.0.6": { + "name": "glob", + "version": "7.0.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "98327d8def195b1ba200217952df8ea829426038", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@7.0.6", - "_shasum": "211bafaf49e525b8cd93260d14ab136152b3f57a", - "_from": ".", - "_npmVersion": "3.10.7", - "_nodeVersion": "4.5.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "211bafaf49e525b8cd93260d14ab136152b3f57a", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/glob-7.0.6.tgz_1472074762911_0.47247025789693" - }, - "directories": {} - }, - "7.1.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.1.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "211bafaf49e525b8cd93260d14ab136152b3f57a", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "signatures": [ + { + "sig": "MEYCIQDhzSmJvVW651L+4MG/ELkNEdAk6p3EY54YfBTUxEkcLQIhALDacMRbFUwQNqIbHCVcjHy3QQ4ssJ+RELiDA88NyDm0", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "211bafaf49e525b8cd93260d14ab136152b3f57a", "engines": { "node": "*" }, + "gitHead": "98327d8def195b1ba200217952df8ea829426038", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.10.7", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "4.5.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.2", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^5.7.0", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^7.1.2", - "tick": "0.0.6" + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.0.6.tgz_1472074762911_0.47247025789693", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "7.1.0": { + "name": "glob", + "version": "7.1.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "f65f9eb7eda113528c5257b58fac4ca685ee6c4f", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@7.1.0", - "_shasum": "36add856d746d0d99e4cc2797bba1ae2c67272fd", - "_from": ".", - "_npmVersion": "3.10.7", - "_nodeVersion": "6.5.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "shasum": "36add856d746d0d99e4cc2797bba1ae2c67272fd", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.0.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/glob-7.1.0.tgz_1474396131090_0.08145137410610914" - }, - "directories": {} - }, - "7.1.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.1.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "36add856d746d0d99e4cc2797bba1ae2c67272fd", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.0.tgz", + "integrity": "sha512-htk4y5TQ9NjktQk5oR7AudqzQKZd4JvbCOklhnygiF6r9ExeTrl+dTwFql7y5+zaHkc/QeLdDrcF5GVfM5bl9w==", + "signatures": [ + { + "sig": "MEQCIGBnhgB9mh1yrmYd7FrCIuz1VWCDl+amolY5DmnKE6rhAiBNwArkZ+sgUfZDIfyyChDMUAsduUEADwgQGiS8rWqwgA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "36add856d746d0d99e4cc2797bba1ae2c67272fd", "engines": { "node": "*" }, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.2", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^7.1.2", - "tick": "0.0.6" - }, + "gitHead": "f65f9eb7eda113528c5257b58fac4ca685ee6c4f", "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", + "prof": "bash prof.sh && cat profile.txt", "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" - }, - "license": "ISC", - "gitHead": "bc8d43b736a98a9e289fdfceee9266cff35e5742", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.1.1", - "_shasum": "805211df04faaf1c63a3600306cdf5ade50b2ec8", - "_from": ".", - "_npmVersion": "3.10.7", - "_nodeVersion": "6.5.0", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "dist": { - "shasum": "805211df04faaf1c63a3600306cdf5ade50b2ec8", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.10.7", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "6.5.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.2", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" }, + "devDependencies": { + "tap": "^7.1.2", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.1.0.tgz_1474396131090_0.08145137410610914", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "7.1.1": { + "name": "glob", + "version": "7.1.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@7.1.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/glob-7.1.1.tgz_1475876991562_0.924720095237717" - }, - "directories": {} - }, - "7.1.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.1.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "805211df04faaf1c63a3600306cdf5ade50b2ec8", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz", + "integrity": "sha512-mRyN/EsN2SyNhKWykF3eEGhDpeNplMWaW18Bmh76tnOqk5TbELAVwFAYOCmKVssOYFrYvvLMguiA+NXO3ZTuVA==", + "signatures": [ + { + "sig": "MEQCIFDsCVj78esOxhixW9A0SJ3r5X6mTys8rxUR4RQjDHdtAiA6CQXTdd/d97F4HM2bDt/yTa0ERIcJXpBzr6C4XzaBoA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", + "_from": ".", "files": [ "glob.js", "sync.js", "common.js" ], + "_shasum": "805211df04faaf1c63a3600306cdf5ade50b2ec8", "engines": { "node": "*" }, + "gitHead": "bc8d43b736a98a9e289fdfceee9266cff35e5742", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "3.10.7", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "6.5.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", + "minimatch": "^3.0.2", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^7.1.2", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.1.1.tgz_1475876991562_0.924720095237717", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "7.1.2": { + "name": "glob", + "version": "7.1.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "8fa8d561e08c9eed1d286c6a35be2cd8123b2fb7", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "homepage": "https://github.com/isaacs/node-glob#readme", "_id": "glob@7.1.2", - "_npmVersion": "5.0.0-beta.56", - "_nodeVersion": "8.0.0-pre", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, - "dist": { - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "shasum": "c19c9df9a028702d678612384a6552404c636d15", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/glob-7.1.2.tgz_1495224925341_0.07115248567424715" - }, - "directories": {} - }, - "7.1.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" }, - "name": "glob", - "description": "a little globber", - "version": "7.1.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "dist": { + "shasum": "c19c9df9a028702d678612384a6552404c636d15", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "signatures": [ + { + "sig": "MEQCIFA5Hh4/l+ahhxedHnCgRwGUpyK5ApE7Fx5GIJZq1AIUAiBkfHs0XjKfxwbgwvX6X0ljZytq9IWkAW6r2BbYlpt/Tw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "glob.js", "files": [ @@ -5905,307 +6601,7728 @@ "engines": { "node": "*" }, + "gitHead": "8fa8d561e08c9eed1d286c6a35be2cd8123b2fb7", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "5.0.0-beta.56", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "8.0.0-pre", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { + "tap": "^7.1.2", + "tick": "0.0.6", "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^12.0.1", - "tick": "0.0.6" + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob-7.1.2.tgz_1495224925341_0.07115248567424715", + "host": "s3://npm-registry-packages" + } + }, + "7.1.3": { + "name": "glob", + "version": "7.1.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "8882c8fccabbe459465e73cc2581e121a5fdd25b", + "_id": "glob@7.1.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.1.3", - "_npmVersion": "6.4.0", - "_nodeVersion": "10.0.0", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "dist": { - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", "shasum": "3960832d3f1574108342dafd3a67b332c0969df1", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", "fileCount": 7, + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "signatures": [ + { + "sig": "MEUCIQDap2mGqD66HQdFYLO1ckjf+2Jrhje+aekg6wmV0GKOpQIgQBnRuXkhnyo3Lpaxssm+d49x6SElGybSvhxuCKqhI5A=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 55475, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbg4aBCRA9TVsSAnZWagAAFakQAJEEhQHnRwq2gcIVYfKv\nwVy9B0fSM6X2ezWpDOHPL6XiHV71AmvyTp3zVXYJctBG5hvyQFsgxtkCpwnt\n7AI+NzIa71tV1IIwkeRaW8jdjROKUg3AWdB/9TDwuJOW0ecyyguDPFfgc4Li\nNBA8lAubQKuFEYuv0zlkFbKM0ApfV9IDveTBjSN7gFaG/1FiNyrWhBe2h95M\nNGWGSlswJxNm9d7S8XtpuiBJckpbfnKni1MCgTN+0P0xlXZqhGozrHdULm2N\nAGTaOTyQKgJ1pN/8BVBP+xi88YKXeEQPptxF/SEdOni/NJqgnr+2Rue973yc\nYswdegLnPGvoUX0c9sP9Q7rGdl1N4o+j6Tc3r+s4leP3QMK6t0wUE/4RYLCm\nPKyNtHBID3cqo9EkjXp6s19W2ZnizlEWz9hIE6IfaQrRJdcW+6gCaU8eDGWQ\nIWA35PCdxrYsi2PTuPUXP1Ly+neqmjYuR8/MxH+FPZKWi8kobGFLaABb/CTy\nbq5JYDXAkww9a/G8VWQAjwaCCgXYqO0jjw10/Jp67a6XyJDNTzzK3hGs+CB9\nFXe/0lgn1el8PTBBXPZpNSAVA1FNtbnB9ZybsF0SYBsDV3YgDFoazG/OXvHG\nb5czE2492OGCjvQFrD/6hwr9umzu9efovdPG4IlolFx9gTngy2cIy8Lu08Vs\nrQef\r\n=zCIk\r\n-----END PGP SIGNATURE-----\r\n" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } + "main": "glob.js", + "files": [ + "glob.js", + "sync.js", + "common.js" ], - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/glob_7.1.3_1535346304617_0.317358202887035" + "engines": { + "node": "*" }, - "_hasShrinkwrap": false - }, - "7.1.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" + "gitHead": "8882c8fccabbe459465e73cc2581e121a5fdd25b", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" }, - "name": "glob", - "description": "a little globber", - "version": "7.1.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, - "main": "glob.js", - "engines": { - "node": "*" + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "6.4.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "10.0.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, + "_hasShrinkwrap": false, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.1.3_1535346304617_0.317358202887035", + "host": "s3://npm-registry-packages" + } + }, + "7.1.4": { + "name": "glob", + "version": "7.1.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "2da9af3ed730811d0fe743bec1281e169374428e", + "_id": "glob@7.1.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.1.4", - "_nodeVersion": "12.0.0", - "_npmVersion": "6.9.0", "dist": { - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", "shasum": "aa608a2f6c577ad357e1ae5a5c26d9a8d1969255", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", "fileCount": 7, + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "signatures": [ + { + "sig": "MEUCIQCB9eAdh04Sf1s9g2eG9ISNOvlqQAoHjRCWsMTRVvbytwIgEFv5OCwh5fdOiKaVbS+s7bLwhaMIWbBs1E8/z4j9MFU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 56003, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0iaOCRA9TVsSAnZWagAAWAUP/31a+B7jHSZ+2XWFrp6e\nKNJ46ufxmW5pmxzjoJfzLLSbj55aiSiN3GNFDjLdaLu2c5UHpOOwKhjleptD\nHLMR4a6NwhlgEUDineVVr9DAboqhydBijWr3rbhLJ4egWb+SxwUHHGf5MwDa\nObgmhAzQicpv5r1SjLVWRCd8q7fG2XBRdFcQ5qNmwiD5VFBVqkSsnrzL/pbv\nLFYBxgnQvonGknEiGzfPlZvSyYvhkN+5sZ/w4wvuUPITGAXu6A2A/SeWTGsx\nySkn1tG1GKRRL+jxeGfZFAxtD4N/UqSZvCweoQ4khap3gZbldPaC3tVhgQKR\no8XTutCH4A3dzCAyCQwP66EzsZ3nJr+htau9igZmBw/BG7sPpBnUaodPxbN/\ndjuf4x5EhLX1pnD7Gt/PcftgdwmtuDdd9+uSc/aPmW7i2x2zxqhO/5w/MufY\n8qH8/reQeuv22OJP1WOWHkPp9KEpoHstOMoX3cn6Tk68olG58LI6jw+RQ621\nuRbRhqrRZylFtg5pwSMGkahpCmpI7VixarVckiGC3y5TFPBxoPSRSkNQV0Xp\n2bOABNhRWsvotnjOv2FbHeiX3VAzXy7jNFaIWmoTpDo2+dfzRKt+hgoB+lTt\nT5hyPvf9ahC4l/+Jq1Ph2Jyvsu6MkfuI26MTcXKqCrf73l2YodMy4Hvgnfdo\nplU9\r\n=z8Vm\r\n-----END PGP SIGNATURE-----\r\n" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], + "main": "glob.js", + "engines": { + "node": "*" + }, + "gitHead": "2da9af3ed730811d0fe743bec1281e169374428e", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/glob_7.1.4_1557276301305_0.2059148192333624" - }, - "_hasShrinkwrap": false - }, - "7.1.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "7.1.5", + "deprecated": "Glob versions prior to v9 are no longer supported", "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "main": "glob.js", - "engines": { - "node": "*" + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "6.9.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "12.0.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, + "_hasShrinkwrap": false, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.1.4_1557276301305_0.2059148192333624", + "host": "s3://npm-registry-packages" + } + }, + "7.1.5": { + "name": "glob", + "version": "7.1.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "gitHead": "768cf33c9f3aa0f6d1ae0f9eb75f7424e7ea5cb2", + "_id": "glob@7.1.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.1.5", - "_nodeVersion": "12.12.0", - "_npmVersion": "6.12.0", "dist": { - "integrity": "sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==", "shasum": "6714c69bee20f3c3e64c4dd905553e532b40cdc0", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.5.tgz", "fileCount": 7, + "integrity": "sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==", + "signatures": [ + { + "sig": "MEUCIQCpctbqJoPHo4ldCbGHhGOCZ1v36lFXp27ke3XJ2uav5AIgWWCysnVJo4xAF6bkaKsR+tfXm5xn7NBLZQQXIJl/sYM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 56024, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdreXYCRA9TVsSAnZWagAA0boP/1rKFooUk4qEt7D0T8wk\nsSFy264ZSYcr9DnzNkad28CJRK1omWtwvgPWCYXNfhaiCEjIv/nkI6A/9bjk\ndpqT3b1xfiNjci/PlGXQTOGnu+pNgfcz131rbyf6bKMMaGT89zEuTJQwNqFj\n153YG6tZhqHa8QMtzR5l+gVIKuU62jzvFd1b/INoIe5C8HcC63zPtSOQkiDd\nSJ1MR5dexe34ZGV16XK5uMq0c7dan+lFOPo9zogAQ+8XRNV1QV7CzqgyL2gi\nGcXAjofk7y+7+K62OT5t634Pycm/tOcoAOW6ZkAitPBRizBJfHUb3OpdPGN4\nRu1p645dBXGvEIS8mvwqKDMzC+itbH7j1KRobSpiqmQL2Rr0oJhPUhaKY8gG\nHbVf7/bG7HCNX3o7Sl7udA7aob1MTZ0rPil3Xlm5bZq5MZ76WcSswjoWlOUH\np+zk2ypO+BVyFEcGVf1lFEAzcGRndAYleXVQXu5PCgblHlg9PFlmWhqhHog0\nlTJSd6VNndDPjWbvlw+y1tE6OzvgaP+r7Wo93i0mlXvx7tSCC7FHpXiTtZ3L\ntdoGyCXzJkvpS9D4ONiQHf/bxNb2XrWRY6SjKOdtOU0nZZeuE0C35FNdPRXD\n0SHaVWn71WY1wJdaLp7z7Y7J0bO1mOtmwHkAxFiUd/pPhRQcyXrcEeKn6rIL\nag+l\r\n=3wAf\r\n-----END PGP SIGNATURE-----\r\n" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], + "main": "glob.js", + "engines": { + "node": "*" + }, + "gitHead": "768cf33c9f3aa0f6d1ae0f9eb75f7424e7ea5cb2", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/glob_7.1.5_1571677655059_0.8167810225481" - }, - "_hasShrinkwrap": false - }, - "7.1.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "name": "glob", - "description": "a little globber", - "version": "7.1.6", + "deprecated": "Glob versions prior to v9 are no longer supported", "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "main": "glob.js", - "engines": { - "node": "*" + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "_npmVersion": "6.12.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "12.12.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, + "_hasShrinkwrap": false, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.1.5_1571677655059_0.8167810225481", + "host": "s3://npm-registry-packages" + } + }, + "7.1.6": { + "name": "glob", + "version": "7.1.6", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "gitHead": "f5a57d3d6e19b324522a3fa5bdd5075fd1aa79d1", + "_id": "glob@7.1.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", "bugs": { "url": "https://github.com/isaacs/node-glob/issues" }, - "homepage": "https://github.com/isaacs/node-glob#readme", - "_id": "glob@7.1.6", - "_nodeVersion": "12.12.0", - "_npmVersion": "6.12.1", "dist": { - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", "shasum": "141f33b81a7c2492e125594307480c46679278a6", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", "fileCount": 7, + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "signatures": [ + { + "sig": "MEQCIB2WATrI87TydEVOKJB5AMYFzqOQF9XFsI+LRvK3ybYMAiBo+2l69ZQbg0TcNsZ/zhgiDJFrnv/8vRdD6nc7PKZOcQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 56092, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdw0QwCRA9TVsSAnZWagAAjLEP/RMBPeURbtY+967kK0L7\nanI3M9tDgLszarm5ruMrQkxRFBKwg1RQgiH/a0bTA8T51s7Ztn0DdJp62rKs\nNBpm8Mr3EhAs0L6VyDHtDFXsz4y3MgXEEhFXSRCIGzYWIvKVr0iXeTnPorCX\n1DviAA8h/sfDQ8027Z8Jr1pQIrAbAutQ4X9qllVFcToUoG7aKOZ/LNy3JOpm\n17cFG/60jcZkzkqJZwTHwFdj3dk/XQnhqnsFSy/U9Mc3g8FU9omLRgy+0ugB\n7hIhdhTHFO8Ae6fyGjF4T2UboDq+ubiYF7W9JQPmR0rAV5QykwxGkjshKOkH\nbRxqiYRUHOkmIi1Oc3jZjNWtWNxVbrrAjlD3UMjycH8Cq1D+Jk696n8uAbiH\n4oMpZOO79UaKc4Yuj3t3cOpPyaFZlLmsZOp+1YbtB46okc8dQ/+QdIad8OCb\nlyBaspVbvsuRYf2vlQfC3gDc8gM3bxdQguj/3Di2OJlTTPNCfLVmyFIIunRY\nh6QL5laFnrWc4sEZrA2tP7TA34aUkxGKEgbvs0QJzqVsCOsWD6ax4Fda2jFK\nHcEhusOa0shNpqzZo2K2kPBxMo+hFipFbBG/eb5vUCd71355y5sF1g3lK1Lb\nl1A3yzOLy6ZHPczWhjqZ31kKjfk51q4avZ2Mzym2TFcs4vZzHmbGXqkOtF3t\nEK/U\r\n=6j8m\r\n-----END PGP SIGNATURE-----\r\n" }, + "main": "glob.js", + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "f5a57d3d6e19b324522a3fa5bdd5075fd1aa79d1", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap test/*.js --cov", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "6.12.1", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "12.12.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^12.0.1", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.1.6_1573078063731_0.1420320929360379", + "host": "s3://npm-registry-packages" + } + }, + "7.1.7": { + "name": "glob", + "version": "7.1.7", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@7.1.7", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "before": "test/00-setup.js" + }, + "dist": { + "shasum": "3b193e9233f01d42d0b3f78294bbeeb418f94a90", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "fileCount": 7, + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "signatures": [ + { + "sig": "MEQCIH73h9b1rssfWZtZ2Rz2cJEJRrdKsVOxnt42xWkfZmcnAiBePp3NuZkUarfjkE43tin1f//IBAKlJpSvVxznT5wcjw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 55910, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJglGLUCRA9TVsSAnZWagAAIJoP/RglAn6a7L20+c6q7znw\nalcLxgcPltIttm2yEQ0DQ7h8HyBgZONAQW/S1LikbFT2sh39WTCEcyCumDS+\nY/9xO0up4FsrZZ/nDTE6X87Qvih+DBMTwDgxaA6JVgNpN5xsSakqYq+UqIZ+\nmPbd8xEVJrwew2BaabzqgcJ74X3/GCe3PgcAApazShbHI8gfIVW8LXUl17cP\nuMzMxE5L6rlEuRI8kSF/XogD6WR0YyB8Mfhj/3Q29yjwhDXBgb3DXqoYGDGO\nuPpxacm1W4YMW4cdvdc9QQxQDwLkCJXxWiYJY8rtdsoYpc/7ffIJwOadZFzV\nZMuCoych6KXdNBm0PNmL8lzEj0wqCN0BdmmnEVfflu5hT/uBU8LkbrAG6pqu\n7DIwkBbZZA9RPEqbLMC9VjCX1KoDne4bVjUCI4kp+WBsKcpVpXwdoUCugXNa\n54zpddKxoP5BgPT8JdEnwx3ZnH8nPZoWGhFAONfmLRMRlx8sZCnAZD712jE4\nKWEeW/JgevVRoiuxQQhTLzTA/euYWnAv+8O/lVTzs4TQsCt2UwTCIPLyJbod\na2Mjzicp8rZeBXNoDa37CJygC8b8QE/bFgc4vJhVQOvyu90VWgceyC5oQaYF\nRdMevnJalhY9s52yvUWYbI1p10nzjLKDpLmpgZiJb1cH84XrFoKqKWuVczDz\nvHp9\r\n=iHVN\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "ce43ea071e270f4992d0cd321002816f9aa61de4", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "7.11.2", + "description": "a little globber", "directories": {}, + "_nodeVersion": "16.0.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/glob_7.1.6_1573078063731_0.1420320929360379" + "tmp": "tmp/glob_7.1.7_1620337363953_0.6337225589573023", + "host": "s3://npm-registry-packages" + } + }, + "7.2.0": { + "name": "glob", + "version": "7.2.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, - "_hasShrinkwrap": false - } - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" + "license": "ISC", + "_id": "glob@7.2.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "before": "test/00-setup.js" + }, + "dist": { + "shasum": "d15535af7732e02e948f4c41628bd910293f6023", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "fileCount": 6, + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "signatures": [ + { + "sig": "MEUCIBUe4yb7k+7PjmxAyIxLbYaOw5e0Vplj1fxRd9dqMTY8AiEAv+tvOjXHPYx3rj9sWBME4quzrIo6V+Nw3igFJGdPKoQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54742 + }, + "main": "glob.js", + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "3bfec21dd180ddf4672880176ad33af6296a167e", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "7.23.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "16.5.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.2.0_1632353780077_0.967877466034879", + "host": "s3://npm-registry-packages" + } + }, + "8.0.1": { + "name": "glob", + "version": "8.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@8.0.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "lines": 90, + "before": "test/00-setup.js", + "branches": 90, + "functions": 90, + "statements": 90 + }, + "dist": { + "shasum": "00308f5c035aa0b2a447cd37ead267ddff1577d3", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.0.1.tgz", + "fileCount": 6, + "integrity": "sha512-cF7FYZZ47YzmCu7dDy50xSRRfO3ErRfrXuLZcNIuyiJEco0XSrGtuilG19L5xp3NcwTx7Gn+X6Tv3fmsUPTbow==", + "signatures": [ + { + "sig": "MEQCIBKIZcYWdZGxQ9F/TTV+IvGX4A9J6qzwbeRS6GIuTjKKAiA+DHEvVK3lmLDZHVtoAWW4StiaYtNNJ5RIw7jmuuaodw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVGRxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqaTg/+JmUbtDqjzRxiQPXmtjgoAewKQK39VBl9RvQYk8nCVzk1bQ86\r\nFCydEAgujyCE69/hKHiPQizUsR0iM3imQPAMryybidB3Yojo6/srSShuNCtE\r\nvRiSHvJxpXlrCJl8kT8//yITpur5yLq27R82obhgED6rZnmjsHosPFM0SsNp\r\nBI0TNcxHaJR7DqbJgiMoTguXTMbkVMXqtUY7nBvLoERVNrGCnhP1ToJ5eUYP\r\nSzonyagK3VttlMfCGIwTYQWwn0QlGUR/wbjq3T3i1s+fI6J2C0jKgQnTjJAu\r\nMcB19H/B+qw4VUDiECRG+BA7Kh7cS5Sv4ZAo5Sd8k55rAqCmpfXjRp0osqKf\r\nmD+GNgpvI23rTF59rvUsnVZuwHugrS4+GmRaOWsaWSNJeOwhUJgQRX2rea0y\r\nu0xp1Trtk0VrvcD4ShYGVRTj26Ij/JrB6ORShPcB3TIpTcb2igCr1qkHaAFw\r\n+lcaTQRzP/rJ7chzbrE2XILbU2luz3EmIkz67fAaGx4hUx+mdOSvumOjDyh4\r\nk08uAbw0rAGX1OP0OOEVghOPBTf56yVZgX4ve6lf97MDDCdvTUDeyRSsfD9j\r\nDyXEdQt81FUF4eFwPTDOcdoNg8NmnHe2y9Td0Yo37OF+/oiMXTr0eivf9cM+\r\njHQ2fnMAHwsmuJek3i3qCLDuFQ/gNLJUDrg=\r\n=xv6c\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "55ebc0b473f250f698156060277390dbdb103e62", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "8.5.3", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "17.6.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_8.0.1_1649697905709_0.9394368427310347", + "host": "s3://npm-registry-packages" + } + }, + "8.0.2": { + "name": "glob", + "version": "8.0.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@8.0.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "lines": 90, + "before": "test/00-setup.js", + "branches": 90, + "functions": 90, + "statements": 90 + }, + "dist": { + "shasum": "1b87a70413e702431b17d5fb4363a70e3a6e29de", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.0.2.tgz", + "fileCount": 6, + "integrity": "sha512-0jzor6jfIKaDg/2FIN+9L8oDxzHTkI/+vwJimOmOZjaVjFVVZJFojOYbbWC0okXbBVSgYpbcuQ7xy6gDP9f8gw==", + "signatures": [ + { + "sig": "MEYCIQChH42Dwxb6XL+VthS2rAMspphxjscBXBiIyJOir4C28AIhAIC+8edg0uw+kQDHTMYX7AOUABxihTxhD3N+brWwDIpy", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54882, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifVdVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsiQ//aDZAWr5t4Yd9AP7AI3M3LQk+gBOlXlu7ZYh6CyCj7MAHzSw9\r\nHdMKRs5HZ+AW6Dnyj2Q76lLLz2BxEqi+xz4rzkBsatVALJu0I8w+HHuTb4Dh\r\n0wT9MZEcUZWUsmhUZgYohQffkiyokl002Re3zELfF3xQRAjk9hXBGUdwGuR5\r\nCAmiJ8E76akgFQbGYWf7pZso53B2piAw3IdH3X6C0O5NQe4vBeBgUKl78zKu\r\n5NWJQv1l5OzsxPJqne3rFcFJJtl6KxNweK2E4njCAWFbNGFG8twq8LUA3ahE\r\nMPn0f4i2+vLqu4fOBj/zYgcH0pajC7FGkNckqtNEziz35EXROqEuJ22+DFkW\r\nSROinidKPGoOPdYutUWoJx2NVHPcEsdY6om/ozKMjK6SPSIR8fBOweQZrsXg\r\nShhr7uC4c6YQo2o2vy7yE/WBlUKaBOMYgXio0fqedyojd/YioTiInklSjTB+\r\nhrZ5G+N7SjKyBRw6aJ1G8fC6AZyo2LN388CrtsU29NPulHzw82P79axdcyfU\r\no5Pevh3zMAkfF08FmZxy2CISCpmAlPNdqWeM1R5A1HTv/cg5UeUGQpnsft/l\r\neeWtXJR0e50y4RqYL/eKGnA+E0NR+W5EYhydJuTp572zVIZTlFYHkeY7YqTv\r\nJmgDIs88V3uXXFuOcwf7oAsLTAaloggsDrk=\r\n=jeg+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d13cb0692910fa2b9b16a1c8393cb9d687c83722", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "8.8.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "18.1.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_8.0.2_1652381525767_0.13868507333168445", + "host": "s3://npm-registry-packages" + } + }, + "7.2.2": { + "name": "glob", + "version": "7.2.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@7.2.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "before": "test/00-setup.js" + }, + "dist": { + "shasum": "29deb38e1ef90f132d5958abe9c3ee8e87f3c318", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.2.2.tgz", + "fileCount": 6, + "integrity": "sha512-NzDgHDiJwKYByLrL5lONmQFpK/2G78SMMfo+E9CuGlX4IkvfKDsiQSNPwAYxEy+e6p7ZQ3uslSLlwlJcqezBmQ==", + "signatures": [ + { + "sig": "MEUCIQC2HhBnV3e9fnxCtTxCwsjsBdIOYwh0eQyA+P2/7edDpwIgYrT7ghW9ReBWHMT5M8g20iq88K1Hpvv0xkFmNYLH/uo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 55063, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifpBpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoocw//c4GlNgxntFa5j48M4S2i1OcuCauH5xZt8PZqkXxoIxZrIQCH\r\npyYvJjfMA+CUpH8sFsBCmCNFr5SsV3HRtZd9wSjJTkxJs2g/UwvCAN835S1q\r\n5uSuUTI6+ms159zHciGdKMC8oSCit26EqXYwdOUaijM6YaIOg46cSHqvATeT\r\nWi8CD+UQH9ztMdekiTMscYEKeJhoO5ujl9bgDxj4J3AOVCPYIHNLTWkYVuRv\r\n5dkipSJfB6uB7eN0U7Qsex5mI/9zwX/edeTD04ByMv3ntPnJSui3CbjloJQf\r\np3g6ky6tispqRTDfzAxJzP09wSjlvInTUoGitZ93WDnmjdSnTXuSlYb8Lo3y\r\nWMvbDvkP4/QGX/nnBMS2xJSB2ian6HbT8anX0GSbO/bWKvla4JHnIXWQ+pf3\r\nSSo1XXvO6RQhjbxqrgpCth38mrJRuK2cbi2KodA9bSgcXuC5wiVWV53oyNxp\r\nqLcslVoH7pCSlDhxtiIoec3ETIq59pCVon7a7doQiASXG2fQGyq35cUrxm6h\r\n/Ua9nkKlvaL1CGAhfScJoJV62FV7MpGiKl6BQ1J7NXbWiaFLfkmwBmKaZJ0C\r\nGRfmiMVMbhzAXmrZ58VYwAocdNHJfIvb323EAXWLjLvJKaqPHT5SHIhAIKZk\r\n1iNqGz5V84i7qpnIkn+BHrZCBjCLWdnwe8k=\r\n=rZsG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "readme": "# Glob\n\nMatch files using the patterns the shell uses, like stars and stuff.\n\n[![Build Status](https://travis-ci.org/isaacs/node-glob.svg?branch=master)](https://travis-ci.org/isaacs/node-glob/) [![Build Status](https://ci.appveyor.com/api/projects/status/kd7f3yftf7unxlsx?svg=true)](https://ci.appveyor.com/project/isaacs/node-glob) [![Coverage Status](https://coveralls.io/repos/isaacs/node-glob/badge.svg?branch=master&service=github)](https://coveralls.io/github/isaacs/node-glob?branch=master)\n\nThis is a glob implementation in JavaScript. It uses the `minimatch`\nlibrary to do its matching.\n\n![a fun cartoon logo made of glob characters](logo/glob.png)\n\n## Usage\n\nInstall with npm\n\n```\nnpm i glob\n```\n\n```javascript\nvar glob = require(\"glob\")\n\n// options is optional\nglob(\"**/*.js\", options, function (er, files) {\n // files is an array of filenames.\n // If the `nonull` option is set, and nothing\n // was found, then files is [\"**/*.js\"]\n // er is an error object or null.\n})\n```\n\n## Glob Primer\n\n\"Globs\" are the patterns you type when you do stuff like `ls *.js` on\nthe command line, or put `build/*` in a `.gitignore` file.\n\nBefore parsing the path part patterns, braced sections are expanded\ninto a set. Braced sections start with `{` and end with `}`, with any\nnumber of comma-delimited sections within. Braced sections may contain\nslash characters, so `a{/b/c,bcd}` would expand into `a/b/c` and `abcd`.\n\nThe following characters have special magic meaning when used in a\npath portion:\n\n* `*` Matches 0 or more characters in a single path portion\n* `?` Matches 1 character\n* `[...]` Matches a range of characters, similar to a RegExp range.\n If the first character of the range is `!` or `^` then it matches\n any character not in the range.\n* `!(pattern|pattern|pattern)` Matches anything that does not match\n any of the patterns provided.\n* `?(pattern|pattern|pattern)` Matches zero or one occurrence of the\n patterns provided.\n* `+(pattern|pattern|pattern)` Matches one or more occurrences of the\n patterns provided.\n* `*(a|b|c)` Matches zero or more occurrences of the patterns provided\n* `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns\n provided\n* `**` If a \"globstar\" is alone in a path portion, then it matches\n zero or more directories and subdirectories searching for matches.\n It does not crawl symlinked directories.\n\n### Dots\n\nIf a file or directory path portion has a `.` as the first character,\nthen it will not match any glob pattern unless that pattern's\ncorresponding path part also has a `.` as its first character.\n\nFor example, the pattern `a/.*/c` would match the file at `a/.b/c`.\nHowever the pattern `a/*/c` would not, because `*` does not start with\na dot character.\n\nYou can make glob treat dots as normal characters by setting\n`dot:true` in the options.\n\n### Basename Matching\n\nIf you set `matchBase:true` in the options, and the pattern has no\nslashes in it, then it will seek for any file anywhere in the tree\nwith a matching basename. For example, `*.js` would match\n`test/simple/basic.js`.\n\n### Empty Sets\n\nIf no matching files are found, then an empty array is returned. This\ndiffers from the shell, where the pattern itself is returned. For\nexample:\n\n $ echo a*s*d*f\n a*s*d*f\n\nTo get the bash-style behavior, set the `nonull:true` in the options.\n\n### See Also:\n\n* `man sh`\n* `man bash` (Search for \"Pattern Matching\")\n* `man 3 fnmatch`\n* `man 5 gitignore`\n* [minimatch documentation](https://github.com/isaacs/minimatch)\n\n## glob.hasMagic(pattern, [options])\n\nReturns `true` if there are any special characters in the pattern, and\n`false` otherwise.\n\nNote that the options affect the results. If `noext:true` is set in\nthe options object, then `+(a|b)` will not be considered a magic\npattern. If the pattern has a brace expansion, like `a/{b/c,x/y}`\nthen that is considered magical, unless `nobrace:true` is set in the\noptions.\n\n## glob(pattern, [options], cb)\n\n* `pattern` `{String}` Pattern to be matched\n* `options` `{Object}`\n* `cb` `{Function}`\n * `err` `{Error | null}`\n * `matches` `{Array}` filenames found matching the pattern\n\nPerform an asynchronous glob search.\n\n## glob.sync(pattern, [options])\n\n* `pattern` `{String}` Pattern to be matched\n* `options` `{Object}`\n* return: `{Array}` filenames found matching the pattern\n\nPerform a synchronous glob search.\n\n## Class: glob.Glob\n\nCreate a Glob object by instantiating the `glob.Glob` class.\n\n```javascript\nvar Glob = require(\"glob\").Glob\nvar mg = new Glob(pattern, options, cb)\n```\n\nIt's an EventEmitter, and starts walking the filesystem to find matches\nimmediately.\n\n### new glob.Glob(pattern, [options], [cb])\n\n* `pattern` `{String}` pattern to search for\n* `options` `{Object}`\n* `cb` `{Function}` Called when an error occurs, or matches are found\n * `err` `{Error | null}`\n * `matches` `{Array}` filenames found matching the pattern\n\nNote that if the `sync` flag is set in the options, then matches will\nbe immediately available on the `g.found` member.\n\n### Properties\n\n* `minimatch` The minimatch object that the glob uses.\n* `options` The options object passed in.\n* `aborted` Boolean which is set to true when calling `abort()`. There\n is no way at this time to continue a glob search after aborting, but\n you can re-use the statCache to avoid having to duplicate syscalls.\n* `cache` Convenience object. Each field has the following possible\n values:\n * `false` - Path does not exist\n * `true` - Path exists\n * `'FILE'` - Path exists, and is not a directory\n * `'DIR'` - Path exists, and is a directory\n * `[file, entries, ...]` - Path exists, is a directory, and the\n array value is the results of `fs.readdir`\n* `statCache` Cache of `fs.stat` results, to prevent statting the same\n path multiple times.\n* `symlinks` A record of which paths are symbolic links, which is\n relevant in resolving `**` patterns.\n* `realpathCache` An optional object which is passed to `fs.realpath`\n to minimize unnecessary syscalls. It is stored on the instantiated\n Glob object, and may be re-used.\n\n### Events\n\n* `end` When the matching is finished, this is emitted with all the\n matches found. If the `nonull` option is set, and no match was found,\n then the `matches` list contains the original pattern. The matches\n are sorted, unless the `nosort` flag is set.\n* `match` Every time a match is found, this is emitted with the specific\n thing that matched. It is not deduplicated or resolved to a realpath.\n* `error` Emitted when an unexpected error is encountered, or whenever\n any fs error occurs if `options.strict` is set.\n* `abort` When `abort()` is called, this event is raised.\n\n### Methods\n\n* `pause` Temporarily stop the search\n* `resume` Resume the search\n* `abort` Stop the search forever\n\n### Options\n\nAll the options that can be passed to Minimatch can also be passed to\nGlob to change pattern matching behavior. Also, some have been added,\nor have glob-specific ramifications.\n\nAll options are false by default, unless otherwise noted.\n\nAll options are added to the Glob object, as well.\n\nIf you are running many `glob` operations, you can pass a Glob object\nas the `options` argument to a subsequent operation to shortcut some\n`stat` and `readdir` calls. At the very least, you may pass in shared\n`symlinks`, `statCache`, `realpathCache`, and `cache` options, so that\nparallel glob operations will be sped up by sharing information about\nthe filesystem.\n\n* `cwd` The current working directory in which to search. Defaults\n to `process.cwd()`.\n* `root` The place where patterns starting with `/` will be mounted\n onto. Defaults to `path.resolve(options.cwd, \"/\")` (`/` on Unix\n systems, and `C:\\` or some such on Windows.)\n* `dot` Include `.dot` files in normal matches and `globstar` matches.\n Note that an explicit dot in a portion of the pattern will always\n match dot files.\n* `nomount` By default, a pattern starting with a forward-slash will be\n \"mounted\" onto the root setting, so that a valid filesystem path is\n returned. Set this flag to disable that behavior.\n* `mark` Add a `/` character to directory matches. Note that this\n requires additional stat calls.\n* `nosort` Don't sort the results.\n* `stat` Set to true to stat *all* results. This reduces performance\n somewhat, and is completely unnecessary, unless `readdir` is presumed\n to be an untrustworthy indicator of file existence.\n* `silent` When an unusual error is encountered when attempting to\n read a directory, a warning will be printed to stderr. Set the\n `silent` option to true to suppress these warnings.\n* `strict` When an unusual error is encountered when attempting to\n read a directory, the process will just continue on in search of\n other matches. Set the `strict` option to raise an error in these\n cases.\n* `cache` See `cache` property above. Pass in a previously generated\n cache object to save some fs calls.\n* `statCache` A cache of results of filesystem information, to prevent\n unnecessary stat calls. While it should not normally be necessary\n to set this, you may pass the statCache from one glob() call to the\n options object of another, if you know that the filesystem will not\n change between calls. (See \"Race Conditions\" below.)\n* `symlinks` A cache of known symbolic links. You may pass in a\n previously generated `symlinks` object to save `lstat` calls when\n resolving `**` matches.\n* `sync` DEPRECATED: use `glob.sync(pattern, opts)` instead.\n* `nounique` In some cases, brace-expanded patterns can result in the\n same file showing up multiple times in the result set. By default,\n this implementation prevents duplicates in the result set. Set this\n flag to disable that behavior.\n* `nonull` Set to never return an empty set, instead returning a set\n containing the pattern itself. This is the default in glob(3).\n* `debug` Set to enable debug logging in minimatch and glob.\n* `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.\n* `noglobstar` Do not match `**` against multiple filenames. (Ie,\n treat it as a normal `*` instead.)\n* `noext` Do not match `+(a|b)` \"extglob\" patterns.\n* `nocase` Perform a case-insensitive match. Note: on\n case-insensitive filesystems, non-magic patterns will match by\n default, since `stat` and `readdir` will not raise errors.\n* `matchBase` Perform a basename-only match if the pattern does not\n contain any slash characters. That is, `*.js` would be treated as\n equivalent to `**/*.js`, matching all js files in all directories.\n* `nodir` Do not match directories, only files. (Note: to match\n *only* directories, simply put a `/` at the end of the pattern.)\n* `ignore` Add a pattern or an array of glob patterns to exclude matches.\n Note: `ignore` patterns are *always* in `dot:true` mode, regardless\n of any other settings.\n* `follow` Follow symlinked directories when expanding `**` patterns.\n Note that this can result in a lot of duplicate references in the\n presence of cyclic links.\n* `realpath` Set to true to call `fs.realpath` on all of the results.\n In the case of a symlink that cannot be resolved, the full absolute\n path to the matched entry is returned (though it will usually be a\n broken symlink)\n* `absolute` Set to true to always receive absolute paths for matched\n files. Unlike `realpath`, this also affects the values returned in\n the `match` event.\n* `fs` File-system object with Node's `fs` API. By default, the built-in\n `fs` module will be used. Set to a volume provided by a library like\n `memfs` to avoid using the \"real\" file-system.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between node-glob and other\nimplementations, and are intentional.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.3, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nNote that symlinked directories are not crawled as part of a `**`,\nthough their contents may match against subsequent portions of the\npattern. This prevents infinite loops and duplicates and the like.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen glob returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`glob.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\n### Comments and Negation\n\nPreviously, this module let you mark a pattern as a \"comment\" if it\nstarted with a `#` character, or a \"negated\" pattern if it started\nwith a `!` character.\n\nThese options were deprecated in version 5, and removed in version 6.\n\nTo specify things that should not match, use the `ignore` option.\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes will always\nbe interpreted as escape characters, not path separators.\n\nResults from absolute patterns such as `/foo/*` are mounted onto the\nroot setting using `path.join`. On windows, this will by default result\nin `/foo/*` matching `C:\\foo\\bar.txt`.\n\n## Race Conditions\n\nGlob searching, by its very nature, is susceptible to race conditions,\nsince it relies on directory walking and such.\n\nAs a result, it is possible that a file that exists when glob looks for\nit may have been deleted or modified by the time it returns the result.\n\nAs part of its internal implementation, this program caches all stat\nand readdir calls that it makes, in order to cut down on system\noverhead. However, this also makes it even more susceptible to races,\nespecially if the cache or statCache objects are reused between glob\ncalls.\n\nUsers are thus advised not to use a glob result as a guarantee of\nfilesystem state in the face of rapid changes. For the vast majority\nof operations, this is never a problem.\n\n## Glob Logo\nGlob's logo was created by [Tanya Brassie](http://tanyabrassie.com/). Logo files can be found [here](https://github.com/isaacs/node-glob/tree/master/logo).\n\nThe logo is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).\n\n## Contributing\n\nAny change to behavior (including bugfixes) must come with a test.\n\nPatches that fail tests or reduce performance will be rejected.\n\n```\n# to run tests\nnpm test\n\n# to re-generate test fixtures\nnpm run test-regen\n\n# to benchmark against bash/zsh\nnpm run bench\n\n# to profile javascript\nnpm run prof\n```\n\n![](oh-my-glob.gif)\n", + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "fd05f3d0687c7c911ba24585049329bca9a4218b", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "8.8.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "18.1.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "publishConfig": { + "tag": "v7-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.2.2_1652461673250_0.04351994270390769", + "host": "s3://npm-registry-packages" + } + }, + "8.0.3": { + "name": "glob", + "version": "8.0.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@8.0.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "lines": 90, + "before": "test/00-setup.js", + "branches": 90, + "functions": 90, + "statements": 90 + }, + "dist": { + "shasum": "415c6eb2deed9e502c68fa44a272e6da6eeca42e", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "fileCount": 6, + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "signatures": [ + { + "sig": "MEUCIQCSNq44cyQRp/+YqAVe5wMwao5o/wACh5UhkXSuITJDXwIgIVOjee7D0hu/fProb9LV6eXz5fz+kLsKnoYUkdyvLag=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54888, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifpCQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpC+A//cawJV7w0mJCrxiM416gPt3RDt0NOtmdTrpTYpsOc1VQcddq3\r\nnex8sq7RpqH1OVJUZN8Y5TqhFers9+b9bfx5mg2Mcub+CUrj1E9VCGsBua7A\r\n0aZyAL4nMwSOARtH60L9LI9QsZTWkmP1BX8BNfncdP5HAGP00Tj2X5UnW/C4\r\nzYdTknbZbQ44KvjsBoLKG2YzzL8VqupHPNNWjQAuMYU3fNd+mwzDUbQ9u9fJ\r\n4Iy0GE107ayF2RKq/QrksGdRd35pdE9J1fPqgDLw47WREif/+upBt4ae36lk\r\nGSnkxh++DgHy68jN+FR/AT63ACjBSj2zyGBlao7oaqSuLK+zRtwLakVbyNX2\r\nRBqg7BnsdvrRD/67NArvJjs0XLoGVKUl+RIsOedZQXnRUkFIUqKc/z4rBUgg\r\n8RoJTc+pPpryrCz1GCXpzOVVlR+WXjeT4KdWgZg25GrYco5HDg0dsK+Gj4VF\r\nPwGfbt/+5Yoo7Nz47AU6Stev+MpRDVhz4EV8LX1/Zuuen0es65KhJhg7fRCs\r\nxjd4Jj9jtISfY/iAluieFYCJMqpdzEHF+c1IuLene36x6Lm4TqYAIGDwQx8D\r\n9sczfUA7j+VC+8hb9UkmL9FEd92zzZ4SHpFxuO51BehhuSm+OcE7JmpqpRlH\r\nPrljFZcybXTJ9R3qsc01EmxPQo2WyO9j0Ik=\r\n=+5MH\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d844b2c1debfb7a408a8a219aea6cd5c66cfdea4", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "8.8.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "18.1.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_8.0.3_1652461712621_0.6098405840190355", + "host": "s3://npm-registry-packages" + } + }, + "7.2.3": { + "name": "glob", + "version": "7.2.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@7.2.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "before": "test/00-setup.js" + }, + "dist": { + "shasum": "b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "fileCount": 6, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "signatures": [ + { + "sig": "MEUCIDE4qmKAbJI1BNug7/2IpHvjk34XjYrTyYJQt6wmjipFAiEA+3GoKlGbIW+7dloZtSwisGZJaFztJowqCHye7GZirDI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 55064, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigRG0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmre7A//cbIznRlRXwGKsqgVQq6PnM6b1T3ipVFteb2GWeUGutntIQBN\r\nJ5w3VzMFVvWX8UvcQMvAKYjWIiy/Okq3Ym0EtrLT0k7FmlFPHKMc2JPS4f9U\r\njtJjyPaIHnL6sDhmSodwDOqybqETTUDlLjG8A+bE1ubqByCsa8ouxoOTQvUV\r\nUG+VhPktG5VT2FhQjP5IFMuu/nRcFLg/Hr6awUlO1czCdhJ19msI1l2CeIVb\r\nCe8i54YPTVNPnwtAwPBefV4zGpJM9M+fItMm5dLj78o+1tomW6iIGIsMWHCO\r\nDmF7twk+1h3nyiiCgu8B49NaDFrFnJZQ8pHF7nQcthk6Bxt6KR4taf7mg+QJ\r\nIWONQ9ePRBKjDq7uNSoz1XNUE62/bJv1PovVRga7bqmVr7RxH1gAS0KaH0TV\r\nrc7HLMWVOdupnRDlPjTL+rkoUmajWVg6C3Y+3mQ59mrru0Ux2fK3gHxfuErO\r\nUHnaTSGGlEVQMJHa6XDMLdbhC6kUNu5BCxaLiqeBvS7r8gYnJfR644PhEyZr\r\n/NMYXVkzapDBd1Jd3b713yTv+zfcCpy3RqooqecSSVyLqXxQ/a6qPytAwkrn\r\ndMRQJmFMnaHfE/fh4pAJcRdI9+I5T87eMPbmuvDnbxwzMXLnaAe+vxIa7u+L\r\nhxzMH/SiC8ztBaHgNPzxyptD4LUbDqx+X9s=\r\n=co+l\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "readme": "# Glob\n\nMatch files using the patterns the shell uses, like stars and stuff.\n\n[![Build Status](https://travis-ci.org/isaacs/node-glob.svg?branch=master)](https://travis-ci.org/isaacs/node-glob/) [![Build Status](https://ci.appveyor.com/api/projects/status/kd7f3yftf7unxlsx?svg=true)](https://ci.appveyor.com/project/isaacs/node-glob) [![Coverage Status](https://coveralls.io/repos/isaacs/node-glob/badge.svg?branch=master&service=github)](https://coveralls.io/github/isaacs/node-glob?branch=master)\n\nThis is a glob implementation in JavaScript. It uses the `minimatch`\nlibrary to do its matching.\n\n![a fun cartoon logo made of glob characters](logo/glob.png)\n\n## Usage\n\nInstall with npm\n\n```\nnpm i glob\n```\n\n```javascript\nvar glob = require(\"glob\")\n\n// options is optional\nglob(\"**/*.js\", options, function (er, files) {\n // files is an array of filenames.\n // If the `nonull` option is set, and nothing\n // was found, then files is [\"**/*.js\"]\n // er is an error object or null.\n})\n```\n\n## Glob Primer\n\n\"Globs\" are the patterns you type when you do stuff like `ls *.js` on\nthe command line, or put `build/*` in a `.gitignore` file.\n\nBefore parsing the path part patterns, braced sections are expanded\ninto a set. Braced sections start with `{` and end with `}`, with any\nnumber of comma-delimited sections within. Braced sections may contain\nslash characters, so `a{/b/c,bcd}` would expand into `a/b/c` and `abcd`.\n\nThe following characters have special magic meaning when used in a\npath portion:\n\n* `*` Matches 0 or more characters in a single path portion\n* `?` Matches 1 character\n* `[...]` Matches a range of characters, similar to a RegExp range.\n If the first character of the range is `!` or `^` then it matches\n any character not in the range.\n* `!(pattern|pattern|pattern)` Matches anything that does not match\n any of the patterns provided.\n* `?(pattern|pattern|pattern)` Matches zero or one occurrence of the\n patterns provided.\n* `+(pattern|pattern|pattern)` Matches one or more occurrences of the\n patterns provided.\n* `*(a|b|c)` Matches zero or more occurrences of the patterns provided\n* `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns\n provided\n* `**` If a \"globstar\" is alone in a path portion, then it matches\n zero or more directories and subdirectories searching for matches.\n It does not crawl symlinked directories.\n\n### Dots\n\nIf a file or directory path portion has a `.` as the first character,\nthen it will not match any glob pattern unless that pattern's\ncorresponding path part also has a `.` as its first character.\n\nFor example, the pattern `a/.*/c` would match the file at `a/.b/c`.\nHowever the pattern `a/*/c` would not, because `*` does not start with\na dot character.\n\nYou can make glob treat dots as normal characters by setting\n`dot:true` in the options.\n\n### Basename Matching\n\nIf you set `matchBase:true` in the options, and the pattern has no\nslashes in it, then it will seek for any file anywhere in the tree\nwith a matching basename. For example, `*.js` would match\n`test/simple/basic.js`.\n\n### Empty Sets\n\nIf no matching files are found, then an empty array is returned. This\ndiffers from the shell, where the pattern itself is returned. For\nexample:\n\n $ echo a*s*d*f\n a*s*d*f\n\nTo get the bash-style behavior, set the `nonull:true` in the options.\n\n### See Also:\n\n* `man sh`\n* `man bash` (Search for \"Pattern Matching\")\n* `man 3 fnmatch`\n* `man 5 gitignore`\n* [minimatch documentation](https://github.com/isaacs/minimatch)\n\n## glob.hasMagic(pattern, [options])\n\nReturns `true` if there are any special characters in the pattern, and\n`false` otherwise.\n\nNote that the options affect the results. If `noext:true` is set in\nthe options object, then `+(a|b)` will not be considered a magic\npattern. If the pattern has a brace expansion, like `a/{b/c,x/y}`\nthen that is considered magical, unless `nobrace:true` is set in the\noptions.\n\n## glob(pattern, [options], cb)\n\n* `pattern` `{String}` Pattern to be matched\n* `options` `{Object}`\n* `cb` `{Function}`\n * `err` `{Error | null}`\n * `matches` `{Array}` filenames found matching the pattern\n\nPerform an asynchronous glob search.\n\n## glob.sync(pattern, [options])\n\n* `pattern` `{String}` Pattern to be matched\n* `options` `{Object}`\n* return: `{Array}` filenames found matching the pattern\n\nPerform a synchronous glob search.\n\n## Class: glob.Glob\n\nCreate a Glob object by instantiating the `glob.Glob` class.\n\n```javascript\nvar Glob = require(\"glob\").Glob\nvar mg = new Glob(pattern, options, cb)\n```\n\nIt's an EventEmitter, and starts walking the filesystem to find matches\nimmediately.\n\n### new glob.Glob(pattern, [options], [cb])\n\n* `pattern` `{String}` pattern to search for\n* `options` `{Object}`\n* `cb` `{Function}` Called when an error occurs, or matches are found\n * `err` `{Error | null}`\n * `matches` `{Array}` filenames found matching the pattern\n\nNote that if the `sync` flag is set in the options, then matches will\nbe immediately available on the `g.found` member.\n\n### Properties\n\n* `minimatch` The minimatch object that the glob uses.\n* `options` The options object passed in.\n* `aborted` Boolean which is set to true when calling `abort()`. There\n is no way at this time to continue a glob search after aborting, but\n you can re-use the statCache to avoid having to duplicate syscalls.\n* `cache` Convenience object. Each field has the following possible\n values:\n * `false` - Path does not exist\n * `true` - Path exists\n * `'FILE'` - Path exists, and is not a directory\n * `'DIR'` - Path exists, and is a directory\n * `[file, entries, ...]` - Path exists, is a directory, and the\n array value is the results of `fs.readdir`\n* `statCache` Cache of `fs.stat` results, to prevent statting the same\n path multiple times.\n* `symlinks` A record of which paths are symbolic links, which is\n relevant in resolving `**` patterns.\n* `realpathCache` An optional object which is passed to `fs.realpath`\n to minimize unnecessary syscalls. It is stored on the instantiated\n Glob object, and may be re-used.\n\n### Events\n\n* `end` When the matching is finished, this is emitted with all the\n matches found. If the `nonull` option is set, and no match was found,\n then the `matches` list contains the original pattern. The matches\n are sorted, unless the `nosort` flag is set.\n* `match` Every time a match is found, this is emitted with the specific\n thing that matched. It is not deduplicated or resolved to a realpath.\n* `error` Emitted when an unexpected error is encountered, or whenever\n any fs error occurs if `options.strict` is set.\n* `abort` When `abort()` is called, this event is raised.\n\n### Methods\n\n* `pause` Temporarily stop the search\n* `resume` Resume the search\n* `abort` Stop the search forever\n\n### Options\n\nAll the options that can be passed to Minimatch can also be passed to\nGlob to change pattern matching behavior. Also, some have been added,\nor have glob-specific ramifications.\n\nAll options are false by default, unless otherwise noted.\n\nAll options are added to the Glob object, as well.\n\nIf you are running many `glob` operations, you can pass a Glob object\nas the `options` argument to a subsequent operation to shortcut some\n`stat` and `readdir` calls. At the very least, you may pass in shared\n`symlinks`, `statCache`, `realpathCache`, and `cache` options, so that\nparallel glob operations will be sped up by sharing information about\nthe filesystem.\n\n* `cwd` The current working directory in which to search. Defaults\n to `process.cwd()`.\n* `root` The place where patterns starting with `/` will be mounted\n onto. Defaults to `path.resolve(options.cwd, \"/\")` (`/` on Unix\n systems, and `C:\\` or some such on Windows.)\n* `dot` Include `.dot` files in normal matches and `globstar` matches.\n Note that an explicit dot in a portion of the pattern will always\n match dot files.\n* `nomount` By default, a pattern starting with a forward-slash will be\n \"mounted\" onto the root setting, so that a valid filesystem path is\n returned. Set this flag to disable that behavior.\n* `mark` Add a `/` character to directory matches. Note that this\n requires additional stat calls.\n* `nosort` Don't sort the results.\n* `stat` Set to true to stat *all* results. This reduces performance\n somewhat, and is completely unnecessary, unless `readdir` is presumed\n to be an untrustworthy indicator of file existence.\n* `silent` When an unusual error is encountered when attempting to\n read a directory, a warning will be printed to stderr. Set the\n `silent` option to true to suppress these warnings.\n* `strict` When an unusual error is encountered when attempting to\n read a directory, the process will just continue on in search of\n other matches. Set the `strict` option to raise an error in these\n cases.\n* `cache` See `cache` property above. Pass in a previously generated\n cache object to save some fs calls.\n* `statCache` A cache of results of filesystem information, to prevent\n unnecessary stat calls. While it should not normally be necessary\n to set this, you may pass the statCache from one glob() call to the\n options object of another, if you know that the filesystem will not\n change between calls. (See \"Race Conditions\" below.)\n* `symlinks` A cache of known symbolic links. You may pass in a\n previously generated `symlinks` object to save `lstat` calls when\n resolving `**` matches.\n* `sync` DEPRECATED: use `glob.sync(pattern, opts)` instead.\n* `nounique` In some cases, brace-expanded patterns can result in the\n same file showing up multiple times in the result set. By default,\n this implementation prevents duplicates in the result set. Set this\n flag to disable that behavior.\n* `nonull` Set to never return an empty set, instead returning a set\n containing the pattern itself. This is the default in glob(3).\n* `debug` Set to enable debug logging in minimatch and glob.\n* `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.\n* `noglobstar` Do not match `**` against multiple filenames. (Ie,\n treat it as a normal `*` instead.)\n* `noext` Do not match `+(a|b)` \"extglob\" patterns.\n* `nocase` Perform a case-insensitive match. Note: on\n case-insensitive filesystems, non-magic patterns will match by\n default, since `stat` and `readdir` will not raise errors.\n* `matchBase` Perform a basename-only match if the pattern does not\n contain any slash characters. That is, `*.js` would be treated as\n equivalent to `**/*.js`, matching all js files in all directories.\n* `nodir` Do not match directories, only files. (Note: to match\n *only* directories, simply put a `/` at the end of the pattern.)\n* `ignore` Add a pattern or an array of glob patterns to exclude matches.\n Note: `ignore` patterns are *always* in `dot:true` mode, regardless\n of any other settings.\n* `follow` Follow symlinked directories when expanding `**` patterns.\n Note that this can result in a lot of duplicate references in the\n presence of cyclic links.\n* `realpath` Set to true to call `fs.realpath` on all of the results.\n In the case of a symlink that cannot be resolved, the full absolute\n path to the matched entry is returned (though it will usually be a\n broken symlink)\n* `absolute` Set to true to always receive absolute paths for matched\n files. Unlike `realpath`, this also affects the values returned in\n the `match` event.\n* `fs` File-system object with Node's `fs` API. By default, the built-in\n `fs` module will be used. Set to a volume provided by a library like\n `memfs` to avoid using the \"real\" file-system.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between node-glob and other\nimplementations, and are intentional.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.3, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nNote that symlinked directories are not crawled as part of a `**`,\nthough their contents may match against subsequent portions of the\npattern. This prevents infinite loops and duplicates and the like.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen glob returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`glob.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\n### Comments and Negation\n\nPreviously, this module let you mark a pattern as a \"comment\" if it\nstarted with a `#` character, or a \"negated\" pattern if it started\nwith a `!` character.\n\nThese options were deprecated in version 5, and removed in version 6.\n\nTo specify things that should not match, use the `ignore` option.\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes will always\nbe interpreted as escape characters, not path separators.\n\nResults from absolute patterns such as `/foo/*` are mounted onto the\nroot setting using `path.join`. On windows, this will by default result\nin `/foo/*` matching `C:\\foo\\bar.txt`.\n\n## Race Conditions\n\nGlob searching, by its very nature, is susceptible to race conditions,\nsince it relies on directory walking and such.\n\nAs a result, it is possible that a file that exists when glob looks for\nit may have been deleted or modified by the time it returns the result.\n\nAs part of its internal implementation, this program caches all stat\nand readdir calls that it makes, in order to cut down on system\noverhead. However, this also makes it even more susceptible to races,\nespecially if the cache or statCache objects are reused between glob\ncalls.\n\nUsers are thus advised not to use a glob result as a guarantee of\nfilesystem state in the face of rapid changes. For the vast majority\nof operations, this is never a problem.\n\n## Glob Logo\nGlob's logo was created by [Tanya Brassie](http://tanyabrassie.com/). Logo files can be found [here](https://github.com/isaacs/node-glob/tree/master/logo).\n\nThe logo is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).\n\n## Contributing\n\nAny change to behavior (including bugfixes) must come with a test.\n\nPatches that fail tests or reduce performance will be rejected.\n\n```\n# to run tests\nnpm test\n\n# to re-generate test fixtures\nnpm run test-regen\n\n# to benchmark against bash/zsh\nnpm run bench\n\n# to profile javascript\nnpm run prof\n```\n\n![](oh-my-glob.gif)\n", + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "c3cd57ae128faa0e9190492acc743bb779ac4054", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "8.8.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "18.1.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "publishConfig": { + "tag": "v7-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_7.2.3_1652625844715_0.8582849379293422", + "host": "s3://npm-registry-packages" + } + }, + "8.1.0": { + "name": "glob", + "version": "8.1.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@8.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "jobs": 1, + "after": "test/zz-cleanup.js", + "lines": 90, + "before": "test/00-setup.js", + "branches": 90, + "functions": 90, + "statements": 90 + }, + "dist": { + "shasum": "d388f656593ef708ee3e34640fdfb99a9fd1c33e", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "fileCount": 6, + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "signatures": [ + { + "sig": "MEQCICNZRO77M4xv09dE3srZkzL1DlG+MtImsJJVsSz5EsZfAiA/ClXeJWttytUmrRUvdPlXW6P+DrDkvwY5xoDVmF8TFQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 56156, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwy41ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpTIw//b9kRgV2SLyMqxhhq0aH+19Y9H7O14GpW3DCuSuqdr2qqNXas\r\nOku9PpKEMt5GbpKjuwfjEnlZ3iu9jUWxxFSP/loKMnsmq/WBMlRxW4/swCKs\r\nsENll+f/OI4wJE1fRRoOhx/yAmxxnvBiM3dCtfCWdgIftQ/4zKhJEF14r2e2\r\nx3UWLbYGknjZf5dpgXpeRnjL/aNoBOAK59m/AO2Siq3s868DOHDMvQYsGj6p\r\n8eHp/OYgb09gwfL4eOFVE49OAk7Ol0qBFUyykAr6DKgrKgU34Mg4Be04lUVV\r\nhDDSJfK+9hbkXgIIv30jf5wWphpYt2enPerLovLdFWKIkEmv71lx200Qo2IZ\r\nZkj8AimiVYgSa3MItYiFMQ3BwrMD8GTIp8IaUuEp+VFsWfbrAX7IerVW5V3e\r\n7/E3V1fXKysc1fChiO0qK73lJwOBNWOhO7ra6uwvUJt4uYU6f8Vc2Q+VJWhb\r\n75qTjqvzsOPCdgJF9CIgDBR9aEoOgOwk67KrZcPiuhUQH1hvWd12R+NQ9WkM\r\nUBzrtEa3QKfBihucdauUpB9k2ZZga8r3fFVHXHb36P7hHTLzmPd1xLLn2qyN\r\nch7cTeuyj8Z6UFuKrSHFduzurb4eF/vgW1NSq4rpIFB12Ne41geZaVsTUcZE\r\nbE/vXWSEFrYM/6X2UHyeTyuGflSfdagWOVk=\r\n=ok/S\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "glob.js", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "1b6bf20239a4c3bd73cacc82daa86bb7cf409398", + "scripts": { + "prof": "bash prof.sh && cat profile.txt", + "test": "tap", + "bench": "bash benchmark.sh", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a little globber", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_8.1.0_1673735733412_0.8030475957139467", + "host": "s3://npm-registry-packages" + } + }, + "9.0.0": { + "name": "glob", + "version": "9.0.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "8940d5f3225ca022931bf129cae13fc5f284aab7", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.0.0.tgz", + "fileCount": 50, + "integrity": "sha512-7rdoWzT8/4f1yEe/cMdBug2lmzmYMYU9h4RNNiavPHajhcxt7kkxrOvwSnIPkZMjLQb9BXv7nFoKmTnPPklMyA==", + "signatures": [ + { + "sig": "MEQCIHdRzOtwdHx3/Tulw7RgqZqdML3QYWJU0uzrMnN6Pw4MAiBF3aLEkXpa1KicB5iqWo7ZW6ilwt3L6cbdLCVa2P4E6A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 240782, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/RfUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLrQ//cIGM8l3+sV+VccFpFJk1FT2h0PJ92RzVhWBFA81YOzZOvKp+\r\nQPTs59iM1QhvFZMKJ8vbCsyzbqiPfAZbzXxrYw8Wh48GiemRrma+NW5v84jb\r\nDYJIoGQ4RoiPFrZ1OT/RMAtKN2z03tqhNMe/kNU/a9L5diy5S3WXyEQl4GiK\r\nS4YbyfvInOXeFQTQdU9Y7gM2mDpWSTPWXdwOSZ0aYz1yjooPTcJworCPl8gt\r\nbNa01NIztw0EqnYnXd4ooAosXjdAPGusuaCWRkZ57vyoj1U9RrkkmFkGjHAy\r\nWBLBZ2xIDjOo8JhgRCIufjlPjmP/SbanPk13BITlBvXZZD4lJVptZmPTAj9B\r\n6vUuQzDm+aMFPYuMFEDzf3L6c3j/mjVSELvtWBZlxbK/5UC2XfBYrpSM6Rrf\r\nuYIh/92efJSpgZzqytOmF73uPBVSPp5vRPN7fWg+O8mJANVcMcE6iv08n9Mn\r\nVU0ORNIsUXYCbSyZbSwBWBBAEyOiFBX5OwVlJNE2gu2xOJgD9TUPPk26mpey\r\n6qwss1SIGLehT1UfQRGv7dpTmC0cfr9VVLJLdf/aAsX2iUcAkncKXXYbTxKU\r\npShF+7atDrC1+ARGxhNJWl9IhVCpXmD+UaYhPEl3svzqw3ObABt7U6PCZwNa\r\nK6ymC65RbpG5r1ynn+Jntf9fs0C9GyYS01g=\r\n=kqb+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index-cjs.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "a68703e61894ef260323dcc9f95b21f17197d951", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.3.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.0.0_1677531092516_0.754893791209212", + "host": "s3://npm-registry-packages" + } + }, + "9.0.1": { + "name": "glob", + "version": "9.0.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.0.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "4f2c8a645659d81177bcf792761b52862696ca4e", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.0.1.tgz", + "fileCount": 50, + "integrity": "sha512-psRdn8MI0gRcH0xow0VOhYxXD/6ZaRGmgtfN0oWN/hCgjxpRQBMCl7wE4JRJSAUTdJsW+FmD0EtE0CgJhKqSVw==", + "signatures": [ + { + "sig": "MEUCIQCet5ADr+8Tj3WEchzU3PP1NGe6lKnBGB6B5vWqAnPW7QIgeF+An9vxAzPpvKqFs6LhfTz0cJQAZZxyo7x0eDrX0+c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 240796, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/RjPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRVg//ZTjXwGCw2NytlVRi9OYhydmctwa29x6VrmhStUbid5+ZThI7\r\n+BRt3xYM+wS9UR7oF4v6U9cqbUHrdzKGWOMMeKpbmC7lAaX6Wq7wNjM4pMsZ\r\nnimafDiVM4yiQRoyujUsUDXJhG3g+zNTBHA2vuOQNRU8D1eDYA1Scy8STqx1\r\nHziNCcRCYtCcqOxr/EyrJo4IRHpdC8WiMt+Oe/tZG5pFWDObQqlbNyraizgY\r\nv7a3wmO3yJHQt3oJphyT0InrJpjKLq/9G86GsX/G1wNy9fc81DmfC3q6l57G\r\nQDxuSMdwLH6Qpw0MrZqPw+F50/QwAKBjX7LmF4aL8htZV4pXHsZhbAyu2QkN\r\n55xNl5d32Da4wLh9YvefPqHoS0mQ5ImsnWNBKWDIj1mdeJ5OMXlrtfMhTNfx\r\nE49ZTnonbxU0ZztU74ZTuTejPqh70C/J75u9jLeTj5x89+V265En9CI8xYz1\r\n+H1nFo1qAvwuuT362dcbuZZatrweubx/OLBiAm7LgPmJ/zKcrTaWXsSD4YDu\r\nni7KszMFUJv96SXH/8NYfBsZwyg6dbExwyyIPRwzLq+s9Sie35TDy2/Gtocf\r\n7+VbiUQZ2oXEu+xjIr0W5Pd/UbDYfWJXyDP5/YpLabZgH4oD/IKl/wIF8+0N\r\nNOyt+O0Rc/qZT1LLSGUbCsN1yt1kGdyII28=\r\n=p/ht\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index-cjs.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "bedc98cfbb12f68e588c5f774d8bab5380fb6552", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.3.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.0.1_1677531343005_0.26643868494133693", + "host": "s3://npm-registry-packages" + } + }, + "9.0.2": { + "name": "glob", + "version": "9.0.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.0.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "9f048465b4c78a016615b5784b016d2907ea840b", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.0.2.tgz", + "fileCount": 50, + "integrity": "sha512-s6v83yj/qsUHZTp4d1Pq9HkB2tROINGxXhKYspF0kGvVqPlEPrUo4WDnSffO1611xYvkuK3mgoo86mdulYCX4A==", + "signatures": [ + { + "sig": "MEQCIGd0h4EbKyDNIWVx9wnH+Irhz4C5ncvQCVs+v6I/mokVAiBk9MEqBs7yoLwh/Yx4crR6egRlLWyehyVAbmVa1u3bOA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 240832, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/nLBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSUw//cyIr18+5xYZEeRh/lz2jDAlzh97keyy2I90nuxC73jt4PjJk\r\nbBvxWlnBOip2ZE4RqoAplenNVJt1D5GuwwcI0K0BCgzi66m27vkTRwcbzHj3\r\nJMDmaYzLxs42wymxCBZwtmYhhlVq9zLlv3Kc1e7iIBvzCIhrjONcZcYytQO/\r\n1jzSEZTmzuemzDXCHt7qlQ4JAS5+DRZqf5O5PLqQvK/almcA2VvEQdjzRr7/\r\nVwAAFjBf12MfCLWYRlIhrd+yuMXog97FWfnGB3Bz0eDinBubBNKVUZVdP2Ug\r\nWaYk1s9Z6Bu1BeiSg24SlXnn7Ovf206QHRcfgM2vGK4vgzeutXVifphoiHr0\r\nDugJ54CjgH1AgJZiOYkBAVMqvApYlrsf56kEqALk2EI0s7+cCJLzpKuyKZ5S\r\nuDXlWPozBSVF+Fl70Je27F/hdzvMDSvLoYzZoFHeiDJf5zvKEUUnAC9WSlgf\r\nCxCyqsBwMjXloU0mlfChXUo8yKm5mWKoz3uL4pdoaA0cnsrQR8y3PCtcckeN\r\nZ+q/JRdAzVxD4Ca+ONzjdcNddAA8vTKH1z/+XIGC+gXGPfQTWI6cjB8HHLEt\r\nmhAa4B8dfeAejWYR7tkSpqnrprnrEB0/mDdgM01ambYsPAAijQXkIweJBnat\r\noNo1pI6oPRjkQ4EMqrp5sr0jKzZgPxRjZFc=\r\n=ug1G\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "281e91edb5176c3594c60f6e28655ce29e421044", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.3.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.0.2_1677619905339_0.5788357798624457", + "host": "s3://npm-registry-packages" + } + }, + "9.1.0": { + "name": "glob", + "version": "9.1.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e440a5e856ab504a68a4261959a33d2219ad6618", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.1.0.tgz", + "fileCount": 50, + "integrity": "sha512-bAnZn/xYN7o43Y97vDipnunJtQOOhJAyt7/zt1HrzFgtIrol4eJTUn8Kd74B1cMyOBuzWUMvBr2F178h0UQuUw==", + "signatures": [ + { + "sig": "MEYCIQDtNY7i3WTJXlaEg6rAdNVypzsDTec+FynYm5+C0oVBhAIhAKv13K+LR3xvw4K7N/Dr3S4T2QI4aPoCknvEyrFzR/In", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 252964, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/wEFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohGQ//Rqj16dTGCBtZgYSh8O4RMV0NiHcB+Hn2UfxgcrWn79szDL3U\r\nIkF35q4WVZzLgO35xOSoJ2HwseLEr6mIe9fPBnPH/kL4HSmoMki4UcLxJKLJ\r\n42Ny9rZoP0zxL1KWKMrwGDfemURn6mwv5gi/LnwuSAaWliuMDQPjE09/JOdR\r\nxrRkPnkqGbKPDKsXLRm1JU3nnUOiOyV0WwC+5Q8qCzKH0Rkzx0gKHd8lLGam\r\nXayUKK8HXYY6VmZYTXVoyahCMoEvGoM5DIfuFgTsxg8JS4IRItUbtILTFBlw\r\ng9IDHKrCqnNnjcagRGgnYEj3ty93x42b8Jh/WkXCdsAy7V435260vxSJqv1N\r\nC+VFlzTjWwt4j/M5AJiViHR/0bwkNbi7cyy32rdkzX93+1g+P4KZh5kwnuLD\r\nfQTIUPS5ioyAo578BVwh37ib1kygb50QeGZ51wKQwxYgn3UkkDzdOGPCiH3v\r\ntuAna4UkOu900xyDXINtUqef2UaqLXb4pw0gzn2fWi8iK0zGHA8KBqnOtzar\r\njkcgSLQpGYR6QbWDCU1ZNHeO32ALGyUFOINfzNSjnKHH9cpXPmKssSxp9rjs\r\nBQ9gSQPhPVbY62r4pCA50GJ/EMlqqYUfWwU1oeddwANq5kEfygHAjSzwPgsB\r\nW+ngexAqANqAqtfFGz5sIK8byJnlpDkcXxY=\r\n=jLxv\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "531e1cce7910fc8d362d5d5f4132d9b65029c64d", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.1.0_1677656324909_0.3605239285145254", + "host": "s3://npm-registry-packages" + } + }, + "9.1.1": { + "name": "glob", + "version": "9.1.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.1.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e7932b6842507a36cbdc34ec3453ee9279f27b4e", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.1.1.tgz", + "fileCount": 50, + "integrity": "sha512-f2Mu4JC8LeBYqRXFRfWe0tLBSRPVl4HOkIDvtB7ppVb6+IPXhSSPhoxjY40kpg3dzv0KfK4QYcEXYwDEQ4530A==", + "signatures": [ + { + "sig": "MEUCIQCn92mh8QWKKII74yrzGNVO2hxYK7slmjXM3H75XyvRmQIgR1QkBECKm+o2HaBdBuGcn9KubsoGi07xi/qUp03nt2E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 252964, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/54yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtmQ/+PLezkFUyf8a+0m2ehUpkw+xGSNLeIdRMUvsv/SJ9eupCNRTD\r\nm6Mfxkof0yXR6hfP5ZtNo14ifvLFExbKsntx2pheI3b+EqzEkV051dAvJitQ\r\n/dyEC6/JBdXxMYElXSEL7Cjis5yFdcEXawcaIkeGPrS6poeC2A85KWA7Tgfc\r\nEy74VqY5miLn020YCMJ4OenKsToRBU7wPmAynOMxPFPnRz8RYD58lBY8Cy7h\r\nkJZPPPtZoNLjTvgmMzWPoFO6jPoXP3TKAdcdQYbYLwoFbpLsjhzfxOnofWvt\r\nPaThC66vtzucpxCrgg3wZGoDFhJOWO3hEY4QdYBFE2LOkInvAVbVp5BDiodz\r\nHEpxtJS2SmEjxVhJU43+2C0YwUOg1B5xUs6XpW6v65WMC+QGbj9/i2fz5MON\r\nqqefiPnV0TwdymnwQreqIptNxUllIv81FViDA0+t05uswtwAR9rrB8vGk0/w\r\nyrhYMCFVFm+XwjMVe1tG9sni56WawPz5ZHq0W4Xjx8vVCCnvkU5o04V6bvUw\r\nbVItqqcuZpOwLXKep1SDvhnVjV6KFVRyW4B1NOQkGU7bKcKXRLl4EiRSQkWB\r\n/mPIE3CY+dStVapNdnPyanmhyy93pdBWOl8ts9LdKARJnzeX8thTlA8xYwnT\r\n9/qrOjUorGSnyjSgk4ESUXlXNAapNffkhzY=\r\n=/0wf\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "15d797d74913609b134ee54acaf348426650271b", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.1.1_1677696562270_0.09196514421591218", + "host": "s3://npm-registry-packages" + } + }, + "9.1.2": { + "name": "glob", + "version": "9.1.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.1.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "6587a51675a7273191654e0a912a22a0e4ca7a44", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.1.2.tgz", + "fileCount": 65, + "integrity": "sha512-AcvrjOR0OSiS8p+1SInzhCHJ11NHV8P/nN1BDuk6gEjIHSR60SXktPzi/HJt8Z3NIyK4qSO1hZ9jpsasFZENpA==", + "signatures": [ + { + "sig": "MEQCICgs3Bym/qLPlsOZ4EAN4CrTIMicsrEBTaJ9VNDWnB/AAiAEcAHEfUbMlZXYp+FQN3Z2yYwx+tZuLjQp8No4qAkHHg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 284952, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/6J+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoDvhAAiUKqYlvzznf5Aaob4NIQfJKoBVni+PM+Zame0qATZaq4BKjR\r\nveRBUCSvd7O6I1yQyzESdW6O6tIMLX7rVB1uXOd93S3w3XLEfM5ceDFN9NW+\r\nI1GUn8V2kYaR2Xg7pBKB2iJ0qkvtwwV+HwfCKKb4bfKx4SplgWKvnlCFqFZl\r\nxAVSbFF8/oUPP/GCAur5eK8UuLH/3zJ7AnCXj2VKldjBzvC/32sY28nRQlT2\r\nnSygXrFIw0vB2NBX2coWcW2lOEIsAzaWL726YTQ2VvlzICydIC8VyC4hj6RS\r\nJK/Dmu8ESxBHXuoelBQt8JS7jRyTYTYIuMz4unS7IcJjyYCAEryDHKmIzpZc\r\nA4ZU589N6HZNaAMgW4sWUKQyE2X1YfbiiYOIf36qGJBvXPluslxOVkzj2ez5\r\nCFfJtkaIHmwxUPtbtiZ+qqkzXT5QSD//8EXnXWe3WkLXFA/4C5bQk/fkrwXL\r\noyYCV4IiWR84mZwxjYFFSxSmLDukWUgtoryNi8zyR0wRmmWq6c3lY3EQa3Lc\r\nJg7cD3O9f/CCamFby45F+4iSAzlnS4H8WL8EEhOm59sfp8LlYQ6c8DULJm8W\r\nNGFaA0NdZJXk8i8jOGiV/AbXVbcdXYvT+3azOhNvcqP1AkXSpSTOFFbMNAzL\r\nTbsw6PGAPC/gZddKohqkj4ltSR3gpj8k2xE=\r\n=SsVv\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "02790d6b1e3b0fd14fc4271056ecde115d869a06", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.1.2_1677697662540_0.19974309120269051", + "host": "s3://npm-registry-packages" + } + }, + "9.2.0": { + "name": "glob", + "version": "9.2.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.2.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "a98d40292bb1af442cd73a7765587d1138ec979f", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.2.0.tgz", + "fileCount": 65, + "integrity": "sha512-VbqdQB87R58tWoOMO8dBmPEw0gpAn+FNIT7PAEoPMKx/BTiFM847t3uvGER+oIIKKmUyPEHiG3gGz7rwPVzzXQ==", + "signatures": [ + { + "sig": "MEQCIAKtf9Ll0ovFvFeqIenNh1U0GESj2VIhADuo1QioJrRuAiBbNgj9E/jCYjVDTEfK5Ir2bL0cLPmjVdxdEGButyqPfA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 296871, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkASuAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHTxAAgzsInlzQvJIi9myQ/zvhsf3iCclEd2InKiWvoUki5JrxVtem\r\nJqqQRJtjs92mz/Kj9MBAyJTRutnvCySQj4FjmzbbYRgrBo6i7ZtEJPXnLgLO\r\nnTUSiI44HJfRTJSX9XV/+up2jcJ3jfYI1/a/A7d+afNkdw/4gTOhL2ADG0D4\r\nb1VSdhMbhflXyxsIdOdpf7xESeWgFRb2W7gR+j8eX87SU3bjq1Rh32P7jBPD\r\nrBhQMRigda9QWIZIAXS4eMfcDO4rxMKSnJy8uryLweiK7cs1oQbYGxUpa9Tm\r\nPcFjDXjwanWS8SnNy/k2VcrgMjKRsSmYk6oXPykT+dXTQ7XGQGxAyPC6BXIg\r\nicgzh19+5OPS+JXH5xzdeqK2/ULGctyGUCpFoDsgqBci3ixAcrNzrmSC4CNd\r\n1pjzB3MzOcC02a+fm+pTnRQwlfz1DimuvwWAHhLQ503rzxkFn95tGgjkzi2t\r\n3Hl0YC3yccKJW3tnrik9yb5hxICjrBQAQOFTin178V4L22LNTBcmosquHFRZ\r\nocRpuo4jXDD6Gix/DkJTQCeNUf54cMUT0TgzVoIqD1SugubvXCcz6pBTiA1W\r\n0KgxjNY9+jj00LzUvBZhUHrhdy82juAaCFRvb53PXY88dIL5e1qZUHl0Yc9x\r\nM9f1tbqaRRgKd6TMVrguthuqVy+l67FC8OQ=\r\n=tIHU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "6dcdd41b0f306ef9cdb5b8580a9e269a23252991", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.2.0_1677798272185_0.811222361919731", + "host": "s3://npm-registry-packages" + } + }, + "9.2.1": { + "name": "glob", + "version": "9.2.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.2.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "f47e34e1119e7d4f93a546e75851ba1f1e68de50", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.2.1.tgz", + "fileCount": 65, + "integrity": "sha512-Pxxgq3W0HyA3XUvSXcFhRSs+43Jsx0ddxcFrbjxNGkL2Ak5BAUBxLqI5G6ADDeCHLfzzXFhe0b1yYcctGmytMA==", + "signatures": [ + { + "sig": "MEYCIQC9yt+YtIA8HAc2F8Y0dFFu6nF84kgiHvaBMDEHJQw7EAIhAI9kZtiB8bQmmKJ6/DeGgB6pYUi/vm0BE01rfLOAzHcP", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 296939, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAUHrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoATw//SZnYHbD1+0dnkxrwY3gvXS3VRFWLeJvZWvVfFMzpazrivuvj\r\nxFPkQnScIeYdftCbh0jfzE3DnNX/5P6CDJyLfsOhl7XqodscyhGPS1WNO98W\r\nj9CLTHoORi81jSrBTmEZJ8UXcTsmb77U1MbRYLF3QKKxRBjmmnK1aR7sc83u\r\nsSR0qu6feZP7eCXNbGirwF/qeh6fHDrZXWJwU2Yn8NCGzLDFlz3c5rHBgmQP\r\n3ZKeoFkmkGXcufRHHFp0Ks/PvdrhzvxjPj2ZTWAbb0PGSPqcXeuJHSzy0MQ0\r\n9HSc5bpgleHtKg/YUpA+Vl6NxWSZUX1vhvDyyBMZVpAP7BGi5XrQeNe/bCzV\r\nnnBjPz3i+IJbAXKDxRlbgGy4X5UohRWziFhP73tbRk7B7F1v9zdFRNtx3nfh\r\niAkRZ4hSKtW3GmxlTudqXrqdyzUK4Mi/QHfVxK8C2gXyfcg1ssSprI+m6cp1\r\nj+HOIAtTSbj8xCvc6DOkR1M0BAutcl6ATUlkcCEcv/lKT+D3/OOvICrq7kNH\r\nDXbsBdebv3yNzFIurFth1c9JjCKMcfyTAv6Hm+pq9Isq0oHdESYzFKdFtFGo\r\nYthYG7vaRkKoy9SNfvklYc3skAIXKq7S8JtommuWsrhCm06yMV1swEhZXKjH\r\nGBtJqZtZQ993pN5AqCPbqESA39Zz5Xb3y7E=\r\n=mldC\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "c8b33163b9940fa2d35284dd1c6e2ea32d2ebe39", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.2.1_1677804010775_0.41976123463931003", + "host": "s3://npm-registry-packages" + } + }, + "9.3.0": { + "name": "glob", + "version": "9.3.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.3.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "be6e50d172d025c3fcf87903ae25b36b787c0bb0", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.0.tgz", + "fileCount": 65, + "integrity": "sha512-EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w==", + "signatures": [ + { + "sig": "MEUCIQCvPptMuzZBW0gfBzCGy6Q7Z4K6BkokipeVT/7GrPoVOwIgANbzOR46WG4gFZk90FI7Hk9W7xosSZxy4lErzaXuMqs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 302858, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkEHCQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrABg//fS3sajfIHR3ObTWLGpzXNKW4It6z1wnWcbOrhHP9G5lT6RoU\r\nZBGi4rhqpBvFCbxfMPAvNa/g1aYyD8y6BYqGgJNccgPUX6oNzBnQpLUMkQPK\r\n9ZAn9Woy2m+bZO/uYlwbDDde8+B1p97orL69dAAnY8I3KNBWZNwZzmznE4I3\r\ndIuCIPXNMvh9fLD/yGzRsPqv3uB2tfDdK8KCOgV14cMgz5n0rt5UxdmM4vHI\r\nvrjaqNXRtBeqNfmfh7OPGlip3RGa3Fk9p6CNtnhMtsBrdq8SVR5dx4Wsry1Q\r\n1LFEB9YLD8RqKmlgfF/hhU+cb4ySo+JkTX4DU/FF7Zl2YM6HJQ6NIOMhlFO/\r\nFJj/QG6yaxhQOGZDRCCqgNkLrnXJuBZPzuhRZyzv6IDDt7ZNUB2GeBaCGKUQ\r\nJXJYqqpsvuGxNL76LBYMIl/CO43P0xij4lkX9bcs+YWDinwmmShe1Iwu41mv\r\ntey0WoWG1vuLu58Gq+JmtVpyxtfHPiySIZRwARLgmKGMNyAoPjsdlHRjvrP2\r\njJsryuGIGgR6oDaBjB8c1mrdvUSldfYZDLuErmCSyXVaGNj4TBZ6w6L7Mp5v\r\nLIGY833z701kj9Vv5Nmo2b61gmKy2y++CsoFFr/R07Yy5x6tSeZ4ZqZQQNzr\r\nUOh8s4lMonYQw4ZaByQY2UmoupDbijFN15w=\r\n=I1WU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "db4504c01be525adda213ece56c0e12db1042e1f", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.3.0_1678798991843_0.33738652458978646", + "host": "s3://npm-registry-packages" + } + }, + "9.3.1": { + "name": "glob", + "version": "9.3.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.3.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "4a15cf72479a440f77e97805b21e1b5b6e4fb18a", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.1.tgz", + "fileCount": 65, + "integrity": "sha512-qERvJb7IGsnkx6YYmaaGvDpf77c951hICMdWaFXyH3PlVob8sbPJJyJX0kWkiCWyXUzoy9UOTNjGg0RbD8bYIw==", + "signatures": [ + { + "sig": "MEQCIHgSvS+VzWr9+foZXO1FBu3MvT9P4wVQAU8tVC7X9tYiAiBGdGtyKf8gIuKap1wGAHO8A6GYQLrZQDCYfWn6t9KQOg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 302071, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGPQzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSrw/+OqWRjpUgqLRREkFUUIeGzJM2BNXQ5TkSRRXcB5qL4gv+Oghh\r\nTzFwCQ9vztzR2R0R9aSh9tAOyJ2TjTltwW6SSEOiI4s1Zx6CJsu6u48YnZdY\r\nVRiROB2NTNNW1GXaSv5lTrCLQy/XloZjm4d7sftxgLtmW5HO1p2nhKYUm4yZ\r\nrAvDyfk1Sx7F57y0IdmPmWOkbjhfnAwVHXhjDnQCAP4iYLiRt2SGqY92JHNu\r\njcAvMdB29X31+B+f2tlkwNjjV2CGhNcUJZ381AcS1rT4jGXeya9fXSgrE7pM\r\n1Z0X60xMpKztOXrk9PlWzl0Nl4LbDcuful6dKEAEOeWcrcngE+hBRLVkmG6H\r\nNwyLOubSLrxK/GFf21PVauyUURnXhmeL/TFrZTlfP9TX2x0BUAvVtu5RPEk5\r\nT3/3ffK2ye/ttorVAlseGJvpkfFQb7XxTXn5NL1+Rrx/ls9MfXxvNPMlue8z\r\nFz6ygQyqvpYHWspCZxhEWbHWa4sQQxJXqzAq5xW+D3DNzOKjquKwPFh4DaYo\r\n2Y+lLur16h0KZ39W70tRgV4Tgs+VaMtddWpXHvq6OiI7+Jotin4npBERfLSz\r\ncnjOFeGFbGBdrMMTe/LdlJ+P9+hRhi/bHsK3mEu6TI0jPHnH+LTgZFU0ZzrZ\r\nTASPxaPsUB6OiUcbHb6H+wzK9AOUJF3cELI=\r\n=aaHd\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "facdded226e924bdf778f02e71796e6dea06402b", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.3.1_1679356978932_0.808666578732697", + "host": "s3://npm-registry-packages" + } + }, + "9.3.2": { + "name": "glob", + "version": "9.3.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.3.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "8528522e003819e63d11c979b30896e0eaf52eda", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.2.tgz", + "fileCount": 65, + "integrity": "sha512-BTv/JhKXFEHsErMte/AnfiSv8yYOLLiyH2lTg8vn02O21zWFgHPTfxtgn1QRe7NRgggUhC8hacR2Re94svHqeA==", + "signatures": [ + { + "sig": "MEUCIFR57YutlI96Bkf9vSWipeCAMpFh9dlnWVZGln6q/E7PAiEAlDpBOXain4wVbbkhwgTzgleyUQD48/zOxzyvjC5UI+o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 420579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkG02rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnZQ//Zumb+pkt8xGDIvMfv4Kvy38+lFnACRL345UiU2m44ZyCpyGW\r\n3zp2i4ZR2Ndb2Hg0ccvj3pekPAe1+9zpCJEluU5bISvtiyWI3QMhHAdepiqa\r\nKQovbB7EhPHsLObagQOPQlDZh9QolSM7reHmmA8eWqF8YTrM2T7nIbeyWx69\r\n+y7Kr7wM0ohrqhHlS6z906tn4nghDssXulngHLBby04JxbYmZaP3kcxvPWDx\r\nTKoDgsEXX331EHNSP15oggsGgvxKXpq+eUpKbFvf9H9PT8lzbu7dQeRrmwE/\r\n6vKuVn/zRKFVnkNYsrGAjroKvdW/lIjcDxPs5/Sk50e0x6iauXK1p+pU4uMz\r\n+h04ag9o/oPASr9LqJ8rqIUZYfStsf4t+04OOTei1VWprF8d+ZL8Svz2CYKc\r\nyVwLAdchTANl0Cpv9fsARO9F6JjsXm7DxDwOVaDivluvhnhDiR5MWZjndd+E\r\nIMuYlECb/AiMyZ53fvbYEZN9YxsQmzRxqZhNvhOPjSvyz0Hk2+65L2T5fPH/\r\nRzSLOmfY9wS2EKBV0GU+lh0lWtqax7qkQbSrk6KReE+qZttKvxM3ZcAS31aA\r\nd2wjqS/ZHvSTEegv6cm54JMN3c8MRUMeNw2pQgTxiju6sgKCTnVJAi2rtUnK\r\nvO+NkGG8cF3ksLe3ii37DjFcNVw4U1kz60c=\r\n=zx2L\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "3426f33533ed4c4a262a093009ce55e69491fd6b", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.3.2_1679510954984_0.023483003051478768", + "host": "s3://npm-registry-packages" + } + }, + "9.3.3": { + "name": "glob", + "version": "9.3.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.3.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "b7b6ac8d835b666705feff53cbc3aa5c3b984a53", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.3.tgz", + "fileCount": 65, + "integrity": "sha512-3fxLdi2k6D1hXVHAHv4gkgaeRax5cVlsms/fBecczkNJsgyf4f3eH6kshmzBgDDZQc/Kho7mVvGdteEsHoPMXQ==", + "signatures": [ + { + "sig": "MEQCIDx6Jh6a/ZXGnUV7H9NyEn9O2RkXAjhy/r5BsEhQ8byWAiAVNAhlnGw36gAoHmUlyBrliye7tGv0UbLo47R1HpdbIQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 420579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPh7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrlZQ//fpZJAGy+Vkq4Q/7dZIVo1mCaKYi2EDHYpwz+QJUkTH3W0QAu\r\nG5a5zhaYBWybC1omnYl9BQihiTqCOTXTZPPZ2TVK2g3NxAx0znkRwTOxkfh1\r\novPikfDQlspKCM87lwty8Z1nbgsxTULyIFMGp5pvXGWiEiKXEVrOQRCcKlhg\r\nJxjdqVSNU8zy1dMGksNbmTITg+hsCy2BlY4+bpB2ffb8oKpquQnABBWnJb0O\r\n1t8DA1/zhUzLz7s0CbldmAXQr3GnyG9gFHRT1WEom0ZvtFVaye2jCT0+PXbF\r\nrZUzr3R/FkUBGQhl+FrdZY1w/j7O2h1AKr3b6sMmS1kujVnhSMSrPDK52d4b\r\nIL2eytpxbsBtzKuT2dhd0AvVgaoefe5Ad99QRrLStbZD4buzfsPKFmXGO2C7\r\nnawmgy5HJGPs7WAFN7TIQlCG/D5GRgXCmkQi2aA5+rmc+L61/7df2c6sKBwz\r\nKoQN41yN32veLO2q1gg7urBL5parisgrONsLgN6ZFqnIuU/adAcQynxXET53\r\ngD9lUG4Jr8lm/w5Vw6RzfSPcT7dch5kdoTY8cbFHEWSYAHYpTjrGT71l6Yzs\r\n0k3J5AGhXkgzLsljf63P6Za01FFvJkHPjODGZMQ9QZZhNvbJqq1ZUR+xMQFn\r\nP4kDAskUV3/vgnP0juAi5XFSx/eMc6+AiMM=\r\n=8PA6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d0c915a162612554c49ef5476d822e6807db62d9", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^8.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.3.3_1680406651042_0.7937172454505648", + "host": "s3://npm-registry-packages" + } + }, + "9.3.4": { + "name": "glob", + "version": "9.3.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.3.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e75dee24891a80c25cc7ee1dd327e126b98679af", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.4.tgz", + "fileCount": 65, + "integrity": "sha512-qaSc49hojMOv1EPM4EuyITjDSgSKI0rthoHnvE81tcOi1SCVndHko7auqxdQ14eiQG2NDBJBE86+2xIrbIvrbA==", + "signatures": [ + { + "sig": "MEUCIEY9PkkzDlwXNd2ZXXq5b8JjPwzKVwJE7zB4MzDsq2zvAiEAwWwLx4O4pFW+zVTxrsFU46Dds5CJKxf7QsjnQg0YZMw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 420579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPogACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrxcBAAk+TKgdTVU1qcn5mbJ13UnmcH9xUOtKNbFh8gapfvYV6plB5T\r\nAOtXguq2aPpV3ecrUs/2SwpmmDmITynL5+UoOouxdNIFFRLsifMsh8b6n8pq\r\nk+BjQhKfEDHtomb2zHZ/lD4DhI3QxmU8tgHWTDZHfZBUtsw06/7GXGvceZHw\r\nZwQPrjHFYu3S8XgkjQvS5cmLnJhld9qNNr+sS6GKpdanPAMfyCYpddxkmc0W\r\nCUi+2t1Ce9iBkjD8PbHn6l362n0z6aEdIqmmnwYcXnZ/547tYCrNn1BHcrqD\r\n0MK3uVcyUN2ng+fEQkv0etKGMO9rZeJWGDk3Y/xUeMmXAuHZXD9+5/fl80/H\r\naGFWt5dtvc/ln4g6HqADqlei07XDE0B9VhnrDhHBZI6RyaiUg/5pOFWj9n7F\r\nwY3aUBynYK49UGkd3m8Qn55OwKfZc1bVAO+/J3tvazrbHplsV/3uFONEokAX\r\nkNK2wkRNhfwXmcfvo/B7C0e5KEimEtL8Hoi+YQIKeUKNM8aOWPG7x0P2M0AL\r\neqMmRJAX4J+0BJbE9gDQZhYnPfw0E93MiQx7+dTdciSeZFSwWEfA5ZGIQA7J\r\nZxCud8deAc70jZ/c3qov9b/ddLu7m4JqpkAXk1utbWEdOsyyFCrL5+fX1n44\r\nfbGxvq/TKa/9fbxqBs8nfhiJh/LqCP7lPCg=\r\n=Tdg3\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "10a3212439792480b46dfb4d63f94ca6b3d917f2", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^8.0.2", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.3.4_1680407072006_0.6996197358127072", + "host": "s3://npm-registry-packages" + } + }, + "9.3.5": { + "name": "glob", + "version": "9.3.5", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@9.3.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "ca2ed8ca452781a3009685607fdf025a899dfe21", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", + "fileCount": 65, + "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", + "signatures": [ + { + "sig": "MEYCIQDt9YJ3S84eQiPprLcjB37Jm5xhc7labTGUl+7ibKOWIwIhALTxEZizB0BfM7+Bs9rYbCD/Be8lDh70Z7skJovlXPPk", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 421569, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMyByACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4ZA//WaDDJYrKWa6/wiEJ9tDFut0Et4quyJ4MvZxEADd0w5/laiwu\r\ngBcstXNW8jiZkxCaRvm9lAmqZpYC6HXYR+AZikS9AJVM26DeGRcFCocZgRBk\r\nHGHVu+pXdizDAVgEw4XH0iKuTzb+/3qEVHVkEoZwzzA28wD+vjCswl+5D91a\r\nsvsNp3aQSFo8Q3ylIrwnEhdLqjSt1iqRL9euReB37fnHigk96XKu6u3cWZ41\r\nS3C1xNs+hOBwfbRwnyzt8LLbZrBKPGvi8nOGIe00YVLseohlM/VLsk9v1owx\r\ndPBANrEJFX75nbqKGL+5gKmDxd49q12vE4RcsVaSzMUIEJJLbEjFC2GEikZu\r\nSne/kG1Q2DcnvrK0RlUaE6IiR6SGEp7pG7vsbsqZi03hq+fMrEm9EzqN2lRp\r\nCBNJbbSM6aIZ3mm+zF0R49eTSJR55BiD+47tmfTdpjxVj7dqXG0cwX2yLDcH\r\nea2hyB6ehKhC4l6B82lMUl3KNCusPvblHLn1jLx2hDQ520ZbaNddXYfuuKTv\r\nBKkigG1SruR1MtvNMTJfUR5hN4kmG+mrPACMFF9AiTrCMspWXv1OF5R+PsXj\r\nCHoB8g5C2u5bH+Rgv/YF1vOv5+9+d/kKl3ymgfaLRgexUyqPrq5FIRRoFiA2\r\nwOFCWCpYT0TyNz5ghW17FrLLQllD9lF/Rlk=\r\n=btRi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "760ad8bacb9ba3dc66ede885b416968fb41c8685", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^8.0.2", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_9.3.5_1681072242429_0.4449080252300279", + "host": "s3://npm-registry-packages" + } + }, + "10.0.0": { + "name": "glob", + "version": "10.0.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "034ab2e93644ba702e769c3e0558143d3fbd1612", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz", + "fileCount": 61, + "integrity": "sha512-zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ==", + "signatures": [ + { + "sig": "MEYCIQD4oExjeLsBWe7BzW2sDaZQ2EVHMMBoFUQYsgNmIN8lvgIhAIAqNCBW9byP7Gjj2Wgc92V9eHFDrp+eQCf2hQ6oA7ZY", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 416179, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMzuqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6yw/+JhKFWHNijWouc/gQq6W0+hC+6mVTIDCxoI2gdMTUNr4VSLQK\r\ngcd0Cm26S8NeuT2XzaCxgRBuxzVf9zl6CIr5LsbhH3iplc4f8Wr+mHF02jUr\r\n1vYKiAPaqSJT/01RKY/yjb7suYy1leTRvKEg4MM9Aj4uZWoEQDNkyH54hzwu\r\nG+YC8QNMb15calJ84GRjiCOse1CzXsOEOgyWKZNpcwr3xdQrZNxOcKiNoj65\r\nwfalC56t/lVDLUFfeauRjVqvP3+/HjgLcDnyYJKeOr7G8mOtXN7PZ1IEW9lD\r\nnJcYkA3o4GrEnx832ggssIM0FHUtqycnJReEFwYEmJuazZVEatvon0K0QScX\r\nDbNJSGdZGWx/hmI++URokMKjAaS4qyJSYzz3YXPHRwCa1LXGHufCjkYD0ERQ\r\nBk5jTsGLI7wOB3MLI/GzWhklaLFMw7YH9XkumPWDZ3Df7bH3L5ahnAu7jM6O\r\nmdCb8UNFgTYRvjYS80PZlhNzYgKdHwXceHTJe+4MQj/aL8n1xhyi733Mhtjk\r\n0CviD4E90OJ/AF5l1DpsAn+KEmnxQsFQj4MwWCDXz5hboLiWV48IXyBOxQ5W\r\nOyKwbDZtrcUfs3+OA+NxDv1J4lNhiwUPHKia0fcql3C+mqz0aWF4q1drs5eP\r\n/83xOJjH6LhbjiMWE26LL9TZk3ibvzbNAZc=\r\n=7kHY\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "93efe71400d4b046ee3c20af8cd17a6f46ac7876", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^5.0.0", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.4" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.0.0_1681079209802_0.9853708794804594", + "host": "s3://npm-registry-packages" + } + }, + "10.1.0": { + "name": "glob", + "version": "10.1.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "baa48c6a157cfa34ca7887f2a29c6156bc6b65f8", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.1.0.tgz", + "fileCount": 61, + "integrity": "sha512-daGobsYuT0G4hng24B5LbeLNvwKZYRhWyDl3RvqqAGZjJnCopWWK6PWnAGBY1M/vdA63QE+jddhZcYp+74Bq6Q==", + "signatures": [ + { + "sig": "MEQCIEDvEzvDNCIGdG+tJMwz8OVm0MUDRmEpYn875wUpsziaAiAlPVOvU/aNWofUKCzW+WoezF2vq/MHKIGQzznh/TsIKQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 419359, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOd6zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrzIQ//TaGVMBJv2S77KIYb/IxPVgC6T40/sapNK9YH+M+V2FvSc7Db\r\nIObRQuj90TxSJVWaHeoY2446Xjhr2N1qUW5/YaD2WoV5RV6zLCwJRIaE956O\r\nK3WPG+pfjDspqSKN5kXAS9oyfRLTKjb8ta9fbipJxho0s/d8IlPdHGV5aApE\r\nj0UgjyAd9kiIWUrcGjJNJwMk5/D3mYqrxT7jzzxq+AOT4ao9NRECAlSHwZPn\r\nx5CkS9HQsVQHs9byrUdss2F1tYTG331M6Wfcziayn9T/N9Lq+zZC+GVxpRB9\r\nGJq+SKHMiJ1f/70kMeZedag/mi4ihfocJSsue10mJRiIHmKqoSt+qOQA0JPA\r\nNzjI9HCIlvVlxNFoo/bCPE92MH/Lef66CqsfNFZ7LgueEz1ZEzKLEb+chloc\r\nBvdL0TEaDG24qAIE0UyVX/fr7p1S+KGu9WeeIqshIDuwZ64wxLsn2IpkKNvK\r\nNqCvuYbc3rx5pkVjXpipU6RhE2182J5B0U34sBWDr0t7lxVDVHoE6YhZICKN\r\nEYCw84FWFPyoNCs0iHskb1m2Z6OhqSn24hqiaOi71ju2QbLVkXVRNgYtXREo\r\nIQ8c6OcFSVBf8+h8Pd/u95UpEzzGN+yj5ogqrD51as2yx3KXAoN5btjKCZso\r\nhzSqhpfLo4Db0pgergHZmuNH32jd4ZqliyA=\r\n=BKa+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "bfc1c9fb2e3c2fdb9e19b3206548c14ac95aa141", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.4", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^5.0.0", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.7.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.1.0_1681514163161_0.928672430944443", + "host": "s3://npm-registry-packages" + } + }, + "10.2.0": { + "name": "glob", + "version": "10.2.0", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "423a7db1e7fe88966b0dc33de10804f5d1d94a8b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.0.tgz", + "fileCount": 65, + "integrity": "sha512-2BO+ohmU0Z5HqgOHbwMMjTEOaPbR9AngX+3O7cTk7tlZXjZ/igqIOxErifv5cg/V854s0/I03mHOMpeIUYTgMg==", + "signatures": [ + { + "sig": "MEYCIQDb5r+PJoRrYeFNmd4A/4TCfaDPno7J0+QDwezHg/Jp5AIhALAarDoHUhBlx6e9tX4dnQ1lhJaPGZYTYpoqP1ftkZfG", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451610, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPcYTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp8Ww/9EbORGpbvnJRLoKkv6Nv+hU9rgswWeDxsLORCD3yENow39eGP\r\nXECgZSq4frCiCB1AMtHMk9SygfxB8H4LOIOzhGXTvxBlqnZccME7Hqz73KTo\r\nuG+UZXrqPiyKsrgXBovU59U0witq9LHMX2ZsPXH4G8GAlLPlsEbCuTYcIepN\r\nK6cKRd1nFJG/dnOIFjmAddqC1NRqwfHLd1rJb0wfiTpif1GZ7VIWnnh3gDmE\r\nMjJgg20GnzViqruOPeO0qp5vfbIbwKaGM5QRkAqyUpLlbjUGkqFDMdGVu+7p\r\nYJ822jTatcrxUgJ/yg++26ti7hGUkBcHybga5K/YvOpYVmciq97jT/MIZv7r\r\n9S2qWusy8u8oRWti36/4TAx2KZRbrMCIqGASaJiAJl6gclxVfYzVuzwKr9ko\r\nL8eMWkX8si6Bt48pwLTXovcq/FXEZlYEV/zMpH5wgCY8mupxC6deASCt8zov\r\nAmWuapHZ4FUnX1bQBaZAkp06TRVYH6Uz6lFjn8WnoLw5389IRrRe1OLqytLX\r\nfsilPjQujkWOhuQExcBUXkQVgXcvZwBRUDi/sEkZL36G0ksSfyp28s0mMb/h\r\nV/K5UsTNblEwCkxnYy2WLFE6pA6KNaCaPzG0YlEYGGpvGC2+yvtgCyPg5/FK\r\n6W38P2Ss6TyN4rS41wS89w00az1ejS+7puA=\r\n=A1l/\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "392e681b02599982c1b088736efab7cf44d168a4", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.4", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.0_1681770003366_0.2806174981206695", + "host": "s3://npm-registry-packages" + } + }, + "10.2.1": { + "name": "glob", + "version": "10.2.1", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "44288e9186b5cd5baa848728533ba21a94aa8f33", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.1.tgz", + "fileCount": 65, + "integrity": "sha512-ngom3wq2UhjdbmRE/krgkD8BQyi1KZ5l+D2dVm4+Yj+jJIBp74/ZGunL6gNGc/CYuQmvUBiavWEXIotRiv5R6A==", + "signatures": [ + { + "sig": "MEQCIASS73uKt2Iwonm81hOhAo0Bz4VIIUbgSayrPfolq/vIAiATKUXlCgTNYS8Ak2rOMTO8RPJUFQQL7cVlABq5E5KFJw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451610, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPcZxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoV/w//QLNr1Bt7wVUKhJenaGOMrjZV4043NxHWiXF1jGafkYGEF0ko\r\nZS8dlZV/M7xkBXMlRtQUkkzPX5WSadAv3aQCKwH4POOV5brI41qlanhoQcyj\r\nkhW+5LEY2szHS+Cnyswp07kcjOjWL7h+kgsGzKKEkoVBtHy2H/87eibCVgw9\r\ndY/njmot6hdb4hw/+68SUDQi5jfsCKXYl2KtP8djOWbKG/CwqEpAhfSgJ9Dj\r\nw9/VbUgNy2DkCAbERSJk5sFOqNVnQEwnRfQfuKEbsPoCAIcTl7oeZwLc1f7+\r\nnuKYhodxmukKRrlUoiwXlUQ1sTKmiuS1l1uojiXVRiWyoigOP+xxQ6gxgkuI\r\nP4J6BSNwtPD6XEbBD+SOqvLAohTgPmJO0gqvHWxsG/RDK9k+04+ptSPF8keA\r\nICM0pwpVNC6D+DB+tONERMsWlmH67+++SqkEOoOtVZ827ev40BJf+3cHqMJ6\r\ndgTih2A5HnloeE0iOW00N0q1bdRnFlvZn4054y+dvQ7gQwhZLQ7tD4LdFzNn\r\nuX8F+fGIxyIjpz+9aYFrGn6QY+O828iY6jeQHX7NvkWc/47sBbfo5YyC3HE4\r\n8V3L+fXEMuICf1eo65iSqNYe0aO5FlDF+YUyNlPb2yCDG1i2triG7sdI6DiR\r\nI5rLqNMYMOcPiVWaO/331DqZa8w0bf4iq7E=\r\n=8tFr\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "541ed06b6df509e7ec6fdd07b5b0533872d1a49e", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.4", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.1_1681770097005_0.517575845921703", + "host": "s3://npm-registry-packages" + } + }, + "10.2.2": { + "name": "glob", + "version": "10.2.2", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "ce2468727de7e035e8ecf684669dc74d0526ab75", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", + "fileCount": 65, + "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "signatures": [ + { + "sig": "MEUCICQahx2Ia3K8JFSJqPz5CUmpNwKp6yYEGgd4y9+PIHhDAiEA5bjr/xArEGm9oEoVvyYDCe9HdQ6gwjwbvr5WUHnqgrs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451548, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRH0nACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmodUBAAnd9i1xyrPuJRl+dEWBuTrXUx912DDdfmsnURmVH0AL/XV5LM\r\nDbgyfywyzq2hFNIkmbhkYAgeVrvBTZyVvGKfsz4/6MmaLracHdBRxCCJ+c6J\r\nlqyw+KiRRGQhePFWOulYjgtMjh69TQ4nCe5ct44MlhPn/C87yX6QN4UQL12m\r\nbvzXia7H4X0ugl/haPYc4P9ggAWEmAeqKHHteVRLGxpAZA5yNiGS3JrOxmhg\r\n13+LgfQrWQ9cmbKWD8Irv30Ks9c7DafdN87eFHVTjA3EUi0m7ANf2+l/EQIX\r\nCDcCQ4z7ltoK9bgvGfmly9PuUtysQ9WAi5EtVR0drvthBEsxm3zJeLq2a1k3\r\n2fbQV3S/tIaKzrBtGXnWbYmPch6mS6HApc5wGBr81c8NTIO6VRHqy/pCFLuw\r\nRDG9ppfi2s30IA0tpo0Aiqpn/dsFA6hHoowiNgcHwbkGWy7UhwCLi/QJlt7G\r\nxHeobYnmkLP05dH42iKMLykTOPFk2g+x+pGWwrFk0QeELjvMv/2PV4Xu2AFi\r\n6On4jxDII6PKqyV/DEcR1Vq2BcAW8DJqWCDoTFl30z/f4ixEV6NtPWuYgp+r\r\nSKgdGtRgzm+PCZWPn+CWG9kDmbRwrFu/fOXvEkhTcxn48HYJl/wczdE4B67R\r\n6IiF5bXMkwYy62LWjw6UzZC0Rmn2D2pu61Q=\r\n=MqnD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "464f441d8ea83a0365bc944d840a633568363046", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.4", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.2_1682210087005_0.006759571251492291", + "host": "s3://npm-registry-packages" + } + }, + "10.2.3": { + "name": "glob", + "version": "10.2.3", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "aa6765963fe6c5936d5c2e00943e7af06302a1a7", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.3.tgz", + "fileCount": 65, + "integrity": "sha512-Kb4rfmBVE3eQTAimgmeqc2LwSnN0wIOkkUL6HmxEFxNJ4fHghYHVbFba/HcGcRjE6s9KoMNK3rSOwkL4PioZjg==", + "signatures": [ + { + "sig": "MEYCIQDnHMwiMeGmFmlpM2tvokJ7Z+I9xfV+D4niuiVPpbBeDwIhAO6BA+NQ6uxG1tFKuTspppEfZn+BZdFc/72myKaNlhMm", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453116 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "8bd4777025ad93f9ad02016d7f914fd1e5573bbb", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.5", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.3_1683673937200_0.5730598905460829", + "host": "s3://npm-registry-packages" + } + }, + "10.2.4": { + "name": "glob", + "version": "10.2.4", + "author": { + "url": "http://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "f5bf7ddb080e3e9039b148a9e2aef3d5ebfc0a25", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.4.tgz", + "fileCount": 65, + "integrity": "sha512-fDboBse/sl1oXSLhIp0FcCJgzW9KmhC/q8ULTKC82zc+DL3TL7FNb8qlt5qqXN53MsKEUSIcb+7DLmEygOE5Yw==", + "signatures": [ + { + "sig": "MEQCIDNH9FT8NVlOlVFHBARcqHZLKBU4UMJjZl3aXiyWg0NNAiBmYttG68I/OD7lP7SLfwwwsGouiJsfPglSOET60F23QQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453136 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "b1014e9521290c6cf8bbc21bc8819a20bc04300b", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.5", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.4_1684125900727_0.4456738141472436", + "host": "s3://npm-registry-packages" + } + }, + "10.2.5": { + "name": "glob", + "version": "10.2.5", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "73c1850ac8f077810d8370ba414b382ad1a86083", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.5.tgz", + "fileCount": 65, + "integrity": "sha512-Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA==", + "signatures": [ + { + "sig": "MEUCICdowjbSVIlfl/DrutYecsN3QHktQxZK3a1S5g0B1TTkAiEAt+C7g+7EKKTvapHtoGy4Rawwe8q1JPtDNOi61ICtuCo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453138 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "4d9f753e94f5ace23152d4d5babdc839f1bf2003", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.5", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.5_1684358706560_0.9465834923214869", + "host": "s3://npm-registry-packages" + } + }, + "10.2.6": { + "name": "glob", + "version": "10.2.6", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "1e27edbb3bbac055cb97113e27a066c100a4e5e1", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.6.tgz", + "fileCount": 65, + "integrity": "sha512-U/rnDpXJGF414QQQZv5uVsabTVxMSwzS5CH0p3DRCIV6ownl4f7PzGnkGmvlum2wB+9RlJWJZ6ACU1INnBqiPA==", + "signatures": [ + { + "sig": "MEUCIEq24qgqiEH3j8FvgfOFSDhM4hqFFj5EPyeBHnhfg4u4AiEA4EvWsOq5lAoMjLAWs7p/Wq/CL/4CVeaodedBq5hsVFE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453134 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "676bbefed4e9277eeadd0f48f7a6d9e3d36b4a18", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.5", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.2.1" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.6_1684616144511_0.5199131475157805", + "host": "s3://npm-registry-packages" + } + }, + "10.2.7": { + "name": "glob", + "version": "10.2.7", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.2.7", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "9dd2828cd5bc7bd861e7738d91e7113dda41d7d8", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.7.tgz", + "fileCount": 65, + "integrity": "sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==", + "signatures": [ + { + "sig": "MEUCIQDSZInAjff2U6mgeRbuWK7+dZVFfzEK26PMkbRpOnkPpAIgAheXkGMrDbSIjF/5txTQ4lIEY9i3kcNo+BY6RY8hV7g=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 450163 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d64372edd2d7f7471dab23dd5aba253d4fdfcc37", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.6.7", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.2.1" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.2.7_1686078500537_0.6756155014476009", + "host": "s3://npm-registry-packages" + } + }, + "10.3.0": { + "name": "glob", + "version": "10.3.0", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "763d02a894f3cdfc521b10bbbbc8e0309e750cce", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.0.tgz", + "fileCount": 65, + "integrity": "sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg==", + "signatures": [ + { + "sig": "MEUCICcUmu87/3q6fvgoGhXpego0I+WQFiMcDIgdqZxnLDddAiEAie25io9KXc05oAwoPpZUpUbJSVJI26sCAOzLMx8BqUg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451019 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "157373b836ed9c48e204252951c2470117917606", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.2.1" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.0_1687374443387_0.8735959657053605", + "host": "s3://npm-registry-packages" + } + }, + "10.3.1": { + "name": "glob", + "version": "10.3.1", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "9789cb1b994515bedb811a6deca735b5c37d2bf4", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "fileCount": 65, + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "signatures": [ + { + "sig": "MEYCIQCc5Whu/mVKzGrJXKuISh80DLdtGAIYsh21eqvS1dY10QIhAPSrt7OWvrK58TuJd7RXZCBDBjGur34adBtKWkiGJiir", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451020 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "8efc5e7c3abaa70db031a9f93ed37d4935df6486", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.7.2", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.1_1687906946945_0.09456819962890162", + "host": "s3://npm-registry-packages" + } + }, + "10.3.2": { + "name": "glob", + "version": "10.3.2", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "04fe71118ec6d2f4cb761849acbacec14b06cb1e", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.2.tgz", + "fileCount": 65, + "integrity": "sha512-vsuLzB3c/uyDLLEdBZtT8vGnN0z57rwOxHV2oYZib/7HWmBspUaja/McYIobBjC4qaUTuNpUyFO2IdqM4DZIJA==", + "signatures": [ + { + "sig": "MEQCIED1IrUsjEdqh2zl8WA7+tV+N6RZrosd/uXW19ZtdaP4AiBzxtRsYHwEJZ2h+RWjD1UKUgriugtmtgTYBxBtK5uavg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451030 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "44d2773f51e7e64a3a2774a3b0fa80e693973324", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.7.2", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.2_1688775515119_0.6452798873510912", + "host": "s3://npm-registry-packages" + } + }, + "10.3.3": { + "name": "glob", + "version": "10.3.3", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "8360a4ffdd6ed90df84aa8d52f21f452e86a123b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.3.tgz", + "fileCount": 65, + "integrity": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==", + "signatures": [ + { + "sig": "MEYCIQDF76psrBT0sdw9jHef6ffpmtWMY6a4Ex4SAZXO2IDP5AIhALlgkB0kBPJ17P7T4unTC62Hz/Fh0AKZs00iZbRaeRhf", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451741 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "8c371a3eaacaa0783c34bda13d32fca3219017d3", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "preprepare": "rm -rf dist", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.7.2", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.3_1688852338771_0.13558275122118535", + "host": "s3://npm-registry-packages" + } + }, + "10.3.4": { + "name": "glob", + "version": "10.3.4", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "c85c9c7ab98669102b6defda76d35c5b1ef9766f", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.4.tgz", + "fileCount": 65, + "integrity": "sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==", + "signatures": [ + { + "sig": "MEYCIQCD8o5EniBwTBDGGahq8ctrSt4ca9g6cuL1EktRPxxhSAIhAK8c6GoI46+Dq5zT2kyY7HJwfNHJswjsBReS0hNlvXda", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 450892 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "8d7992f1a5b74930918c523a31a061519e86aedf", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.8.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.16.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.4_1693435521022_0.8837062711240624", + "host": "s3://npm-registry-packages" + } + }, + "10.3.5": { + "name": "glob", + "version": "10.3.5", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "4c0e46b5bccd78ac42b06a7eaaeb9ee34062968e", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.5.tgz", + "fileCount": 65, + "integrity": "sha512-bYUpUD7XDEHI4Q2O5a7PXGvyw4deKR70kHiDxzQbe925wbZknhOzUt2xBgTkYL6RBcVeXYuD9iNYeqoWbBZQnA==", + "signatures": [ + { + "sig": "MEQCIEnOgdkHkc3XaEe7WjSVbJMZBIVezPKeZafCMjCrErcBAiAJsgLoVD547QQ9yxpMqn4RWl0osLMEdnaaY4rduyjlQA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 450930 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d15c680d602ef63c39d34b401be9fd0ba2c9195c", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.8.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.18.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.5_1695250991901_0.6807862878838618", + "host": "s3://npm-registry-packages" + } + }, + "10.3.6": { + "name": "glob", + "version": "10.3.6", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "tap": { + "ts": false, + "before": "test/00-setup.ts", + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "c30553fe51dc19da30423c92cfcf15e433336058", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.6.tgz", + "fileCount": 65, + "integrity": "sha512-mEfImdc/fiYHEcF6pHFfD2b/KrdFB1qH9mRe5vI5HROF8G51SWxQJ2V56Ezl6ZL9y86gsxQ1Lgo2S746KGUPSQ==", + "signatures": [ + { + "sig": "MEUCIQD4ssxKI/Tj4CBwABsyGil048+c89rcrmbZiUGlqtaM5gIgKD0t+uU50sMqjO0xS2NMkt/sBMzebeso95A9T6Szdnc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451644 + }, + "main": "./dist/cjs/src/index.js", + "types": "./dist/mjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/src/index.d.ts", + "default": "./dist/cjs/src/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "5cedf2c640c23c077474c8d9cb33e820e18fdafc", + "scripts": { + "prof": "bash prof.sh", + "snap": "c8 tap", + "test": "c8 tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash fixup.sh", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "9.8.1", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "18.18.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.6_1695430378063_0.31336994957926945", + "host": "s3://npm-registry-packages" + } + }, + "10.3.7": { + "name": "glob", + "version": "10.3.7", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.7", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "d5bd30a529c8c9b262fb4b217941f64ad90e25ac", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.7.tgz", + "fileCount": 65, + "integrity": "sha512-wCMbE1m9Nx5yD9LYtgsVWq5VhHlk5WzJirw594qZR6AIvQYuHrdDtIktUVjQItalD53y7dqoedu9xP0u0WaxIQ==", + "signatures": [ + { + "sig": "MEUCIAtCoNKnKp1NIfqykjOoLdi2t7DZtLmDhxxEGe9+P3BNAiEApg0HKOViEnhnbrdo3P8ch0MR/ObzsgJ7HO+0HM9/Yww=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454226 + }, + "tshy": { + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "1d3fdd22d4f398abe32d344a69fce27207d59cab", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.1.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.7.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.1.1", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.7_1695592430945_0.480881456153055", + "host": "s3://npm-registry-packages" + } + }, + "10.3.8": { + "name": "glob", + "version": "10.3.8", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.8", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "186499f88ba2e7342ed7f4c1e60acdfe477d94f4", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.8.tgz", + "fileCount": 65, + "integrity": "sha512-0z5t5h4Pxtqi+8ozm+j7yMI/bQ1sBeg4oAUGkDPUguaY2YZB76gtlllWoxWEHo02E5qAjsELwVX8g8Wk6RvQog==", + "signatures": [ + { + "sig": "MEUCIQCu3IjzOZ9PVjiWWKeBxoC9r3j61vvS8Fsl7hUQkZcc0AIgVPEeGbMSz9jTg0zlHGxfjMMz9aHoi8uGxkEr6pVP6Ms=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454314 + }, + "main": "./dist/esm/index.js", + "tshy": { + "main": "esm", + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/esm/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "a6372733753d5b61f2a3136c321fb69063ef82fa", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.1.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.7.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.2.1", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.8_1695708632336_0.02939688585102984", + "host": "s3://npm-registry-packages" + } + }, + "10.3.9": { + "name": "glob", + "version": "10.3.9", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.9", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "181ae87640ecce9b2fc5b96e4e2d70b7c3629ab8", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.9.tgz", + "fileCount": 65, + "integrity": "sha512-2tU/LKevAQvDVuVJ9pg9Yv9xcbSh+TqHuTaXTNbQwf+0kDl9Fm6bMovi4Nm5c8TVvfxo2LLcqCGtmO9KoJaGWg==", + "signatures": [ + { + "sig": "MEUCIBbyfND0pTnv+vH5eL4RkpxdX4w7o/7U/faGYwMkS66eAiEAjbIwuIelR+pafQi+5poq/HP4M+P6uhVCZMHyiEA1D9E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454226 + }, + "tshy": { + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "b35083a9375824b2110a9ff36e2f0c75d6f64cdb", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.1.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.7.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.2.1", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.9_1695712922073_0.6754606293665537", + "host": "s3://npm-registry-packages" + } + }, + "10.3.10": { + "name": "glob", + "version": "10.3.10", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.10", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "0351ebb809fd187fe421ab96af83d3a70715df4b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "fileCount": 65, + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "signatures": [ + { + "sig": "MEYCIQCcK9lVgwIeyK0pIDUiBgch3VNYbCz2X19J9xedWfv8PwIhAOlivOFprFxRJfoU2cpE0iAkOpABeBTqukHm53PXydK+", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454324 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "4f18d23772133e11b1ccc4b8d7f729dddca206e3", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.1.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.7.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.2.2", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.10_1695794391517_0.4280582362671188", + "host": "s3://npm-registry-packages" + } + }, + "10.3.11": { + "name": "glob", + "version": "10.3.11", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.11", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "0d2af512a9490e3bc87360bcb97fd0465aa8df65", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.11.tgz", + "fileCount": 65, + "integrity": "sha512-0UAMm+R/z1E2bTR8eFnoIIlnrUK89m36i90Ez36ld9hLulfUPBgRCQtBy/v86ABx18jnGyrTvu4X3LAjIeBogw==", + "signatures": [ + { + "sig": "MEQCIDsTwlH0xKKTCy7hay26LiSnKBVnsyeO/nkanD2r+d5rAiAJ6/EnGdjw1hNoKOqLtje54wqbg6w0yZ1b8nVvVF5hUw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 459037 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "e667dcbc5e5077e24efc867dbde1737d7ad98bd8", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.5.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.11.0", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.2", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.11_1711641547218_0.25227546501847775", + "host": "s3://npm-registry-packages" + } + }, + "10.3.12": { + "name": "glob", + "version": "10.3.12", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.12", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "3a65c363c2e9998d220338e88a5f6ac97302960b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "fileCount": 65, + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", + "signatures": [ + { + "sig": "MEUCIEJbWVa+FERWmrBZfJr/Dm12mBNuQZDNTI95jwDsydieAiEAnGuOMbGf/CUAz/6GPT8hDhPD8AsnVGXkEOvPD6Wuwao=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460403 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d5b6b5d10ac1b83725e6f42649c0e874e76ea602", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.5.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.11.0", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.2", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.12_1711642430934_0.4034470121003215", + "host": "s3://npm-registry-packages" + } + }, + "10.3.13": { + "name": "glob", + "version": "10.3.13", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.13", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "20dfbd14da06952872a778197325f974e9fbf808", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.13.tgz", + "fileCount": 65, + "integrity": "sha512-CQ9K7FRtaP//lXUKJVVYFxvozIz3HR4Brk+yB5VSkmWiHVILwd7NqQ2+UH6Ab5/NzCLib+j1REVV+FSZ+ZHOvg==", + "signatures": [ + { + "sig": "MEQCIBcs6UFpcf9b45X47IRbzwXP+ayPMZwgQbkevYfByy0bAiB/HqTBjknlO1/7zLE77zGLPP0/ozkLSUhkD8Y1g66s2w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460433 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d6a9d05d150f18e9db4278dfb71ba104b2b5b7c0", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.11.0", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.2", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.13_1715262617693_0.6531917309379052", + "host": "s3://npm-registry-packages" + } + }, + "10.3.14": { + "name": "glob", + "version": "10.3.14", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.14", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "36501f871d373fe197fc5794588d0aa71e69ff68", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.14.tgz", + "fileCount": 65, + "integrity": "sha512-4fkAqu93xe9Mk7le9v0y3VrPDqLKHarNi2s4Pv7f2yOvfhWfhc7hRPHC/JyqMqb8B/Dt/eGS4n7ykwf3fOsl8g==", + "signatures": [ + { + "sig": "MEUCIQD7LUNeU0oj9TW182JbJOl1in+zCv95dcWCx1LFFl1qWgIgTAMJKcoCKonYZFxTTHXf0iuprQ9HP1s/7E6PL7LjfOU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460433 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "4da30cd93831047441f726fd6335e607e9b03c4a", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.11.0", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.11.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.14_1715266369866_0.21454303219860105", + "host": "s3://npm-registry-packages" + } + }, + "10.3.15": { + "name": "glob", + "version": "10.3.15", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.15", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "e72bc61bc3038c90605f5dd48543dc67aaf3b50d", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", + "fileCount": 65, + "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", + "signatures": [ + { + "sig": "MEQCIHnLr5bfuu//yukpO/4PVSAN8UbQ1K6zTQuF+JS+Sle6AiBK99Yr4fBawMxWLQYTWS4r57yPAro5RdtGou1UrWKEBw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460433 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "921c4b91d49a8b38c48087279bad42785503cfbb", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.11.0", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.11.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.15_1715482067924_0.8211969794081233", + "host": "s3://npm-registry-packages" + } + }, + "10.3.16": { + "name": "glob", + "version": "10.3.16", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.3.16", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "bf6679d5d51279c8cfae4febe0d051d2a4bf4c6f", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.16.tgz", + "fileCount": 65, + "integrity": "sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==", + "signatures": [ + { + "sig": "MEUCIDE6Ae5RxwgY7yAUArya6IpBTSq3MAJ4COgWNiYA6TsBAiEAzIIf4ZTkP/tG98Xo+OkO26VN16Kpb6uIcJnjlcbEM7A=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460323 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "b27429849a6e8bc11a042811a939d02cbf5b100d", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.8.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.1", + "path-scurry": "^1.11.0", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.3.16_1716318855482_0.9106208639199156", + "host": "s3://npm-registry-packages" + } + }, + "10.4.0": { + "name": "glob", + "version": "10.4.0", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.4.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "a6803ea42f6f609900e41f610e1324e292d55cb6", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.0.tgz", + "fileCount": 65, + "integrity": "sha512-+K6CicMIL11UEbC3gH/MVxgGG4gJDMu9tPD+nH+d6W3+y2fYuDSbpa2b+EGyvCGvSN/PT/7daJTH25NknJkcIQ==", + "signatures": [ + { + "sig": "MEQCIDsewWfLDYiGyDHb27hsUApiJRkpCnEAwC2hZiFfBTjSAiBKXheFHOlVp0LcO74Tk1jK1xz1bEcp92eCxCt6jOiy/w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475552 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "f0bd1e848c3c36c094f7613d114fd69fcc880f73", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.4.0_1716512698426_0.9667227592397296", + "host": "s3://npm-registry-packages" + } + }, + "10.4.1": { + "name": "glob", + "version": "10.4.1", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.4.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "0cfb01ab6a6b438177bfe6a58e2576f6efe909c2", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "fileCount": 65, + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "signatures": [ + { + "sig": "MEUCIHBE6KMjMJTHA37ZG89jVyJQPJvXYlSrgtRma9tMTS2TAiEAhIKUOfuL+R1FGUWfBjMXfm8sTKx2L9y0yVUlo3qfOjw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475913 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "3cb1ed75b2631a567030131f422b961818bedf76", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --log-level warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "experimentalTernaries": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.4.1_1716530484809_0.5057523870844802", + "host": "s3://npm-registry-packages" + } + }, + "10.4.2": { + "name": "glob", + "version": "10.4.2", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.4.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "bed6b95dade5c1f80b4434daced233aee76160e5", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", + "fileCount": 65, + "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "signatures": [ + { + "sig": "MEUCIDrgJHmKIV4xbjy6l7it8DbKVmpOug0kpsOFrU4GlvjMAiEAo1ww3T7RKR0eEUiod1FbOkKsDxYLy/umC6WzWuP93Ew=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475195 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "eef7ea35afe511079c5bf83862ed57ece2bbf7fa", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --log-level warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "experimentalTernaries": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.4.2_1718762387906_0.815736664277541", + "host": "s3://npm-registry-packages" + } + }, + "10.4.3": { + "name": "glob", + "version": "10.4.3", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.4.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "e0ba2253dd21b3d0acdfb5d507c59a29f513fc7a", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.3.tgz", + "fileCount": 65, + "integrity": "sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==", + "signatures": [ + { + "sig": "MEUCIQCKOQFFwq5tFQIC2YM+qNN9Bgjbv0oDC6Se02xhEhelVwIgKEmDRoKPv2NIBMiBeiwBH1cDTzMfGiTOnn865A9DXuY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475181 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=18" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "c14b787771f269651f27f6207aaf410fe171f0b6", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --log-level warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "experimentalTernaries": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.4.3_1720238660394_0.8638288150963547", + "host": "s3://npm-registry-packages" + } + }, + "10.4.4": { + "name": "glob", + "version": "10.4.4", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.4.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "d60943feb6f8140522117e6576a923b715718380", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.4.tgz", + "fileCount": 65, + "integrity": "sha512-XsOKvHsu38Xe19ZQupE6N/HENeHQBA05o3hV8labZZT2zYDg1+emxWHnc/Bm9AcCMPXfD6jt+QC7zC5JSFyumw==", + "signatures": [ + { + "sig": "MEUCIQCgHPF8XN3tuyJVZY/mk6XGnjI0czNt8rbIMYMlqgrw1QIgXnAz8HxtRhDCXenUQgfjYcEXPOH6Ylq+5q4a8fwDERc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475328 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "module": "./dist/esm/index.js", + "engines": { + "node": "14 >=14.21 || 16 >=16.20 || 18 || 20 || >=22" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "source": "./src/index.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "source": "./src/index.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "78275168e1bbc7a61e372af1ba58307c27faf0cb", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --log-level warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "experimentalTernaries": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.4.4_1720476869960_0.4786387404342427", + "host": "s3://npm-registry-packages" + } + }, + "11.0.0": { + "name": "glob", + "version": "11.0.0", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@11.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "6031df0d7b65eaa1ccb9b29b5ced16cea658e77e", + "tarball": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "fileCount": 65, + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "signatures": [ + { + "sig": "MEUCIDcrb+cZALFLxpz8+7X8I+6JK/PP+5bHPA1sqhiOP7mOAiEA/cRMl/d2qmk3sT4QEJI1ZyMrRoy1B5RLTlu7bkWOcvo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 474708 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "module": "./dist/esm/index.js", + "engines": { + "node": "20 || >=22" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "561601d9d14935970ea78b0c1ca3a25addbf5379", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --log-level warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "experimentalTernaries": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "path-scurry": "^2.0.0", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^20.0.3", + "tshy": "^2.0.1", + "memfs": "^4.9.3", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.26.3", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_11.0.0_1720476974655_0.948808676809177", + "host": "s3://npm-registry-packages" + } + }, + "10.4.5": { + "name": "glob", + "version": "10.4.5", + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "glob@10.4.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "tap": { + "before": "test/00-setup.ts" + }, + "dist": { + "shasum": "f4d9f0b90ffdbab09c9d77f5f29b4262517b0956", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "fileCount": 65, + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "signatures": [ + { + "sig": "MEYCIQC8e5UGHGkyQAsQTODAzsj5/qX2Kq7Esa3fY6YbSWwQygIhAMKHzp7AD/3NOukC7JY3L+pGkD40FCF5NGkDTpEM+0Fy", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 474716 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "main": true, + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "module": "./dist/esm/index.js", + "readme": "# Glob\n\nMatch files using the patterns the shell uses.\n\nThe most correct and second fastest glob implementation in\nJavaScript. (See **Comparison to Other JavaScript Glob\nImplementations** at the bottom of this readme.)\n\n![a fun cartoon logo made of glob characters](https://github.com/isaacs/node-glob/raw/main/logo/glob.png)\n\n## Usage\n\nInstall with npm\n\n```\nnpm i glob\n```\n\n**Note** the npm package name is _not_ `node-glob` that's a\ndifferent thing that was abandoned years ago. Just `glob`.\n\n```js\n// load using import\nimport { glob, globSync, globStream, globStreamSync, Glob } from 'glob'\n// or using commonjs, that's fine, too\nconst {\n glob,\n globSync,\n globStream,\n globStreamSync,\n Glob,\n} = require('glob')\n\n// the main glob() and globSync() resolve/return array of filenames\n\n// all js files, but don't look in node_modules\nconst jsfiles = await glob('**/*.js', { ignore: 'node_modules/**' })\n\n// pass in a signal to cancel the glob walk\nconst stopAfter100ms = await glob('**/*.css', {\n signal: AbortSignal.timeout(100),\n})\n\n// multiple patterns supported as well\nconst images = await glob(['css/*.{png,jpeg}', 'public/*.{png,jpeg}'])\n\n// but of course you can do that with the glob pattern also\n// the sync function is the same, just returns a string[] instead\n// of Promise\nconst imagesAlt = globSync('{css,public}/*.{png,jpeg}')\n\n// you can also stream them, this is a Minipass stream\nconst filesStream = globStream(['**/*.dat', 'logs/**/*.log'])\n\n// construct a Glob object if you wanna do it that way, which\n// allows for much faster walks if you have to look in the same\n// folder multiple times.\nconst g = new Glob('**/foo', {})\n// glob objects are async iterators, can also do globIterate() or\n// g.iterate(), same deal\nfor await (const file of g) {\n console.log('found a foo file:', file)\n}\n// pass a glob as the glob options to reuse its settings and caches\nconst g2 = new Glob('**/bar', g)\n// sync iteration works as well\nfor (const file of g2) {\n console.log('found a bar file:', file)\n}\n\n// you can also pass withFileTypes: true to get Path objects\n// these are like a Dirent, but with some more added powers\n// check out http://npm.im/path-scurry for more info on their API\nconst g3 = new Glob('**/baz/**', { withFileTypes: true })\ng3.stream().on('data', path => {\n console.log(\n 'got a path object',\n path.fullpath(),\n path.isDirectory(),\n path.readdirSync().map(e => e.name),\n )\n})\n\n// if you use stat:true and withFileTypes, you can sort results\n// by things like modified time, filter by permission mode, etc.\n// All Stats fields will be available in that case. Slightly\n// slower, though.\n// For example:\nconst results = await glob('**', { stat: true, withFileTypes: true })\n\nconst timeSortedFiles = results\n .sort((a, b) => a.mtimeMs - b.mtimeMs)\n .map(path => path.fullpath())\n\nconst groupReadableFiles = results\n .filter(path => path.mode & 0o040)\n .map(path => path.fullpath())\n\n// custom ignores can be done like this, for example by saying\n// you'll ignore all markdown files, and all folders named 'docs'\nconst customIgnoreResults = await glob('**', {\n ignore: {\n ignored: p => /\\.md$/.test(p.name),\n childrenIgnored: p => p.isNamed('docs'),\n },\n})\n\n// another fun use case, only return files with the same name as\n// their parent folder, plus either `.ts` or `.js`\nconst folderNamedModules = await glob('**/*.{ts,js}', {\n ignore: {\n ignored: p => {\n const pp = p.parent\n return !(p.isNamed(pp.name + '.ts') || p.isNamed(pp.name + '.js'))\n },\n },\n})\n\n// find all files edited in the last hour, to do this, we ignore\n// all of them that are more than an hour old\nconst newFiles = await glob('**', {\n // need stat so we have mtime\n stat: true,\n // only want the files, not the dirs\n nodir: true,\n ignore: {\n ignored: p => {\n return new Date() - p.mtime > 60 * 60 * 1000\n },\n // could add similar childrenIgnored here as well, but\n // directory mtime is inconsistent across platforms, so\n // probably better not to, unless you know the system\n // tracks this reliably.\n },\n})\n```\n\n**Note** Glob patterns should always use `/` as a path separator,\neven on Windows systems, as `\\` is used to escape glob\ncharacters. If you wish to use `\\` as a path separator _instead\nof_ using it as an escape character on Windows platforms, you may\nset `windowsPathsNoEscape:true` in the options. In this mode,\nspecial glob characters cannot be escaped, making it impossible\nto match a literal `*` `?` and so on in filenames.\n\n## Command Line Interface\n\n```\n$ glob -h\n\nUsage:\n glob [options] [ [ ...]]\n\nExpand the positional glob expression arguments into any matching file system\npaths found.\n\n -c --cmd=\n Run the command provided, passing the glob expression\n matches as arguments.\n\n -A --all By default, the glob cli command will not expand any\n arguments that are an exact match to a file on disk.\n\n This prevents double-expanding, in case the shell\n expands an argument whose filename is a glob\n expression.\n\n For example, if 'app/*.ts' would match 'app/[id].ts',\n then on Windows powershell or cmd.exe, 'glob app/*.ts'\n will expand to 'app/[id].ts', as expected. However, in\n posix shells such as bash or zsh, the shell will first\n expand 'app/*.ts' to a list of filenames. Then glob\n will look for a file matching 'app/[id].ts' (ie,\n 'app/i.ts' or 'app/d.ts'), which is unexpected.\n\n Setting '--all' prevents this behavior, causing glob to\n treat ALL patterns as glob expressions to be expanded,\n even if they are an exact match to a file on disk.\n\n When setting this option, be sure to enquote arguments\n so that the shell will not expand them prior to passing\n them to the glob command process.\n\n -a --absolute Expand to absolute paths\n -d --dot-relative Prepend './' on relative matches\n -m --mark Append a / on any directories matched\n -x --posix Always resolve to posix style paths, using '/' as the\n directory separator, even on Windows. Drive letter\n absolute matches on Windows will be expanded to their\n full resolved UNC maths, eg instead of 'C:\\foo\\bar', it\n will expand to '//?/C:/foo/bar'.\n\n -f --follow Follow symlinked directories when expanding '**'\n -R --realpath Call 'fs.realpath' on all of the results. In the case\n of an entry that cannot be resolved, the entry is\n omitted. This incurs a slight performance penalty, of\n course, because of the added system calls.\n\n -s --stat Call 'fs.lstat' on all entries, whether required or not\n to determine if it's a valid match.\n\n -b --match-base Perform a basename-only match if the pattern does not\n contain any slash characters. That is, '*.js' would be\n treated as equivalent to '**/*.js', matching js files\n in all directories.\n\n --dot Allow patterns to match files/directories that start\n with '.', even if the pattern does not start with '.'\n\n --nobrace Do not expand {...} patterns\n --nocase Perform a case-insensitive match. This defaults to\n 'true' on macOS and Windows platforms, and false on all\n others.\n\n Note: 'nocase' should only be explicitly set when it is\n known that the filesystem's case sensitivity differs\n from the platform default. If set 'true' on\n case-insensitive file systems, then the walk may return\n more or less results than expected.\n\n --nodir Do not match directories, only files.\n\n Note: to *only* match directories, append a '/' at the\n end of the pattern.\n\n --noext Do not expand extglob patterns, such as '+(a|b)'\n --noglobstar Do not expand '**' against multiple path portions. Ie,\n treat it as a normal '*' instead.\n\n --windows-path-no-escape\n Use '\\' as a path separator *only*, and *never* as an\n escape character. If set, all '\\' characters are\n replaced with '/' in the pattern.\n\n -D --max-depth= Maximum depth to traverse from the current working\n directory\n\n -C --cwd= Current working directory to execute/match in\n -r --root= A string path resolved against the 'cwd', which is used\n as the starting point for absolute patterns that start\n with '/' (but not drive letters or UNC paths on\n Windows).\n\n Note that this *doesn't* necessarily limit the walk to\n the 'root' directory, and doesn't affect the cwd\n starting point for non-absolute patterns. A pattern\n containing '..' will still be able to traverse out of\n the root directory, if it is not an actual root\n directory on the filesystem, and any non-absolute\n patterns will still be matched in the 'cwd'.\n\n To start absolute and non-absolute patterns in the same\n path, you can use '--root=' to set it to the empty\n string. However, be aware that on Windows systems, a\n pattern like 'x:/*' or '//host/share/*' will *always*\n start in the 'x:/' or '//host/share/' directory,\n regardless of the --root setting.\n\n --platform= Defaults to the value of 'process.platform' if\n available, or 'linux' if not. Setting --platform=win32\n on non-Windows systems may cause strange behavior!\n\n -i --ignore=\n Glob patterns to ignore Can be set multiple times\n -v --debug Output a huge amount of noisy debug information about\n patterns as they are parsed and used to match files.\n\n -h --help Show this usage information\n```\n\n## `glob(pattern: string | string[], options?: GlobOptions) => Promise`\n\nPerform an asynchronous glob search for the pattern(s) specified.\nReturns\n[Path](https://isaacs.github.io/path-scurry/classes/PathBase)\nobjects if the `withFileTypes` option is set to `true`. See below\nfor full options field desciptions.\n\n## `globSync(pattern: string | string[], options?: GlobOptions) => string[] | Path[]`\n\nSynchronous form of `glob()`.\n\nAlias: `glob.sync()`\n\n## `globIterate(pattern: string | string[], options?: GlobOptions) => AsyncGenerator`\n\nReturn an async iterator for walking glob pattern matches.\n\nAlias: `glob.iterate()`\n\n## `globIterateSync(pattern: string | string[], options?: GlobOptions) => Generator`\n\nReturn a sync iterator for walking glob pattern matches.\n\nAlias: `glob.iterate.sync()`, `glob.sync.iterate()`\n\n## `globStream(pattern: string | string[], options?: GlobOptions) => Minipass`\n\nReturn a stream that emits all the strings or `Path` objects and\nthen emits `end` when completed.\n\nAlias: `glob.stream()`\n\n## `globStreamSync(pattern: string | string[], options?: GlobOptions) => Minipass`\n\nSyncronous form of `globStream()`. Will read all the matches as\nfast as you consume them, even all in a single tick if you\nconsume them immediately, but will still respond to backpressure\nif they're not consumed immediately.\n\nAlias: `glob.stream.sync()`, `glob.sync.stream()`\n\n## `hasMagic(pattern: string | string[], options?: GlobOptions) => boolean`\n\nReturns `true` if the provided pattern contains any \"magic\" glob\ncharacters, given the options provided.\n\nBrace expansion is not considered \"magic\" unless the\n`magicalBraces` option is set, as brace expansion just turns one\nstring into an array of strings. So a pattern like `'x{a,b}y'`\nwould return `false`, because `'xay'` and `'xby'` both do not\ncontain any magic glob characters, and it's treated the same as\nif you had called it on `['xay', 'xby']`. When\n`magicalBraces:true` is in the options, brace expansion _is_\ntreated as a pattern having magic.\n\n## `escape(pattern: string, options?: GlobOptions) => string`\n\nEscape all magic characters in a glob pattern, so that it will\nonly ever match literal strings\n\nIf the `windowsPathsNoEscape` option is used, then characters are\nescaped by wrapping in `[]`, because a magic character wrapped in\na character class can only be satisfied by that exact character.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n## `unescape(pattern: string, options?: GlobOptions) => string`\n\nUn-escape a glob string that may contain some escaped characters.\n\nIf the `windowsPathsNoEscape` option is used, then square-brace\nescapes are removed, but not backslash escapes. For example, it\nwill turn the string `'[*]'` into `*`, but it will not turn\n`'\\\\*'` into `'*'`, because `\\` is a path separator in\n`windowsPathsNoEscape` mode.\n\nWhen `windowsPathsNoEscape` is not set, then both brace escapes\nand backslash escapes are removed.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n## Class `Glob`\n\nAn object that can perform glob pattern traversals.\n\n### `const g = new Glob(pattern: string | string[], options: GlobOptions)`\n\nOptions object is required.\n\nSee full options descriptions below.\n\nNote that a previous `Glob` object can be passed as the\n`GlobOptions` to another `Glob` instantiation to re-use settings\nand caches with a new pattern.\n\nTraversal functions can be called multiple times to run the walk\nagain.\n\n### `g.stream()`\n\nStream results asynchronously,\n\n### `g.streamSync()`\n\nStream results synchronously.\n\n### `g.iterate()`\n\nDefault async iteration function. Returns an AsyncGenerator that\niterates over the results.\n\n### `g.iterateSync()`\n\nDefault sync iteration function. Returns a Generator that\niterates over the results.\n\n### `g.walk()`\n\nReturns a Promise that resolves to the results array.\n\n### `g.walkSync()`\n\nReturns a results array.\n\n### Properties\n\nAll options are stored as properties on the `Glob` object.\n\n- `opts` The options provided to the constructor.\n- `patterns` An array of parsed immutable `Pattern` objects.\n\n## Options\n\nExported as `GlobOptions` TypeScript interface. A `GlobOptions`\nobject may be provided to any of the exported methods, and must\nbe provided to the `Glob` constructor.\n\nAll options are optional, boolean, and false by default, unless\notherwise noted.\n\nAll resolved options are added to the Glob object as properties.\n\nIf you are running many `glob` operations, you can pass a Glob\nobject as the `options` argument to a subsequent operation to\nshare the previously loaded cache.\n\n- `cwd` String path or `file://` string or URL object. The\n current working directory in which to search. Defaults to\n `process.cwd()`. See also: \"Windows, CWDs, Drive Letters, and\n UNC Paths\", below.\n\n This option may be either a string path or a `file://` URL\n object or string.\n\n- `root` A string path resolved against the `cwd` option, which\n is used as the starting point for absolute patterns that start\n with `/`, (but not drive letters or UNC paths on Windows).\n\n Note that this _doesn't_ necessarily limit the walk to the\n `root` directory, and doesn't affect the cwd starting point for\n non-absolute patterns. A pattern containing `..` will still be\n able to traverse out of the root directory, if it is not an\n actual root directory on the filesystem, and any non-absolute\n patterns will be matched in the `cwd`. For example, the\n pattern `/../*` with `{root:'/some/path'}` will return all\n files in `/some`, not all files in `/some/path`. The pattern\n `*` with `{root:'/some/path'}` will return all the entries in\n the cwd, not the entries in `/some/path`.\n\n To start absolute and non-absolute patterns in the same\n path, you can use `{root:''}`. However, be aware that on\n Windows systems, a pattern like `x:/*` or `//host/share/*` will\n _always_ start in the `x:/` or `//host/share` directory,\n regardless of the `root` setting.\n\n- `windowsPathsNoEscape` Use `\\\\` as a path separator _only_, and\n _never_ as an escape character. If set, all `\\\\` characters are\n replaced with `/` in the pattern.\n\n Note that this makes it **impossible** to match against paths\n containing literal glob pattern characters, but allows matching\n with patterns constructed using `path.join()` and\n `path.resolve()` on Windows platforms, mimicking the (buggy!)\n behavior of Glob v7 and before on Windows. Please use with\n caution, and be mindful of [the caveat below about Windows\n paths](#windows). (For legacy reasons, this is also set if\n `allowWindowsEscape` is set to the exact value `false`.)\n\n- `dot` Include `.dot` files in normal matches and `globstar`\n matches. Note that an explicit dot in a portion of the pattern\n will always match dot files.\n\n- `magicalBraces` Treat brace expansion like `{a,b}` as a \"magic\"\n pattern. Has no effect if {@link nobrace} is set.\n\n Only has effect on the {@link hasMagic} function, no effect on\n glob pattern matching itself.\n\n- `dotRelative` Prepend all relative path strings with `./` (or\n `.\\` on Windows).\n\n Without this option, returned relative paths are \"bare\", so\n instead of returning `'./foo/bar'`, they are returned as\n `'foo/bar'`.\n\n Relative patterns starting with `'../'` are not prepended with\n `./`, even if this option is set.\n\n- `mark` Add a `/` character to directory matches. Note that this\n requires additional stat calls.\n\n- `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.\n\n- `noglobstar` Do not match `**` against multiple filenames. (Ie,\n treat it as a normal `*` instead.)\n\n- `noext` Do not match \"extglob\" patterns such as `+(a|b)`.\n\n- `nocase` Perform a case-insensitive match. This defaults to\n `true` on macOS and Windows systems, and `false` on all others.\n\n **Note** `nocase` should only be explicitly set when it is\n known that the filesystem's case sensitivity differs from the\n platform default. If set `true` on case-sensitive file\n systems, or `false` on case-insensitive file systems, then the\n walk may return more or less results than expected.\n\n- `maxDepth` Specify a number to limit the depth of the directory\n traversal to this many levels below the `cwd`.\n\n- `matchBase` Perform a basename-only match if the pattern does\n not contain any slash characters. That is, `*.js` would be\n treated as equivalent to `**/*.js`, matching all js files in\n all directories.\n\n- `nodir` Do not match directories, only files. (Note: to match\n _only_ directories, put a `/` at the end of the pattern.)\n\n Note: when `follow` and `nodir` are both set, then symbolic\n links to directories are also omitted.\n\n- `stat` Call `lstat()` on all entries, whether required or not\n to determine whether it's a valid match. When used with\n `withFileTypes`, this means that matches will include data such\n as modified time, permissions, and so on. Note that this will\n incur a performance cost due to the added system calls.\n\n- `ignore` string or string[], or an object with `ignore` and\n `ignoreChildren` methods.\n\n If a string or string[] is provided, then this is treated as a\n glob pattern or array of glob patterns to exclude from matches.\n To ignore all children within a directory, as well as the entry\n itself, append `'/**'` to the ignore pattern.\n\n **Note** `ignore` patterns are _always_ in `dot:true` mode,\n regardless of any other settings.\n\n If an object is provided that has `ignored(path)` and/or\n `childrenIgnored(path)` methods, then these methods will be\n called to determine whether any Path is a match or if its\n children should be traversed, respectively.\n\n- `follow` Follow symlinked directories when expanding `**`\n patterns. This can result in a lot of duplicate references in\n the presence of cyclic links, and make performance quite bad.\n\n By default, a `**` in a pattern will follow 1 symbolic link if\n it is not the first item in the pattern, or none if it is the\n first item in the pattern, following the same behavior as Bash.\n\n Note: when `follow` and `nodir` are both set, then symbolic\n links to directories are also omitted.\n\n- `realpath` Set to true to call `fs.realpath` on all of the\n results. In the case of an entry that cannot be resolved, the\n entry is omitted. This incurs a slight performance penalty, of\n course, because of the added system calls.\n\n- `absolute` Set to true to always receive absolute paths for\n matched files. Set to `false` to always receive relative paths\n for matched files.\n\n By default, when this option is not set, absolute paths are\n returned for patterns that are absolute, and otherwise paths\n are returned that are relative to the `cwd` setting.\n\n This does _not_ make an extra system call to get the realpath,\n it only does string path resolution.\n\n `absolute` may not be used along with `withFileTypes`.\n\n- `posix` Set to true to use `/` as the path separator in\n returned results. On posix systems, this has no effect. On\n Windows systems, this will return `/` delimited path results,\n and absolute paths will be returned in their full resolved UNC\n path form, eg insted of `'C:\\\\foo\\\\bar'`, it will return\n `//?/C:/foo/bar`.\n\n- `platform` Defaults to value of `process.platform` if\n available, or `'linux'` if not. Setting `platform:'win32'` on\n non-Windows systems may cause strange behavior.\n\n- `withFileTypes` Return [PathScurry](http://npm.im/path-scurry)\n `Path` objects instead of strings. These are similar to a\n NodeJS `Dirent` object, but with additional methods and\n properties.\n\n `withFileTypes` may not be used along with `absolute`.\n\n- `signal` An AbortSignal which will cancel the Glob walk when\n triggered.\n\n- `fs` An override object to pass in custom filesystem methods.\n See [PathScurry docs](http://npm.im/path-scurry) for what can\n be overridden.\n\n- `scurry` A [PathScurry](http://npm.im/path-scurry) object used\n to traverse the file system. If the `nocase` option is set\n explicitly, then any provided `scurry` object must match this\n setting.\n\n- `includeChildMatches` boolean, default `true`. Do not match any\n children of any matches. For example, the pattern `**\\/foo`\n would match `a/foo`, but not `a/foo/b/foo` in this mode.\n\n This is especially useful for cases like \"find all\n `node_modules` folders, but not the ones in `node_modules`\".\n\n In order to support this, the `Ignore` implementation must\n support an `add(pattern: string)` method. If using the default\n `Ignore` class, then this is fine, but if this is set to\n `false`, and a custom `Ignore` is provided that does not have\n an `add()` method, then it will throw an error.\n\n **Caveat** It _only_ ignores matches that would be a descendant\n of a previous match, and only if that descendant is matched\n _after_ the ancestor is encountered. Since the file system walk\n happens in indeterminate order, it's possible that a match will\n already be added before its ancestor, if multiple or braced\n patterns are used.\n\n For example:\n\n ```js\n const results = await glob(\n [\n // likely to match first, since it's just a stat\n 'a/b/c/d/e/f',\n\n // this pattern is more complicated! It must to various readdir()\n // calls and test the results against a regular expression, and that\n // is certainly going to take a little bit longer.\n //\n // So, later on, it encounters a match at 'a/b/c/d/e', but it's too\n // late to ignore a/b/c/d/e/f, because it's already been emitted.\n 'a/[bdf]/?/[a-z]/*',\n ],\n { includeChildMatches: false },\n )\n ```\n\n It's best to only set this to `false` if you can be reasonably\n sure that no components of the pattern will potentially match\n one another's file system descendants, or if the occasional\n included child entry will not cause problems.\n\n## Glob Primer\n\nMuch more information about glob pattern expansion can be found\nby running `man bash` and searching for `Pattern Matching`.\n\n\"Globs\" are the patterns you type when you do stuff like `ls\n*.js` on the command line, or put `build/*` in a `.gitignore`\nfile.\n\nBefore parsing the path part patterns, braced sections are\nexpanded into a set. Braced sections start with `{` and end with\n`}`, with 2 or more comma-delimited sections within. Braced\nsections may contain slash characters, so `a{/b/c,bcd}` would\nexpand into `a/b/c` and `abcd`.\n\nThe following characters have special magic meaning when used in\na path portion. With the exception of `**`, none of these match\npath separators (ie, `/` on all platforms, and `\\` on Windows).\n\n- `*` Matches 0 or more characters in a single path portion.\n When alone in a path portion, it must match at least 1\n character. If `dot:true` is not specified, then `*` will not\n match against a `.` character at the start of a path portion.\n- `?` Matches 1 character. If `dot:true` is not specified, then\n `?` will not match against a `.` character at the start of a\n path portion.\n- `[...]` Matches a range of characters, similar to a RegExp\n range. If the first character of the range is `!` or `^` then\n it matches any character not in the range. If the first\n character is `]`, then it will be considered the same as `\\]`,\n rather than the end of the character class.\n- `!(pattern|pattern|pattern)` Matches anything that does not\n match any of the patterns provided. May _not_ contain `/`\n characters. Similar to `*`, if alone in a path portion, then\n the path portion must have at least one character.\n- `?(pattern|pattern|pattern)` Matches zero or one occurrence of\n the patterns provided. May _not_ contain `/` characters.\n- `+(pattern|pattern|pattern)` Matches one or more occurrences of\n the patterns provided. May _not_ contain `/` characters.\n- `*(a|b|c)` Matches zero or more occurrences of the patterns\n provided. May _not_ contain `/` characters.\n- `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns\n provided. May _not_ contain `/` characters.\n- `**` If a \"globstar\" is alone in a path portion, then it\n matches zero or more directories and subdirectories searching\n for matches. It does not crawl symlinked directories, unless\n `{follow:true}` is passed in the options object. A pattern\n like `a/b/**` will only match `a/b` if it is a directory.\n Follows 1 symbolic link if not the first item in the pattern,\n or 0 if it is the first item, unless `follow:true` is set, in\n which case it follows all symbolic links.\n\n`[:class:]` patterns are supported by this implementation, but\n`[=c=]` and `[.symbol.]` style class patterns are not.\n\n### Dots\n\nIf a file or directory path portion has a `.` as the first\ncharacter, then it will not match any glob pattern unless that\npattern's corresponding path part also has a `.` as its first\ncharacter.\n\nFor example, the pattern `a/.*/c` would match the file at\n`a/.b/c`. However the pattern `a/*/c` would not, because `*` does\nnot start with a dot character.\n\nYou can make glob treat dots as normal characters by setting\n`dot:true` in the options.\n\n### Basename Matching\n\nIf you set `matchBase:true` in the options, and the pattern has\nno slashes in it, then it will seek for any file anywhere in the\ntree with a matching basename. For example, `*.js` would match\n`test/simple/basic.js`.\n\n### Empty Sets\n\nIf no matching files are found, then an empty array is returned.\nThis differs from the shell, where the pattern itself is\nreturned. For example:\n\n```sh\n$ echo a*s*d*f\na*s*d*f\n```\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a\nworthwhile goal, some discrepancies exist between node-glob and\nother implementations, and are intentional.\n\nThe double-star character `**` is supported by default, unless\nthe `noglobstar` flag is set. This is supported in the manner of\nbsdglob and bash 5, where `**` only has special significance if\nit is the only thing in a path part. That is, `a/**/b` will match\n`a/x/y/b`, but `a/**b` will not.\n\nNote that symlinked directories are not traversed as part of a\n`**`, though their contents may match against subsequent portions\nof the pattern. This prevents infinite loops and duplicates and\nthe like. You can force glob to traverse symlinks with `**` by\nsetting `{follow:true}` in the options.\n\nThere is no equivalent of the `nonull` option. A pattern that\ndoes not find any matches simply resolves to nothing. (An empty\narray, immediately ended stream, etc.)\n\nIf brace expansion is not disabled, then it is performed before\nany other interpretation of the glob pattern. Thus, a pattern\nlike `+(a|{b),c)}`, which would not be valid in bash or zsh, is\nexpanded **first** into the set of `+(a|b)` and `+(a|c)`, and\nthose patterns are checked for validity. Since those two are\nvalid, matching proceeds.\n\nThe character class patterns `[:class:]` (posix standard named\nclasses) style class patterns are supported and unicode-aware,\nbut `[=c=]` (locale-specific character collation weight), and\n`[.symbol.]` (collating symbol), are not.\n\n### Repeated Slashes\n\nUnlike Bash and zsh, repeated `/` are always coalesced into a\nsingle path separator.\n\n### Comments and Negation\n\nPreviously, this module let you mark a pattern as a \"comment\" if\nit started with a `#` character, or a \"negated\" pattern if it\nstarted with a `!` character.\n\nThese options were deprecated in version 5, and removed in\nversion 6.\n\nTo specify things that should not match, use the `ignore` option.\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only\n`/` characters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes will\nalways be interpreted as escape characters, not path separators.\n\nResults from absolute patterns such as `/foo/*` are mounted onto\nthe root setting using `path.join`. On windows, this will by\ndefault result in `/foo/*` matching `C:\\foo\\bar.txt`.\n\nTo automatically coerce all `\\` characters to `/` in pattern\nstrings, **thus making it impossible to escape literal glob\ncharacters**, you may set the `windowsPathsNoEscape` option to\n`true`.\n\n### Windows, CWDs, Drive Letters, and UNC Paths\n\nOn posix systems, when a pattern starts with `/`, any `cwd`\noption is ignored, and the traversal starts at `/`, plus any\nnon-magic path portions specified in the pattern.\n\nOn Windows systems, the behavior is similar, but the concept of\nan \"absolute path\" is somewhat more involved.\n\n#### UNC Paths\n\nA UNC path may be used as the start of a pattern on Windows\nplatforms. For example, a pattern like: `//?/x:/*` will return\nall file entries in the root of the `x:` drive. A pattern like\n`//ComputerName/Share/*` will return all files in the associated\nshare.\n\nUNC path roots are always compared case insensitively.\n\n#### Drive Letters\n\nA pattern starting with a drive letter, like `c:/*`, will search\nin that drive, regardless of any `cwd` option provided.\n\nIf the pattern starts with `/`, and is not a UNC path, and there\nis an explicit `cwd` option set with a drive letter, then the\ndrive letter in the `cwd` is used as the root of the directory\ntraversal.\n\nFor example, `glob('/tmp', { cwd: 'c:/any/thing' })` will return\n`['c:/tmp']` as the result.\n\nIf an explicit `cwd` option is not provided, and the pattern\nstarts with `/`, then the traversal will run on the root of the\ndrive provided as the `cwd` option. (That is, it is the result of\n`path.resolve('/')`.)\n\n## Race Conditions\n\nGlob searching, by its very nature, is susceptible to race\nconditions, since it relies on directory walking.\n\nAs a result, it is possible that a file that exists when glob\nlooks for it may have been deleted or modified by the time it\nreturns the result.\n\nBy design, this implementation caches all readdir calls that it\nmakes, in order to cut down on system overhead. However, this\nalso makes it even more susceptible to races, especially if the\ncache object is reused between glob calls.\n\nUsers are thus advised not to use a glob result as a guarantee of\nfilesystem state in the face of rapid changes. For the vast\nmajority of operations, this is never a problem.\n\n### See Also:\n\n- `man sh`\n- `man bash` [Pattern\n Matching](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html)\n- `man 3 fnmatch`\n- `man 5 gitignore`\n- [minimatch documentation](https://github.com/isaacs/minimatch)\n\n## Glob Logo\n\nGlob's logo was created by [Tanya\nBrassie](http://tanyabrassie.com/). Logo files can be found\n[here](https://github.com/isaacs/node-glob/tree/master/logo).\n\nThe logo is licensed under a [Creative Commons\nAttribution-ShareAlike 4.0 International\nLicense](https://creativecommons.org/licenses/by-sa/4.0/).\n\n## Contributing\n\nAny change to behavior (including bugfixes) must come with a\ntest.\n\nPatches that fail tests or reduce performance will be rejected.\n\n```sh\n# to run tests\nnpm test\n\n# to re-generate test fixtures\nnpm run test-regen\n\n# run the benchmarks\nnpm run bench\n\n# to profile javascript\nnpm run prof\n```\n\n## Comparison to Other JavaScript Glob Implementations\n\n**tl;dr**\n\n- If you want glob matching that is as faithful as possible to\n Bash pattern expansion semantics, and as fast as possible\n within that constraint, _use this module_.\n- If you are reasonably sure that the patterns you will encounter\n are relatively simple, and want the absolutely fastest glob\n matcher out there, _use [fast-glob](http://npm.im/fast-glob)_.\n- If you are reasonably sure that the patterns you will encounter\n are relatively simple, and want the convenience of\n automatically respecting `.gitignore` files, _use\n [globby](http://npm.im/globby)_.\n\nThere are some other glob matcher libraries on npm, but these\nthree are (in my opinion, as of 2023) the best.\n\n---\n\n**full explanation**\n\nEvery library reflects a set of opinions and priorities in the\ntrade-offs it makes. Other than this library, I can personally\nrecommend both [globby](http://npm.im/globby) and\n[fast-glob](http://npm.im/fast-glob), though they differ in their\nbenefits and drawbacks.\n\nBoth have very nice APIs and are reasonably fast.\n\n`fast-glob` is, as far as I am aware, the fastest glob\nimplementation in JavaScript today. However, there are many\ncases where the choices that `fast-glob` makes in pursuit of\nspeed mean that its results differ from the results returned by\nBash and other sh-like shells, which may be surprising.\n\nIn my testing, `fast-glob` is around 10-20% faster than this\nmodule when walking over 200k files nested 4 directories\ndeep[1](#fn-webscale). However, there are some inconsistencies\nwith Bash matching behavior that this module does not suffer\nfrom:\n\n- `**` only matches files, not directories\n- `..` path portions are not handled unless they appear at the\n start of the pattern\n- `./!()` will not match any files that _start_ with\n ``, even if they do not match ``. For\n example, `!(9).txt` will not match `9999.txt`.\n- Some brace patterns in the middle of a pattern will result in\n failing to find certain matches.\n- Extglob patterns are allowed to contain `/` characters.\n\nGlobby exhibits all of the same pattern semantics as fast-glob,\n(as it is a wrapper around fast-glob) and is slightly slower than\nnode-glob (by about 10-20% in the benchmark test set, or in other\nwords, anywhere from 20-50% slower than fast-glob). However, it\nadds some API conveniences that may be worth the costs.\n\n- Support for `.gitignore` and other ignore files.\n- Support for negated globs (ie, patterns starting with `!`\n rather than using a separate `ignore` option).\n\nThe priority of this module is \"correctness\" in the sense of\nperforming a glob pattern expansion as faithfully as possible to\nthe behavior of Bash and other sh-like shells, with as much speed\nas possible.\n\nNote that prior versions of `node-glob` are _not_ on this list.\nFormer versions of this module are far too slow for any cases\nwhere performance matters at all, and were designed with APIs\nthat are extremely dated by current JavaScript standards.\n\n---\n\n[1]: In the cases where this module\nreturns results and `fast-glob` doesn't, it's even faster, of\ncourse.\n\n![lumpy space princess saying 'oh my GLOB'](https://github.com/isaacs/node-glob/raw/main/oh-my-glob.gif)\n\n### Benchmark Results\n\nFirst number is time, smaller is better.\n\nSecond number is the count of results returned.\n\n```\n--- pattern: '**' ---\n~~ sync ~~\nnode fast-glob sync 0m0.598s 200364\nnode globby sync 0m0.765s 200364\nnode current globSync mjs 0m0.683s 222656\nnode current glob syncStream 0m0.649s 222656\n~~ async ~~\nnode fast-glob async 0m0.350s 200364\nnode globby async 0m0.509s 200364\nnode current glob async mjs 0m0.463s 222656\nnode current glob stream 0m0.411s 222656\n\n--- pattern: '**/..' ---\n~~ sync ~~\nnode fast-glob sync 0m0.486s 0\nnode globby sync 0m0.769s 200364\nnode current globSync mjs 0m0.564s 2242\nnode current glob syncStream 0m0.583s 2242\n~~ async ~~\nnode fast-glob async 0m0.283s 0\nnode globby async 0m0.512s 200364\nnode current glob async mjs 0m0.299s 2242\nnode current glob stream 0m0.312s 2242\n\n--- pattern: './**/0/**/0/**/0/**/0/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.490s 10\nnode globby sync 0m0.517s 10\nnode current globSync mjs 0m0.540s 10\nnode current glob syncStream 0m0.550s 10\n~~ async ~~\nnode fast-glob async 0m0.290s 10\nnode globby async 0m0.296s 10\nnode current glob async mjs 0m0.278s 10\nnode current glob stream 0m0.302s 10\n\n--- pattern: './**/[01]/**/[12]/**/[23]/**/[45]/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.500s 160\nnode globby sync 0m0.528s 160\nnode current globSync mjs 0m0.556s 160\nnode current glob syncStream 0m0.573s 160\n~~ async ~~\nnode fast-glob async 0m0.283s 160\nnode globby async 0m0.301s 160\nnode current glob async mjs 0m0.306s 160\nnode current glob stream 0m0.322s 160\n\n--- pattern: './**/0/**/0/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.502s 5230\nnode globby sync 0m0.527s 5230\nnode current globSync mjs 0m0.544s 5230\nnode current glob syncStream 0m0.557s 5230\n~~ async ~~\nnode fast-glob async 0m0.285s 5230\nnode globby async 0m0.305s 5230\nnode current glob async mjs 0m0.304s 5230\nnode current glob stream 0m0.310s 5230\n\n--- pattern: '**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.580s 200023\nnode globby sync 0m0.771s 200023\nnode current globSync mjs 0m0.685s 200023\nnode current glob syncStream 0m0.649s 200023\n~~ async ~~\nnode fast-glob async 0m0.349s 200023\nnode globby async 0m0.509s 200023\nnode current glob async mjs 0m0.427s 200023\nnode current glob stream 0m0.388s 200023\n\n--- pattern: '{**/*.txt,**/?/**/*.txt,**/?/**/?/**/*.txt,**/?/**/?/**/?/**/*.txt,**/?/**/?/**/?/**/?/**/*.txt}' ---\n~~ sync ~~\nnode fast-glob sync 0m0.589s 200023\nnode globby sync 0m0.771s 200023\nnode current globSync mjs 0m0.716s 200023\nnode current glob syncStream 0m0.684s 200023\n~~ async ~~\nnode fast-glob async 0m0.351s 200023\nnode globby async 0m0.518s 200023\nnode current glob async mjs 0m0.462s 200023\nnode current glob stream 0m0.468s 200023\n\n--- pattern: '**/5555/0000/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.496s 1000\nnode globby sync 0m0.519s 1000\nnode current globSync mjs 0m0.539s 1000\nnode current glob syncStream 0m0.567s 1000\n~~ async ~~\nnode fast-glob async 0m0.285s 1000\nnode globby async 0m0.299s 1000\nnode current glob async mjs 0m0.305s 1000\nnode current glob stream 0m0.301s 1000\n\n--- pattern: './**/0/**/../[01]/**/0/../**/0/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.484s 0\nnode globby sync 0m0.507s 0\nnode current globSync mjs 0m0.577s 4880\nnode current glob syncStream 0m0.586s 4880\n~~ async ~~\nnode fast-glob async 0m0.280s 0\nnode globby async 0m0.298s 0\nnode current glob async mjs 0m0.327s 4880\nnode current glob stream 0m0.324s 4880\n\n--- pattern: '**/????/????/????/????/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.547s 100000\nnode globby sync 0m0.673s 100000\nnode current globSync mjs 0m0.626s 100000\nnode current glob syncStream 0m0.618s 100000\n~~ async ~~\nnode fast-glob async 0m0.315s 100000\nnode globby async 0m0.414s 100000\nnode current glob async mjs 0m0.366s 100000\nnode current glob stream 0m0.345s 100000\n\n--- pattern: './{**/?{/**/?{/**/?{/**/?,,,,},,,,},,,,},,,}/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.588s 100000\nnode globby sync 0m0.670s 100000\nnode current globSync mjs 0m0.717s 200023\nnode current glob syncStream 0m0.687s 200023\n~~ async ~~\nnode fast-glob async 0m0.343s 100000\nnode globby async 0m0.418s 100000\nnode current glob async mjs 0m0.519s 200023\nnode current glob stream 0m0.451s 200023\n\n--- pattern: '**/!(0|9).txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.573s 160023\nnode globby sync 0m0.731s 160023\nnode current globSync mjs 0m0.680s 180023\nnode current glob syncStream 0m0.659s 180023\n~~ async ~~\nnode fast-glob async 0m0.345s 160023\nnode globby async 0m0.476s 160023\nnode current glob async mjs 0m0.427s 180023\nnode current glob stream 0m0.388s 180023\n\n--- pattern: './{*/**/../{*/**/../{*/**/../{*/**/../{*/**,,,,},,,,},,,,},,,,},,,,}/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.483s 0\nnode globby sync 0m0.512s 0\nnode current globSync mjs 0m0.811s 200023\nnode current glob syncStream 0m0.773s 200023\n~~ async ~~\nnode fast-glob async 0m0.280s 0\nnode globby async 0m0.299s 0\nnode current glob async mjs 0m0.617s 200023\nnode current glob stream 0m0.568s 200023\n\n--- pattern: './*/**/../*/**/../*/**/../*/**/../*/**/../*/**/../*/**/../*/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.485s 0\nnode globby sync 0m0.507s 0\nnode current globSync mjs 0m0.759s 200023\nnode current glob syncStream 0m0.740s 200023\n~~ async ~~\nnode fast-glob async 0m0.281s 0\nnode globby async 0m0.297s 0\nnode current glob async mjs 0m0.544s 200023\nnode current glob stream 0m0.464s 200023\n\n--- pattern: './*/**/../*/**/../*/**/../*/**/../*/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.486s 0\nnode globby sync 0m0.513s 0\nnode current globSync mjs 0m0.734s 200023\nnode current glob syncStream 0m0.696s 200023\n~~ async ~~\nnode fast-glob async 0m0.286s 0\nnode globby async 0m0.296s 0\nnode current glob async mjs 0m0.506s 200023\nnode current glob stream 0m0.483s 200023\n\n--- pattern: './0/**/../1/**/../2/**/../3/**/../4/**/../5/**/../6/**/../7/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.060s 0\nnode globby sync 0m0.074s 0\nnode current globSync mjs 0m0.067s 0\nnode current glob syncStream 0m0.066s 0\n~~ async ~~\nnode fast-glob async 0m0.060s 0\nnode globby async 0m0.075s 0\nnode current glob async mjs 0m0.066s 0\nnode current glob stream 0m0.067s 0\n\n--- pattern: './**/?/**/?/**/?/**/?/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.568s 100000\nnode globby sync 0m0.651s 100000\nnode current globSync mjs 0m0.619s 100000\nnode current glob syncStream 0m0.617s 100000\n~~ async ~~\nnode fast-glob async 0m0.332s 100000\nnode globby async 0m0.409s 100000\nnode current glob async mjs 0m0.372s 100000\nnode current glob stream 0m0.351s 100000\n\n--- pattern: '**/*/**/*/**/*/**/*/**' ---\n~~ sync ~~\nnode fast-glob sync 0m0.603s 200113\nnode globby sync 0m0.798s 200113\nnode current globSync mjs 0m0.730s 222137\nnode current glob syncStream 0m0.693s 222137\n~~ async ~~\nnode fast-glob async 0m0.356s 200113\nnode globby async 0m0.525s 200113\nnode current glob async mjs 0m0.508s 222137\nnode current glob stream 0m0.455s 222137\n\n--- pattern: './**/*/**/*/**/*/**/*/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.622s 200000\nnode globby sync 0m0.792s 200000\nnode current globSync mjs 0m0.722s 200000\nnode current glob syncStream 0m0.695s 200000\n~~ async ~~\nnode fast-glob async 0m0.369s 200000\nnode globby async 0m0.527s 200000\nnode current glob async mjs 0m0.502s 200000\nnode current glob stream 0m0.481s 200000\n\n--- pattern: '**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.588s 200023\nnode globby sync 0m0.771s 200023\nnode current globSync mjs 0m0.684s 200023\nnode current glob syncStream 0m0.658s 200023\n~~ async ~~\nnode fast-glob async 0m0.352s 200023\nnode globby async 0m0.516s 200023\nnode current glob async mjs 0m0.432s 200023\nnode current glob stream 0m0.384s 200023\n\n--- pattern: './**/**/**/**/**/**/**/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.589s 200023\nnode globby sync 0m0.766s 200023\nnode current globSync mjs 0m0.682s 200023\nnode current glob syncStream 0m0.652s 200023\n~~ async ~~\nnode fast-glob async 0m0.352s 200023\nnode globby async 0m0.523s 200023\nnode current glob async mjs 0m0.436s 200023\nnode current glob stream 0m0.380s 200023\n\n--- pattern: '**/*/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.592s 200023\nnode globby sync 0m0.776s 200023\nnode current globSync mjs 0m0.691s 200023\nnode current glob syncStream 0m0.659s 200023\n~~ async ~~\nnode fast-glob async 0m0.357s 200023\nnode globby async 0m0.513s 200023\nnode current glob async mjs 0m0.471s 200023\nnode current glob stream 0m0.424s 200023\n\n--- pattern: '**/*/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.585s 200023\nnode globby sync 0m0.766s 200023\nnode current globSync mjs 0m0.694s 200023\nnode current glob syncStream 0m0.664s 200023\n~~ async ~~\nnode fast-glob async 0m0.350s 200023\nnode globby async 0m0.514s 200023\nnode current glob async mjs 0m0.472s 200023\nnode current glob stream 0m0.424s 200023\n\n--- pattern: '**/[0-9]/**/*.txt' ---\n~~ sync ~~\nnode fast-glob sync 0m0.544s 100000\nnode globby sync 0m0.636s 100000\nnode current globSync mjs 0m0.626s 100000\nnode current glob syncStream 0m0.621s 100000\n~~ async ~~\nnode fast-glob async 0m0.322s 100000\nnode globby async 0m0.404s 100000\nnode current glob async mjs 0m0.360s 100000\nnode current glob stream 0m0.352s 100000\n```\n", + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "1f0c1ca01a5f256cd17f543f83e9aaeedd133939", + "scripts": { + "prof": "bash prof.sh", + "snap": "tap", + "test": "tap", + "bench": "bash benchmark.sh", + "format": "prettier --write . --log-level warn", + "prepare": "tshy", + "preprof": "npm run prepare", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts", + "prebench": "npm run prepare", + "profclean": "rm -f v8.log profile.txt", + "benchclean": "node benchclean.cjs", + "prepublish": "npm run benchclean", + "preversion": "npm test", + "test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 75, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "experimentalTernaries": true + }, + "repository": { + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "the most correct and second fastest glob implementation in JavaScript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "publishConfig": { + "tag": "legacy-v10" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/glob_10.4.5_1720512943231_0.03538367271943499", + "host": "s3://npm-registry-packages" + } } - ], - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" }, "time": { - "modified": "2020-04-14T14:23:25.452Z", "created": "2011-01-02T22:10:36.356Z", - "1.0.0": "2011-01-02T22:10:36.356Z", - "1.0.1": "2011-01-02T22:10:36.356Z", - "1.0.2": "2011-01-02T22:10:36.356Z", + "modified": "2024-07-15T05:02:50.016Z", "1.0.3": "2011-01-02T22:10:36.356Z", + "1.0.2": "2011-01-02T22:10:36.356Z", + "1.0.1": "2011-01-02T22:10:36.356Z", + "1.0.0": "2011-01-02T22:10:36.356Z", "1.1.0": "2011-01-13T20:36:17.606Z", "2.0.0": "2011-02-19T21:35:22.467Z", "2.0.1": "2011-02-20T20:02:51.964Z", @@ -6316,371 +14433,437 @@ "7.1.3": "2018-08-27T05:05:04.765Z", "7.1.4": "2019-05-08T00:45:01.506Z", "7.1.5": "2019-10-21T17:07:35.244Z", - "7.1.6": "2019-11-06T22:07:44.189Z" + "7.1.6": "2019-11-06T22:07:44.189Z", + "7.1.7": "2021-05-06T21:42:44.072Z", + "7.2.0": "2021-09-22T23:36:20.259Z", + "8.0.1": "2022-04-11T17:25:05.849Z", + "8.0.2": "2022-05-12T18:52:05.917Z", + "7.2.2": "2022-05-13T17:07:53.446Z", + "8.0.3": "2022-05-13T17:08:32.787Z", + "7.2.3": "2022-05-15T14:44:04.854Z", + "8.1.0": "2023-01-14T22:35:33.626Z", + "9.0.0": "2023-02-27T20:51:32.657Z", + "9.0.1": "2023-02-27T20:55:43.189Z", + "9.0.2": "2023-02-28T21:31:45.593Z", + "9.1.0": "2023-03-01T07:38:45.148Z", + "9.1.1": "2023-03-01T18:49:22.450Z", + "9.1.2": "2023-03-01T19:07:42.743Z", + "9.2.0": "2023-03-02T23:04:32.355Z", + "9.2.1": "2023-03-03T00:40:11.008Z", + "9.3.0": "2023-03-14T13:03:12.007Z", + "9.3.1": "2023-03-21T00:02:59.156Z", + "9.3.2": "2023-03-22T18:49:15.142Z", + "9.3.3": "2023-04-02T03:37:31.231Z", + "9.3.4": "2023-04-02T03:44:32.200Z", + "9.3.5": "2023-04-09T20:30:42.619Z", + "10.0.0": "2023-04-09T22:26:50.048Z", + "10.1.0": "2023-04-14T23:16:03.347Z", + "10.2.0": "2023-04-17T22:20:03.631Z", + "10.2.1": "2023-04-17T22:21:37.192Z", + "10.2.2": "2023-04-23T00:34:47.221Z", + "10.2.3": "2023-05-09T23:12:17.390Z", + "10.2.4": "2023-05-15T04:45:00.928Z", + "10.2.5": "2023-05-17T21:25:06.877Z", + "10.2.6": "2023-05-20T20:55:44.701Z", + "10.2.7": "2023-06-06T19:08:20.790Z", + "10.3.0": "2023-06-21T19:07:23.584Z", + "10.3.1": "2023-06-27T23:02:27.106Z", + "10.3.2": "2023-07-08T00:18:35.405Z", + "10.3.3": "2023-07-08T21:38:58.945Z", + "10.3.4": "2023-08-30T22:45:21.320Z", + "10.3.5": "2023-09-20T23:03:12.106Z", + "10.3.6": "2023-09-23T00:52:58.321Z", + "10.3.7": "2023-09-24T21:53:51.118Z", + "10.3.8": "2023-09-26T06:10:32.529Z", + "10.3.9": "2023-09-26T07:22:02.347Z", + "10.3.10": "2023-09-27T05:59:51.677Z", + "10.3.11": "2024-03-28T15:59:07.462Z", + "10.3.12": "2024-03-28T16:13:51.132Z", + "10.3.13": "2024-05-09T13:50:17.842Z", + "10.3.14": "2024-05-09T14:52:50.086Z", + "10.3.15": "2024-05-12T02:47:48.091Z", + "10.3.16": "2024-05-21T19:14:15.649Z", + "10.4.0": "2024-05-24T01:04:58.585Z", + "10.4.1": "2024-05-24T06:01:25.099Z", + "10.4.2": "2024-06-19T01:59:48.071Z", + "10.4.3": "2024-07-06T04:04:20.657Z", + "10.4.4": "2024-07-08T22:14:30.257Z", + "11.0.0": "2024-07-08T22:16:14.838Z", + "10.4.5": "2024-07-09T08:15:43.379Z" }, + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "author": { + "url": "https://blog.izs.me/", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "homepage": "https://github.com/isaacs/node-glob#readme", "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" + "url": "git://github.com/isaacs/node-glob.git", + "type": "git" }, + "description": "the most correct and second fastest glob implementation in JavaScript", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "readme": "", + "readmeFilename": "", "users": { "285858315": true, - "tjholowaychuk": true, - "fgribreau": true, - "jswartwood": true, - "bencevans": true, - "tivac": true, - "chrisdickinson": true, - "freethenation": true, + "bgb": true, + "d9k": true, + "htz": true, + "irj": true, + "xch": true, + "buya": true, + "chge": true, + "dwqs": true, + "fill": true, + "heck": true, + "j3kz": true, + "mrxf": true, + "n370": true, + "ntam": true, + "shan": true, + "usex": true, + "vorg": true, + "vwal": true, + "abdul": true, + "akiva": true, + "andyd": true, + "brend": true, + "bsara": true, + "capaj": true, "fivdi": true, - "stdarg": true, - "einfallstoll": true, + "flozz": true, + "gabra": true, + "h4des": true, + "jalik": true, + "jruif": true, + "junos": true, + "kosoj": true, + "laomu": true, + "lfeng": true, + "lgh06": true, + "lyret": true, + "nak2k": true, + "rioli": true, + "tivac": true, + "youcp": true, + "yrocq": true, + "yuxin": true, + "zetay": true, + "zorak": true, + "456wyc": true, + "agplan": true, + "akarem": true, + "allain": true, + "arttse": true, + "d-band": true, "darosh": true, - "jamescostian": true, - "themiddleman": true, - "mytharcher": true, + "eshinn": true, + "evan2x": true, + "frankg": true, + "gdbtek": true, + "geecko": true, + "glukki": true, + "h0ward": true, + "imhu91": true, + "jimnox": true, + "kgryte": true, + "lezuse": true, + "lonjoy": true, + "majgis": true, + "maschs": true, + "mikkoh": true, + "monjer": true, + "mrzmmr": true, + "nhz.io": true, + "pandao": true, + "pstoev": true, + "qlqllu": true, + "quafoo": true, + "ramono": true, + "ryandu": true, + "shaner": true, + "sjfkai": true, + "sm1215": true, + "stdarg": true, + "tedyhy": true, + "xudong": true, + "yeming": true, + "yl2014": true, + "yoking": true, + "yuch4n": true, + "zajrik": true, + "alnafie": true, + "alvarob": true, + "chzhewl": true, + "cueedee": true, + "demerfo": true, + "frk1705": true, + "hustliu": true, + "itonyyo": true, + "jalcine": true, + "jonkemp": true, + "kahboom": true, + "keenwon": true, + "kezhang": true, + "kontrax": true, + "kparkov": true, + "kxbrand": true, + "laoshaw": true, + "lixulun": true, + "mikepol": true, + "noopkat": true, + "pixel67": true, + "rdesoky": true, + "sopepos": true, + "sparrow": true, + "stalker": true, + "subchen": true, + "timvork": true, + "tophsic": true, + "trusktr": true, + "ttionya": true, + "varedis": true, + "vladimi": true, + "writech": true, + "xingtao": true, + "xtx1130": true, + "asfrom30": true, + "awen1983": true, + "cool_zjy": true, + "djamseed": true, + "donald93": true, + "draganhr": true, + "dzhou777": true, "ehershey": true, - "cilindrox": true, + "enriched": true, + "erikvold": true, "esundahl": true, - "jonkemp": true, - "evocateur": true, - "operandom": true, - "jacoborus": true, - "fanchangyong": true, - "tunnckocore": true, - "jimnox": true, - "voxpelli": true, - "shen-weizhong": true, - "nak2k": true, - "kosoj": true, - "kahboom": true, - "frk1705": true, - "josephdavisco": true, - "pragmadash": true, - "maschs": true, - "alnafie": true, - "ajohnstone": true, - "kxbrand": true, - "coderaiser": true, - "golyshevd": true, - "lezuse": true, - "glukki": true, + "gurunate": true, + "hccdj131": true, + "hongpark": true, "jpsirois": true, - "capaj": true, - "henryfour": true, - "fill": true, - "levisl176": true, - "byossarian": true, - "esessoms": true, - "bkimminich": true, - "htz": true, - "lewisbrown": true, - "phoenix-xsy": true, - "trusktr": true, - "zhangyaochun": true, - "kgryte": true, + "juandaco": true, + "krickray": true, + "kruemelo": true, + "leix3041": true, "leodutra": true, - "tophsic": true, - "chzhewl": true, - "h4des": true, - "gdbtek": true, - "dlpowless": true, - "allain": true, - "guumaster": true, - "marco.jahn": true, - "electblake": true, - "scott_joe": true, - "joaocunha": true, - "evan2x": true, - "j3kz": true, - "subchen": true, - "simplyianm": true, - "eventhough": true, - "jerkovicl": true, - "josiasmontag": true, - "yashprit": true, - "pstoev": true, - "mtscout6": true, - "itonyyo": true, - "mysticatea": true, - "heck": true, - "andreayang": true, - "qqqppp9998": true, - "wangnan0610": true, - "tunderdomb": true, - "brentonhouse": true, + "leonzhao": true, + "limingv5": true, + "losymear": true, + "mayq0422": true, + "millercl": true, "moimikey": true, - "joemdavis": true, - "khaledkaram": true, - "program247365": true, - "jesusgoku": true, - "majgis": true, - "awen1983": true, - "luuhoangnam": true, - "garrickajo": true, + "mtscout6": true, + "nalindak": true, + "npmlincq": true, + "pablopap": true, + "panos277": true, + "pddivine": true, + "prime156": true, + "pruettti": true, + "qddegtya": true, + "rochejul": true, + "schacker": true, + "sdesouza": true, + "simon129": true, + "tmurngon": true, + "voxpelli": true, + "wangfeia": true, + "winblood": true, "wkaifang": true, - "n370": true, - "akiva": true, - "princetoad": true, - "gerst20051": true, - "fabioelizandro": true, - "jamesmgreene": true, - "preflight": true, + "xdream86": true, + "xiaobing": true, + "xueboren": true, + "yashprit": true, + "abuelwafa": true, + "alexxnica": true, + "allen_lyu": true, + "backnight": true, + "bencevans": true, "boom11235": true, - "karthickt": true, - "montyanderson": true, - "flozz": true, - "leandro.maioral": true, - "monkeymonk": true, - "karlbateman": true, - "sparrow": true, - "maqentaer": true, - "sopepos": true, - "edwin_estrada": true, - "codebruder": true, - "vwal": true, - "kparkov": true, - "parkerproject": true, - "buya": true, - "draganhr": true, - "incendiary": true, - "klap-webdevelopment": true, - "den3er": true, - "javascript": true, - "mikepol": true, - "hustliu": true, - "pandao": true, - "nalindak": true, - "nickeltobias": true, - "h0ward": true, - "nmccready": true, + "bryan.ygf": true, "chrisyipw": true, - "m80126colin": true, - "gaboesquivel": true, - "elessarkrin": true, - "lfeng": true, - "456wyc": true, - "arashmilani": true, - "timonwong": true, - "leahcimic": true, - "abdihaikal": true, - "enriched": true, - "yuxin": true, - "italoacasas": true, - "tobiasnickel": true, - "jmcantrell": true, - "max_devjs": true, - "joelwallis": true, - "djamseed": true, - "fasterthanlime": true, - "arttse": true, - "allenmoore": true, - "yrocq": true, - "groovybytes": true, - "kontrax": true, - "varedis": true, - "lyret": true, - "monorigabor": true, + "cilindrox": true, + "ddkothari": true, + "dlpowless": true, + "ducsduyen": true, + "edwardxyt": true, + "evocateur": true, + "fanyegong": true, + "fgribreau": true, "gavinning": true, - "usingthesystem": true, - "easimonenko": true, - "jalcine": true, - "writech": true, - "brend": true, - "nhz.io": true, - "sqrtthree": true, - "roman-io": true, - "steel1990": true, - "sdesouza": true, - "ramono": true, - "pruettti": true, - "shan": true, - "jedateach": true, - "stalker": true, - "troels.trvo.dk": true, - "d9k": true, - "abdul": true, - "kruemelo": true, - "krickray": true, - "shaner": true, - "vorg": true, - "micromax720": true, - "rbecheras": true, - "retorillo": true, - "heyimeugene": true, - "limingv5": true, - "demerfo": true, + "godoshian": true, + "golyshevd": true, + "guumaster": true, + "henryfour": true, "integrity": true, - "ddkothari": true, - "monolithed": true, - "natarajanmca11": true, - "noopkat": true, - "neefrankie": true, - "roccomuso": true, - "yinyongcom666": true, - "qlqllu": true, - "landy2014": true, + "isenricho": true, + "jacoborus": true, + "jamiechoi": true, + "jedateach": true, + "jerkovicl": true, + "jesusgoku": true, + "joaocunha": true, + "joemdavis": true, + "karthickt": true, "kkk123321": true, - "fanyegong": true, - "pragmader": true, - "winblood": true, - "backnight": true, - "qddegtya": true, - "ttionya": true, - "mikkoh": true, - "gabra": true, - "tedyhy": true, - "iori20091101": true, + "landy2014": true, + "largepuma": true, + "larrychen": true, + "leahcimic": true, + "leeziwong": true, + "leonstill": true, + "levisl176": true, + "maqentaer": true, + "max_devjs": true, + "mojaray2k": true, + "mr-smiley": true, + "myjustify": true, + "necanicum": true, + "nmccready": true, + "operandom": true, + "preflight": true, "qqcome110": true, - "xdream86": true, - "akarem": true, - "chge": true, - "yoking": true, + "rbecheras": true, "redstrike": true, - "blade254353074": true, - "styxnp": true, - "abuelwafa": true, - "scottfreecode": true, - "davidnyhuis": true, - "davidjsalazarmoreno": true, - "xingtao": true, - "cognivator": true, - "lixulun": true, - "waitstone": true, - "tmurngon": true, - "zajrik": true, - "monjer": true, - "andyd": true, - "danielbankhead": true, + "retorillo": true, + "roccomuso": true, + "rylan_yan": true, "sansgumen": true, - "mr-smiley": true, - "mojaray2k": true, - "godoshian": true, - "fahadjadoon": true, - "rdesoky": true, - "langri-sha": true, - "zorak": true, - "dzhou777": true, - "jamiechoi": true, + "scott_joe": true, + "spike1292": true, + "sqrtthree": true, + "steel1990": true, "stone-jin": true, - "xueboren": true, - "rylan_yan": true, - "jruif": true, - "coolhanddev": true, - "prime156": true, - "largepuma": true, - "tobitobitobi": true, - "lonjoy": true, - "shangsinian": true, - "igorsetsfire": true, + "timonwong": true, + "waitstone": true, + "yang.shao": true, + "abdihaikal": true, + "ahmetertem": true, + "ajohnstone": true, + "alanerzhao": true, + "allenmoore": true, + "andreayang": true, + "avivharuzi": true, + "axelrindle": true, + "bkimminich": true, + "byossarian": true, + "codebruder": true, + "coderaiser": true, + "cognivator": true, + "electblake": true, "ericyang89": true, - "xch": true, - "panos277": true, - "necanicum": true, - "shuoshubao": true, + "eventhough": true, + "garrickajo": true, + "gerst20051": true, "giussa_dan": true, - "scott.m.sarsfield": true, - "juandaco": true, - "mayq0422": true, - "erikvold": true, - "quafoo": true, - "junos": true, - "eshinn": true, - "leonzhao": true, - "leeziwong": true, - "laomu": true, - "artem.tkachuck": true, - "keenwon": true, - "chinawolf_wyp": true, - "pablopap": true, - "spike1292": true, - "saadbinsaeed": true, - "alanerzhao": true, - "geecko": true, - "ahmetertem": true, - "pddivine": true, - "npmlincq": true, - "usex": true, - "carlosvillademor": true, - "edwardxyt": true, - "larrychen": true, - "alexxnica": true, - "hccdj131": true, - "wangfeia": true, - "imhu91": true, - "gurunate": true, - "cool_zjy": true, - "yl2014": true, + "incendiary": true, + "javascript": true, + "jmcantrell": true, + "joelwallis": true, + "jswartwood": true, + "langri-sha": true, + "lewisbrown": true, + "marco.jahn": true, + "monkeymonk": true, + "monolithed": true, + "mysticatea": true, + "mytharcher": true, + "neefrankie": true, + "pragmadash": true, + "princetoad": true, + "qqqppp9998": true, + "shuoshubao": true, + "simplyianm": true, + "tunderdomb": true, + "arashmilani": true, + "coolhanddev": true, + "davidnyhuis": true, + "deneboulton": true, + "easimonenko": true, + "elessarkrin": true, + "fahadjadoon": true, + "flumpus-dev": true, + "groovybytes": true, + "heyimeugene": true, + "highgravity": true, + "italoacasas": true, "jamesbedont": true, - "hongpark": true, - "sjfkai": true, + "karlbateman": true, + "khaledkaram": true, + "kodekracker": true, + "luuhoangnam": true, + "m80126colin": true, + "micromax720": true, + "monorigabor": true, + "nisimjoseph": true, + "phoenix-xsy": true, + "shangsinian": true, "soenkekluth": true, - "diegorbaquero": true, - "timvork": true, - "bsara": true, - "donald93": true, - "d-band": true, + "tunnckocore": true, + "wangnan0610": true, "ahmedelgabri": true, + "brentonhouse": true, + "einfallstoll": true, + "fanchangyong": true, + "gaboesquivel": true, + "igorsetsfire": true, + "iori20091101": true, + "jamescostian": true, + "jamesmgreene": true, + "joey.dossche": true, + "josiasmontag": true, + "nickeltobias": true, + "saadbinsaeed": true, + "taylorpzreal": true, + "themiddleman": true, + "tobiasnickel": true, + "tobitobitobi": true, + "wentao.zhang": true, + "yowainwright": true, + "zhangyaochun": true, "zhenguo.zhao": true, - "ryandu": true, + "chinawolf_wyp": true, + "diegorbaquero": true, "donggw2030521": true, - "yeming": true, - "irj": true, - "robinblomberg": true, - "xtx1130": true, - "rochejul": true, - "bgb": true, - "yowainwright": true, - "joey.dossche": true, - "highgravity": true, - "ducsduyen": true, - "kezhang": true, - "cueedee": true, - "bryan.ygf": true, + "edwin_estrada": true, + "freethenation": true, "frontogenesis": true, - "alvarob": true, - "deneboulton": true, - "nisimjoseph": true, - "marcobiedermann": true, - "allen_lyu": true, - "lgh06": true, - "agplan": true, - "zetay": true, - "laoshaw": true, - "mrxf": true, - "youcp": true, - "simon129": true, - "xudong": true, - "vladimi": true, - "axelrindle": true, - "leonstill": true, - "asfrom30": true, - "taylorpzreal": true, - "mrzmmr": true, - "imaginegenesis": true, - "leix3041": true, - "ntam": true, - "losymear": true, - "isenricho": true, - "sm1215": true, - "millercl": true, - "schacker": true, - "kodekracker": true, - "pixel67": true, - "avivharuzi": true, "gamersdelight": true, - "frankg": true, - "rioli": true, - "xiaobing": true, - "wentao.zhang": true, - "dwqs": true, - "yuch4n": true, - "brofox": true - }, - "readme": "# Glob\n\nMatch files using the patterns the shell uses, like stars and stuff.\n\n[![Build Status](https://travis-ci.org/isaacs/node-glob.svg?branch=master)](https://travis-ci.org/isaacs/node-glob/) [![Build Status](https://ci.appveyor.com/api/projects/status/kd7f3yftf7unxlsx?svg=true)](https://ci.appveyor.com/project/isaacs/node-glob) [![Coverage Status](https://coveralls.io/repos/isaacs/node-glob/badge.svg?branch=master&service=github)](https://coveralls.io/github/isaacs/node-glob?branch=master)\n\nThis is a glob implementation in JavaScript. It uses the `minimatch`\nlibrary to do its matching.\n\n![](logo/glob.png)\n\n## Usage\n\nInstall with npm\n\n```\nnpm i glob\n```\n\n```javascript\nvar glob = require(\"glob\")\n\n// options is optional\nglob(\"**/*.js\", options, function (er, files) {\n // files is an array of filenames.\n // If the `nonull` option is set, and nothing\n // was found, then files is [\"**/*.js\"]\n // er is an error object or null.\n})\n```\n\n## Glob Primer\n\n\"Globs\" are the patterns you type when you do stuff like `ls *.js` on\nthe command line, or put `build/*` in a `.gitignore` file.\n\nBefore parsing the path part patterns, braced sections are expanded\ninto a set. Braced sections start with `{` and end with `}`, with any\nnumber of comma-delimited sections within. Braced sections may contain\nslash characters, so `a{/b/c,bcd}` would expand into `a/b/c` and `abcd`.\n\nThe following characters have special magic meaning when used in a\npath portion:\n\n* `*` Matches 0 or more characters in a single path portion\n* `?` Matches 1 character\n* `[...]` Matches a range of characters, similar to a RegExp range.\n If the first character of the range is `!` or `^` then it matches\n any character not in the range.\n* `!(pattern|pattern|pattern)` Matches anything that does not match\n any of the patterns provided.\n* `?(pattern|pattern|pattern)` Matches zero or one occurrence of the\n patterns provided.\n* `+(pattern|pattern|pattern)` Matches one or more occurrences of the\n patterns provided.\n* `*(a|b|c)` Matches zero or more occurrences of the patterns provided\n* `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns\n provided\n* `**` If a \"globstar\" is alone in a path portion, then it matches\n zero or more directories and subdirectories searching for matches.\n It does not crawl symlinked directories.\n\n### Dots\n\nIf a file or directory path portion has a `.` as the first character,\nthen it will not match any glob pattern unless that pattern's\ncorresponding path part also has a `.` as its first character.\n\nFor example, the pattern `a/.*/c` would match the file at `a/.b/c`.\nHowever the pattern `a/*/c` would not, because `*` does not start with\na dot character.\n\nYou can make glob treat dots as normal characters by setting\n`dot:true` in the options.\n\n### Basename Matching\n\nIf you set `matchBase:true` in the options, and the pattern has no\nslashes in it, then it will seek for any file anywhere in the tree\nwith a matching basename. For example, `*.js` would match\n`test/simple/basic.js`.\n\n### Empty Sets\n\nIf no matching files are found, then an empty array is returned. This\ndiffers from the shell, where the pattern itself is returned. For\nexample:\n\n $ echo a*s*d*f\n a*s*d*f\n\nTo get the bash-style behavior, set the `nonull:true` in the options.\n\n### See Also:\n\n* `man sh`\n* `man bash` (Search for \"Pattern Matching\")\n* `man 3 fnmatch`\n* `man 5 gitignore`\n* [minimatch documentation](https://github.com/isaacs/minimatch)\n\n## glob.hasMagic(pattern, [options])\n\nReturns `true` if there are any special characters in the pattern, and\n`false` otherwise.\n\nNote that the options affect the results. If `noext:true` is set in\nthe options object, then `+(a|b)` will not be considered a magic\npattern. If the pattern has a brace expansion, like `a/{b/c,x/y}`\nthen that is considered magical, unless `nobrace:true` is set in the\noptions.\n\n## glob(pattern, [options], cb)\n\n* `pattern` `{String}` Pattern to be matched\n* `options` `{Object}`\n* `cb` `{Function}`\n * `err` `{Error | null}`\n * `matches` `{Array}` filenames found matching the pattern\n\nPerform an asynchronous glob search.\n\n## glob.sync(pattern, [options])\n\n* `pattern` `{String}` Pattern to be matched\n* `options` `{Object}`\n* return: `{Array}` filenames found matching the pattern\n\nPerform a synchronous glob search.\n\n## Class: glob.Glob\n\nCreate a Glob object by instantiating the `glob.Glob` class.\n\n```javascript\nvar Glob = require(\"glob\").Glob\nvar mg = new Glob(pattern, options, cb)\n```\n\nIt's an EventEmitter, and starts walking the filesystem to find matches\nimmediately.\n\n### new glob.Glob(pattern, [options], [cb])\n\n* `pattern` `{String}` pattern to search for\n* `options` `{Object}`\n* `cb` `{Function}` Called when an error occurs, or matches are found\n * `err` `{Error | null}`\n * `matches` `{Array}` filenames found matching the pattern\n\nNote that if the `sync` flag is set in the options, then matches will\nbe immediately available on the `g.found` member.\n\n### Properties\n\n* `minimatch` The minimatch object that the glob uses.\n* `options` The options object passed in.\n* `aborted` Boolean which is set to true when calling `abort()`. There\n is no way at this time to continue a glob search after aborting, but\n you can re-use the statCache to avoid having to duplicate syscalls.\n* `cache` Convenience object. Each field has the following possible\n values:\n * `false` - Path does not exist\n * `true` - Path exists\n * `'FILE'` - Path exists, and is not a directory\n * `'DIR'` - Path exists, and is a directory\n * `[file, entries, ...]` - Path exists, is a directory, and the\n array value is the results of `fs.readdir`\n* `statCache` Cache of `fs.stat` results, to prevent statting the same\n path multiple times.\n* `symlinks` A record of which paths are symbolic links, which is\n relevant in resolving `**` patterns.\n* `realpathCache` An optional object which is passed to `fs.realpath`\n to minimize unnecessary syscalls. It is stored on the instantiated\n Glob object, and may be re-used.\n\n### Events\n\n* `end` When the matching is finished, this is emitted with all the\n matches found. If the `nonull` option is set, and no match was found,\n then the `matches` list contains the original pattern. The matches\n are sorted, unless the `nosort` flag is set.\n* `match` Every time a match is found, this is emitted with the specific\n thing that matched. It is not deduplicated or resolved to a realpath.\n* `error` Emitted when an unexpected error is encountered, or whenever\n any fs error occurs if `options.strict` is set.\n* `abort` When `abort()` is called, this event is raised.\n\n### Methods\n\n* `pause` Temporarily stop the search\n* `resume` Resume the search\n* `abort` Stop the search forever\n\n### Options\n\nAll the options that can be passed to Minimatch can also be passed to\nGlob to change pattern matching behavior. Also, some have been added,\nor have glob-specific ramifications.\n\nAll options are false by default, unless otherwise noted.\n\nAll options are added to the Glob object, as well.\n\nIf you are running many `glob` operations, you can pass a Glob object\nas the `options` argument to a subsequent operation to shortcut some\n`stat` and `readdir` calls. At the very least, you may pass in shared\n`symlinks`, `statCache`, `realpathCache`, and `cache` options, so that\nparallel glob operations will be sped up by sharing information about\nthe filesystem.\n\n* `cwd` The current working directory in which to search. Defaults\n to `process.cwd()`.\n* `root` The place where patterns starting with `/` will be mounted\n onto. Defaults to `path.resolve(options.cwd, \"/\")` (`/` on Unix\n systems, and `C:\\` or some such on Windows.)\n* `dot` Include `.dot` files in normal matches and `globstar` matches.\n Note that an explicit dot in a portion of the pattern will always\n match dot files.\n* `nomount` By default, a pattern starting with a forward-slash will be\n \"mounted\" onto the root setting, so that a valid filesystem path is\n returned. Set this flag to disable that behavior.\n* `mark` Add a `/` character to directory matches. Note that this\n requires additional stat calls.\n* `nosort` Don't sort the results.\n* `stat` Set to true to stat *all* results. This reduces performance\n somewhat, and is completely unnecessary, unless `readdir` is presumed\n to be an untrustworthy indicator of file existence.\n* `silent` When an unusual error is encountered when attempting to\n read a directory, a warning will be printed to stderr. Set the\n `silent` option to true to suppress these warnings.\n* `strict` When an unusual error is encountered when attempting to\n read a directory, the process will just continue on in search of\n other matches. Set the `strict` option to raise an error in these\n cases.\n* `cache` See `cache` property above. Pass in a previously generated\n cache object to save some fs calls.\n* `statCache` A cache of results of filesystem information, to prevent\n unnecessary stat calls. While it should not normally be necessary\n to set this, you may pass the statCache from one glob() call to the\n options object of another, if you know that the filesystem will not\n change between calls. (See \"Race Conditions\" below.)\n* `symlinks` A cache of known symbolic links. You may pass in a\n previously generated `symlinks` object to save `lstat` calls when\n resolving `**` matches.\n* `sync` DEPRECATED: use `glob.sync(pattern, opts)` instead.\n* `nounique` In some cases, brace-expanded patterns can result in the\n same file showing up multiple times in the result set. By default,\n this implementation prevents duplicates in the result set. Set this\n flag to disable that behavior.\n* `nonull` Set to never return an empty set, instead returning a set\n containing the pattern itself. This is the default in glob(3).\n* `debug` Set to enable debug logging in minimatch and glob.\n* `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.\n* `noglobstar` Do not match `**` against multiple filenames. (Ie,\n treat it as a normal `*` instead.)\n* `noext` Do not match `+(a|b)` \"extglob\" patterns.\n* `nocase` Perform a case-insensitive match. Note: on\n case-insensitive filesystems, non-magic patterns will match by\n default, since `stat` and `readdir` will not raise errors.\n* `matchBase` Perform a basename-only match if the pattern does not\n contain any slash characters. That is, `*.js` would be treated as\n equivalent to `**/*.js`, matching all js files in all directories.\n* `nodir` Do not match directories, only files. (Note: to match\n *only* directories, simply put a `/` at the end of the pattern.)\n* `ignore` Add a pattern or an array of glob patterns to exclude matches.\n Note: `ignore` patterns are *always* in `dot:true` mode, regardless\n of any other settings.\n* `follow` Follow symlinked directories when expanding `**` patterns.\n Note that this can result in a lot of duplicate references in the\n presence of cyclic links.\n* `realpath` Set to true to call `fs.realpath` on all of the results.\n In the case of a symlink that cannot be resolved, the full absolute\n path to the matched entry is returned (though it will usually be a\n broken symlink)\n* `absolute` Set to true to always receive absolute paths for matched\n files. Unlike `realpath`, this also affects the values returned in\n the `match` event.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between node-glob and other\nimplementations, and are intentional.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.3, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nNote that symlinked directories are not crawled as part of a `**`,\nthough their contents may match against subsequent portions of the\npattern. This prevents infinite loops and duplicates and the like.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen glob returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`glob.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\n### Comments and Negation\n\nPreviously, this module let you mark a pattern as a \"comment\" if it\nstarted with a `#` character, or a \"negated\" pattern if it started\nwith a `!` character.\n\nThese options were deprecated in version 5, and removed in version 6.\n\nTo specify things that should not match, use the `ignore` option.\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes will always\nbe interpreted as escape characters, not path separators.\n\nResults from absolute patterns such as `/foo/*` are mounted onto the\nroot setting using `path.join`. On windows, this will by default result\nin `/foo/*` matching `C:\\foo\\bar.txt`.\n\n## Race Conditions\n\nGlob searching, by its very nature, is susceptible to race conditions,\nsince it relies on directory walking and such.\n\nAs a result, it is possible that a file that exists when glob looks for\nit may have been deleted or modified by the time it returns the result.\n\nAs part of its internal implementation, this program caches all stat\nand readdir calls that it makes, in order to cut down on system\noverhead. However, this also makes it even more susceptible to races,\nespecially if the cache or statCache objects are reused between glob\ncalls.\n\nUsers are thus advised not to use a glob result as a guarantee of\nfilesystem state in the face of rapid changes. For the vast majority\nof operations, this is never a problem.\n\n## Glob Logo\nGlob's logo was created by [Tanya Brassie](http://tanyabrassie.com/). Logo files can be found [here](https://github.com/isaacs/node-glob/tree/master/logo).\n\nThe logo is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).\n\n## Contributing\n\nAny change to behavior (including bugfixes) must come with a test.\n\nPatches that fail tests or reduce performance will be rejected.\n\n```\n# to run tests\nnpm test\n\n# to re-generate test fixtures\nnpm run test-regen\n\n# to benchmark against bash/zsh\nnpm run bench\n\n# to profile javascript\nnpm run prof\n```\n\n![](oh-my-glob.gif)\n", - "homepage": "https://github.com/isaacs/node-glob#readme", - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" - }, - "license": "ISC", - "readmeFilename": "README.md" -} + "josephdavisco": true, + "montyanderson": true, + "parkerproject": true, + "program247365": true, + "robinblomberg": true, + "scottfreecode": true, + "shen-weizhong": true, + "tjholowaychuk": true, + "yinyongcom666": true, + "artem.tkachuck": true, + "blade254353074": true, + "chrisdickinson": true, + "danielbankhead": true, + "fabioelizandro": true, + "fasterthanlime": true, + "imaginegenesis": true, + "natarajanmca11": true, + "troels.trvo.dk": true, + "usingthesystem": true, + "leandro.maioral": true, + "marcobiedermann": true, + "carlosvillademor": true, + "scott.m.sarsfield": true, + "davidjsalazarmoreno": true, + "klap-webdevelopment": true + } +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/glob.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/glob.min.json index fab3e2e03baf2..b9987b33652bb 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/glob.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/glob.min.json @@ -1,8 +1,10 @@ { "name": "glob", "dist-tags": { - "latest": "7.1.6", - "legacy": "4.5.3" + "legacy": "4.5.3", + "v7-legacy": "7.2.0", + "latest": "11.0.0", + "legacy-v10": "10.4.5" }, "versions": { "1.1.0": { @@ -13,23 +15,39 @@ }, "dist": { "shasum": "b855e0709ddc7d9c5f884acc6155677b437ec135", - "tarball": "https://registry.npmjs.org/glob/-/glob-1.1.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-1.1.0.tgz", + "integrity": "sha512-S1mOxBSA7gMtE6ga3VlXWVz3EpFHRyTJV45G8+/ySCIa2nnSb+5bHu1Du5o7WV22L0z48ApnaQhoPaSPQQoa+w==", + "signatures": [ + { + "sig": "MEYCIQDhbG8XpfbX2G33GeMikMnzdtB2ZIUZyOwrU7YTxbgxNwIhAIWsUqNUGlLrOiBVKmrr9QEisVAyHNeC2/V/wJ75xdDc", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" }, + "deprecated": "Glob versions prior to v9 are no longer supported", "hasInstallScript": true }, - "2.0.9": { + "2.0.7": { "name": "glob", - "version": "2.0.9", + "version": "2.0.7", "dist": { - "shasum": "cc550540fed1001d82326e2f16763da4d20071f7", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.9.tgz" + "shasum": "4f2b7b496b7b72e5e680449d1279800b7db82459", + "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.7.tgz", + "integrity": "sha512-N272T/DgFT1wA1kQAEaU290YzR+ql5LkPp82F9iSvn23wY2aysKNPUovsi7q9KFFE2Mere7lKmV6Jv5Q5+Tnyw==", + "signatures": [ + { + "sig": "MEQCIDTNlUR3yjBWwn4uleNvxbqGbUl7HTk+99Qkypei7ntBAiB26sWFHOVoZmjztuPq4/7IjIe+ry41gvnbVX+TS2TCJw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "0.4" }, + "deprecated": "Glob versions prior to v9 are no longer supported", "hasInstallScript": true }, "2.0.8": { @@ -37,23 +55,39 @@ "version": "2.0.8", "dist": { "shasum": "5342337c3f194250e1d7625ed6b77b5195a41845", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.8.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.8.tgz", + "integrity": "sha512-ktU9wpVDv6wWurjgNfv3+yifW5eF45heecJxPe8diTMNTOhWVbMXuthldz0ds7SBAR9cP8yk+FatPwNDzSWDaQ==", + "signatures": [ + { + "sig": "MEQCIE+/BzcsLpPTrUjn01whpIX1Kt4uUPUtL8C2ojLlPJUHAiBwtmhSuUXWf7OZVfDx5x6vNIwpJegQqRWBMCmIufkd1A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "0.4" }, + "deprecated": "Glob versions prior to v9 are no longer supported", "hasInstallScript": true }, - "2.0.7": { + "2.0.9": { "name": "glob", - "version": "2.0.7", + "version": "2.0.9", "dist": { - "shasum": "4f2b7b496b7b72e5e680449d1279800b7db82459", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.7.tgz" + "shasum": "cc550540fed1001d82326e2f16763da4d20071f7", + "tarball": "https://registry.npmjs.org/glob/-/glob-2.0.9.tgz", + "integrity": "sha512-WQ6OYVKnZi7ww1CbPp+7oiHlrT/yJ7QjslwMY00JEUAJEzTQm01pCX58L7XreOgAC90nrHNihiQRbhDoXHHTCA==", + "signatures": [ + { + "sig": "MEUCIHJY3sJa7WbOmaI2CaLbwyIPtBlxKeU56Zmi5jFfQFfzAiEAsik957SSNrE63oVeY7Oj5ywerSg85Pzk7NOGFm0Hngc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "0.4" }, + "deprecated": "Glob versions prior to v9 are no longer supported", "hasInstallScript": true }, "2.1.0": { @@ -61,21 +95,29 @@ "version": "2.1.0", "dist": { "shasum": "69fd2f3541a4802a2d928270c5caaaa0009552b0", - "tarball": "https://registry.npmjs.org/glob/-/glob-2.1.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-2.1.0.tgz", + "integrity": "sha512-zzNDSGN7VX+a3gQqmg+DgEChyK0SG9W014bPOCO/V0TN0FDrJY37o3fagxhfbbXQAz4jwn6iPRDp/l8yIFB5dg==", + "signatures": [ + { + "sig": "MEUCIQCi/jSmhlEpk65axJLI7J5Q/vFR1qls8GZWqA+WYHKsswIgE7yARQTyaRZWRUnSkcpAr7wrbxkt2CpQDjJ+4Juqrxg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "0.6" }, + "deprecated": "Glob versions prior to v9 are no longer supported", "hasInstallScript": true }, "3.0.0": { "name": "glob", "version": "3.0.0", "dependencies": { + "inherits": "1", "fast-list": "1", "minimatch": "0.1", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -84,20 +126,28 @@ }, "dist": { "shasum": "277715af94dec8c1096a34664bccc11cae0dcd5c", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.0.tgz", + "integrity": "sha512-aWr8sRnhS1mp9hJagBvAXo6EsDL/JdqHtGKJNzYE/wH+PqgKPn3ROwMotnryOSN6nterCSmKM78m4rkD9HR5fQ==", + "signatures": [ + { + "sig": "MEYCIQDVvt5POqAzDpWF4W5lq5ybTae+NNS4qNrKgGyu2bMqGwIhAOGzo0yCvVDXsGHROKm5sI4AnE6bC1oRb5Mj041+WIVY", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.0.1": { "name": "glob", "version": "3.0.1", "dependencies": { + "inherits": "1", "fast-list": "1", "minimatch": "0.1", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -106,19 +156,27 @@ }, "dist": { "shasum": "90899b05973a70b1106b38bb260f537ebfac58ce", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.0.1.tgz", + "integrity": "sha512-tlyiXzgGnZ6CyI4h9NNj3SjJlAQcYlcASZiozVsLw9R3nVciHELg7Y19c7pFi/4saxXRcU748ggBa/e9vgVM4A==", + "signatures": [ + { + "sig": "MEUCICoSjU8KDH4R5O9VrgtuDuKvYJWW7YobIfKpoXddmY4LAiEAwqIhG5Jx0hCbref/ZaO1wVzBo/UmuBLHwogUKnNaHFw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.0": { "name": "glob", "version": "3.1.0", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -127,19 +185,27 @@ }, "dist": { "shasum": "0c042fd73dd483e52728e2946f40398f3600a51d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.0.tgz", + "integrity": "sha512-8A3TQTJML6pS5iSiLw9tnhD3wjWU9ydUk+ZI1/hN8+iTVKCvMEXMIT4Jjc5AiMqCXrqlS8sQMtRyOdSC9cn6og==", + "signatures": [ + { + "sig": "MEUCIQCWN96Y5sQUbDlK/0g+8me3+9f153f4z6BOUtX8hgXuUAIgK/NovHgLlXm0wXcVS1kYAhu7H7frzpNWEbzrPGEhE6Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.1": { "name": "glob", "version": "3.1.1", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -148,19 +214,27 @@ }, "dist": { "shasum": "e9bf369aacb3c449a55e01906ae7932b806589f9", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.1.tgz", + "integrity": "sha512-GIVdoII4fWZ3PsXtbDCHQ+Km6bvbqNfjBcsWPauwmLFNFQomsrio4T461K73XdbBD0D9DddvI94BF7WaKkESyg==", + "signatures": [ + { + "sig": "MEQCIE8i8RRKIlxqsUbBhKHq989cfh/DZAlRCuEyDjPd7SJeAiAFJxHrXXOXYN+4fQm2E9XhjqxoPQLkg7pl5wWjOeeLcA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.2": { "name": "glob", "version": "3.1.2", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -169,19 +243,27 @@ }, "dist": { "shasum": "e99bda93662781bbdf334846e075ce257dbf031c", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.2.tgz", + "integrity": "sha512-0rQpNYblqAiwbJkPGSSrh57pzf5C3hZUTnjRlQWvSSiYmktIE/EBYWuyoKL9MenfyxPapScr6bD222hQ80qypQ==", + "signatures": [ + { + "sig": "MEQCIEXzh2oLhEVFEZYWJrAHWs9eh8x5Ps72Ca0ZuTeeJwbtAiBmWnV2iJ0K3sj9LO3z9zM5LvALYfdS6+pTk9ejr4/P+w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.3": { "name": "glob", "version": "3.1.3", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -190,19 +272,27 @@ }, "dist": { "shasum": "03a5bb907b789e24f1aa31ea845a212f8099cf6e", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.3.tgz", + "integrity": "sha512-LIRhlbZbCrdieMdgpYwFKG/r/a8MfhpapJRvyKsBjIEbq7rTRGAQdAMvMXiXF3yBwLR6Y+ZL9GVSo5DlS99zoA==", + "signatures": [ + { + "sig": "MEYCIQDpz+O19TVsCgNqfqsAxqMhBzvmbW5rWuULNjcPfrSLgAIhANPSV/hzG24xoBYg5V+gg6yv9JID4sjXnBGiN9bvPZzi", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.4": { "name": "glob", "version": "3.1.4", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "0.1", @@ -211,19 +301,27 @@ }, "dist": { "shasum": "a2f0363e27f4f0add2633c2faf65feb91f8df2cf", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.4.tgz", + "integrity": "sha512-BEV1AZiZO3VRMWOqIm5DyKyZva5yEU0rUeiSXFNMWY9EqhVyCOrvPMDQOC/2G8RUDYiOd+luvF+H/wJYra9yEQ==", + "signatures": [ + { + "sig": "MEUCIEXGOTxgKHFGiLx/jjxJTvCbtsYC8mZGoflIFlL+Yz8xAiEArJ0QcstV+P4Oc3LQr1HLK8vXjNg/1jQxwbiiRF9RsSI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.5": { "name": "glob", "version": "3.1.5", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -232,19 +330,27 @@ }, "dist": { "shasum": "26aa4feb912b1d22a1d83a4309c1a9f82cc5a2e0", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.5.tgz", + "integrity": "sha512-sKAqC3hbMvJhhJEzqiw/5rhLMDlhpla/6VHLZNukzBupU8eATokDQ2rhfHYCWQ4cd8Hcz4M7PMx4vEYfMiTi5Q==", + "signatures": [ + { + "sig": "MEYCIQCQa9xPb1P0Y0vL67YHV7R+RHCzQmGnTyr2Pecm5f9xeQIhAK5MYrpK64xOKq8taHZtdIe9OkZPS34+1Pj6LcOoA16z", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.6": { "name": "glob", "version": "3.1.6", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -253,19 +359,27 @@ }, "dist": { "shasum": "46280e57c83a7225026a4d46dc2ca55b674d8a34", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.6.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.6.tgz", + "integrity": "sha512-MB+HsOM+LLAcTNNQlZalxeanwcZzDlCjYnsaiyjfT+Nj8O8GZVncebnADHOBjhj8vJCnYc8aXpMaDKFzkjTgAQ==", + "signatures": [ + { + "sig": "MEUCIQDiAw2vvRJmyRzUHdue2JZfvtlveZNGrntsbBXlhd06oAIgODnzImLk9qN6KrH0zh90XT4gCuaNY2Hms6/XKtGJ+K8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.7": { "name": "glob", "version": "3.1.7", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -274,19 +388,27 @@ }, "dist": { "shasum": "ded55665aa60fe02cecf876ca57bf5a405e161b8", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.7.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.7.tgz", + "integrity": "sha512-kbG7tNPFB08prAnAh0vAX+eHbgJps+svCcCqL8zyw66j/32n1JoQIWZ3OAQXP5bcJY0jXK2UMihzx5xPNLPWGw==", + "signatures": [ + { + "sig": "MEUCIQCBgrlDAsb7xH8VvmIll4T81Lul6RcErab7LzQphlCvjAIgGHIXn7jnbKVETjXrUftJxQEkvkMWikp1rj474V2cXQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.9": { "name": "glob", "version": "3.1.9", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -295,19 +417,27 @@ }, "dist": { "shasum": "e2b9003d46b6b7531b3d7b3b8bd6f774138c0b2d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.9.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.9.tgz", + "integrity": "sha512-MBkCJykxz63PRIaaFWLHdxIm7MvrpDPIv1eqAu79yZocbTB9d+abtE2fzlHASgALUu2VYOvO8vKYs4cOKXNeNA==", + "signatures": [ + { + "sig": "MEYCIQDJpSG+vet1ps70log7PKTVAQQZnsi0WHr03XiIc0gb7QIhAOwO3rH/YhVkT00CxMkk8rYQEjDQ21UIkkSXqkHEkUWi", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.10": { "name": "glob", "version": "3.1.10", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -316,19 +446,27 @@ }, "dist": { "shasum": "a789f184bc83c18b5b2da98c93f3bd4f343b7613", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.10.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.10.tgz", + "integrity": "sha512-I/vJvLYikgbzkmxyBRlDy/eobGEjcM81Q7x6OJbcV6B/biHqtA3soQYkfGNpV61J3zkItCC5xTcT08cPMRo3Pw==", + "signatures": [ + { + "sig": "MEYCIQD1nbgvfuxuNfoholVlMdCYvrgPrBRXzoMXVg0AYMoS6wIhALesZdGpomTkcePMMTeMzBl/DOZRdmsSJFr1BIMqW45y", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.11": { "name": "glob", "version": "3.1.11", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -337,19 +475,27 @@ }, "dist": { "shasum": "c46ec5783444360b6435649712dd047bae3cadef", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.11.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.11.tgz", + "integrity": "sha512-KYFNyLhA21SiTB6EsMwGztQ39SZFjCwR5Y6roS41YEUVBvRtmL0fYUYzAvUusdJBY9YqofXsFR0hrgYZK3Lpxg==", + "signatures": [ + { + "sig": "MEUCIQDZ/UEghHaQBUD+NfEB79gv/M0AGMHFaLjqMovzAkPACwIgJUqW/0BoD9Rrdu6oy9vi/43VOw2qGzZgoph3wEGBAK4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.12": { "name": "glob", "version": "3.1.12", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.2.3", @@ -358,19 +504,27 @@ }, "dist": { "shasum": "4b3fd0889a68d9805f47ef4b3c6950e88455dc29", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.12.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.12.tgz", + "integrity": "sha512-JV+jZ60eYrTc+eW/lq6vd8+5Ronsnxus4EQ3p/2l+fYULFCzHWpDek6WrbrN3sz3McHgwAZlh8OAuJp06TRpFQ==", + "signatures": [ + { + "sig": "MEQCIDEg5+c9XKjo5pGaJ3ISvdy1H/kM2dQ9tg1t9040gNLKAiAGP2/jAVHiZGKiCS9yqdd5CsiRasVHy01+e7jdy9+s7Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.13": { "name": "glob", "version": "3.1.13", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.3", @@ -379,19 +533,27 @@ }, "dist": { "shasum": "ae3763e6070e6bcdabde7ef11bedec66666b6609", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.13.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.13.tgz", + "integrity": "sha512-0DIB2Ox2WeF3GzVmK+FzODhrjDnh9IIqKYXE/FprkhfbYorR6YNZ3jis9JoQTRQyU7/sGmlcn+4JryIinpbd8Q==", + "signatures": [ + { + "sig": "MEUCIET5Lw1nLJ9p9vUdpBfWugIPoZvekmKl7IDQgswgkv3lAiEAtiRD31hO878zJuedKFMg2mGjVP9JDvabqPoM6TtGvd4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.14": { "name": "glob", "version": "3.1.14", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.3", @@ -400,19 +562,27 @@ }, "dist": { "shasum": "f97a731c41da6695dc83944bbb2177e9a29b363d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.14.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.14.tgz", + "integrity": "sha512-vsywJsa3Vtj88VIeLyzrKhjM7djI5ZmlWRjMF9aVVQoSY97pNzmfroi+5oSzvlXHD9Fq7PFMlii/gyQzCXX0DA==", + "signatures": [ + { + "sig": "MEUCIQCpcIQdu6TmScPLPtabVv0Xhixbl/PgbMjg5asIylmyxgIgNfMFlLahsn4l51Nc5zT1bizYvqoIhCwdUTwPKsy+wpc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.15": { "name": "glob", "version": "3.1.15", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.4.0", @@ -421,19 +591,27 @@ }, "dist": { "shasum": "9a15a57627d92aeca41ae00bea8eac90452de0b1", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.15.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.15.tgz", + "integrity": "sha512-3LflqnJfTX5dpwn24ZyFRM+Ic0+v0gS2So98lk8/64LkFHZoGXv3rFF1Fl/6blJ1YOmIOKK1tDjjDczo0QSmIg==", + "signatures": [ + { + "sig": "MEUCIQDMyvdLdY0JpuR1mryv3wP8KEdrQtuw2vWPQwW1w9KUwAIgEUA2RznDpQ9O6+k3LxWRlJN8gUMuuQDAVXoxWd/DLeE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.16": { "name": "glob", "version": "3.1.16", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.4.0", @@ -442,19 +620,27 @@ }, "dist": { "shasum": "114e8fcfbdbe863ab694110cdcc1cd9b04ddd01e", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.16.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.16.tgz", + "integrity": "sha512-/U5mfimVnaM6FFza1jWPGhWoRXEGnD3+iJ6MEunHNUCgYRtNfmzwFr70FNAf5Lef1vAtoD5MpVOGUja4goaQwQ==", + "signatures": [ + { + "sig": "MEQCIDzNuRjQJ3leNuCLr6LcnFc6z3VHJQCmqpV/3sUzm07BAiBUJ9p5nxyJwYwBY6mfT+sawnAQHqrKPT/W49u2WqSJ1g==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.17": { "name": "glob", "version": "3.1.17", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.1.2", - "inherits": "1" + "graceful-fs": "~1.1.2" }, "devDependencies": { "tap": "~0.4.0", @@ -463,19 +649,27 @@ }, "dist": { "shasum": "7dbe1d6f1e2ef039f6ba681616d39e135892088d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.17.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.17.tgz", + "integrity": "sha512-VXWQ8Km+nvO4ZS1U+S7mMJOdTqPgCp9CGQKvZVZKxl6hUYa1zIt/1H/zZu0djw/n0TCfOBqe/SdcJWEZ2z1HiA==", + "signatures": [ + { + "sig": "MEUCIQCB0i3AmqFbx38vkTs1fKFDDD4Maf1cysBJQ8kljdwVYAIgbRev+RlFflMlW8sJk1rLQpDW36cS7SntY7yy2wLqiQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.18": { "name": "glob", "version": "3.1.18", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", @@ -484,19 +678,27 @@ }, "dist": { "shasum": "276a2d773e3d02ef52a4eca2800913cc02208b25", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.18.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.18.tgz", + "integrity": "sha512-AmHUiKUr6jZC0rMC1+Qm5IAvYydrSOXb6FPxazs6VSNUNbbvsYJ69WThEFPFN2snLum426Xj9lGPQ/WOx/0kbQ==", + "signatures": [ + { + "sig": "MEUCIQCPZ79vdlwDujr0S2bPx+MGybuMQXQ32509uSq+Uv9N/QIgVMD1uqDCJyaVNuIHEMT9yPdVJMqWGNCV6xdqKxuRUQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.19": { "name": "glob", "version": "3.1.19", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", @@ -505,19 +707,27 @@ }, "dist": { "shasum": "1fa6031c187d28bf714849bbd75482e9369eb43c", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.19.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.19.tgz", + "integrity": "sha512-9Kn6Il8I6d90mAglajiLH6ZHhEfQTRR0rW1bq5q6FwrMTrp27IjbIper3xyg8Gt8QpFZPUi2jSL7LrQ/WgM2/A==", + "signatures": [ + { + "sig": "MEQCIGepaUpPwMlAMQFp38tK6Sf+Nxz3o660wDA+brlsNwATAiBcanFSe+YcUfr3J2Rc5fMgm12B27nn5w3YJMfTV6wi/A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.20": { "name": "glob", "version": "3.1.20", "dependencies": { + "inherits": "1", "minimatch": "0.2", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", @@ -526,19 +736,27 @@ }, "dist": { "shasum": "4de526bcbf870dcf98269ad2afe81055faf21b60", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.20.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.20.tgz", + "integrity": "sha512-8lxuO3JIMG6B6OH7tkg8iFj0bBwKOH90lpbxXPTfQPqanRQhxWusmtJDWa2MumOuEStU/QvNErZiCGUlJyvzUA==", + "signatures": [ + { + "sig": "MEYCIQDsWyfliQUdDJ5jGsLfZHs0BwmftMNn6ykV05TuKmV3nQIhALUjBPMoRX3P29SMfkotCTYdC7U21B0HEI0W0Ih2qrkb", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.1.21": { "name": "glob", "version": "3.1.21", "dependencies": { + "inherits": "1", "minimatch": "~0.2.11", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", @@ -547,19 +765,27 @@ }, "dist": { "shasum": "d29e0a055dea5138f4d07ed40e8982e83c2066cd", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "integrity": "sha512-ANhy2V2+tFpRajE3wN4DhkNQ08KDr0Ir1qL12/cUe5+a7STEK8jkW4onUYuY8/06qAFuT5je7mjAqzx0eKI2tQ==", + "signatures": [ + { + "sig": "MEQCICeDOAZNEGLIpKWnRhHQgGht5EMOxWDbGsrGmAMwL1JTAiBRWPp28lRU59u3AP/hNzaj0rOsO5u5tPm4xAY0VdGu9w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.0": { "name": "glob", "version": "3.2.0", "dependencies": { + "inherits": "1", "minimatch": "~0.2.11", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", @@ -568,19 +794,27 @@ }, "dist": { "shasum": "ddec9ac2c56e116f4c340657e2bfe5d7b78b53a3", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.0.tgz", + "integrity": "sha512-q5Cw8XhvFSIQhXlwhVNtSmh7YLc8MipQlDPqQInjJtbX2x4EWDrHRqO0wHvz3r/qzhbdhvyxn7/uv9HzBDuWgg==", + "signatures": [ + { + "sig": "MEUCICIZ6uq7+j3FYZ0U5eFn+sr6RV+cw5qdbqwmu4bzWrBDAiEA6VjmHKi2Z3S4j+OlvPoqkYsdKdUNBt4r46hckmTs95c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.1": { "name": "glob", "version": "3.2.1", "dependencies": { + "inherits": "1", "minimatch": "~0.2.11", - "graceful-fs": "~1.2.0", - "inherits": "1" + "graceful-fs": "~1.2.0" }, "devDependencies": { "tap": "~0.4.0", @@ -589,19 +823,27 @@ }, "dist": { "shasum": "57af70ec73ba2323bfe3f29a067765db64c5d758", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.1.tgz", + "integrity": "sha512-wvxQZUqjkvW//FJMr/DCmPlAOFcrmf2ojnUddQTdgAQ5XkKL8ILfob0Rz+Ch/fSiols6EtiHRJS3i9W0kBRZmQ==", + "signatures": [ + { + "sig": "MEYCIQCCySm2RkJszkH0TPcPcN6KzpgUFpGpY9EduKUGarTrfgIhAPt5BiHa5vlAQWRNlCQq4Xxx3d0xw/cfZC9xqT6fMaSq", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.3": { "name": "glob", "version": "3.2.3", "dependencies": { + "inherits": "2", "minimatch": "~0.2.11", - "graceful-fs": "~2.0.0", - "inherits": "2" + "graceful-fs": "~2.0.0" }, "devDependencies": { "tap": "~0.4.0", @@ -610,18 +852,26 @@ }, "dist": { "shasum": "e313eeb249c7affaa5c475286b0e115b59839467", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz", + "integrity": "sha512-WPaLsMHD1lYEqAmIQI6VOJSPwuBdGShDWnj1yUo0vQqEO809R8W3LM9OVU13CnnDhyv/EiNwOtxEW74SmrzS6w==", + "signatures": [ + { + "sig": "MEUCIF1LpLjHYJv0455MHm3umPltcWELOfzLjbOeEns7rAjWAiEAr+fDRdE4uwQtBtKxKNgGyZk1FgNfDU686P/n/gUWUZs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.4": { "name": "glob", "version": "3.2.4", "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", @@ -630,18 +880,26 @@ }, "dist": { "shasum": "673c00d7a5a80aa6b5e4eb16101f057e111f4122", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.4.tgz", + "integrity": "sha512-DV+VSW1KUXbEYDdTKfG9sUlO7aorZiE+b16EeMYyIStARRp+Bdd2rdJSmt6Q9+mTaT3EmQNt1m1QOeScv/cnzA==", + "signatures": [ + { + "sig": "MEQCIHVBSjD87pUEWgpOmzU+j60zlrUgh3UD1IHxyEDWshRiAiBxNHMXn8UCUZK95HZeVXEMXDY1eNwqN3qa6vYwHcl/fg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.5": { "name": "glob", "version": "3.2.5", "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", @@ -650,18 +908,26 @@ }, "dist": { "shasum": "341c68efc0d99c1d8d90746d7b57c8de38700d77", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.5.tgz", + "integrity": "sha512-Y6Wjf7c0XK2mEi+QUSvsRXlYc58MNCDfjy1/ubhkUxdqeqX+BVNPZtIGLw3NqBInagDyIss9C0+SRaTP8o28Pw==", + "signatures": [ + { + "sig": "MEUCIGfuHCa4Y18PWga6AFKxN6fdDx1h05XEbqu92T3LSEECAiEAiueYEwcsWOvPPuoljny0fiozdKF3dWgev4ymQSM5Mqw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.6": { "name": "glob", "version": "3.2.6", "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", @@ -670,18 +936,26 @@ }, "dist": { "shasum": "28c805b47bc6c19ba3059cbdf079b98ff62442f2", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.6.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.6.tgz", + "integrity": "sha512-1WeSYiNFQBMbt705fYMJQWTJPkPlCD9pEPDScTUrS1uQI5gvhgoyhedTObUVNZ1X98LDLwAGFKoi9jgIPNByZQ==", + "signatures": [ + { + "sig": "MEUCIQDiN6oLvnCivEGclbTz550xAzGd03h2SO4mKJApsS7qHAIgQ9q8jr5U9Ag8jsY1h5OXFQM5oHCCxFCtYsj/2F3nbRQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.7": { "name": "glob", "version": "3.2.7", "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", @@ -690,18 +964,26 @@ }, "dist": { "shasum": "275f39a0eee805694790924f36eac38e1db6d802", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.7.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.7.tgz", + "integrity": "sha512-DaADhstzS42quruVnBdaZUrbSv3I+8K+7QQ5WrKQ1oFcBYJR9iuDNoz4MVxJlOhL4b8ETTAFZA6x755SiaUx2A==", + "signatures": [ + { + "sig": "MEQCIHSeThP3D7/5v7vpGOSZZUA/y9tF5lgUQynwIsJnMwNsAiA+5VkTzeUjRHEeyogiGRkZzVVrRrQv29UNk/iPNmxMWA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.8": { "name": "glob", "version": "3.2.8", "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", @@ -710,18 +992,26 @@ }, "dist": { "shasum": "5506f4311721bcc618c7d8dba144188750307073", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.8.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.8.tgz", + "integrity": "sha512-Y3icmja4O+RjRYHMc97ggBZOljMWzBFGEOk96IXbNGRbQEZrz15HAcqe89t9WUcmcDdVVNAK5ar2lTpL+SutNA==", + "signatures": [ + { + "sig": "MEYCIQDCu9dRWiJSPeLyQEN+41uBFLGO+MOdu7X8O3boALX18QIhAO/hFsT80EDnI7B6jTdKHWybbMGb6Ce3BZ3hHFXhgXdO", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.9": { "name": "glob", "version": "3.2.9", "dependencies": { - "minimatch": "~0.2.11", - "inherits": "2" + "inherits": "2", + "minimatch": "~0.2.11" }, "devDependencies": { "tap": "~0.4.0", @@ -730,11 +1020,19 @@ }, "dist": { "shasum": "56af2289aa43d07d7702666480373eb814d91d40", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.9.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.9.tgz", + "integrity": "sha512-xWlmQw1Sy45ZED7rN0t2h6HhtnlGU2ADbIsi8QyK9qtHOseaTYokI8EZA6AQm2pVZKYw4MzvTocrhHCdx1VM4A==", + "signatures": [ + { + "sig": "MEYCIQDsHexEE9EyGzfX0igCmB6Z1nitmIZtuEYUZk/Y++x9QQIhAOo0EngBmpridTh2kFXU8ApTUJNF9cjgtF2KgUB9SH6p", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.10": { "name": "glob", @@ -750,11 +1048,19 @@ }, "dist": { "shasum": "e229a4d843fdabca3dd8cdc96c456e29c6e79f13", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.10.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.10.tgz", + "integrity": "sha512-HfZfJ+uJi2+VAzo7xgUwIHB2jhq+Iqm1NkwSJgUxDh9cTFHP3WBNV2/sMQM2tyaBsE+NrPLKfLQLbEOLjfh7nQ==", + "signatures": [ + { + "sig": "MEYCIQDBe7e5uRCR78lHqUH5ga0UXOligk9DCho+GBte/cH3tAIhAKpnYvikQFeX1vEXPASKUkVywNNMHDPeqkCJSInM66ag", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "3.2.11": { "name": "glob", @@ -770,11 +1076,19 @@ }, "dist": { "shasum": "4a973f635b9190f715d10987d5c00fd2815ebe3d", - "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", + "integrity": "sha512-hVb0zwEZwC1FXSKRPFTeOtN7AArJcJlI6ULGLtrstaswKNlrTJqAA+1lYlSUop4vjA423xlBzqfVS3iWGlqJ+g==", + "signatures": [ + { + "sig": "MEYCIQDgFq9ZHt+tWhoxIJ/CCGyItkNuOS4Xd0fYAQmb7DW+2QIhANpaywYGTVZfJtRxzh9cpwXsVxsq1iVW6j6Ck4DeZqKp", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.0": { "name": "glob", @@ -790,11 +1104,19 @@ }, "dist": { "shasum": "63305c37caaef9d977da9a5d2250bf7f56a07c1d", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.0.tgz", + "integrity": "sha512-jMkTc4c1YF7AQtBWIoC/fCQ+HxwLeuJOd8eczAA016MKtUpGiHRscw1/Dnq4rA6Zb+XVOfKLF9FiDIs4Q5c8Hg==", + "signatures": [ + { + "sig": "MEYCIQC2RvPvAtTR2wr01THzzUhTL2WCLf0yQQg/6crGIkxnPgIhAOrT4G8x3lg1wMnO6gssQv8FPk44OzJFtEtgRQBRJFUB", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.1": { "name": "glob", @@ -810,19 +1132,27 @@ }, "dist": { "shasum": "3fd646db1447a38535e16e39aaba65d08bc59140", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.1.tgz", + "integrity": "sha512-iF/6qmH+6jI4fV6g5dTpPCrbQmfazhzvrDaeVnxDtICZbyuimmCfTFLvg1XrcinUOUzEmBT5VNmZQ8ERs8Kfaw==", + "signatures": [ + { + "sig": "MEUCIAb7eusHI4+fMkxBnxlXt6FEGeaXgoXsY4NHufFCl8CIAiEArkr76QnuXwM8qv3xIWH7mjvKz7pXcNc4uTQA67WVNwM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.2": { "name": "glob", "version": "4.0.2", "dependencies": { + "once": "^1.3.0", "inherits": "2", - "minimatch": "^0.3.0", - "once": "^1.3.0" + "minimatch": "^0.3.0" }, "devDependencies": { "tap": "~0.4.0", @@ -831,19 +1161,27 @@ }, "dist": { "shasum": "d57dbdf54984dd7635c8247d1f2ebde2e81f4ee1", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.2.tgz", + "integrity": "sha512-GryVXE7tNRPfkQFZsdPJDKNwY2pCBktJinUrvSWRRI/1GS8tqhPFbL+P03rT0A27r7BdVh9ZIOqic6Flb1+6qg==", + "signatures": [ + { + "sig": "MEQCIGO5DKlTJ2UBsCsFa9GBAldr3yiqWxQyPJ3ge5zVb9/5AiBKKeTMO0EOpo6m2aYd88TKEWAsTc44SVYKcgju5Xubtw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.3": { "name": "glob", "version": "4.0.3", "dependencies": { + "once": "^1.3.0", "inherits": "2", "minimatch": "^0.3.0", - "once": "^1.3.0", "graceful-fs": "^3.0.2" }, "optionalDependencies": { @@ -856,19 +1194,27 @@ }, "dist": { "shasum": "cb30c860359801cb7d56436976888fc4a09a35db", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.3.tgz", + "integrity": "sha512-SVDFlCGAi+bcuxrBgZD+DP0eM3B59SFqPCGWEtuJbZLrde/rBmKv19k9qxiUJpERPP1Bse9FqU/+f00hLDUmgQ==", + "signatures": [ + { + "sig": "MEUCIQCHBlq2jgHSukSsAlFvBE706QfTuiznhZv/OZUX+Xlx2QIgMwpQJRgsfL0u0QxJ9u4p7NFbJx2mgnlMDZMpN4yr0ng=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.4": { "name": "glob", "version": "4.0.4", "dependencies": { + "once": "^1.3.0", "inherits": "2", "minimatch": "^0.3.0", - "once": "^1.3.0", "graceful-fs": "^3.0.2" }, "optionalDependencies": { @@ -881,19 +1227,27 @@ }, "dist": { "shasum": "730ce0190d87eca7812398018e21be712b4d69d2", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.4.tgz", + "integrity": "sha512-sIM2I1HwSPRPjneCCsQpBdH6UDxXdp8pnMApvo/ixRK85N/HroyYlbE1bH6pZEY/x2rFlkeIEuDK+KACkXvRTg==", + "signatures": [ + { + "sig": "MEUCIFbzR4ZxzURmk2EchSfz7lrAAluLz9vk3VNPKzPPKrRHAiEAsA8KSblhfNb4MMy5mb+yjQRFSzm3yzcB41U2Fm67m84=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.5": { "name": "glob", "version": "4.0.5", "dependencies": { + "once": "^1.3.0", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0", "graceful-fs": "^3.0.2" }, "optionalDependencies": { @@ -906,20 +1260,28 @@ }, "dist": { "shasum": "95e42c9efdb3ab1f4788fd7793dfded4a3378063", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.5.tgz", + "integrity": "sha512-jHngryFt8ytHGnMrhN8EiDRoc+xptXEDIOpiw08VO7mfe/iSav0fYlNSTacfQ2Hsm63ztxXabyL8xK+OrwdH8g==", + "signatures": [ + { + "sig": "MEUCIEsft21Au+xOYJQixX8bSv3g/WHuFBRjoppoVMbreqXxAiEA2DtwYfOqPpHZ+P8JQ/2maM6iVugAgp6qNZLhT2NlxIQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.0.6": { "name": "glob", "version": "4.0.6", "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { "tap": "~0.4.0", @@ -928,1292 +1290,4187 @@ }, "dist": { "shasum": "695c50bdd4e2fb5c5d370b091f388d3707e291a7", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz", + "integrity": "sha512-D0H1thJnOVgI0zRV3H/Vmb9HWmDgGTTR7PeT8Lk0ri2kMmfK3oKQBolfqJuRpBVpTx5Q5PKGl9hdQEQNTXJI7Q==", + "signatures": [ + { + "sig": "MEQCIAn2vmj4VIvvjLSQOnEA6zusvw6v1nyABdesJ3ikk8idAiA9zsR39hUvB7K3RsiPt0dBnLRfZzrJKRP8lxkK9OSChg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.1.2-beta": { "name": "glob", "version": "4.1.2-beta", "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "e75800b358138fb78d7b664bbe690d2a0dc5f26b", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2-beta.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2-beta.tgz", + "integrity": "sha512-R6kzyQH2jSS3Xv19BCmAddEws9P3OEz8La5THa5PKsLDmcFVVBE1qYoSiRbktULBD3Z/X5xT15MxOcMDvsrATA==", + "signatures": [ + { + "sig": "MEQCIFURzyUL+FXAZszmK0t7IBCpWYlU/chU8Jogbc48Lq/DAiByp5K3pV/gVrPLY8SlwaibIEta6DBBOiPkOII8PtY5sQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.1.2": { "name": "glob", "version": "4.1.2", "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "02f574bfc533ae4c18776014a5070dced4ff25b8", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.2.tgz", + "integrity": "sha512-tudBXF7rK+njEkAo73NtDmqQlmnTtX6BilNqAcdUeMoz+/hbjEbCcToYnEFrtJeaUoh086of4hHpE24MsqaPWA==", + "signatures": [ + { + "sig": "MEQCIFzXBadxBGOPu4sZBvRGd/aocrzaEFn3wXHA6WTyiXqHAiAZTHRzexdJD5hYgd7Zv82UuFzznJlTOYyQ/uMXf5rzaA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.1.3": { "name": "glob", "version": "4.1.3", "dependencies": { - "graceful-fs": "^3.0.2", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^1.0.0", - "once": "^1.3.0" + "graceful-fs": "^3.0.2" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "80a6e1cec932cbea7e7188615328327b44ec308d", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.3.tgz", + "integrity": "sha512-6p/fA1A6H44+b2iApug7V4EEat3l4PA9+1N0Ri5X/lcs7sNoUc31T4z0M9a64gQbpuJvWJv5TwQOEXO18UvU8g==", + "signatures": [ + { + "sig": "MEYCIQCFKW88IWMnzrdkh5NlYBeSSfXC7tpuvqSW5l5LdVbYAQIhAM+8Dpvo9kkwoFdvwtgmqC3iWWWurVTF1SOIHDeXeS2b", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.1.4": { "name": "glob", "version": "4.1.4", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "2277e1ae742f5ca669aaf4d29d40a71f52447a2f", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.4.tgz", + "integrity": "sha512-HKVoNSHkHtFw03zFXPvZSkuydqDar5sploDmvzIIX6qvrvADol0KRSwuvN7zVGEhxWygMKR/pWZM0vLXh/Mhvw==", + "signatures": [ + { + "sig": "MEQCIH9qikhhVTXxqx35VZkGYdRtdgGti2A3wO8ci82HBw+pAiBu879WUiwKEIiDN9jHjrJ+OJnrw5kqaijf4KBajAPCVQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.1.5": { "name": "glob", "version": "4.1.5", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "d0bbc943d7fa0409a3450c9f9d6a5d6c4bbb1946", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.5.tgz", + "integrity": "sha512-kmxcBusd45xlyDnvDE9dOfEeQwPXDabZ/vi37djZcYRbV7ayy9DZWzujc2xO9OIVT5CkSaug+n/WixAPM0MB4w==", + "signatures": [ + { + "sig": "MEYCIQCHvwAtayFBotLue4kPptCkOKiQv3GnoQw+C7eUgdJbnwIhAL8qFiRM5qEJaCuvYhP/W2+Edr5jtUVPDb3QCTbAruKA", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.1.6": { "name": "glob", "version": "4.1.6", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "1fc61e950d2bcf99f89db2982c4c1236d320c465", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.6.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.1.6.tgz", + "integrity": "sha512-rRWexDVOn4kMYAAi6uVXSdgEXc3H+baohJyI3cJ/MCyIZA7edkc+jv75pWlG1bo3XdG3Ph6PCB9BzQupFEhTxA==", + "signatures": [ + { + "sig": "MEQCIFLodX/N4+c+UlfLqJlHKOytJkMVWvnXey94tqeZtYKOAiAggEkFqYor0p+sXOygD0oltsfPjoTy3wKVzFWa2wVTCw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.2.0": { "name": "glob", "version": "4.2.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "6fdc41c7d23b5028055ecf899229587635b9b689", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.0.tgz", + "integrity": "sha512-L7c9MXogV5Vy0tnAZzm+C+RcxI6W1zW1SFk3pOkd7cpfGQkMEMwRq5FHOTFMoa7WnDGiUQJLcZi+WnZdi3IIeg==", + "signatures": [ + { + "sig": "MEUCIQDWFh127MnD3qCLug7W4ZRZnloPfFPMIH2GGnXBJ4ulewIgBq4/bqFiBUPYY+CB+NPN/ELud3ZOIqF/R1h9EzHp00Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.2.1": { "name": "glob", "version": "4.2.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "aa04f06cca652ec724bc16c54cbdd42027d5c9f1", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.1.tgz", + "integrity": "sha512-egpQ4Kuo19cNpTLipVw5fh8UMJLHewMX34gHP3E2qAJ13VeP2jzZpg4uoaUYC9sTP6mLwmQDt/5VSvLwhzuGLA==", + "signatures": [ + { + "sig": "MEUCIQDssiDz8YiGm6EBd5jmvVJ978+m1y74PdTv9T7ru1hERwIgfaiOL8ya8VuJzEpiYhNFNW7ClyOvoNuL1DjsclXSqJc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.2.2": { "name": "glob", "version": "4.2.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^1.0.0", - "once": "^1.3.0" + "minimatch": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "ad2b047653a58c387e15deb43a19497f83fd2a80", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.2.2.tgz", + "integrity": "sha512-H4PDCzDKDTzJccMAFe0YW3hbtdOiKXcoh+Ef8wpum604UvUIjX8jEq8KNfRTnAaOlLtTv78UONLWnkPffiqdhA==", + "signatures": [ + { + "sig": "MEUCIQCj3SPkfmGtv6F+mGrP/vY0iYEa9hgNSgZEb/Y3D9nWiQIgB3cg2VCMT9THIeUGJOxLI7Y3VW+k2qisytQAz0fVCaE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.3.0": { "name": "glob", "version": "4.3.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.0", - "once": "^1.3.0" + "minimatch": "^2.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "f997613c65db52e4118708d1276cfb9383d6fae7", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.0.tgz", + "integrity": "sha512-k87nf3Uncr55khpt2sE2Y+bmCBi1Az5obxAOIT9UBRy/mWXE+bSnXq9mXHIqbId0H9IGHwKqKkPL1Y0Xtnkc6Q==", + "signatures": [ + { + "sig": "MEQCIEkI1DtQW+EsqrCgZXONmWH0MQjTOalrifQCeIqqw/BiAiA3C3/RYeutNBUu+LAFPeKNxjwf1vx3QyN68iS9cQyFyw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.3.1": { "name": "glob", "version": "4.3.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "9d09096f89b4d30949e784e83f312af3ca04ec14", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.1.tgz", + "integrity": "sha512-Zl/Xzacx5EtwM4dI2GX6HVr51L4wtykFzA/ZY4vV+SwxOVGA2n6cju3q8vea2Xy1zeaHLeRhgEtqxoDVTvkMoQ==", + "signatures": [ + { + "sig": "MEYCIQD76K0GcbgVrXXJu/JSGYIfb41sD95GRWuSfG8P9niEGAIhAK5KRwFG58o9U0Lvm4AiW0ij2kvT2DnRC2UW6aMIGRcU", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.3.2": { "name": "glob", "version": "4.3.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "351ec7dafc29256b253ad86cd6b48c5a3404b76d", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.2.tgz", + "integrity": "sha512-JYIXSTOk9yu3BUk15+HB0EmbO7bPUTSkn+I6j89d7iuXh7x+/Juh9baOGHW6wc4xI3VgCcHbVFW8e3Ru2pHJLA==", + "signatures": [ + { + "sig": "MEYCIQCHCZrHsRZy9ozQD2haXpas0g1AAIxm34Bjt/XeyKMmFgIhAJNy2ZaZujgmgUPASMYbes0/QWMGc1a4yLSyYQSXCPUU", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.3.3": { "name": "glob", "version": "4.3.3", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "6e9caf6594d61ce49a3f0ac2c7ad7c73f07afbff", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.3.tgz", + "integrity": "sha512-LR/wRIFDvmUnuvlrr2nlnwYSHccQk0L3LmuXl/kD881R0V1J82UshqGQEWAhDrjBCFrl1jESq+x9dZRR5XDO+Q==", + "signatures": [ + { + "sig": "MEQCIF2BZUn3PTyhVdr/MaI1LP+U2MP+sjzXyogKOG7SBJHqAiAA7jC9Mf+TtN8+zue2K10DWXRSCgwfpa9UVMzV5R1YDg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.3.4": { "name": "glob", "version": "4.3.4", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "~0.4.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "97f3fca7200e6b369653ce4f68b894882cd6f44b", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.4.tgz", + "integrity": "sha512-nhpuoUWkTW4L+QJDyz2AkK7vx5dmN8tVmb0gvOEskXaiCczljE+4Of+AfFG6xYllFGRXvmZaOzSrvr/3WcSB6Q==", + "signatures": [ + { + "sig": "MEQCIAUDSxozOVFVc9Wzzo/WZv6ZHw8To3gZsurILUU5L1HQAiBPuJdaRolqIDHtYeyr0yev2DInuOeDOz/inZvpqbXM2w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.3.5": { "name": "glob", "version": "4.3.5", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "80fbb08ca540f238acce5d11d1e9bc41e75173d3", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz", + "integrity": "sha512-kOq1ncUyUvkZdl7BgKa3n6zAOiN05pzleOxESuc8bFoXKRhYsrZM6z79O5DKe9JGChHhSZloUsD/hZrUXByxgQ==", + "signatures": [ + { + "sig": "MEQCIAd+DQAqmRcTvSDvOWAF/Xd4CfkN3ZQOrOY9sUzD9udmAiB3eeNUqL9FJRbDEPHzGofWXH37mgMuMDkbtv6DuhSykA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.4.0": { "name": "glob", "version": "4.4.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "91d63dc1ed1d82b52ba2cb76044852ccafc2130f", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.0.tgz", + "integrity": "sha512-GnUF3HBbfpPk95tylSIHbEPHLfpyBFenC+u91PZvgmGkbPqlTk0vHLHJwyDjHTLnEOtGSCmqT1BATsJSpC7nDA==", + "signatures": [ + { + "sig": "MEUCIBI8s1PsZHmQRwv2ZnQJpk4c1wtQcEODll7GH+pbWskMAiEAwrE7NF3ndjvz7BasRCR4BuYwuybRmFhy6jJSyYEF8gM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.4.2": { "name": "glob", "version": "4.4.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "3ef93e297ee096c1b9b3ffb1d21025c78ab60548", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.4.2.tgz", + "integrity": "sha512-uDfQml82dlkWsiYk+CdoOdJe09vfPUjTFBM23krHsaFuaC5/o4A5bLX95h7ccc/Fs/JjC5DuMwPgiIzTBV5WpA==", + "signatures": [ + { + "sig": "MEQCIGJ4klvYaDWjKFyDyEam03wn4PgWGya1FkkucX/WoA5LAiAWqWbJmAWWxkVHaumC4SM5P/kFsOMlPUx9P0v0HqQu1Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.5.0": { "name": "glob", "version": "4.5.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "d6511322e9d5c9bc689f20eb7348f00489723882", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.0.tgz", + "integrity": "sha512-eDrQCxD92Dqybu5aBoWG5VMgghYBckqon5jF4FpFJ1groSWw4inre5H2kPzPpKxSMr3B38OCVZFoUAGEnFwGag==", + "signatures": [ + { + "sig": "MEUCIAbf2KVrWMfDGK8EDwMwSUbtB1qouNB1Gjlt9x5JtxekAiEAid3/QadQFpK/8shddrYFEdn2T1Jl/ZnZEr/tTs+nMiA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.0": { "name": "glob", "version": "5.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "bb00d4e340932eb101dc2a30e4127ddd51ed15ed", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.0.tgz", + "integrity": "sha512-yDzsu+zVAh22VFLSmknJfWgsyuuyIB+dEFhtZVyF4tX6aUXElfvPtiQDHikp3fjjqs6WUSasPWlqdrmCOvIwjA==", + "signatures": [ + { + "sig": "MEUCIExGsBy4EnHxDw8JhStF8RKxcjaZCKR7RSA0qUJmM1WaAiEAs71FAKSIHWUGLMvT0wPirZd7B8HmRtRHBzkqIlvTW88=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.5.1": { "name": "glob", "version": "4.5.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "a5c7c6407ad7a8d272041c8102420790a45a65cb", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.1.tgz", + "integrity": "sha512-P3/TjFjWKJjGTC1U7p4HyhnghCQNcjv3zrGpclU2o7X0ZEso+M7b+8/4eFejW7YuTXPBx8XkYYa1GnNab+0Y5A==", + "signatures": [ + { + "sig": "MEYCIQD52ot+QcAjbej6oHtLVgZg69U/DDYxlNr4F3LAhZ4sBAIhAKtE446BLOz6BYjeTB4B2LsCoiDOFb+QBasnlXvsZdsV", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.1": { "name": "glob", "version": "5.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "523a401ab9397f71b0ee4f25d72f20cbc1a15691", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.1.tgz", + "integrity": "sha512-FHtzZy9Hf8Pawki/LzglE+zASLtl8x0ArPoC2/2oIxxiT3i+29e4CxvOoYl841xfwW6Tsws6L4g2fNDLTsmDog==", + "signatures": [ + { + "sig": "MEQCICrZoEUniwcRnJwlTD+ir6FtpdOTcVkUxG+G/8XpWXGUAiAuNeCCJbM/WEa0kaBJ0+dzBcii/nUcsPLTRm78/COdGw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.5.2": { "name": "glob", "version": "4.5.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "1204118bab03289c654f8badaede29b52e07cdb4", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.2.tgz", + "integrity": "sha512-ypWM3qCe7u53YTq1GRyWLWd9cnXZD3WQ5KpK+ZYnaOqG7XbJF63y4H9rK7aRr3i5yrzVMApUrWFzNXLLen+QSQ==", + "signatures": [ + { + "sig": "MEUCIQCDQTXHPlt+VLSick10y/B9dbDubIa8weWnGS6mZRJrwAIgYum/YG5rarVHtzQ2jfVyKtAkv+FpTxtX1G+2icczxU0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.2": { "name": "glob", "version": "5.0.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "78ac7605fae5e739677af57bee0483269ff641c4", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.2.tgz", + "integrity": "sha512-fMOENyrNFuYR6yAue/Ca2vvR2ICpsm6KZH7daa9rFO2n86/vwXOo1vijA8+dYsyaIY4cstHVd+we2jPvDL02EQ==", + "signatures": [ + { + "sig": "MEYCIQDvOupqUuMrPYM5CYngFBRPpkgBwHKLoI8/ySnRGIdYrAIhAIj4Uyd9H6S+GMVzegmi2/aQ3t8jt5+NURjSuOKTOlPS", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "4.5.3": { "name": "glob", "version": "4.5.3", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "c6cb73d3226c1efef04de3c56d012f03377ee15f", - "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha512-I0rTWUKSZKxPSIAIaqhSXTM/DiII6wame+rEC3cFA5Lqmr9YmdL7z6Hj9+bdWtTvoY1Su4/OiMLmb37Y7JzvJQ==", + "signatures": [ + { + "sig": "MEQCIAsj5TO5eeMBJKnaGecH+V/ghiPpljfNbfNO+JOGjE2QAiBBnmpwKJAZFkB+FiZg7IDTPBKg9uZeSCu0wYFXn2vf/A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.3": { "name": "glob", "version": "5.0.3", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^2.0.1", - "once": "^1.3.0" + "minimatch": "^2.0.1" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "15528c1c727e474a8e7731541c00b00ec802952d", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.3.tgz", + "integrity": "sha512-yUhfF1lGzpd9gmqwUpfkth+9T9tld5g83RkrvYmL98c1YVRgHLaBTJdoJjSMKI90GLKXf+eKm8DjhD96nOmNVw==", + "signatures": [ + { + "sig": "MEQCIEA5cr3XrEyOtSTWINRS6Dms/n4ZDQzoSCGhZ795gtifAiAxQgD04nAB2+dlGAVs+QncNU1BwjFSnuDDzi3ELPtfMQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.4": { "name": "glob", "version": "5.0.4", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "084cf799baba0970be616911ed57f14d515d0673", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.4.tgz", + "integrity": "sha512-nIkqtPfXlawz0WCYinomF7lnS0Gxo2MWz32wBSirIm2iCx0/BP4KhYkjfc53LVpz1F3IyM+mm8PhTxuwGWMe2A==", + "signatures": [ + { + "sig": "MEUCIQDT1RsGO8uVxn31Getu+CMmYUigQqU+LeR00MoKUH1s3gIgE0akyVkrIbkCIUuatlritjGyMdwpoGO6arKY6ogqtAY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.5": { "name": "glob", "version": "5.0.5", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^0.5.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "784431e4e29a900ae0d47fba6aa1c7f16a8e7df7", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.5.tgz", + "integrity": "sha512-n5ttBg32CBaIMp5S+DfcXZN8mxxN66+0HTkTuACRZ5LKJWcqjFQ3H+oKkdGYFfAgkVuMnXazf3c0Ah3fYWc0pQ==", + "signatures": [ + { + "sig": "MEUCID47u2zAGzY7Vquf+3bsOBA/3pdb49OFleEmlYfp9fLgAiEAgSd/EYFkkyw+3nU1FRX1sJL4CQ4TZeEh7Uly0pcK1ps=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.6": { "name": "glob", "version": "5.0.6", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.0.3", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "51f1377c8d5ba36015997655d22bd7d20246accd", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.6.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.6.tgz", + "integrity": "sha512-QcThOHvvODl+o1zkOhQBqGUFFiKFNVdNCScGukZ+KnWLiicDGMM1GNOE3K9wmU4WViDW7P83l2PdFQljXnFpkA==", + "signatures": [ + { + "sig": "MEQCIByuFwv6uz8+k6GpWj67nwb0nlH57dY9P7oq3FWebhFXAiA46LihIUyOFnk7WWy1SbnbvDpB1jiQEcEzsaqvSqDMFQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.7": { "name": "glob", "version": "5.0.7", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.0.3", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "9748021208e3fd7c3bcc7167ddbd2f1f94676a43", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.7.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.7.tgz", + "integrity": "sha512-CKR2BnCxBw4aDX25S1+MJHfTNFHzbAUWmq+M9tcWUJJMc+g/Zyner/QrHHBfPNa0DUWQlCDKzJPXLoLgbTTn/w==", + "signatures": [ + { + "sig": "MEUCIGmbj7Xz7BukcyQO2AHhiBwEOuctbk3Bj0g0gRjhlH9BAiEAiY65L+J5h8/Nw6Ewzb/zeSUMCv9m/XzpZw77tK59KzY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.9": { "name": "glob", "version": "5.0.9", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "79d1051c65b75020c00d449aa3d242e1ab0aee78", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.9.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.9.tgz", + "integrity": "sha512-gx5KRp1nOZwTh1drkYa2wtN2bgCnxs5P5ItGzal6jZorZYLxH+M/x9Ju/u1b7vu+f3YJjiSR5+x/Xi6H29KJyQ==", + "signatures": [ + { + "sig": "MEUCIQDH3lNaZ7deppctDQGH97qX2oRy0phfh7UqGD8pfbuIMwIgWjzJ4j6rf0hFB4JmFjwT8ptXgtGSZCyxjbfU2fgog30=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.10": { "name": "glob", "version": "5.0.10", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "3ee350319f31f352cef6899a48f6b6b7834c6899", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.10.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.10.tgz", + "integrity": "sha512-BwngbHV6VlIQbO37ciQvGWcTr1cFg7SyPLpwSXkLIBZ2dSX8+FkCQJO/2fctk8yRtBHTTXBLL47EnG7SC+O5YQ==", + "signatures": [ + { + "sig": "MEUCIDfIBsIRAuwXTrhLNHNvEpFfjZn9C07eIfEcncwi5TVBAiEArGJpNNXWAhvywlDnmPHXsx/EztTW38pTq0Hl5juG4j0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.11": { "name": "glob", "version": "5.0.11", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "ce1756b16ce00d804d8a890ab0951bd07cf0d2ae", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.11.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.11.tgz", + "integrity": "sha512-78yc7q5w6wTJ9KSbu5Eot8/ieXcI6LWGcDyiyPujDUKCLvL8Po7J9LS3+95S7AZnc2rHeoNLnJ9T/l0a1NBLHw==", + "signatures": [ + { + "sig": "MEUCIQDFhKNh00tn2oJGbl/UVm6I47Le9vzXe99Dq4nuXBNMxQIgS4JfdLq+w4KhfrETQORQ+9C6IBfBhMXK/v3BX6GIQKQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.12": { "name": "glob", "version": "5.0.12", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "3861d827ae59ff38d206eb096659fb0800acee27", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.12.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.12.tgz", + "integrity": "sha512-6DZh6LKLIoaHjQ2b30I83i+vfD2HkKdr1MCarwBZdYJG+IOPmnX/Pm9/6Rw3EhiX0XI7riJM78rlQaHbCt863g==", + "signatures": [ + { + "sig": "MEQCICJ4bp72L4xB7LYEHKfV0DYeem4OGPio/iH3kAfT4pquAiB8Kne5ZTzVa9OSRg0pcXxvFJmbm3Co+6Ryu3sF5BuaMA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.13": { "name": "glob", "version": "5.0.13", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "0b6ffc3ac64eb90669f723a00a0ebb7281b33f8f", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.13.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.13.tgz", + "integrity": "sha512-UUX7KcKGxsailKUG+md76uvcasQ+pwcb5X6o97LcqGobNvcBvXvWPvhAF+FndmzEXBFB9xdT2ME5DkzS8F5zIg==", + "signatures": [ + { + "sig": "MEQCICYp5xLqfxarGf0K+TLFZMd55/P0nCzHSwQoQwAGi1gPAiAy2wHBUyLlzyoMH0BT01u3ox4AvfHnXh0Fj2lxd5FwJg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.14": { "name": "glob", "version": "5.0.14", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^2.0.1", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "a811d507acb605441edd6cd2622a3c6f06cc00e1", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.14.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.14.tgz", + "integrity": "sha512-1rcw2zix4pUpRFlR3cV4xETcGbb0msEOM6hg6Gkg0FGEz3IewZO8fqSz/h7RoRGWYKm6NjTU1LJhs9vpfVrrQg==", + "signatures": [ + { + "sig": "MEUCIQD590Br+ONzKb8ZDhSe1gjtmuXdIV8+ezqSYYUc0B882AIgBqJIHGABvNfOfXcULnBbssa3H2uwMN+s6E0gTCdUC04=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "5.0.15": { "name": "glob", "version": "5.0.15", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1", - "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", + "signatures": [ + { + "sig": "MEQCICSF1b1kLhbpPCJ1kpa+sSdfLCS0077AIfADIT8Nq/01AiB9AnrJiCaob65zOkQjcQsOYuwWQGpQUXmJCtDpXkmcZQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "6.0.1": { "name": "glob", "version": "6.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "16a89b94ac361b2a670a0a141a21ad51b438d21d", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.1.tgz", + "integrity": "sha512-kDh+dhHZZb/oFY9mI/Dj5vra6A1X+KzeDEqQ6TdY4Cd3OpDv/mLC4YgyQse+u+EXJhjfdmwYkwl0QRvgy01mUQ==", + "signatures": [ + { + "sig": "MEQCICVw/NGfWeHh7ygwiVf/zFPU/2CyDS8WIbO58Ky7SKaQAiAhTsfNmDFhtO+/vdcTLNYzdMXW7DuUL9e1+Q3uXE6F6g==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "6.0.2": { "name": "glob", "version": "6.0.2", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "4bfaf2d6f1d89a3d95e9d4660bd88faccce00565", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.2.tgz", + "integrity": "sha512-JooOqUzAow8HhtRyx4NryS/iAXAedco+J6gi8S79bwEVt9bIuHspU8LTrydOtcfzLh+HOWH9OwYwuiQEgFHdFw==", + "signatures": [ + { + "sig": "MEUCIQChmEm0vAQ19FwoYvISO0mWtiyDPLqJiSKogtyIGo+jggIgPrRPSMnkSRzeM7DpCxkccu+NAXzNC1sBfdC3bO+59Wo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "6.0.3": { "name": "glob", "version": "6.0.3", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^1.1.4", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "5f02cd89587ce58b154ae0855de02a2e63986fca", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.3.tgz", + "integrity": "sha512-Dduih7Ur3A689wMJiNkamAhdGbPISfdhJNEA26xA5glc24gvjY+3YAkVkcCfEVu8X9cxzHeJSK3T3m6iYBWb+g==", + "signatures": [ + { + "sig": "MEUCIFPXvyl323nLigNaBUp1JwS9BpRsqQpNcqFoKyIoLbHxAiEA2672H0AR8lTR1a9k8ymSSeluTFRm0sQmaOrU3i/8V8U=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "6.0.4": { "name": "glob", "version": "6.0.4", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.0.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22", - "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", + "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", + "signatures": [ + { + "sig": "MEUCID32Vg26xYO0/3oY/dyz4vGw9iILyjMWdXVkgtUoAskUAiEAuUXRcCcvmzRelIws4wSzKuth8wSwcyOkcMIFXfAdog0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.0.0": { "name": "glob", "version": "7.0.0", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.0.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "3b20a357fffcf46bb384aed6f8ae9a647fdb6ac4", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.0.tgz", + "integrity": "sha512-Fa+aQV0FFMU4/Jg5mquHjv5DikTujeAWOpbGa9lsG2Qa+ehYxbGN3cCY/T+C+jAS8gKBnYN2MbrdNm0UCAcp7w==", + "signatures": [ + { + "sig": "MEUCICbS3ZjGX8rYMavXnVfl52CMspzMO0wAS0cxcZTEvSVuAiEA5SxKa/RLia909dJyidlb19VlOCX7/y6Ow/22HyGNhls=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.0.1": { "name": "glob", "version": "7.0.1", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.0.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "2bc2492088dd0e0da9b5b095d85978c86c2db52a", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.1.tgz", + "integrity": "sha512-mdlW46/bzjpPEKiVNHrb3bygt/dsk05a1tGLxkaDzlmMT6l35IlzDVWB8Ym1F42/0EwLcVYxRUF0brlW912fBw==", + "signatures": [ + { + "sig": "MEUCIQDBf50yNg6ZOEElIBWv3JB3qeJQcm10lMh1Jy0Xo5ENxgIgDR0DHBO9Z1Tyucc/Uc9EjR6owz0BK97B+hZJybGTAsY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.0.3": { "name": "glob", "version": "7.0.3", "dependencies": { + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz", + "integrity": "sha512-29GbP/ojh64xLytvuPybLeLD4zw5fO8XoHkGujSGJI4qRilQ3czhFdnlVVrdH2o7DZ4pgyqNgDafaF0EZIU4oQ==", + "signatures": [ + { + "sig": "MEUCIEs2G59o/nKiXqqzUtSIEtJsobDgY+pzPjnNlwo92N02AiEAtA/PcaQPMddcTiHTe1hQkX7TAjWJME3qdFF9q4zGD+4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.0.4": { "name": "glob", "version": "7.0.4", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "2 || 3", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "3b44afa0943bdc31b2037b934791e2e084bcb7f6", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.4.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.4.tgz", + "integrity": "sha512-3tbJl15hKbgLoSBcHv5WCCrrMnjdXsholv2YfBgX53Tx6IRkZIJdLDVROiFtl7WT70jbzFd8yxgwZlx1p0iQdg==", + "signatures": [ + { + "sig": "MEQCIEDOHRK2IodL9reLFhCi1SlHo6uBrwcmxTW2i95Ofml3AiBtmM/HwLU04M26M/xcYXbH9w1sR01ixrY+tbK3pv6Q6Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.0.5": { "name": "glob", "version": "7.0.5", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.2", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "b4202a69099bbb4d292a7c1b95b6682b67ebdc95", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.5.tgz", + "integrity": "sha512-56P1ofdOmXz0iTJ0AmrTK6CoR3Gf49Vo3SPaX85trAEhSIVsVc9oEQIkPWhcLZ/G4DZNg4wlXxG9JCz0LbaLjA==", + "signatures": [ + { + "sig": "MEYCIQCjxGP43JOjqeqZ8srm09/BqSpBnd/3WKLjZDiRGbitBQIhAKacOKqal7avmtDc8qXiLZ1IRo82KB81/JcQ3k8vRFiT", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.0.6": { "name": "glob", "version": "7.0.6", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.2", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^5.7.0", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "211bafaf49e525b8cd93260d14ab136152b3f57a", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", + "integrity": "sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==", + "signatures": [ + { + "sig": "MEYCIQDhzSmJvVW651L+4MG/ELkNEdAk6p3EY54YfBTUxEkcLQIhALDacMRbFUwQNqIbHCVcjHy3QQ4ssJ+RELiDA88NyDm0", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.0": { "name": "glob", "version": "7.1.0", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.2", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^7.1.2", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "36add856d746d0d99e4cc2797bba1ae2c67272fd", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.0.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.0.tgz", + "integrity": "sha512-htk4y5TQ9NjktQk5oR7AudqzQKZd4JvbCOklhnygiF6r9ExeTrl+dTwFql7y5+zaHkc/QeLdDrcF5GVfM5bl9w==", + "signatures": [ + { + "sig": "MEQCIGBnhgB9mh1yrmYd7FrCIuz1VWCDl+amolY5DmnKE6rhAiBNwArkZ+sgUfZDIfyyChDMUAsduUEADwgQGiS8rWqwgA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.1": { "name": "glob", "version": "7.1.1", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.2", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^7.1.2", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { "shasum": "805211df04faaf1c63a3600306cdf5ade50b2ec8", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz", + "integrity": "sha512-mRyN/EsN2SyNhKWykF3eEGhDpeNplMWaW18Bmh76tnOqk5TbELAVwFAYOCmKVssOYFrYvvLMguiA+NXO3ZTuVA==", + "signatures": [ + { + "sig": "MEQCIFDsCVj78esOxhixW9A0SJ3r5X6mTys8rxUR4RQjDHdtAiA6CQXTdd/d97F4HM2bDt/yTa0ERIcJXpBzr6C4XzaBoA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.2": { "name": "glob", "version": "7.1.2", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^7.1.2", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", "shasum": "c19c9df9a028702d678612384a6552404c636d15", - "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz" + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "signatures": [ + { + "sig": "MEQCIFA5Hh4/l+ahhxedHnCgRwGUpyK5ApE7Fx5GIJZq1AIUAiBkfHs0XjKfxwbgwvX6X0ljZytq9IWkAW6r2BbYlpt/Tw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.3": { "name": "glob", "version": "7.1.3", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", "shasum": "3960832d3f1574108342dafd3a67b332c0969df1", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", "fileCount": 7, + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "signatures": [ + { + "sig": "MEUCIQDap2mGqD66HQdFYLO1ckjf+2Jrhje+aekg6wmV0GKOpQIgQBnRuXkhnyo3Lpaxssm+d49x6SElGybSvhxuCKqhI5A=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 55475, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbg4aBCRA9TVsSAnZWagAAFakQAJEEhQHnRwq2gcIVYfKv\nwVy9B0fSM6X2ezWpDOHPL6XiHV71AmvyTp3zVXYJctBG5hvyQFsgxtkCpwnt\n7AI+NzIa71tV1IIwkeRaW8jdjROKUg3AWdB/9TDwuJOW0ecyyguDPFfgc4Li\nNBA8lAubQKuFEYuv0zlkFbKM0ApfV9IDveTBjSN7gFaG/1FiNyrWhBe2h95M\nNGWGSlswJxNm9d7S8XtpuiBJckpbfnKni1MCgTN+0P0xlXZqhGozrHdULm2N\nAGTaOTyQKgJ1pN/8BVBP+xi88YKXeEQPptxF/SEdOni/NJqgnr+2Rue973yc\nYswdegLnPGvoUX0c9sP9Q7rGdl1N4o+j6Tc3r+s4leP3QMK6t0wUE/4RYLCm\nPKyNtHBID3cqo9EkjXp6s19W2ZnizlEWz9hIE6IfaQrRJdcW+6gCaU8eDGWQ\nIWA35PCdxrYsi2PTuPUXP1Ly+neqmjYuR8/MxH+FPZKWi8kobGFLaABb/CTy\nbq5JYDXAkww9a/G8VWQAjwaCCgXYqO0jjw10/Jp67a6XyJDNTzzK3hGs+CB9\nFXe/0lgn1el8PTBBXPZpNSAVA1FNtbnB9ZybsF0SYBsDV3YgDFoazG/OXvHG\nb5czE2492OGCjvQFrD/6hwr9umzu9efovdPG4IlolFx9gTngy2cIy8Lu08Vs\nrQef\r\n=zCIk\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.4": { "name": "glob", "version": "7.1.4", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", "shasum": "aa608a2f6c577ad357e1ae5a5c26d9a8d1969255", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", "fileCount": 7, + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "signatures": [ + { + "sig": "MEUCIQCB9eAdh04Sf1s9g2eG9ISNOvlqQAoHjRCWsMTRVvbytwIgEFv5OCwh5fdOiKaVbS+s7bLwhaMIWbBs1E8/z4j9MFU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 56003, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0iaOCRA9TVsSAnZWagAAWAUP/31a+B7jHSZ+2XWFrp6e\nKNJ46ufxmW5pmxzjoJfzLLSbj55aiSiN3GNFDjLdaLu2c5UHpOOwKhjleptD\nHLMR4a6NwhlgEUDineVVr9DAboqhydBijWr3rbhLJ4egWb+SxwUHHGf5MwDa\nObgmhAzQicpv5r1SjLVWRCd8q7fG2XBRdFcQ5qNmwiD5VFBVqkSsnrzL/pbv\nLFYBxgnQvonGknEiGzfPlZvSyYvhkN+5sZ/w4wvuUPITGAXu6A2A/SeWTGsx\nySkn1tG1GKRRL+jxeGfZFAxtD4N/UqSZvCweoQ4khap3gZbldPaC3tVhgQKR\no8XTutCH4A3dzCAyCQwP66EzsZ3nJr+htau9igZmBw/BG7sPpBnUaodPxbN/\ndjuf4x5EhLX1pnD7Gt/PcftgdwmtuDdd9+uSc/aPmW7i2x2zxqhO/5w/MufY\n8qH8/reQeuv22OJP1WOWHkPp9KEpoHstOMoX3cn6Tk68olG58LI6jw+RQ621\nuRbRhqrRZylFtg5pwSMGkahpCmpI7VixarVckiGC3y5TFPBxoPSRSkNQV0Xp\n2bOABNhRWsvotnjOv2FbHeiX3VAzXy7jNFaIWmoTpDo2+dfzRKt+hgoB+lTt\nT5hyPvf9ahC4l/+Jq1Ph2Jyvsu6MkfuI26MTcXKqCrf73l2YodMy4Hvgnfdo\nplU9\r\n=z8Vm\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.5": { "name": "glob", "version": "7.1.5", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { - "integrity": "sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==", "shasum": "6714c69bee20f3c3e64c4dd905553e532b40cdc0", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.5.tgz", "fileCount": 7, + "integrity": "sha512-J9dlskqUXK1OeTOYBEn5s8aMukWMwWfs+rPTn/jn50Ux4MNXVhubL1wu/j2t+H4NVI+cXEcCaYellqaPVGXNqQ==", + "signatures": [ + { + "sig": "MEUCIQCpctbqJoPHo4ldCbGHhGOCZ1v36lFXp27ke3XJ2uav5AIgWWCysnVJo4xAF6bkaKsR+tfXm5xn7NBLZQQXIJl/sYM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 56024, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdreXYCRA9TVsSAnZWagAA0boP/1rKFooUk4qEt7D0T8wk\nsSFy264ZSYcr9DnzNkad28CJRK1omWtwvgPWCYXNfhaiCEjIv/nkI6A/9bjk\ndpqT3b1xfiNjci/PlGXQTOGnu+pNgfcz131rbyf6bKMMaGT89zEuTJQwNqFj\n153YG6tZhqHa8QMtzR5l+gVIKuU62jzvFd1b/INoIe5C8HcC63zPtSOQkiDd\nSJ1MR5dexe34ZGV16XK5uMq0c7dan+lFOPo9zogAQ+8XRNV1QV7CzqgyL2gi\nGcXAjofk7y+7+K62OT5t634Pycm/tOcoAOW6ZkAitPBRizBJfHUb3OpdPGN4\nRu1p645dBXGvEIS8mvwqKDMzC+itbH7j1KRobSpiqmQL2Rr0oJhPUhaKY8gG\nHbVf7/bG7HCNX3o7Sl7udA7aob1MTZ0rPil3Xlm5bZq5MZ76WcSswjoWlOUH\np+zk2ypO+BVyFEcGVf1lFEAzcGRndAYleXVQXu5PCgblHlg9PFlmWhqhHog0\nlTJSd6VNndDPjWbvlw+y1tE6OzvgaP+r7Wo93i0mlXvx7tSCC7FHpXiTtZ3L\ntdoGyCXzJkvpS9D4ONiQHf/bxNb2XrWRY6SjKOdtOU0nZZeuE0C35FNdPRXD\n0SHaVWn71WY1wJdaLp7z7Y7J0bO1mOtmwHkAxFiUd/pPhRQcyXrcEeKn6rIL\nag+l\r\n=3wAf\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": "*" - } + }, + "deprecated": "Glob versions prior to v9 are no longer supported" }, "7.1.6": { "name": "glob", "version": "7.1.6", "dependencies": { - "fs.realpath": "^1.0.0", + "once": "^1.3.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", - "once": "^1.3.0", + "fs.realpath": "^1.0.0", "path-is-absolute": "^1.0.0" }, "devDependencies": { - "mkdirp": "0", - "rimraf": "^2.2.8", "tap": "^12.0.1", - "tick": "0.0.6" + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" }, "dist": { - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", "shasum": "141f33b81a7c2492e125594307480c46679278a6", "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", "fileCount": 7, + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "signatures": [ + { + "sig": "MEQCIB2WATrI87TydEVOKJB5AMYFzqOQF9XFsI+LRvK3ybYMAiBo+2l69ZQbg0TcNsZ/zhgiDJFrnv/8vRdD6nc7PKZOcQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 56092, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdw0QwCRA9TVsSAnZWagAAjLEP/RMBPeURbtY+967kK0L7\nanI3M9tDgLszarm5ruMrQkxRFBKwg1RQgiH/a0bTA8T51s7Ztn0DdJp62rKs\nNBpm8Mr3EhAs0L6VyDHtDFXsz4y3MgXEEhFXSRCIGzYWIvKVr0iXeTnPorCX\n1DviAA8h/sfDQ8027Z8Jr1pQIrAbAutQ4X9qllVFcToUoG7aKOZ/LNy3JOpm\n17cFG/60jcZkzkqJZwTHwFdj3dk/XQnhqnsFSy/U9Mc3g8FU9omLRgy+0ugB\n7hIhdhTHFO8Ae6fyGjF4T2UboDq+ubiYF7W9JQPmR0rAV5QykwxGkjshKOkH\nbRxqiYRUHOkmIi1Oc3jZjNWtWNxVbrrAjlD3UMjycH8Cq1D+Jk696n8uAbiH\n4oMpZOO79UaKc4Yuj3t3cOpPyaFZlLmsZOp+1YbtB46okc8dQ/+QdIad8OCb\nlyBaspVbvsuRYf2vlQfC3gDc8gM3bxdQguj/3Di2OJlTTPNCfLVmyFIIunRY\nh6QL5laFnrWc4sEZrA2tP7TA34aUkxGKEgbvs0QJzqVsCOsWD6ax4Fda2jFK\nHcEhusOa0shNpqzZo2K2kPBxMo+hFipFbBG/eb5vUCd71355y5sF1g3lK1Lb\nl1A3yzOLy6ZHPczWhjqZ31kKjfk51q4avZ2Mzym2TFcs4vZzHmbGXqkOtF3t\nEK/U\r\n=6j8m\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": "*" }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.1.7": { + "name": "glob", + "version": "7.1.7", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "3b193e9233f01d42d0b3f78294bbeeb418f94a90", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "fileCount": 7, + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "signatures": [ + { + "sig": "MEQCIH73h9b1rssfWZtZ2Rz2cJEJRrdKsVOxnt42xWkfZmcnAiBePp3NuZkUarfjkE43tin1f//IBAKlJpSvVxznT5wcjw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 55910, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJglGLUCRA9TVsSAnZWagAAIJoP/RglAn6a7L20+c6q7znw\nalcLxgcPltIttm2yEQ0DQ7h8HyBgZONAQW/S1LikbFT2sh39WTCEcyCumDS+\nY/9xO0up4FsrZZ/nDTE6X87Qvih+DBMTwDgxaA6JVgNpN5xsSakqYq+UqIZ+\nmPbd8xEVJrwew2BaabzqgcJ74X3/GCe3PgcAApazShbHI8gfIVW8LXUl17cP\nuMzMxE5L6rlEuRI8kSF/XogD6WR0YyB8Mfhj/3Q29yjwhDXBgb3DXqoYGDGO\nuPpxacm1W4YMW4cdvdc9QQxQDwLkCJXxWiYJY8rtdsoYpc/7ffIJwOadZFzV\nZMuCoych6KXdNBm0PNmL8lzEj0wqCN0BdmmnEVfflu5hT/uBU8LkbrAG6pqu\n7DIwkBbZZA9RPEqbLMC9VjCX1KoDne4bVjUCI4kp+WBsKcpVpXwdoUCugXNa\n54zpddKxoP5BgPT8JdEnwx3ZnH8nPZoWGhFAONfmLRMRlx8sZCnAZD712jE4\nKWEeW/JgevVRoiuxQQhTLzTA/euYWnAv+8O/lVTzs4TQsCt2UwTCIPLyJbod\na2Mjzicp8rZeBXNoDa37CJygC8b8QE/bFgc4vJhVQOvyu90VWgceyC5oQaYF\nRdMevnJalhY9s52yvUWYbI1p10nzjLKDpLmpgZiJb1cH84XrFoKqKWuVczDz\nvHp9\r\n=iHVN\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.2.0": { + "name": "glob", + "version": "7.2.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "d15535af7732e02e948f4c41628bd910293f6023", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "fileCount": 6, + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "signatures": [ + { + "sig": "MEUCIBUe4yb7k+7PjmxAyIxLbYaOw5e0Vplj1fxRd9dqMTY8AiEAv+tvOjXHPYx3rj9sWBME4quzrIo6V+Nw3igFJGdPKoQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54742 + }, + "engines": { + "node": "*" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.1": { + "name": "glob", + "version": "8.0.1", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "00308f5c035aa0b2a447cd37ead267ddff1577d3", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.0.1.tgz", + "fileCount": 6, + "integrity": "sha512-cF7FYZZ47YzmCu7dDy50xSRRfO3ErRfrXuLZcNIuyiJEco0XSrGtuilG19L5xp3NcwTx7Gn+X6Tv3fmsUPTbow==", + "signatures": [ + { + "sig": "MEQCIBKIZcYWdZGxQ9F/TTV+IvGX4A9J6qzwbeRS6GIuTjKKAiA+DHEvVK3lmLDZHVtoAWW4StiaYtNNJ5RIw7jmuuaodw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVGRxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqaTg/+JmUbtDqjzRxiQPXmtjgoAewKQK39VBl9RvQYk8nCVzk1bQ86\r\nFCydEAgujyCE69/hKHiPQizUsR0iM3imQPAMryybidB3Yojo6/srSShuNCtE\r\nvRiSHvJxpXlrCJl8kT8//yITpur5yLq27R82obhgED6rZnmjsHosPFM0SsNp\r\nBI0TNcxHaJR7DqbJgiMoTguXTMbkVMXqtUY7nBvLoERVNrGCnhP1ToJ5eUYP\r\nSzonyagK3VttlMfCGIwTYQWwn0QlGUR/wbjq3T3i1s+fI6J2C0jKgQnTjJAu\r\nMcB19H/B+qw4VUDiECRG+BA7Kh7cS5Sv4ZAo5Sd8k55rAqCmpfXjRp0osqKf\r\nmD+GNgpvI23rTF59rvUsnVZuwHugrS4+GmRaOWsaWSNJeOwhUJgQRX2rea0y\r\nu0xp1Trtk0VrvcD4ShYGVRTj26Ij/JrB6ORShPcB3TIpTcb2igCr1qkHaAFw\r\n+lcaTQRzP/rJ7chzbrE2XILbU2luz3EmIkz67fAaGx4hUx+mdOSvumOjDyh4\r\nk08uAbw0rAGX1OP0OOEVghOPBTf56yVZgX4ve6lf97MDDCdvTUDeyRSsfD9j\r\nDyXEdQt81FUF4eFwPTDOcdoNg8NmnHe2y9Td0Yo37OF+/oiMXTr0eivf9cM+\r\njHQ2fnMAHwsmuJek3i3qCLDuFQ/gNLJUDrg=\r\n=xv6c\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=12" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.2": { + "name": "glob", + "version": "8.0.2", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0" + }, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "1b87a70413e702431b17d5fb4363a70e3a6e29de", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.0.2.tgz", + "fileCount": 6, + "integrity": "sha512-0jzor6jfIKaDg/2FIN+9L8oDxzHTkI/+vwJimOmOZjaVjFVVZJFojOYbbWC0okXbBVSgYpbcuQ7xy6gDP9f8gw==", + "signatures": [ + { + "sig": "MEYCIQChH42Dwxb6XL+VthS2rAMspphxjscBXBiIyJOir4C28AIhAIC+8edg0uw+kQDHTMYX7AOUABxihTxhD3N+brWwDIpy", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54882, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifVdVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsiQ//aDZAWr5t4Yd9AP7AI3M3LQk+gBOlXlu7ZYh6CyCj7MAHzSw9\r\nHdMKRs5HZ+AW6Dnyj2Q76lLLz2BxEqi+xz4rzkBsatVALJu0I8w+HHuTb4Dh\r\n0wT9MZEcUZWUsmhUZgYohQffkiyokl002Re3zELfF3xQRAjk9hXBGUdwGuR5\r\nCAmiJ8E76akgFQbGYWf7pZso53B2piAw3IdH3X6C0O5NQe4vBeBgUKl78zKu\r\n5NWJQv1l5OzsxPJqne3rFcFJJtl6KxNweK2E4njCAWFbNGFG8twq8LUA3ahE\r\nMPn0f4i2+vLqu4fOBj/zYgcH0pajC7FGkNckqtNEziz35EXROqEuJ22+DFkW\r\nSROinidKPGoOPdYutUWoJx2NVHPcEsdY6om/ozKMjK6SPSIR8fBOweQZrsXg\r\nShhr7uC4c6YQo2o2vy7yE/WBlUKaBOMYgXio0fqedyojd/YioTiInklSjTB+\r\nhrZ5G+N7SjKyBRw6aJ1G8fC6AZyo2LN388CrtsU29NPulHzw82P79axdcyfU\r\no5Pevh3zMAkfF08FmZxy2CISCpmAlPNdqWeM1R5A1HTv/cg5UeUGQpnsft/l\r\neeWtXJR0e50y4RqYL/eKGnA+E0NR+W5EYhydJuTp572zVIZTlFYHkeY7YqTv\r\nJmgDIs88V3uXXFuOcwf7oAsLTAaloggsDrk=\r\n=jeg+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=12" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.2.2": { + "name": "glob", + "version": "7.2.2", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "29deb38e1ef90f132d5958abe9c3ee8e87f3c318", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.2.2.tgz", + "fileCount": 6, + "integrity": "sha512-NzDgHDiJwKYByLrL5lONmQFpK/2G78SMMfo+E9CuGlX4IkvfKDsiQSNPwAYxEy+e6p7ZQ3uslSLlwlJcqezBmQ==", + "signatures": [ + { + "sig": "MEUCIQC2HhBnV3e9fnxCtTxCwsjsBdIOYwh0eQyA+P2/7edDpwIgYrT7ghW9ReBWHMT5M8g20iq88K1Hpvv0xkFmNYLH/uo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 55063, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifpBpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoocw//c4GlNgxntFa5j48M4S2i1OcuCauH5xZt8PZqkXxoIxZrIQCH\r\npyYvJjfMA+CUpH8sFsBCmCNFr5SsV3HRtZd9wSjJTkxJs2g/UwvCAN835S1q\r\n5uSuUTI6+ms159zHciGdKMC8oSCit26EqXYwdOUaijM6YaIOg46cSHqvATeT\r\nWi8CD+UQH9ztMdekiTMscYEKeJhoO5ujl9bgDxj4J3AOVCPYIHNLTWkYVuRv\r\n5dkipSJfB6uB7eN0U7Qsex5mI/9zwX/edeTD04ByMv3ntPnJSui3CbjloJQf\r\np3g6ky6tispqRTDfzAxJzP09wSjlvInTUoGitZ93WDnmjdSnTXuSlYb8Lo3y\r\nWMvbDvkP4/QGX/nnBMS2xJSB2ian6HbT8anX0GSbO/bWKvla4JHnIXWQ+pf3\r\nSSo1XXvO6RQhjbxqrgpCth38mrJRuK2cbi2KodA9bSgcXuC5wiVWV53oyNxp\r\nqLcslVoH7pCSlDhxtiIoec3ETIq59pCVon7a7doQiASXG2fQGyq35cUrxm6h\r\n/Ua9nkKlvaL1CGAhfScJoJV62FV7MpGiKl6BQ1J7NXbWiaFLfkmwBmKaZJ0C\r\nGRfmiMVMbhzAXmrZ58VYwAocdNHJfIvb323EAXWLjLvJKaqPHT5SHIhAIKZk\r\n1iNqGz5V84i7qpnIkn+BHrZCBjCLWdnwe8k=\r\n=rZsG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.3": { + "name": "glob", + "version": "8.0.3", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0" + }, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "415c6eb2deed9e502c68fa44a272e6da6eeca42e", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "fileCount": 6, + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "signatures": [ + { + "sig": "MEUCIQCSNq44cyQRp/+YqAVe5wMwao5o/wACh5UhkXSuITJDXwIgIVOjee7D0hu/fProb9LV6eXz5fz+kLsKnoYUkdyvLag=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 54888, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifpCQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpC+A//cawJV7w0mJCrxiM416gPt3RDt0NOtmdTrpTYpsOc1VQcddq3\r\nnex8sq7RpqH1OVJUZN8Y5TqhFers9+b9bfx5mg2Mcub+CUrj1E9VCGsBua7A\r\n0aZyAL4nMwSOARtH60L9LI9QsZTWkmP1BX8BNfncdP5HAGP00Tj2X5UnW/C4\r\nzYdTknbZbQ44KvjsBoLKG2YzzL8VqupHPNNWjQAuMYU3fNd+mwzDUbQ9u9fJ\r\n4Iy0GE107ayF2RKq/QrksGdRd35pdE9J1fPqgDLw47WREif/+upBt4ae36lk\r\nGSnkxh++DgHy68jN+FR/AT63ACjBSj2zyGBlao7oaqSuLK+zRtwLakVbyNX2\r\nRBqg7BnsdvrRD/67NArvJjs0XLoGVKUl+RIsOedZQXnRUkFIUqKc/z4rBUgg\r\n8RoJTc+pPpryrCz1GCXpzOVVlR+WXjeT4KdWgZg25GrYco5HDg0dsK+Gj4VF\r\nPwGfbt/+5Yoo7Nz47AU6Stev+MpRDVhz4EV8LX1/Zuuen0es65KhJhg7fRCs\r\nxjd4Jj9jtISfY/iAluieFYCJMqpdzEHF+c1IuLene36x6Lm4TqYAIGDwQx8D\r\n9sczfUA7j+VC+8hb9UkmL9FEd92zzZ4SHpFxuO51BehhuSm+OcE7JmpqpRlH\r\nPrljFZcybXTJ9R3qsc01EmxPQo2WyO9j0Ik=\r\n=+5MH\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=12" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.2.3": { + "name": "glob", + "version": "7.2.3", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "fs.realpath": "^1.0.0", + "path-is-absolute": "^1.0.0" + }, + "devDependencies": { + "tap": "^15.0.6", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b", + "tarball": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "fileCount": 6, + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "signatures": [ + { + "sig": "MEUCIDE4qmKAbJI1BNug7/2IpHvjk34XjYrTyYJQt6wmjipFAiEA+3GoKlGbIW+7dloZtSwisGZJaFztJowqCHye7GZirDI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 55064, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigRG0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmre7A//cbIznRlRXwGKsqgVQq6PnM6b1T3ipVFteb2GWeUGutntIQBN\r\nJ5w3VzMFVvWX8UvcQMvAKYjWIiy/Okq3Ym0EtrLT0k7FmlFPHKMc2JPS4f9U\r\njtJjyPaIHnL6sDhmSodwDOqybqETTUDlLjG8A+bE1ubqByCsa8ouxoOTQvUV\r\nUG+VhPktG5VT2FhQjP5IFMuu/nRcFLg/Hr6awUlO1czCdhJ19msI1l2CeIVb\r\nCe8i54YPTVNPnwtAwPBefV4zGpJM9M+fItMm5dLj78o+1tomW6iIGIsMWHCO\r\nDmF7twk+1h3nyiiCgu8B49NaDFrFnJZQ8pHF7nQcthk6Bxt6KR4taf7mg+QJ\r\nIWONQ9ePRBKjDq7uNSoz1XNUE62/bJv1PovVRga7bqmVr7RxH1gAS0KaH0TV\r\nrc7HLMWVOdupnRDlPjTL+rkoUmajWVg6C3Y+3mQ59mrru0Ux2fK3gHxfuErO\r\nUHnaTSGGlEVQMJHa6XDMLdbhC6kUNu5BCxaLiqeBvS7r8gYnJfR644PhEyZr\r\n/NMYXVkzapDBd1Jd3b713yTv+zfcCpy3RqooqecSSVyLqXxQ/a6qPytAwkrn\r\ndMRQJmFMnaHfE/fh4pAJcRdI9+I5T87eMPbmuvDnbxwzMXLnaAe+vxIa7u+L\r\nhxzMH/SiC8ztBaHgNPzxyptD4LUbDqx+X9s=\r\n=co+l\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.1.0": { + "name": "glob", + "version": "8.1.0", + "dependencies": { + "once": "^1.3.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "fs.realpath": "^1.0.0" + }, + "devDependencies": { + "tap": "^16.0.1", + "tick": "0.0.6", + "memfs": "^3.2.0", + "mkdirp": "0", + "rimraf": "^2.2.8" + }, + "dist": { + "shasum": "d388f656593ef708ee3e34640fdfb99a9fd1c33e", + "tarball": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "fileCount": 6, + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "signatures": [ + { + "sig": "MEQCICNZRO77M4xv09dE3srZkzL1DlG+MtImsJJVsSz5EsZfAiA/ClXeJWttytUmrRUvdPlXW6P+DrDkvwY5xoDVmF8TFQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 56156, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwy41ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpTIw//b9kRgV2SLyMqxhhq0aH+19Y9H7O14GpW3DCuSuqdr2qqNXas\r\nOku9PpKEMt5GbpKjuwfjEnlZ3iu9jUWxxFSP/loKMnsmq/WBMlRxW4/swCKs\r\nsENll+f/OI4wJE1fRRoOhx/yAmxxnvBiM3dCtfCWdgIftQ/4zKhJEF14r2e2\r\nx3UWLbYGknjZf5dpgXpeRnjL/aNoBOAK59m/AO2Siq3s868DOHDMvQYsGj6p\r\n8eHp/OYgb09gwfL4eOFVE49OAk7Ol0qBFUyykAr6DKgrKgU34Mg4Be04lUVV\r\nhDDSJfK+9hbkXgIIv30jf5wWphpYt2enPerLovLdFWKIkEmv71lx200Qo2IZ\r\nZkj8AimiVYgSa3MItYiFMQ3BwrMD8GTIp8IaUuEp+VFsWfbrAX7IerVW5V3e\r\n7/E3V1fXKysc1fChiO0qK73lJwOBNWOhO7ra6uwvUJt4uYU6f8Vc2Q+VJWhb\r\n75qTjqvzsOPCdgJF9CIgDBR9aEoOgOwk67KrZcPiuhUQH1hvWd12R+NQ9WkM\r\nUBzrtEa3QKfBihucdauUpB9k2ZZga8r3fFVHXHb36P7hHTLzmPd1xLLn2qyN\r\nch7cTeuyj8Z6UFuKrSHFduzurb4eF/vgW1NSq4rpIFB12Ne41geZaVsTUcZE\r\nbE/vXWSEFrYM/6X2UHyeTyuGflSfdagWOVk=\r\n=ok/S\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=12" + }, + "deprecated": "Glob versions prior to v9 are no longer supported", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.0": { + "name": "glob", + "version": "9.0.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.3.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "8940d5f3225ca022931bf129cae13fc5f284aab7", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.0.0.tgz", + "fileCount": 50, + "integrity": "sha512-7rdoWzT8/4f1yEe/cMdBug2lmzmYMYU9h4RNNiavPHajhcxt7kkxrOvwSnIPkZMjLQb9BXv7nFoKmTnPPklMyA==", + "signatures": [ + { + "sig": "MEQCIHdRzOtwdHx3/Tulw7RgqZqdML3QYWJU0uzrMnN6Pw4MAiBF3aLEkXpa1KicB5iqWo7ZW6ilwt3L6cbdLCVa2P4E6A==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 240782, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/RfUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLrQ//cIGM8l3+sV+VccFpFJk1FT2h0PJ92RzVhWBFA81YOzZOvKp+\r\nQPTs59iM1QhvFZMKJ8vbCsyzbqiPfAZbzXxrYw8Wh48GiemRrma+NW5v84jb\r\nDYJIoGQ4RoiPFrZ1OT/RMAtKN2z03tqhNMe/kNU/a9L5diy5S3WXyEQl4GiK\r\nS4YbyfvInOXeFQTQdU9Y7gM2mDpWSTPWXdwOSZ0aYz1yjooPTcJworCPl8gt\r\nbNa01NIztw0EqnYnXd4ooAosXjdAPGusuaCWRkZ57vyoj1U9RrkkmFkGjHAy\r\nWBLBZ2xIDjOo8JhgRCIufjlPjmP/SbanPk13BITlBvXZZD4lJVptZmPTAj9B\r\n6vUuQzDm+aMFPYuMFEDzf3L6c3j/mjVSELvtWBZlxbK/5UC2XfBYrpSM6Rrf\r\nuYIh/92efJSpgZzqytOmF73uPBVSPp5vRPN7fWg+O8mJANVcMcE6iv08n9Mn\r\nVU0ORNIsUXYCbSyZbSwBWBBAEyOiFBX5OwVlJNE2gu2xOJgD9TUPPk26mpey\r\n6qwss1SIGLehT1UfQRGv7dpTmC0cfr9VVLJLdf/aAsX2iUcAkncKXXYbTxKU\r\npShF+7atDrC1+ARGxhNJWl9IhVCpXmD+UaYhPEl3svzqw3ObABt7U6PCZwNa\r\nK6ymC65RbpG5r1ynn+Jntf9fs0C9GyYS01g=\r\n=kqb+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.1": { + "name": "glob", + "version": "9.0.1", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.3.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "4f2c8a645659d81177bcf792761b52862696ca4e", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.0.1.tgz", + "fileCount": 50, + "integrity": "sha512-psRdn8MI0gRcH0xow0VOhYxXD/6ZaRGmgtfN0oWN/hCgjxpRQBMCl7wE4JRJSAUTdJsW+FmD0EtE0CgJhKqSVw==", + "signatures": [ + { + "sig": "MEUCIQCet5ADr+8Tj3WEchzU3PP1NGe6lKnBGB6B5vWqAnPW7QIgeF+An9vxAzPpvKqFs6LhfTz0cJQAZZxyo7x0eDrX0+c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 240796, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/RjPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRVg//ZTjXwGCw2NytlVRi9OYhydmctwa29x6VrmhStUbid5+ZThI7\r\n+BRt3xYM+wS9UR7oF4v6U9cqbUHrdzKGWOMMeKpbmC7lAaX6Wq7wNjM4pMsZ\r\nnimafDiVM4yiQRoyujUsUDXJhG3g+zNTBHA2vuOQNRU8D1eDYA1Scy8STqx1\r\nHziNCcRCYtCcqOxr/EyrJo4IRHpdC8WiMt+Oe/tZG5pFWDObQqlbNyraizgY\r\nv7a3wmO3yJHQt3oJphyT0InrJpjKLq/9G86GsX/G1wNy9fc81DmfC3q6l57G\r\nQDxuSMdwLH6Qpw0MrZqPw+F50/QwAKBjX7LmF4aL8htZV4pXHsZhbAyu2QkN\r\n55xNl5d32Da4wLh9YvefPqHoS0mQ5ImsnWNBKWDIj1mdeJ5OMXlrtfMhTNfx\r\nE49ZTnonbxU0ZztU74ZTuTejPqh70C/J75u9jLeTj5x89+V265En9CI8xYz1\r\n+H1nFo1qAvwuuT362dcbuZZatrweubx/OLBiAm7LgPmJ/zKcrTaWXsSD4YDu\r\nni7KszMFUJv96SXH/8NYfBsZwyg6dbExwyyIPRwzLq+s9Sie35TDy2/Gtocf\r\n7+VbiUQZ2oXEu+xjIr0W5Pd/UbDYfWJXyDP5/YpLabZgH4oD/IKl/wIF8+0N\r\nNOyt+O0Rc/qZT1LLSGUbCsN1yt1kGdyII28=\r\n=p/ht\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.2": { + "name": "glob", + "version": "9.0.2", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.3.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "9f048465b4c78a016615b5784b016d2907ea840b", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.0.2.tgz", + "fileCount": 50, + "integrity": "sha512-s6v83yj/qsUHZTp4d1Pq9HkB2tROINGxXhKYspF0kGvVqPlEPrUo4WDnSffO1611xYvkuK3mgoo86mdulYCX4A==", + "signatures": [ + { + "sig": "MEQCIGd0h4EbKyDNIWVx9wnH+Irhz4C5ncvQCVs+v6I/mokVAiBk9MEqBs7yoLwh/Yx4crR6egRlLWyehyVAbmVa1u3bOA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 240832, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/nLBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSUw//cyIr18+5xYZEeRh/lz2jDAlzh97keyy2I90nuxC73jt4PjJk\r\nbBvxWlnBOip2ZE4RqoAplenNVJt1D5GuwwcI0K0BCgzi66m27vkTRwcbzHj3\r\nJMDmaYzLxs42wymxCBZwtmYhhlVq9zLlv3Kc1e7iIBvzCIhrjONcZcYytQO/\r\n1jzSEZTmzuemzDXCHt7qlQ4JAS5+DRZqf5O5PLqQvK/almcA2VvEQdjzRr7/\r\nVwAAFjBf12MfCLWYRlIhrd+yuMXog97FWfnGB3Bz0eDinBubBNKVUZVdP2Ug\r\nWaYk1s9Z6Bu1BeiSg24SlXnn7Ovf206QHRcfgM2vGK4vgzeutXVifphoiHr0\r\nDugJ54CjgH1AgJZiOYkBAVMqvApYlrsf56kEqALk2EI0s7+cCJLzpKuyKZ5S\r\nuDXlWPozBSVF+Fl70Je27F/hdzvMDSvLoYzZoFHeiDJf5zvKEUUnAC9WSlgf\r\nCxCyqsBwMjXloU0mlfChXUo8yKm5mWKoz3uL4pdoaA0cnsrQR8y3PCtcckeN\r\nZ+q/JRdAzVxD4Ca+ONzjdcNddAA8vTKH1z/+XIGC+gXGPfQTWI6cjB8HHLEt\r\nmhAa4B8dfeAejWYR7tkSpqnrprnrEB0/mDdgM01ambYsPAAijQXkIweJBnat\r\noNo1pI6oPRjkQ4EMqrp5sr0jKzZgPxRjZFc=\r\n=ug1G\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.1.0": { + "name": "glob", + "version": "9.1.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "e440a5e856ab504a68a4261959a33d2219ad6618", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.1.0.tgz", + "fileCount": 50, + "integrity": "sha512-bAnZn/xYN7o43Y97vDipnunJtQOOhJAyt7/zt1HrzFgtIrol4eJTUn8Kd74B1cMyOBuzWUMvBr2F178h0UQuUw==", + "signatures": [ + { + "sig": "MEYCIQDtNY7i3WTJXlaEg6rAdNVypzsDTec+FynYm5+C0oVBhAIhAKv13K+LR3xvw4K7N/Dr3S4T2QI4aPoCknvEyrFzR/In", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 252964, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/wEFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohGQ//Rqj16dTGCBtZgYSh8O4RMV0NiHcB+Hn2UfxgcrWn79szDL3U\r\nIkF35q4WVZzLgO35xOSoJ2HwseLEr6mIe9fPBnPH/kL4HSmoMki4UcLxJKLJ\r\n42Ny9rZoP0zxL1KWKMrwGDfemURn6mwv5gi/LnwuSAaWliuMDQPjE09/JOdR\r\nxrRkPnkqGbKPDKsXLRm1JU3nnUOiOyV0WwC+5Q8qCzKH0Rkzx0gKHd8lLGam\r\nXayUKK8HXYY6VmZYTXVoyahCMoEvGoM5DIfuFgTsxg8JS4IRItUbtILTFBlw\r\ng9IDHKrCqnNnjcagRGgnYEj3ty93x42b8Jh/WkXCdsAy7V435260vxSJqv1N\r\nC+VFlzTjWwt4j/M5AJiViHR/0bwkNbi7cyy32rdkzX93+1g+P4KZh5kwnuLD\r\nfQTIUPS5ioyAo578BVwh37ib1kygb50QeGZ51wKQwxYgn3UkkDzdOGPCiH3v\r\ntuAna4UkOu900xyDXINtUqef2UaqLXb4pw0gzn2fWi8iK0zGHA8KBqnOtzar\r\njkcgSLQpGYR6QbWDCU1ZNHeO32ALGyUFOINfzNSjnKHH9cpXPmKssSxp9rjs\r\nBQ9gSQPhPVbY62r4pCA50GJ/EMlqqYUfWwU1oeddwANq5kEfygHAjSzwPgsB\r\nW+ngexAqANqAqtfFGz5sIK8byJnlpDkcXxY=\r\n=jLxv\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.1.1": { + "name": "glob", + "version": "9.1.1", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "e7932b6842507a36cbdc34ec3453ee9279f27b4e", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.1.1.tgz", + "fileCount": 50, + "integrity": "sha512-f2Mu4JC8LeBYqRXFRfWe0tLBSRPVl4HOkIDvtB7ppVb6+IPXhSSPhoxjY40kpg3dzv0KfK4QYcEXYwDEQ4530A==", + "signatures": [ + { + "sig": "MEUCIQCn92mh8QWKKII74yrzGNVO2hxYK7slmjXM3H75XyvRmQIgR1QkBECKm+o2HaBdBuGcn9KubsoGi07xi/qUp03nt2E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 252964, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/54yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtmQ/+PLezkFUyf8a+0m2ehUpkw+xGSNLeIdRMUvsv/SJ9eupCNRTD\r\nm6Mfxkof0yXR6hfP5ZtNo14ifvLFExbKsntx2pheI3b+EqzEkV051dAvJitQ\r\n/dyEC6/JBdXxMYElXSEL7Cjis5yFdcEXawcaIkeGPrS6poeC2A85KWA7Tgfc\r\nEy74VqY5miLn020YCMJ4OenKsToRBU7wPmAynOMxPFPnRz8RYD58lBY8Cy7h\r\nkJZPPPtZoNLjTvgmMzWPoFO6jPoXP3TKAdcdQYbYLwoFbpLsjhzfxOnofWvt\r\nPaThC66vtzucpxCrgg3wZGoDFhJOWO3hEY4QdYBFE2LOkInvAVbVp5BDiodz\r\nHEpxtJS2SmEjxVhJU43+2C0YwUOg1B5xUs6XpW6v65WMC+QGbj9/i2fz5MON\r\nqqefiPnV0TwdymnwQreqIptNxUllIv81FViDA0+t05uswtwAR9rrB8vGk0/w\r\nyrhYMCFVFm+XwjMVe1tG9sni56WawPz5ZHq0W4Xjx8vVCCnvkU5o04V6bvUw\r\nbVItqqcuZpOwLXKep1SDvhnVjV6KFVRyW4B1NOQkGU7bKcKXRLl4EiRSQkWB\r\n/mPIE3CY+dStVapNdnPyanmhyy93pdBWOl8ts9LdKARJnzeX8thTlA8xYwnT\r\n9/qrOjUorGSnyjSgk4ESUXlXNAapNffkhzY=\r\n=/0wf\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.1.2": { + "name": "glob", + "version": "9.1.2", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.5.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.0.0", + "rimraf": "^4.1.1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "6587a51675a7273191654e0a912a22a0e4ca7a44", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.1.2.tgz", + "fileCount": 65, + "integrity": "sha512-AcvrjOR0OSiS8p+1SInzhCHJ11NHV8P/nN1BDuk6gEjIHSR60SXktPzi/HJt8Z3NIyK4qSO1hZ9jpsasFZENpA==", + "signatures": [ + { + "sig": "MEQCICgs3Bym/qLPlsOZ4EAN4CrTIMicsrEBTaJ9VNDWnB/AAiAEcAHEfUbMlZXYp+FQN3Z2yYwx+tZuLjQp8No4qAkHHg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 284952, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/6J+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoDvhAAiUKqYlvzznf5Aaob4NIQfJKoBVni+PM+Zame0qATZaq4BKjR\r\nveRBUCSvd7O6I1yQyzESdW6O6tIMLX7rVB1uXOd93S3w3XLEfM5ceDFN9NW+\r\nI1GUn8V2kYaR2Xg7pBKB2iJ0qkvtwwV+HwfCKKb4bfKx4SplgWKvnlCFqFZl\r\nxAVSbFF8/oUPP/GCAur5eK8UuLH/3zJ7AnCXj2VKldjBzvC/32sY28nRQlT2\r\nnSygXrFIw0vB2NBX2coWcW2lOEIsAzaWL726YTQ2VvlzICydIC8VyC4hj6RS\r\nJK/Dmu8ESxBHXuoelBQt8JS7jRyTYTYIuMz4unS7IcJjyYCAEryDHKmIzpZc\r\nA4ZU589N6HZNaAMgW4sWUKQyE2X1YfbiiYOIf36qGJBvXPluslxOVkzj2ez5\r\nCFfJtkaIHmwxUPtbtiZ+qqkzXT5QSD//8EXnXWe3WkLXFA/4C5bQk/fkrwXL\r\noyYCV4IiWR84mZwxjYFFSxSmLDukWUgtoryNi8zyR0wRmmWq6c3lY3EQa3Lc\r\nJg7cD3O9f/CCamFby45F+4iSAzlnS4H8WL8EEhOm59sfp8LlYQ6c8DULJm8W\r\nNGFaA0NdZJXk8i8jOGiV/AbXVbcdXYvT+3azOhNvcqP1AkXSpSTOFFbMNAzL\r\nTbsw6PGAPC/gZddKohqkj4ltSR3gpj8k2xE=\r\n=SsVv\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.2.0": { + "name": "glob", + "version": "9.2.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "a98d40292bb1af442cd73a7765587d1138ec979f", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.2.0.tgz", + "fileCount": 65, + "integrity": "sha512-VbqdQB87R58tWoOMO8dBmPEw0gpAn+FNIT7PAEoPMKx/BTiFM847t3uvGER+oIIKKmUyPEHiG3gGz7rwPVzzXQ==", + "signatures": [ + { + "sig": "MEQCIAKtf9Ll0ovFvFeqIenNh1U0GESj2VIhADuo1QioJrRuAiBbNgj9E/jCYjVDTEfK5Ir2bL0cLPmjVdxdEGButyqPfA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 296871, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkASuAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHTxAAgzsInlzQvJIi9myQ/zvhsf3iCclEd2InKiWvoUki5JrxVtem\r\nJqqQRJtjs92mz/Kj9MBAyJTRutnvCySQj4FjmzbbYRgrBo6i7ZtEJPXnLgLO\r\nnTUSiI44HJfRTJSX9XV/+up2jcJ3jfYI1/a/A7d+afNkdw/4gTOhL2ADG0D4\r\nb1VSdhMbhflXyxsIdOdpf7xESeWgFRb2W7gR+j8eX87SU3bjq1Rh32P7jBPD\r\nrBhQMRigda9QWIZIAXS4eMfcDO4rxMKSnJy8uryLweiK7cs1oQbYGxUpa9Tm\r\nPcFjDXjwanWS8SnNy/k2VcrgMjKRsSmYk6oXPykT+dXTQ7XGQGxAyPC6BXIg\r\nicgzh19+5OPS+JXH5xzdeqK2/ULGctyGUCpFoDsgqBci3ixAcrNzrmSC4CNd\r\n1pjzB3MzOcC02a+fm+pTnRQwlfz1DimuvwWAHhLQ503rzxkFn95tGgjkzi2t\r\n3Hl0YC3yccKJW3tnrik9yb5hxICjrBQAQOFTin178V4L22LNTBcmosquHFRZ\r\nocRpuo4jXDD6Gix/DkJTQCeNUf54cMUT0TgzVoIqD1SugubvXCcz6pBTiA1W\r\n0KgxjNY9+jj00LzUvBZhUHrhdy82juAaCFRvb53PXY88dIL5e1qZUHl0Yc9x\r\nM9f1tbqaRRgKd6TMVrguthuqVy+l67FC8OQ=\r\n=tIHU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.2.1": { + "name": "glob", + "version": "9.2.1", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "f47e34e1119e7d4f93a546e75851ba1f1e68de50", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.2.1.tgz", + "fileCount": 65, + "integrity": "sha512-Pxxgq3W0HyA3XUvSXcFhRSs+43Jsx0ddxcFrbjxNGkL2Ak5BAUBxLqI5G6ADDeCHLfzzXFhe0b1yYcctGmytMA==", + "signatures": [ + { + "sig": "MEYCIQC9yt+YtIA8HAc2F8Y0dFFu6nF84kgiHvaBMDEHJQw7EAIhAI9kZtiB8bQmmKJ6/DeGgB6pYUi/vm0BE01rfLOAzHcP", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 296939, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAUHrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoATw//SZnYHbD1+0dnkxrwY3gvXS3VRFWLeJvZWvVfFMzpazrivuvj\r\nxFPkQnScIeYdftCbh0jfzE3DnNX/5P6CDJyLfsOhl7XqodscyhGPS1WNO98W\r\nj9CLTHoORi81jSrBTmEZJ8UXcTsmb77U1MbRYLF3QKKxRBjmmnK1aR7sc83u\r\nsSR0qu6feZP7eCXNbGirwF/qeh6fHDrZXWJwU2Yn8NCGzLDFlz3c5rHBgmQP\r\n3ZKeoFkmkGXcufRHHFp0Ks/PvdrhzvxjPj2ZTWAbb0PGSPqcXeuJHSzy0MQ0\r\n9HSc5bpgleHtKg/YUpA+Vl6NxWSZUX1vhvDyyBMZVpAP7BGi5XrQeNe/bCzV\r\nnnBjPz3i+IJbAXKDxRlbgGy4X5UohRWziFhP73tbRk7B7F1v9zdFRNtx3nfh\r\niAkRZ4hSKtW3GmxlTudqXrqdyzUK4Mi/QHfVxK8C2gXyfcg1ssSprI+m6cp1\r\nj+HOIAtTSbj8xCvc6DOkR1M0BAutcl6ATUlkcCEcv/lKT+D3/OOvICrq7kNH\r\nDXbsBdebv3yNzFIurFth1c9JjCKMcfyTAv6Hm+pq9Isq0oHdESYzFKdFtFGo\r\nYthYG7vaRkKoy9SNfvklYc3skAIXKq7S8JtommuWsrhCm06yMV1swEhZXKjH\r\nGBtJqZtZQ993pN5AqCPbqESA39Zz5Xb3y7E=\r\n=mldC\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.3.0": { + "name": "glob", + "version": "9.3.0", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "be6e50d172d025c3fcf87903ae25b36b787c0bb0", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.0.tgz", + "fileCount": 65, + "integrity": "sha512-EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w==", + "signatures": [ + { + "sig": "MEUCIQCvPptMuzZBW0gfBzCGy6Q7Z4K6BkokipeVT/7GrPoVOwIgANbzOR46WG4gFZk90FI7Hk9W7xosSZxy4lErzaXuMqs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 302858, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkEHCQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrABg//fS3sajfIHR3ObTWLGpzXNKW4It6z1wnWcbOrhHP9G5lT6RoU\r\nZBGi4rhqpBvFCbxfMPAvNa/g1aYyD8y6BYqGgJNccgPUX6oNzBnQpLUMkQPK\r\n9ZAn9Woy2m+bZO/uYlwbDDde8+B1p97orL69dAAnY8I3KNBWZNwZzmznE4I3\r\ndIuCIPXNMvh9fLD/yGzRsPqv3uB2tfDdK8KCOgV14cMgz5n0rt5UxdmM4vHI\r\nvrjaqNXRtBeqNfmfh7OPGlip3RGa3Fk9p6CNtnhMtsBrdq8SVR5dx4Wsry1Q\r\n1LFEB9YLD8RqKmlgfF/hhU+cb4ySo+JkTX4DU/FF7Zl2YM6HJQ6NIOMhlFO/\r\nFJj/QG6yaxhQOGZDRCCqgNkLrnXJuBZPzuhRZyzv6IDDt7ZNUB2GeBaCGKUQ\r\nJXJYqqpsvuGxNL76LBYMIl/CO43P0xij4lkX9bcs+YWDinwmmShe1Iwu41mv\r\ntey0WoWG1vuLu58Gq+JmtVpyxtfHPiySIZRwARLgmKGMNyAoPjsdlHRjvrP2\r\njJsryuGIGgR6oDaBjB8c1mrdvUSldfYZDLuErmCSyXVaGNj4TBZ6w6L7Mp5v\r\nLIGY833z701kj9Vv5Nmo2b61gmKy2y++CsoFFr/R07Yy5x6tSeZ4ZqZQQNzr\r\nUOh8s4lMonYQw4ZaByQY2UmoupDbijFN15w=\r\n=I1WU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.3.1": { + "name": "glob", + "version": "9.3.1", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "4a15cf72479a440f77e97805b21e1b5b6e4fb18a", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.1.tgz", + "fileCount": 65, + "integrity": "sha512-qERvJb7IGsnkx6YYmaaGvDpf77c951hICMdWaFXyH3PlVob8sbPJJyJX0kWkiCWyXUzoy9UOTNjGg0RbD8bYIw==", + "signatures": [ + { + "sig": "MEQCIHgSvS+VzWr9+foZXO1FBu3MvT9P4wVQAU8tVC7X9tYiAiBGdGtyKf8gIuKap1wGAHO8A6GYQLrZQDCYfWn6t9KQOg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 302071, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGPQzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSrw/+OqWRjpUgqLRREkFUUIeGzJM2BNXQ5TkSRRXcB5qL4gv+Oghh\r\nTzFwCQ9vztzR2R0R9aSh9tAOyJ2TjTltwW6SSEOiI4s1Zx6CJsu6u48YnZdY\r\nVRiROB2NTNNW1GXaSv5lTrCLQy/XloZjm4d7sftxgLtmW5HO1p2nhKYUm4yZ\r\nrAvDyfk1Sx7F57y0IdmPmWOkbjhfnAwVHXhjDnQCAP4iYLiRt2SGqY92JHNu\r\njcAvMdB29X31+B+f2tlkwNjjV2CGhNcUJZ381AcS1rT4jGXeya9fXSgrE7pM\r\n1Z0X60xMpKztOXrk9PlWzl0Nl4LbDcuful6dKEAEOeWcrcngE+hBRLVkmG6H\r\nNwyLOubSLrxK/GFf21PVauyUURnXhmeL/TFrZTlfP9TX2x0BUAvVtu5RPEk5\r\nT3/3ffK2ye/ttorVAlseGJvpkfFQb7XxTXn5NL1+Rrx/ls9MfXxvNPMlue8z\r\nFz6ygQyqvpYHWspCZxhEWbHWa4sQQxJXqzAq5xW+D3DNzOKjquKwPFh4DaYo\r\n2Y+lLur16h0KZ39W70tRgV4Tgs+VaMtddWpXHvq6OiI7+Jotin4npBERfLSz\r\ncnjOFeGFbGBdrMMTe/LdlJ+P9+hRhi/bHsK3mEu6TI0jPHnH+LTgZFU0ZzrZ\r\nTASPxaPsUB6OiUcbHb6H+wzK9AOUJF3cELI=\r\n=aaHd\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.3.2": { + "name": "glob", + "version": "9.3.2", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^7.4.1", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "dist": { + "shasum": "8528522e003819e63d11c979b30896e0eaf52eda", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.2.tgz", + "fileCount": 65, + "integrity": "sha512-BTv/JhKXFEHsErMte/AnfiSv8yYOLLiyH2lTg8vn02O21zWFgHPTfxtgn1QRe7NRgggUhC8hacR2Re94svHqeA==", + "signatures": [ + { + "sig": "MEUCIFR57YutlI96Bkf9vSWipeCAMpFh9dlnWVZGln6q/E7PAiEAlDpBOXain4wVbbkhwgTzgleyUQD48/zOxzyvjC5UI+o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 420579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkG02rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnZQ//Zumb+pkt8xGDIvMfv4Kvy38+lFnACRL345UiU2m44ZyCpyGW\r\n3zp2i4ZR2Ndb2Hg0ccvj3pekPAe1+9zpCJEluU5bISvtiyWI3QMhHAdepiqa\r\nKQovbB7EhPHsLObagQOPQlDZh9QolSM7reHmmA8eWqF8YTrM2T7nIbeyWx69\r\n+y7Kr7wM0ohrqhHlS6z906tn4nghDssXulngHLBby04JxbYmZaP3kcxvPWDx\r\nTKoDgsEXX331EHNSP15oggsGgvxKXpq+eUpKbFvf9H9PT8lzbu7dQeRrmwE/\r\n6vKuVn/zRKFVnkNYsrGAjroKvdW/lIjcDxPs5/Sk50e0x6iauXK1p+pU4uMz\r\n+h04ag9o/oPASr9LqJ8rqIUZYfStsf4t+04OOTei1VWprF8d+ZL8Svz2CYKc\r\nyVwLAdchTANl0Cpv9fsARO9F6JjsXm7DxDwOVaDivluvhnhDiR5MWZjndd+E\r\nIMuYlECb/AiMyZ53fvbYEZN9YxsQmzRxqZhNvhOPjSvyz0Hk2+65L2T5fPH/\r\nRzSLOmfY9wS2EKBV0GU+lh0lWtqax7qkQbSrk6KReE+qZttKvxM3ZcAS31aA\r\nd2wjqS/ZHvSTEegv6cm54JMN3c8MRUMeNw2pQgTxiju6sgKCTnVJAi2rtUnK\r\nvO+NkGG8cF3ksLe3ii37DjFcNVw4U1kz60c=\r\n=zx2L\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.3.3": { + "name": "glob", + "version": "9.3.3", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^8.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "dist": { + "shasum": "b7b6ac8d835b666705feff53cbc3aa5c3b984a53", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.3.tgz", + "fileCount": 65, + "integrity": "sha512-3fxLdi2k6D1hXVHAHv4gkgaeRax5cVlsms/fBecczkNJsgyf4f3eH6kshmzBgDDZQc/Kho7mVvGdteEsHoPMXQ==", + "signatures": [ + { + "sig": "MEQCIDx6Jh6a/ZXGnUV7H9NyEn9O2RkXAjhy/r5BsEhQ8byWAiAVNAhlnGw36gAoHmUlyBrliye7tGv0UbLo47R1HpdbIQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 420579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPh7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrlZQ//fpZJAGy+Vkq4Q/7dZIVo1mCaKYi2EDHYpwz+QJUkTH3W0QAu\r\nG5a5zhaYBWybC1omnYl9BQihiTqCOTXTZPPZ2TVK2g3NxAx0znkRwTOxkfh1\r\novPikfDQlspKCM87lwty8Z1nbgsxTULyIFMGp5pvXGWiEiKXEVrOQRCcKlhg\r\nJxjdqVSNU8zy1dMGksNbmTITg+hsCy2BlY4+bpB2ffb8oKpquQnABBWnJb0O\r\n1t8DA1/zhUzLz7s0CbldmAXQr3GnyG9gFHRT1WEom0ZvtFVaye2jCT0+PXbF\r\nrZUzr3R/FkUBGQhl+FrdZY1w/j7O2h1AKr3b6sMmS1kujVnhSMSrPDK52d4b\r\nIL2eytpxbsBtzKuT2dhd0AvVgaoefe5Ad99QRrLStbZD4buzfsPKFmXGO2C7\r\nnawmgy5HJGPs7WAFN7TIQlCG/D5GRgXCmkQi2aA5+rmc+L61/7df2c6sKBwz\r\nKoQN41yN32veLO2q1gg7urBL5parisgrONsLgN6ZFqnIuU/adAcQynxXET53\r\ngD9lUG4Jr8lm/w5Vw6RzfSPcT7dch5kdoTY8cbFHEWSYAHYpTjrGT71l6Yzs\r\n0k3J5AGhXkgzLsljf63P6Za01FFvJkHPjODGZMQ9QZZhNvbJqq1ZUR+xMQFn\r\nP4kDAskUV3/vgnP0juAi5XFSx/eMc6+AiMM=\r\n=8PA6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.3.4": { + "name": "glob", + "version": "9.3.4", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^8.0.2", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "dist": { + "shasum": "e75dee24891a80c25cc7ee1dd327e126b98679af", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.4.tgz", + "fileCount": 65, + "integrity": "sha512-qaSc49hojMOv1EPM4EuyITjDSgSKI0rthoHnvE81tcOi1SCVndHko7auqxdQ14eiQG2NDBJBE86+2xIrbIvrbA==", + "signatures": [ + { + "sig": "MEUCIEY9PkkzDlwXNd2ZXXq5b8JjPwzKVwJE7zB4MzDsq2zvAiEAwWwLx4O4pFW+zVTxrsFU46Dds5CJKxf7QsjnQg0YZMw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 420579, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPogACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrxcBAAk+TKgdTVU1qcn5mbJ13UnmcH9xUOtKNbFh8gapfvYV6plB5T\r\nAOtXguq2aPpV3ecrUs/2SwpmmDmITynL5+UoOouxdNIFFRLsifMsh8b6n8pq\r\nk+BjQhKfEDHtomb2zHZ/lD4DhI3QxmU8tgHWTDZHfZBUtsw06/7GXGvceZHw\r\nZwQPrjHFYu3S8XgkjQvS5cmLnJhld9qNNr+sS6GKpdanPAMfyCYpddxkmc0W\r\nCUi+2t1Ce9iBkjD8PbHn6l362n0z6aEdIqmmnwYcXnZ/547tYCrNn1BHcrqD\r\n0MK3uVcyUN2ng+fEQkv0etKGMO9rZeJWGDk3Y/xUeMmXAuHZXD9+5/fl80/H\r\naGFWt5dtvc/ln4g6HqADqlei07XDE0B9VhnrDhHBZI6RyaiUg/5pOFWj9n7F\r\nwY3aUBynYK49UGkd3m8Qn55OwKfZc1bVAO+/J3tvazrbHplsV/3uFONEokAX\r\nkNK2wkRNhfwXmcfvo/B7C0e5KEimEtL8Hoi+YQIKeUKNM8aOWPG7x0P2M0AL\r\neqMmRJAX4J+0BJbE9gDQZhYnPfw0E93MiQx7+dTdciSeZFSwWEfA5ZGIQA7J\r\nZxCud8deAc70jZ/c3qov9b/ddLu7m4JqpkAXk1utbWEdOsyyFCrL5+fX1n44\r\nfbGxvq/TKa/9fbxqBs8nfhiJh/LqCP7lPCg=\r\n=Tdg3\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.3.5": { + "name": "glob", + "version": "9.3.5", + "dependencies": { + "minipass": "^4.2.4", + "minimatch": "^8.0.2", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "dist": { + "shasum": "ca2ed8ca452781a3009685607fdf025a899dfe21", + "tarball": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", + "fileCount": 65, + "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", + "signatures": [ + { + "sig": "MEYCIQDt9YJ3S84eQiPprLcjB37Jm5xhc7labTGUl+7ibKOWIwIhALTxEZizB0BfM7+Bs9rYbCD/Be8lDh70Z7skJovlXPPk", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 421569, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMyByACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4ZA//WaDDJYrKWa6/wiEJ9tDFut0Et4quyJ4MvZxEADd0w5/laiwu\r\ngBcstXNW8jiZkxCaRvm9lAmqZpYC6HXYR+AZikS9AJVM26DeGRcFCocZgRBk\r\nHGHVu+pXdizDAVgEw4XH0iKuTzb+/3qEVHVkEoZwzzA28wD+vjCswl+5D91a\r\nsvsNp3aQSFo8Q3ylIrwnEhdLqjSt1iqRL9euReB37fnHigk96XKu6u3cWZ41\r\nS3C1xNs+hOBwfbRwnyzt8LLbZrBKPGvi8nOGIe00YVLseohlM/VLsk9v1owx\r\ndPBANrEJFX75nbqKGL+5gKmDxd49q12vE4RcsVaSzMUIEJJLbEjFC2GEikZu\r\nSne/kG1Q2DcnvrK0RlUaE6IiR6SGEp7pG7vsbsqZi03hq+fMrEm9EzqN2lRp\r\nCBNJbbSM6aIZ3mm+zF0R49eTSJR55BiD+47tmfTdpjxVj7dqXG0cwX2yLDcH\r\nea2hyB6ehKhC4l6B82lMUl3KNCusPvblHLn1jLx2hDQ520ZbaNddXYfuuKTv\r\nBKkigG1SruR1MtvNMTJfUR5hN4kmG+mrPACMFF9AiTrCMspWXv1OF5R+PsXj\r\nCHoB8g5C2u5bH+Rgv/YF1vOv5+9+d/kKl3ymgfaLRgexUyqPrq5FIRRoFiA2\r\nwOFCWCpYT0TyNz5ghW17FrLLQllD9lF/Rlk=\r\n=btRi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.0.0": { + "name": "glob", + "version": "10.0.0", + "dependencies": { + "minipass": "^5.0.0", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.6.4" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "dist": { + "shasum": "034ab2e93644ba702e769c3e0558143d3fbd1612", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz", + "fileCount": 61, + "integrity": "sha512-zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ==", + "signatures": [ + { + "sig": "MEYCIQD4oExjeLsBWe7BzW2sDaZQ2EVHMMBoFUQYsgNmIN8lvgIhAIAqNCBW9byP7Gjj2Wgc92V9eHFDrp+eQCf2hQ6oA7ZY", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 416179, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMzuqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6yw/+JhKFWHNijWouc/gQq6W0+hC+6mVTIDCxoI2gdMTUNr4VSLQK\r\ngcd0Cm26S8NeuT2XzaCxgRBuxzVf9zl6CIr5LsbhH3iplc4f8Wr+mHF02jUr\r\n1vYKiAPaqSJT/01RKY/yjb7suYy1leTRvKEg4MM9Aj4uZWoEQDNkyH54hzwu\r\nG+YC8QNMb15calJ84GRjiCOse1CzXsOEOgyWKZNpcwr3xdQrZNxOcKiNoj65\r\nwfalC56t/lVDLUFfeauRjVqvP3+/HjgLcDnyYJKeOr7G8mOtXN7PZ1IEW9lD\r\nnJcYkA3o4GrEnx832ggssIM0FHUtqycnJReEFwYEmJuazZVEatvon0K0QScX\r\nDbNJSGdZGWx/hmI++URokMKjAaS4qyJSYzz3YXPHRwCa1LXGHufCjkYD0ERQ\r\nBk5jTsGLI7wOB3MLI/GzWhklaLFMw7YH9XkumPWDZ3Df7bH3L5ahnAu7jM6O\r\nmdCb8UNFgTYRvjYS80PZlhNzYgKdHwXceHTJe+4MQj/aL8n1xhyi733Mhtjk\r\n0CviD4E90OJ/AF5l1DpsAn+KEmnxQsFQj4MwWCDXz5hboLiWV48IXyBOxQ5W\r\nOyKwbDZtrcUfs3+OA+NxDv1J4lNhiwUPHKia0fcql3C+mqz0aWF4q1drs5eP\r\n/83xOJjH6LhbjiMWE26LL9TZk3ibvzbNAZc=\r\n=7kHY\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.1.0": { + "name": "glob", + "version": "10.1.0", + "dependencies": { + "minipass": "^5.0.0", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.7.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "dist": { + "shasum": "baa48c6a157cfa34ca7887f2a29c6156bc6b65f8", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.1.0.tgz", + "fileCount": 61, + "integrity": "sha512-daGobsYuT0G4hng24B5LbeLNvwKZYRhWyDl3RvqqAGZjJnCopWWK6PWnAGBY1M/vdA63QE+jddhZcYp+74Bq6Q==", + "signatures": [ + { + "sig": "MEQCIEDvEzvDNCIGdG+tJMwz8OVm0MUDRmEpYn875wUpsziaAiAlPVOvU/aNWofUKCzW+WoezF2vq/MHKIGQzznh/TsIKQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 419359, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOd6zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrzIQ//TaGVMBJv2S77KIYb/IxPVgC6T40/sapNK9YH+M+V2FvSc7Db\r\nIObRQuj90TxSJVWaHeoY2446Xjhr2N1qUW5/YaD2WoV5RV6zLCwJRIaE956O\r\nK3WPG+pfjDspqSKN5kXAS9oyfRLTKjb8ta9fbipJxho0s/d8IlPdHGV5aApE\r\nj0UgjyAd9kiIWUrcGjJNJwMk5/D3mYqrxT7jzzxq+AOT4ao9NRECAlSHwZPn\r\nx5CkS9HQsVQHs9byrUdss2F1tYTG331M6Wfcziayn9T/N9Lq+zZC+GVxpRB9\r\nGJq+SKHMiJ1f/70kMeZedag/mi4ihfocJSsue10mJRiIHmKqoSt+qOQA0JPA\r\nNzjI9HCIlvVlxNFoo/bCPE92MH/Lef66CqsfNFZ7LgueEz1ZEzKLEb+chloc\r\nBvdL0TEaDG24qAIE0UyVX/fr7p1S+KGu9WeeIqshIDuwZ64wxLsn2IpkKNvK\r\nNqCvuYbc3rx5pkVjXpipU6RhE2182J5B0U34sBWDr0t7lxVDVHoE6YhZICKN\r\nEYCw84FWFPyoNCs0iHskb1m2Z6OhqSn24hqiaOi71ju2QbLVkXVRNgYtXREo\r\nIQ8c6OcFSVBf8+h8Pd/u95UpEzzGN+yj5ogqrD51as2yx3KXAoN5btjKCZso\r\nhzSqhpfLo4Db0pgergHZmuNH32jd4ZqliyA=\r\n=BKa+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.0": { + "name": "glob", + "version": "10.2.0", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "423a7db1e7fe88966b0dc33de10804f5d1d94a8b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.0.tgz", + "fileCount": 65, + "integrity": "sha512-2BO+ohmU0Z5HqgOHbwMMjTEOaPbR9AngX+3O7cTk7tlZXjZ/igqIOxErifv5cg/V854s0/I03mHOMpeIUYTgMg==", + "signatures": [ + { + "sig": "MEYCIQDb5r+PJoRrYeFNmd4A/4TCfaDPno7J0+QDwezHg/Jp5AIhALAarDoHUhBlx6e9tX4dnQ1lhJaPGZYTYpoqP1ftkZfG", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451610, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPcYTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp8Ww/9EbORGpbvnJRLoKkv6Nv+hU9rgswWeDxsLORCD3yENow39eGP\r\nXECgZSq4frCiCB1AMtHMk9SygfxB8H4LOIOzhGXTvxBlqnZccME7Hqz73KTo\r\nuG+UZXrqPiyKsrgXBovU59U0witq9LHMX2ZsPXH4G8GAlLPlsEbCuTYcIepN\r\nK6cKRd1nFJG/dnOIFjmAddqC1NRqwfHLd1rJb0wfiTpif1GZ7VIWnnh3gDmE\r\nMjJgg20GnzViqruOPeO0qp5vfbIbwKaGM5QRkAqyUpLlbjUGkqFDMdGVu+7p\r\nYJ822jTatcrxUgJ/yg++26ti7hGUkBcHybga5K/YvOpYVmciq97jT/MIZv7r\r\n9S2qWusy8u8oRWti36/4TAx2KZRbrMCIqGASaJiAJl6gclxVfYzVuzwKr9ko\r\nL8eMWkX8si6Bt48pwLTXovcq/FXEZlYEV/zMpH5wgCY8mupxC6deASCt8zov\r\nAmWuapHZ4FUnX1bQBaZAkp06TRVYH6Uz6lFjn8WnoLw5389IRrRe1OLqytLX\r\nfsilPjQujkWOhuQExcBUXkQVgXcvZwBRUDi/sEkZL36G0ksSfyp28s0mMb/h\r\nV/K5UsTNblEwCkxnYy2WLFE6pA6KNaCaPzG0YlEYGGpvGC2+yvtgCyPg5/FK\r\n6W38P2Ss6TyN4rS41wS89w00az1ejS+7puA=\r\n=A1l/\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.1": { + "name": "glob", + "version": "10.2.1", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "fs.realpath": "^1.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "44288e9186b5cd5baa848728533ba21a94aa8f33", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.1.tgz", + "fileCount": 65, + "integrity": "sha512-ngom3wq2UhjdbmRE/krgkD8BQyi1KZ5l+D2dVm4+Yj+jJIBp74/ZGunL6gNGc/CYuQmvUBiavWEXIotRiv5R6A==", + "signatures": [ + { + "sig": "MEQCIASS73uKt2Iwonm81hOhAo0Bz4VIIUbgSayrPfolq/vIAiATKUXlCgTNYS8Ak2rOMTO8RPJUFQQL7cVlABq5E5KFJw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451610, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPcZxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoV/w//QLNr1Bt7wVUKhJenaGOMrjZV4043NxHWiXF1jGafkYGEF0ko\r\nZS8dlZV/M7xkBXMlRtQUkkzPX5WSadAv3aQCKwH4POOV5brI41qlanhoQcyj\r\nkhW+5LEY2szHS+Cnyswp07kcjOjWL7h+kgsGzKKEkoVBtHy2H/87eibCVgw9\r\ndY/njmot6hdb4hw/+68SUDQi5jfsCKXYl2KtP8djOWbKG/CwqEpAhfSgJ9Dj\r\nw9/VbUgNy2DkCAbERSJk5sFOqNVnQEwnRfQfuKEbsPoCAIcTl7oeZwLc1f7+\r\nnuKYhodxmukKRrlUoiwXlUQ1sTKmiuS1l1uojiXVRiWyoigOP+xxQ6gxgkuI\r\nP4J6BSNwtPD6XEbBD+SOqvLAohTgPmJO0gqvHWxsG/RDK9k+04+ptSPF8keA\r\nICM0pwpVNC6D+DB+tONERMsWlmH67+++SqkEOoOtVZ827ev40BJf+3cHqMJ6\r\ndgTih2A5HnloeE0iOW00N0q1bdRnFlvZn4054y+dvQ7gQwhZLQ7tD4LdFzNn\r\nuX8F+fGIxyIjpz+9aYFrGn6QY+O828iY6jeQHX7NvkWc/47sBbfo5YyC3HE4\r\n8V3L+fXEMuICf1eo65iSqNYe0aO5FlDF+YUyNlPb2yCDG1i2triG7sdI6DiR\r\nI5rLqNMYMOcPiVWaO/331DqZa8w0bf4iq7E=\r\n=8tFr\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.2": { + "name": "glob", + "version": "10.2.2", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "ce2468727de7e035e8ecf684669dc74d0526ab75", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", + "fileCount": 65, + "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "signatures": [ + { + "sig": "MEUCICQahx2Ia3K8JFSJqPz5CUmpNwKp6yYEGgd4y9+PIHhDAiEA5bjr/xArEGm9oEoVvyYDCe9HdQ6gwjwbvr5WUHnqgrs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451548, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRH0nACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmodUBAAnd9i1xyrPuJRl+dEWBuTrXUx912DDdfmsnURmVH0AL/XV5LM\r\nDbgyfywyzq2hFNIkmbhkYAgeVrvBTZyVvGKfsz4/6MmaLracHdBRxCCJ+c6J\r\nlqyw+KiRRGQhePFWOulYjgtMjh69TQ4nCe5ct44MlhPn/C87yX6QN4UQL12m\r\nbvzXia7H4X0ugl/haPYc4P9ggAWEmAeqKHHteVRLGxpAZA5yNiGS3JrOxmhg\r\n13+LgfQrWQ9cmbKWD8Irv30Ks9c7DafdN87eFHVTjA3EUi0m7ANf2+l/EQIX\r\nCDcCQ4z7ltoK9bgvGfmly9PuUtysQ9WAi5EtVR0drvthBEsxm3zJeLq2a1k3\r\n2fbQV3S/tIaKzrBtGXnWbYmPch6mS6HApc5wGBr81c8NTIO6VRHqy/pCFLuw\r\nRDG9ppfi2s30IA0tpo0Aiqpn/dsFA6hHoowiNgcHwbkGWy7UhwCLi/QJlt7G\r\nxHeobYnmkLP05dH42iKMLykTOPFk2g+x+pGWwrFk0QeELjvMv/2PV4Xu2AFi\r\n6On4jxDII6PKqyV/DEcR1Vq2BcAW8DJqWCDoTFl30z/f4ixEV6NtPWuYgp+r\r\nSKgdGtRgzm+PCZWPn+CWG9kDmbRwrFu/fOXvEkhTcxn48HYJl/wczdE4B67R\r\n6IiF5bXMkwYy62LWjw6UzZC0Rmn2D2pu61Q=\r\n=MqnD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.3": { + "name": "glob", + "version": "10.2.3", + "dependencies": { + "minipass": "^5.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "aa6765963fe6c5936d5c2e00943e7af06302a1a7", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.3.tgz", + "fileCount": 65, + "integrity": "sha512-Kb4rfmBVE3eQTAimgmeqc2LwSnN0wIOkkUL6HmxEFxNJ4fHghYHVbFba/HcGcRjE6s9KoMNK3rSOwkL4PioZjg==", + "signatures": [ + { + "sig": "MEYCIQDnHMwiMeGmFmlpM2tvokJ7Z+I9xfV+D4niuiVPpbBeDwIhAO6BA+NQ6uxG1tFKuTspppEfZn+BZdFc/72myKaNlhMm", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453116 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.4": { + "name": "glob", + "version": "10.2.4", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "f5bf7ddb080e3e9039b148a9e2aef3d5ebfc0a25", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.4.tgz", + "fileCount": 65, + "integrity": "sha512-fDboBse/sl1oXSLhIp0FcCJgzW9KmhC/q8ULTKC82zc+DL3TL7FNb8qlt5qqXN53MsKEUSIcb+7DLmEygOE5Yw==", + "signatures": [ + { + "sig": "MEQCIDNH9FT8NVlOlVFHBARcqHZLKBU4UMJjZl3aXiyWg0NNAiBmYttG68I/OD7lP7SLfwwwsGouiJsfPglSOET60F23QQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453136 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.5": { + "name": "glob", + "version": "10.2.5", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^18.11.18" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "73c1850ac8f077810d8370ba414b382ad1a86083", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.5.tgz", + "fileCount": 65, + "integrity": "sha512-Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA==", + "signatures": [ + { + "sig": "MEUCICdowjbSVIlfl/DrutYecsN3QHktQxZK3a1S5g0B1TTkAiEAt+C7g+7EKKTvapHtoGy4Rawwe8q1JPtDNOi61ICtuCo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453138 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.6": { + "name": "glob", + "version": "10.2.6", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.2.1" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "1e27edbb3bbac055cb97113e27a066c100a4e5e1", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.6.tgz", + "fileCount": 65, + "integrity": "sha512-U/rnDpXJGF414QQQZv5uVsabTVxMSwzS5CH0p3DRCIV6ownl4f7PzGnkGmvlum2wB+9RlJWJZ6ACU1INnBqiPA==", + "signatures": [ + { + "sig": "MEUCIEq24qgqiEH3j8FvgfOFSDhM4hqFFj5EPyeBHnhfg4u4AiEA4EvWsOq5lAoMjLAWs7p/Wq/CL/4CVeaodedBq5hsVFE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 453134 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.2.7": { + "name": "glob", + "version": "10.2.7", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.2.1" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "9dd2828cd5bc7bd861e7738d91e7113dda41d7d8", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.2.7.tgz", + "fileCount": 65, + "integrity": "sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==", + "signatures": [ + { + "sig": "MEUCIQDSZInAjff2U6mgeRbuWK7+dZVFfzEK26PMkbRpOnkPpAIgAheXkGMrDbSIjF/5txTQ4lIEY9i3kcNo+BY6RY8hV7g=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 450163 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.0": { + "name": "glob", + "version": "10.3.0", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.7.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.2.1" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "763d02a894f3cdfc521b10bbbbc8e0309e750cce", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.0.tgz", + "fileCount": 65, + "integrity": "sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg==", + "signatures": [ + { + "sig": "MEUCICcUmu87/3q6fvgoGhXpego0I+WQFiMcDIgdqZxnLDddAiEAie25io9KXc05oAwoPpZUpUbJSVJI26sCAOzLMx8BqUg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451019 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.1": { + "name": "glob", + "version": "10.3.1", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "9789cb1b994515bedb811a6deca735b5c37d2bf4", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz", + "fileCount": 65, + "integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==", + "signatures": [ + { + "sig": "MEYCIQCc5Whu/mVKzGrJXKuISh80DLdtGAIYsh21eqvS1dY10QIhAPSrt7OWvrK58TuJd7RXZCBDBjGur34adBtKWkiGJiir", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451020 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.2": { + "name": "glob", + "version": "10.3.2", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "04fe71118ec6d2f4cb761849acbacec14b06cb1e", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.2.tgz", + "fileCount": 65, + "integrity": "sha512-vsuLzB3c/uyDLLEdBZtT8vGnN0z57rwOxHV2oYZib/7HWmBspUaja/McYIobBjC4qaUTuNpUyFO2IdqM4DZIJA==", + "signatures": [ + { + "sig": "MEQCIED1IrUsjEdqh2zl8WA7+tV+N6RZrosd/uXW19ZtdaP4AiBzxtRsYHwEJZ2h+RWjD1UKUgriugtmtgTYBxBtK5uavg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451030 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.3": { + "name": "glob", + "version": "10.3.3", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "8360a4ffdd6ed90df84aa8d52f21f452e86a123b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.3.tgz", + "fileCount": 65, + "integrity": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==", + "signatures": [ + { + "sig": "MEYCIQDF76psrBT0sdw9jHef6ffpmtWMY6a4Ex4SAZXO2IDP5AIhALlgkB0kBPJ17P7T4unTC62Hz/Fh0AKZs00iZbRaeRhf", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451741 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.4": { + "name": "glob", + "version": "10.3.4", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "c85c9c7ab98669102b6defda76d35c5b1ef9766f", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.4.tgz", + "fileCount": 65, + "integrity": "sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==", + "signatures": [ + { + "sig": "MEYCIQCD8o5EniBwTBDGGahq8ctrSt4ca9g6cuL1EktRPxxhSAIhAK8c6GoI46+Dq5zT2kyY7HJwfNHJswjsBReS0hNlvXda", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 450892 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.5": { + "name": "glob", + "version": "10.3.5", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "4c0e46b5bccd78ac42b06a7eaaeb9ee34062968e", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.5.tgz", + "fileCount": 65, + "integrity": "sha512-bYUpUD7XDEHI4Q2O5a7PXGvyw4deKR70kHiDxzQbe925wbZknhOzUt2xBgTkYL6RBcVeXYuD9iNYeqoWbBZQnA==", + "signatures": [ + { + "sig": "MEQCIEnOgdkHkc3XaEe7WjSVbJMZBIVezPKeZafCMjCrErcBAiAJsgLoVD547QQ9yxpMqn4RWl0osLMEdnaaY4rduyjlQA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 450930 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.6": { + "name": "glob", + "version": "10.3.6", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.4", + "memfs": "^3.4.13", + "mkdirp": "^2.1.4", + "rimraf": "^4.1.3", + "ts-node": "^10.9.1", + "typedoc": "^0.23.24", + "prettier": "^2.8.3", + "@types/tap": "^15.0.7", + "typescript": "^4.9.4", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "dist": { + "shasum": "c30553fe51dc19da30423c92cfcf15e433336058", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.6.tgz", + "fileCount": 65, + "integrity": "sha512-mEfImdc/fiYHEcF6pHFfD2b/KrdFB1qH9mRe5vI5HROF8G51SWxQJ2V56Ezl6ZL9y86gsxQ1Lgo2S746KGUPSQ==", + "signatures": [ + { + "sig": "MEUCIQD4ssxKI/Tj4CBwABsyGil048+c89rcrmbZiUGlqtaM5gIgKD0t+uU50sMqjO0xS2NMkt/sBMzebeso95A9T6Szdnc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 451644 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.7": { + "name": "glob", + "version": "10.3.7", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.1.1", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "d5bd30a529c8c9b262fb4b217941f64ad90e25ac", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.7.tgz", + "fileCount": 65, + "integrity": "sha512-wCMbE1m9Nx5yD9LYtgsVWq5VhHlk5WzJirw594qZR6AIvQYuHrdDtIktUVjQItalD53y7dqoedu9xP0u0WaxIQ==", + "signatures": [ + { + "sig": "MEUCIAtCoNKnKp1NIfqykjOoLdi2t7DZtLmDhxxEGe9+P3BNAiEApg0HKOViEnhnbrdo3P8ch0MR/ObzsgJ7HO+0HM9/Yww=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454226 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.8": { + "name": "glob", + "version": "10.3.8", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.2.1", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "186499f88ba2e7342ed7f4c1e60acdfe477d94f4", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.8.tgz", + "fileCount": 65, + "integrity": "sha512-0z5t5h4Pxtqi+8ozm+j7yMI/bQ1sBeg4oAUGkDPUguaY2YZB76gtlllWoxWEHo02E5qAjsELwVX8g8Wk6RvQog==", + "signatures": [ + { + "sig": "MEUCIQCu3IjzOZ9PVjiWWKeBxoC9r3j61vvS8Fsl7hUQkZcc0AIgVPEeGbMSz9jTg0zlHGxfjMMz9aHoi8uGxkEr6pVP6Ms=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454314 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.9": { + "name": "glob", + "version": "10.3.9", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.2.1", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "181ae87640ecce9b2fc5b96e4e2d70b7c3629ab8", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.9.tgz", + "fileCount": 65, + "integrity": "sha512-2tU/LKevAQvDVuVJ9pg9Yv9xcbSh+TqHuTaXTNbQwf+0kDl9Fm6bMovi4Nm5c8TVvfxo2LLcqCGtmO9KoJaGWg==", + "signatures": [ + { + "sig": "MEUCIBbyfND0pTnv+vH5eL4RkpxdX4w7o/7U/faGYwMkS66eAiEAjbIwuIelR+pafQi+5poq/HP4M+P6uhVCZMHyiEA1D9E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454226 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.10": { + "name": "glob", + "version": "10.3.10", + "dependencies": { + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.1.4", + "tshy": "^1.2.2", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "typedoc": "^0.25.1", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.3.2", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "0351ebb809fd187fe421ab96af83d3a70715df4b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "fileCount": 65, + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "signatures": [ + { + "sig": "MEYCIQCcK9lVgwIeyK0pIDUiBgch3VNYbCz2X19J9xedWfv8PwIhAOlivOFprFxRJfoU2cpE0iAkOpABeBTqukHm53PXydK+", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 454324 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.11": { + "name": "glob", + "version": "10.3.11", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.2", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "0d2af512a9490e3bc87360bcb97fd0465aa8df65", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.11.tgz", + "fileCount": 65, + "integrity": "sha512-0UAMm+R/z1E2bTR8eFnoIIlnrUK89m36i90Ez36ld9hLulfUPBgRCQtBy/v86ABx18jnGyrTvu4X3LAjIeBogw==", + "signatures": [ + { + "sig": "MEQCIDsTwlH0xKKTCy7hay26LiSnKBVnsyeO/nkanD2r+d5rAiAJ6/EnGdjw1hNoKOqLtje54wqbg6w0yZ1b8nVvVF5hUw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 459037 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.12": { + "name": "glob", + "version": "10.3.12", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.2", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "3a65c363c2e9998d220338e88a5f6ac97302960b", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "fileCount": 65, + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", + "signatures": [ + { + "sig": "MEUCIEJbWVa+FERWmrBZfJr/Dm12mBNuQZDNTI95jwDsydieAiEAnGuOMbGf/CUAz/6GPT8hDhPD8AsnVGXkEOvPD6Wuwao=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460403 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.13": { + "name": "glob", + "version": "10.3.13", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.10.2", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "20dfbd14da06952872a778197325f974e9fbf808", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.13.tgz", + "fileCount": 65, + "integrity": "sha512-CQ9K7FRtaP//lXUKJVVYFxvozIz3HR4Brk+yB5VSkmWiHVILwd7NqQ2+UH6Ab5/NzCLib+j1REVV+FSZ+ZHOvg==", + "signatures": [ + { + "sig": "MEQCIBcs6UFpcf9b45X47IRbzwXP+ayPMZwgQbkevYfByy0bAiB/HqTBjknlO1/7zLE77zGLPP0/ozkLSUhkD8Y1g66s2w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460433 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.14": { + "name": "glob", + "version": "10.3.14", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.11.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "36501f871d373fe197fc5794588d0aa71e69ff68", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.14.tgz", + "fileCount": 65, + "integrity": "sha512-4fkAqu93xe9Mk7le9v0y3VrPDqLKHarNi2s4Pv7f2yOvfhWfhc7hRPHC/JyqMqb8B/Dt/eGS4n7ykwf3fOsl8g==", + "signatures": [ + { + "sig": "MEUCIQD7LUNeU0oj9TW182JbJOl1in+zCv95dcWCx1LFFl1qWgIgTAMJKcoCKonYZFxTTHXf0iuprQ9HP1s/7E6PL7LjfOU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460433 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.15": { + "name": "glob", + "version": "10.3.15", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "path-scurry": "^1.11.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "e72bc61bc3038c90605f5dd48543dc67aaf3b50d", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", + "fileCount": 65, + "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", + "signatures": [ + { + "sig": "MEQCIHnLr5bfuu//yukpO/4PVSAN8UbQ1K6zTQuF+JS+Sle6AiBK99Yr4fBawMxWLQYTWS4r57yPAro5RdtGou1UrWKEBw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460433 + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.3.16": { + "name": "glob", + "version": "10.3.16", + "dependencies": { + "minipass": "^7.0.4", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.1", + "path-scurry": "^1.11.0", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.1", + "ts-node": "^10.9.2", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "typescript": "^5.2.2", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "bf6679d5d51279c8cfae4febe0d051d2a4bf4c6f", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.3.16.tgz", + "fileCount": 65, + "integrity": "sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==", + "signatures": [ + { + "sig": "MEUCIDE6Ae5RxwgY7yAUArya6IpBTSq3MAJ4COgWNiYA6TsBAiEAzIIf4ZTkP/tG98Xo+OkO26VN16Kpb6uIcJnjlcbEM7A=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 460323 + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.4.0": { + "name": "glob", + "version": "10.4.0", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^2.8.3", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "a6803ea42f6f609900e41f610e1324e292d55cb6", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.0.tgz", + "fileCount": 65, + "integrity": "sha512-+K6CicMIL11UEbC3gH/MVxgGG4gJDMu9tPD+nH+d6W3+y2fYuDSbpa2b+EGyvCGvSN/PT/7daJTH25NknJkcIQ==", + "signatures": [ + { + "sig": "MEQCIDsewWfLDYiGyDHb27hsUApiJRkpCnEAwC2hZiFfBTjSAiBKXheFHOlVp0LcO74Tk1jK1xz1bEcp92eCxCt6jOiy/w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475552 + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.4.1": { + "name": "glob", + "version": "10.4.1", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0" + }, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "0cfb01ab6a6b438177bfe6a58e2576f6efe909c2", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "fileCount": 65, + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "signatures": [ + { + "sig": "MEUCIHBE6KMjMJTHA37ZG89jVyJQPJvXYlSrgtRma9tMTS2TAiEAhIKUOfuL+R1FGUWfBjMXfm8sTKx2L9y0yVUlo3qfOjw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475913 + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.4.2": { + "name": "glob", + "version": "10.4.2", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "bed6b95dade5c1f80b4434daced233aee76160e5", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", + "fileCount": 65, + "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "signatures": [ + { + "sig": "MEUCIDrgJHmKIV4xbjy6l7it8DbKVmpOug0kpsOFrU4GlvjMAiEAo1ww3T7RKR0eEUiod1FbOkKsDxYLy/umC6WzWuP93Ew=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475195 + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.4.3": { + "name": "glob", + "version": "10.4.3", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "e0ba2253dd21b3d0acdfb5d507c59a29f513fc7a", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.3.tgz", + "fileCount": 65, + "integrity": "sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==", + "signatures": [ + { + "sig": "MEUCIQCKOQFFwq5tFQIC2YM+qNN9Bgjbv0oDC6Se02xhEhelVwIgKEmDRoKPv2NIBMiBeiwBH1cDTzMfGiTOnn865A9DXuY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475181 + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.4.4": { + "name": "glob", + "version": "10.4.4", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "d60943feb6f8140522117e6576a923b715718380", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.4.tgz", + "fileCount": 65, + "integrity": "sha512-XsOKvHsu38Xe19ZQupE6N/HENeHQBA05o3hV8labZZT2zYDg1+emxWHnc/Bm9AcCMPXfD6jt+QC7zC5JSFyumw==", + "signatures": [ + { + "sig": "MEUCIQCgHPF8XN3tuyJVZY/mk6XGnjI0czNt8rbIMYMlqgrw1QIgXnAz8HxtRhDCXenUQgfjYcEXPOH6Ylq+5q4a8fwDERc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 475328 + }, + "engines": { + "node": "14 >=14.21 || 16 >=16.20 || 18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "11.0.0": { + "name": "glob", + "version": "11.0.0", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "path-scurry": "^2.0.0", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "devDependencies": { + "tap": "^20.0.3", + "tshy": "^2.0.1", + "memfs": "^4.9.3", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.26.3", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "6031df0d7b65eaa1ccb9b29b5ced16cea658e77e", + "tarball": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "fileCount": 65, + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "signatures": [ + { + "sig": "MEUCIDcrb+cZALFLxpz8+7X8I+6JK/PP+5bHPA1sqhiOP7mOAiEA/cRMl/d2qmk3sT4QEJI1ZyMrRoy1B5RLTlu7bkWOcvo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 474708 + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.4.5": { + "name": "glob", + "version": "10.4.5", + "dependencies": { + "minipass": "^7.1.2", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "path-scurry": "^1.11.1", + "foreground-child": "^3.1.0", + "package-json-from-dist": "^1.0.0" + }, + "devDependencies": { + "tap": "^19.0.0", + "tshy": "^1.14.0", + "memfs": "^3.4.13", + "mkdirp": "^3.0.1", + "rimraf": "^5.0.7", + "typedoc": "^0.25.12", + "prettier": "^3.2.5", + "@types/node": "^20.11.30", + "sync-content": "^1.0.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "dist": { + "shasum": "f4d9f0b90ffdbab09c9d77f5f29b4262517b0956", + "tarball": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "fileCount": 65, + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "signatures": [ + { + "sig": "MEYCIQC8e5UGHGkyQAsQTODAzsj5/qX2Kq7Esa3fY6YbSWwQygIhAMKHzp7AD/3NOukC7JY3L+pGkD40FCF5NGkDTpEM+0Fy", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 474716 + }, "funding": { "url": "https://github.com/sponsors/isaacs" } } }, - "modified": "2020-04-14T14:23:25.452Z" -} + "modified": "2024-07-15T05:02:50.016Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/glob/-/glob-4.5.3.tgz b/workspaces/arborist/test/fixtures/registry-mocks/content/glob/-/glob-4.5.3.tgz new file mode 100644 index 0000000000000000000000000000000000000000..b54d2316467841b162eae6b1cade0f7703ff8360 GIT binary patch literal 14605 zcmV+oIr7FIiwFP!000001MPilTN_7~@Ow5<-7+Q)|9#J`ZmkyJ#JNmf^W=%4yXsWcsZ-~Es%OdYB019=GyXSzTjtrH zKJm}y=H}yv57nPGAAR}d<1K}MZ{B~%|88z>eYyEa{b}p|qs`5SUw(Q2{+EB++Jm%yp#; z^;P;G=?`T*)qhp(^QxL{Z)^-E`B}^lH#)0b1d%0EjR4Lj`GB8{bU7^2S(WA)zDU$0 zt*VJu*kYgyZuCwUr8IaLKZ+ml(?ZYkGOhCB3SQt0;aPPx;{no&8o{G^F_9-QC;0#Q zd=L-w=|+l+C^xcvq}Oq@82dn%YXUw^(#*^h$el+VrxRVm(-Vg5zk@%^t8D1~31dw2 z3?IPXr_^6(XK6+dWV$#wjkmexbL1d4n4gXrNs=pY#JCvIxUj1z`h^< zyLnzE)b1afut~OYl@2ecH_YO(8;`f$8)pXlIUh{Yk|v$armC1{Y5>zYA5L_V8F;fI zAM*ofR!r6USiSrA7-&u58`z<^dT%$s(q-j?vz^sn{-R*I3L9*!dE15$)(d^6v!(rx zdq>CLANHR2_MdDi+(L%3xw&5IYCiLT(d-e0rLO*oA*ES|6k?jWaZ@Rc{&-XqbjN9RJ%=Vy^b#eDB4McJWtyF->RhW?Qo#mi zCH+yJ>&XOO>aq(G{Q@4q`6*SBjo`QWcpOL3@p)P*_%9(@uhQvkqNh58DZ|(*&D4J; z?~)^u60uTy6+t85eJkGj(If@>Dy~$Ot5L2%4k~&9lY${uPEOnT`TF$A2>3Cs;tTb< z1ZEaR{eJ%~jKPv9dY2SDlP9Xs|D30VZnK^OeKs}}RdSzh5X zx&38Qs&PKgMqTWexj|0s^iH`Y=xRK+E{eQR`QWV{RtkQ@f#T@8gJ>Zv;byB>AnSDz zMXUH%xe7DZ;cj2$bA?)$y2NquFW3j#W8V1wq*ORQtRaiAC+bBw{|Tr}6xEj~kz;J}P7BS(X>NPiukA{92FUPZ+rHN$wmURCYRD1>`W)KxKN!`-KzM?`JTg z9z|&ebdn$rfuz2!wL}uF)Fo($s{f%+I0ovM2iN^B|CVG|Q8u4~Zi@Rxi&-D(Njgm{ z9~ibxvxZTou;IfT$UM!Wa)JVUc%DETm_E$D%vC@6urb&eb_c`JbzfcPb6~r?07cX9 zC-|D@*H55TpAM6T{hv(oOT>+XsLqpjaQJ3=m?je#`z#%*DX0qAiZ%=m)rfE&F*5T4 zr@0+PYpM^sK}Q`ZX%jbUium_n(^lbTOw3krZ|wWj_1$uP@Xbja$EWUXqCh^JX+oxt z2teorP9*Kup+4)qpK(JxAaXj!X;D_L7lOdY3=fFBztYEP_y5u7Ly=a@9CQgVU?07% zaF}p8wtI{-U1wp965smTm4rBbF ziyRk{XMm>Ra9$L^lC{8vL7E}oy8~o`C>!e_m$!jlYbQSrejGMTaS5bFI0)uH{28v{ z|DNh%--D{(!|qJ3c$y&~oSO$~4QLgpB4MKpPx30Uxe0b9I`s*(+dvP&3c%ul^O_f_ z7MV34_>W4R6eMHd%oPR(5vE51!y>tysPbwGjP3#snFk<7{`!S_mRDsI(X^4r;pnE( zRWM&T#U*h?IQ3-{>31Wupvx5GuBAYtKN4z!H#N^dFqBNK@~l-x!yNXjoaNaF7vHv@5%RK!UneCAZl+o6fg6fq5Fmi2f={tcBMcVg{({eGJ}ekCaoDtS z)JmIMYJEX;hkMIt%&vf!7urCF<>`opmDPsSKqd+zDcG$(3ukYCqCT0kC23?E&@V-| zMqd`Zug^$BW0?aI2~;+kP9`q|)Ijqj?b2wENbZn81>Ric5fcRNyU#|~aAUJpwdN5_ zIiJlYDV!sL2kQ`uA>v=qA3+4`v=}jpaVCTrP-b9eFc2aYwW)KNY?QpqiN7g@>l$bf zoGJ7olmlsyh$?VZBRzvNnp7+|#WkfK33__dSq1vKmXn?3ZU^6vX^dkIO>ESuZ)wObM zv^J(k=J)70S7$)D2o=2xU_x9?96Gv0)t+X0)6qE6TI~P>VPyhzKA3pl{EEQ)s(nP9 zl=f%!m8`;?Bv8Di@dGu^MBkSukCamo;n|6`2;fu?=avkd)wAgMvt8IGAPWJG-%Hey zj9}_2vBt_%XmvNs6+9pKN?Uef9mu)peic5G@4e<#z&v_j&7oQ) z4hs-mAWo9Wg_#?%@~g7aQ$+SSHFyF|GM!HK2$rEISHcHzbi0;DNUUf&75@fO4_Nq<o zr#Qg+@dC4jb(U;RQ_Exk%DaYHe4XbMIk-Ge0lX{|wi7uYZw)ZU2_lR8v^#y)LJG9N zQd9_m_^uSq2mT}_2Ku8HAz1c~&V!Mp-6SE2+LdL6ZAQX@b{?k2-? z0!Hc&dJAaNay6QRwuM>_9Pkq7$IG{U`f4`^+F~yk*k;he0yVvP@yi0ph!4GS}rc)2B$*b!3I-&OFfX)3V|g zEN-L$Jumr1>)GC6tM-P^f671-XPiloZ}wjFmUdZaeu8JDtAM+p3D{Na2B~!pJ6ijI zbu>~CX}#Fa(+Y3{`r|SN-a3NL{rXPPCQBQ9-Zve)xYeM}BG03(v)s3Y!_4;oxtc=L z6x2teJfQx`3C1*xj~JTM%Wn1yi`C?O!iWMh4adVLDO&ODiez%ii}Wl-)H+4**vy=rX1J-u z*1FD| z;bcPqT%p!UG7j6KnJC`4aT$m~lthN9!`Ud(Vb%9nKzvko(XwaKZArAs^!Wgx-Ib({ z6kh7;JRg-J*yqTZj=|Q;i=;?FZ~?K+_^dH^Bx*0gc%)K zxJ4r{sk;$io1UR8SSKrK3{0U&ruc7SbbXw%wR}(^L1vD+;Yg1YU_qATtl@-wnXp~& zO5>7@1r&tm7X1Pk=rC>?Y+e9Uz~xMlKuGVzlckG9bPyvv5iz0a8i{CfdO=d0k^RY@ z>vBFQK{ds{EkIJ`&S5Wy^NJ7_^_eM?N8j*pWjNCgt08oRK#wRZo)0n~noo*$HLL;* zOUsqJKL795xhV4qBYmx=Rpvw`Um;4EhGq}zr|z_4Aly0Hp;ppBql$*;5Y zJ%He~iVo1<-F`#y2Rakw997FqeFwHeep$xk+Zf@b_p;$+J^~Vo=}(E=WyURORdfVt zoZEfh>Fl&>RPo=V-je`JA%vnc?t5N z%cK~sb5Kk0OQ}?h;#I;ht1UVDY}vzV=?*}EZUaiFXIzo`A^L)KXdP)$gh|?{GFYo2$9qT+Cv=NLQ@Z8-tO7^w^B=n|%8Rm@?IPCYV$JgvsL zSS%|+<%mVgh>y@fv-E_ilocGp>Ksqr2$^wSn0PcRrKpwj8qmZuqL6ye%Q;}9N$`q* z211$6Sf$Jfm&vH6-hz@+a4=HN0@!xL5e0SEL#EwBS2wa1H zmg}E#>U5Tv5%J{T&PAOfn~YN!L`3K4WF@KPk=l{*q?*~eHIWwK40bk&OGLmhF@~sc zZ*;Pn-)C&$ULgm5hmQVNA|Ddc@zZ=>0;!yVI#h^CJ7mj1EM7n&MT?PNjZ4*N_3fBG zW8e7jj;tpMeCq-R3p8(cgcNKGQXB9r@y4UI#oTW~3byUW#9PYwugSsCq$OuL2LH%? z*rBmRA;7%|4R^F(Guodn>VpXOBFitG55QZWaiJpiSSuRn>QajpkIQM}o~$0C7}~{% z8V$7y&A@nNzVBO47M(a^Rx_CZ+TUxkKB36x;%@p-Ya801F#n+m5`7az2S%5bCu_zj z^Q`yku(!K&+#BI}cR5Re2}{Ge`xW~dF{tV~q)e zCv!t2mW%I@fhL%em$)#>MnPg?L#*aAlaP)P3}W`n8gb%8-VZu7jgcPA&+II8Mzf`d zYLcIwv7Y96x=@VJrt%tSgHVi#&xBG=`X7?+;97Lk4_k5k0RG@W0L*~^vU1z!a-HC;>}lF53djNnpg4nQKK(UESsflnzpv^;n9#;5yd&pt=s(DEB)`6L z4r}~-9pLJ$groUR>`amU+nA-K7TY)m0F(^dz0RpLmWYWf@Qen?rmVhHrs&mbRPb#u zhS@#w`qG)rU)Sbs0=VmWHn}oZbg0uAhnFKKj!V_jjEI^jLQ@O>4m9rshJ=vvQTG9z zOstu{WRijXU=2Xzs&7lDwBp}Eq641}3=N~OGBUbvo_Gc%u}zOj!p`N>DM@?R&px`b zBcDbN*M&+i%68)*@%`R1QQDV)zP!Z%yF<*gf(*kly;QkP_F2RCYhf3PqF+&t8>^rq zQ82SC)W~`ACh3iJRx@vk_PcCBmud;e{5_iwJ_Bb*X zC%{oiZaP14p~qU1ek>oyT{F2#!>gf_Yrbo5K`|y-9r*B2ox+DE!^^1F3WW?M6~f^l zF>V%X9Ucwpr>-e|~sEu)CFAyx`m#ZS=yaDFjT%W=!lJ2?WAOVVgb zkH5s;(OHh6R+7FTwT6X;UB)C{?rSv`oAyhbi6$4-=EKHDQkYZ^vVhoo;vXy%BV$t# zlRI2)l1*PhM>?JRk*Cyq?7;|HPnCx*F86?(;Up<0z(a{>SNf3`Z8u7zCoVxDK2K() z=Wk~H?lLXU#Ry}2Epmo2t%1{7-XXfHAcKm7-YXz>zNSFUOC#56laYhY0}yEjrZ+D- zK%$Y5k@(p;HLMB6{V)0fS{>I$0mnR&lMNR0!6?rL=KUIVx;J0+EeBIndQ9cKq1oP4h&lV@vgFaX2O3vjbr=QS@(=>cvv)gY6BQt_(amJFDT?m*8 zWNWekB6HC9wF7wee&Y%ra$t^{44f_yq=Gc_Z9I!MzmWHQX155}f%#Cxr(mLKL7D(* zyl6$pMvF@3c_+n7WK%!=2mreeSZxOL4)jNu;Uv#z?3MB~X_L-|XGG{1WK20sW=`Xm z95*AdTn?NS+}_SgVj~^ELeg*iBa@WtCJnR;dK9r&z+Hx!-nxKU+kloMH=a*fON5Kq zzM)yQPfojP_05~Lt0r$o6#Bk>(GN!KudXHV%%jERB9*wki>vi~Me3ft(Vh^_@ZdI}w(x|W_};+A5zi~@#X123e+xouZfp!$a z+=uBh$lk~84i|#hJQRl!`DTpv6E+%=++xj+MR&uMr<6WIHgHS>G+;g+Tb_di%~2tD#HRXV;hqq&;S~-(;j1HBXpGInS@)S z9MFD_P6C$^%mY$9lVBh)6kwd)->@yP8Cs-195*qm#Wh!WZbkO2@d+$6pFvTkNw*N6 zX#~oZoYM+8rAkKcFfL5z0!BpUkr<&yCKV}eXLC3!fI_rnBG2WB!`tNUal+=xa&dg0fHnOCJY;OcQHo4;8wFb3npWlJ#;-O#!WhvewBt=@{9@O0Q8lZ*|eYIB%RQU5>d(_4nM+SLjZ+-OCf#E z_lv%uJ(_3SH^Pc+{4J6fV8DnAlpezYc#r3g8=7uh&@EkT8Mf7fP#SH3D2jrrb7?MB z*vd;h^sB;Yj=yz%?l1jg>c3y??e_MMdcVjRx7`2n;7hvy zcGYEx!?|u7R036UFU{<#%*WLwJL;(BC7R8P8R~DuYp6s6?HxGzn)2e%o&(u+MywR{ zI%6NWXby$PqM=;^aAjDRXp*cPo0*zdvl$3`foE`W$$qJTljP5>%A9y$A71R zzu7z9?;Rb*06^^@sNVnd_K(%kw+O_W)7L%qVsGc`7d`dO!C|zs|95rts<*qh^P&sW zJ?!lsccH)e4chM>00a2%*8mIJsAoGbcb?-E4i$ElKcnxy-8nuwfDsR2RY$L19OLZ2 zIXrl&UK||Zgw^Y#9t^N^yn|f_M*hF`;Nh0L|LM`A%}03u$Ad2)e&+wb#t+zr zc~O;dGMSwxl;QG3+25mux2gX+weQn%#~6K2OzuQHnKZ_oySq2Z1EX5VlkF1+AhydIz)V)Np{ zoBkdJXGZYC{%+rbB{&%sI&*DmPol`)3Snm226LjzN$z|-gt(Zvpd$tpRXN_RfOTmH z+z0bJVze^+zR`6=#V%xWd&MyL_iBghU~JUad+)A^;zlpMM)qB7pL#2h?Pzdrc~{dVs}{*gaB zPuu*2ektD^ovuCY{CPtL5ZmlYI8vmjUC8u4NXtJwNv>s0;tqiVI}bqYus!dq$f zm%qqwF}h23s`ge#tpMS-wp|DBkgTi-)cXXLfdOI=buP`GJu@zz#R;tNaC+;>B)K>UJldBcbILDsMuDh5xp_j-3wC zSqSRH`_sbkp2ZWLomJ-@x#}$J?6;dHvo`Ks+=Sbl?1yd~6OWP-^Q4Leq9HGv%YkQqeT(pKa10zzzdsnaF`3wG zhu_zQyUbfmYAW(e!WGr$web=-ueikKtJ-@ocuCjvf49weEzqjEXKV9hXNVXVh{3#& zptL(X@&Gv)W$T-UCU8$I%rrI+>y6m6=75IJ;arM198!?8jnv&SFgVj87=|C22AI<9 zza3F_480N=@7|HLmzR_a61=4+{@JDn9y<_tBJ>zxSH%1s5PaZ<;7qyNDE!bh!u8gg z$N`rIqL29vNG-DsC^;f*fREg+CSiZ_%G%y0$u$HZPa}uS_b-Uac^m1T!6xo;;PA?H z7}j=uc!%9~epsIb&9htjN_M2*)jV3#le#*YQWGh5>FgyP?OvkNXO01K)ge6zsue7| zVQtQw^sZWk*Q>s8;m+`X%)`P$m=E=LUOj^M%Ad@#@&(p8xSu=r6j||(A^wTt-v?rb z=K_dY&&8Jb!mRlwh2LAZz_PzPK?Hi*nT+eGlj1`)+N5WWGCiesiHPx-KXq~ZKZIaj z1TscU2wJcc$8e5Kckf8!n}m)tzJCfD2Us{uNDl={n>0dbzS&h1I~~dNVx{8$!TYb& z1pm2r&zI>Y$1Uu2lAc;IvtpV!`oGXuWm_J1WCYr%O(%go21t{&FGx_1a?X(PE-Il2 z)(kX#^wM#90H>Ky$i(!;Ihz*?h{u*kx-zpj(*P`X>;r|Ujc4=nye)9tJI$xkYj`4U zP94j3a`M_ga26<7n^c6SL* zeN^)zrnTuS*0OjV*H)dilVIZWr<@46Q9Dnf`0a7p_^j;r+HHKx%AizOk90z|&GH~Y5%{;RK zHTHmpI>-q&wlwD+3&w1R;bP-q*wB)U?D!Nn5l+w~uPVG?5mb;ej$?mc*`Fm79M`vY zEW0$W8T5cRvtDj!6DORwMsShkfCy#Leb*j$LOA2FM@rJ*|sXgR12>YGLq8Y=0`i$14h@hBCz~XiU1EXZ2gZqcdaAJ=1j= zlM#flM(PmcH%I>Lcn=6f%YKXl32S%7x{j^Z1f#?GURj|YvGoPO@e3aK9cY(Ae@)$E z`s=Umr>)?(cEWLDfaurFOWnRvQoPw%UZ~s{=i-kel^2n-UXq0LwWiR-Y^zBkg+<6qtq3!J-A7Z+| z6LfUrP2ebMCGpP9t2FKG!Z2~Gi}R3akgTdV5?m67OZEK4!PiH}JBR#Q45(~0(XLp> z-Ck*hu)P_E3MRe2gDW*F=2RQWR-~l;>eA*_bDTtOuO*+Qbgxm!$z~kG9Phaa-`i4g ztp0rJQ(-t~&Wo1PYk7;R0^;EBNZ1CmZOXUKE57jEG!<*8!qZ^adQVlD4`;7LplYL_ z$4gY+UHz3UM@ni4bDfqgmFMX#*(?|}qmJyVXw&c;F2W3P_vP9`jgS&X=m4@aJjM(? zhGTN?Tyxhaw z^DdB*OQUQuIT~FA2@G6Hs~i$5!Anp$vt2Gx;93czMXqOnt1kAz!a52kTxdOGNODUV zB3*EceNT+S)WxgA=xtb?SlA2DFv*u7QHhEqV2E_9Z`& z*W^)R_q=ToZ^$>Cqz$LLge`0ej2XsDiI8_LGa_h^Hnd2ig_y52@j|y`GuyNWd2g~G z@TJRqke4O_g0an?jta5O&twhrDxLVR@o$5I#k2+@<*szre*bHw6zf^Q^d%wMCW|JtekA&X#? zr!K*^xV77YPgUE1TwmuvjYD4;pz-ngm7Tme)W7G5Yun~W;pz91CBJt`ot7wgU{(N| zd5Vuzxw_d$S%7q#-h$zYfOn9mu)Y)V_of5mTr?n6>hVSjP)o^LP7K=+J8LEW8cwL`sgYr(Re&pCN)|&Ve76uumQKqV6yIIr z#LBXr@kd)aUpIqV{tS<@7>}O8u{Q{}->fSzS=Uw;x?4-oy7s=iq!YQ6*7OcOMKzW* z0Zh)Zw{r=V4zZvdE!lxKea+=AV3U(2ZRt@{#7M5p&di-KEbSB~w%UL(2mEG?HSg*f zT;yW5TKx-u_%ck8SkZ+G`y-RYCbeL_i?9{3cokSKBCc9t_gO<O_~yd((7h#EWx>`67lkSi7+z)rP%2Y1+uABrVP(n;@xIm?4GiML}Bv z#^mrjNaJQmyq64Y+yspHdjsF}nZHA~$C&9|s|h5D=q0Rp#S`LzP_=U1Zmc&Jy=*OG zQ+%E0O}xKhJO<2NTb+h^nCvxQgji*zmc`86ME}z;6R)8}+?~PD1Vt%*Opl2=7 z!|DjQckdRu4|jz!#7=Hr%V{vCD6<@K;yWi~`I#c*T=NX@PSecfDA2l%sO34K3^w0xTFdfk z4ewJUfU&Hh)Y^Xcs^xwCQoF3zS)s>#8#c&(u!`H6rz50e{)(S`j({U+a*GasaE|T3 z#NFp2r(?V6m>p3UTjfBRESThCchz|<9Qg?NO#>0_d%^!2U$V8vY75<;hL=483f|#; zP?Q_sdY$F+u@n3*Gax7$~W`zO~Hs1x_;AL+>Jl-!n$PeX8`anc&2h^NyAj> zo+`RooHht6sjRLvF7mAMCW^O4Q)nWs{AObJnob2#aGlmVOw2MQP% z2#^U~jV7&HaSV-qXw_E~)}CyF(%x}96fD&<#5riX(Ayp&^Km-zOaSr9=Tu_bJsCwN z-;j73`^5TPFv>j|HIKmJzJLN%jy+~&&G_%Q>7dr1nS0Wfo?S{0pq30*EO(0(g zzs?q2cmoy%ujfzVcrYHg6xM73y>%2l1-ow-;MB)v?wMR0lL2;~#rx;~C1p}lg~3?8`; zoBu}}Oyc~_$f5ask(zu@O8Mn;Yl{-y)vTX4!HmcpiPaD##t=i2^{7M4t4ZXrcRR6Rf|fTcM)zA?WoX<| zuiaVRpKcAhWt@OY$|(+pw$3!qaUxec1~<^sNWmHK6bM`$L0{_dF$c@t9X?6OK_aP1 zR-G8w?+j;nfjQrt#{iOS;o}!;oa?bh5JBB8+_jl>cNp3Hra$#C-zA~TS-;cfetmt# z2?^$+Y;zBoxpS8xU_c@^mI2S*uT9xX&KMI`l;ZHAALQhThbwIY__0xe}&klX?Mf%fz^e_GVRF$dsB9REyq} z*2%w6nL<&v%2UYMEl5shKoYRx%8kSCIKzw1Zga#0nf6}h83>L7NE-~27j7T`y!3-h zy2%65cmcBc;2pIlf4|(=N>`{lX_t`gZj&Xkj)uQn?@faTYmV4Com?WDl1@M}9kF!* z(hGK(et)xx2N8=;mc?tR83nja_Ep6(|{Tbh#xHXcEL^K9&^$P0fN0BkBu>XOez zBWenQvF(noP?4g3G5tkfp?Lw=Z+peLregX;s+p)|WH>qIC!-sIzm{q;lJV9yPnD+@ zBh9x+fheNe{jYFC;-}k@lwwb#ioLtd5q8ncUXR$9E-4Q!KNVj@P-^@BVc!Axhq5D zw8D64KbKNGHouuAyPT2X4QV3oi@R+xdFhYcf%sF*62r15+sYI?1q{-pj@@MWhX*>K zOwPt4h`Mm@&t-%x+KF_ic>!*qXlF>)2)kz5--+QvlS}?+DA~~Eh57tjLYMXy>|z%7 zf&5;~l2X2r8Z;9ZXrb*Vm0kK0ed9Wk%zpEsYZ@jchNbatX1eg$7+1F$6?d|r8w~>8 zWC@TO(xmUt?xuCg@vrL3q{@;ay2V3NH9l zNNfY}y&xR0uwRyoTy#MfpuUc5oi@4lTfO~*V^qGj$$HEy%8KK!gT#`109(F>SM0Bu zjQ9n#h3eqAvmhxvKfN8cw|~r|(pAr}kaR$wXQXe%_)T9N9K3362c36b_Kpt@UL5Q{ z4_>_9|F8Xn@Ag~UcblS%;WkDR$RfwMLGTeotZSk#tKc`IlXNmK^c^wc4`+9n?*-}v zGGHM;!RsU^i$3nyQ8n4bx6?25bD@Kf#V>bVHmaw;2Ul+3!!>3=)75-yIo(?CuHqnzA;-)5vHluQG)fV6^~wvw z%y01(lk31-ChQlcF(V@PFbNtiiXi2bzdI%Zi7JQivKmvAW&pV86e8d|9%3PyBB8D= zlk#;|BI2AC|5TlrU-8(1x8~?$!Bd z*SC1xovtv-E5ojAC7ZEuq_Ffd=gLBat&3%N7gWmEBkSAjrqykxv4-edTY%Y}<7*OR z<9IwG?mLXu1fKdf02k%s7FNxH{YK_g%fkdr{_SsnQ}{(xeaUlB>ge1g38wVj88#p( zTOa+Il(A3^xwm`(hnpb2pDJ|$gCsy^X)$_w1Ggue+{~-S;Ys^!WbnMU`}GC6UI7cg z5kbxDyBVN~wAFcZz@lZ^w*F$N!~CP%<>n+?_AEYstI>17fE~cY3-9B?mUYX#8qTlh zE5*aU7|LJf&Bk4=iiAqvHcsAbym@nKZuOC__K@@6%WqQ&vmO?G<37Av1S{-lZZ%ob zS5z#Vv@;Nllh@sg6Wl@6c<)+^?p+fr!%cygS-WwKtdYpCNlr^H4>2FUT;l0>GdHK* zUdm!WfJ8phuISYicV&gLPWEz1VPIVN%2<;JcWfjnMh^IjqH*(;Lws3|tsfKOmfH)L zQk}C0sc`BiIxuc^Nnj^JlXJ9H_F!YO(KNXl@HgSkfn8s6qy&ze^Nkn;I1dTJyTRvS zyPBS`z&rU?Fp`2Bdx@X46|>%$*)Ur@q&!)k@$iW?O064!;(}?oK3v(Qd=e<7z^8S{ za5KZAnMQ8%dMA8Y={zG3q>CHaw@=Jfrpu5+=D&5S1a>`ADke%V_#Q!Z<5<9UXh7Bw z%>5T|Tn~4du^V3V6cLU;(d%fb3(KIb=3ERs+P-(%VXE0T{S#c%6LWx?ozITNHtU0& zN$7n)nm$^U6ldCgJJR)c@7(A0d|4EJhuS%$onMYAOB}#~#P`=_*5(%h7%c$X-ESMe zAMewz&YKl+A&H(BeRCoaRE){)lR>b$CE<@UzL8CV|kK@7{>Nb$pE<%azZIy@-n zy4=`${AJ5$wm08cz(u-2kni~&P_$y}L&7!7dZ&`vfNM3*Ij=tEkAdIimpmZ$nlE}- za&1I(`$Z3t7oxbiaQ@CW04yo>|MZ3RCjE*#*&=39)`$iF%o2FQxR0Xx?W>FCLx_Z? zE32i9S)5W~9F!}Oo2yNmE0OWXB6eoWX|PV()4cJbH2?oN??Shx=R)_y2i4+)pis`+ZfyecCFxTe<(wErWBedTo=(Zp@ho z>Q_EVVc6%Iu+KGN>L=BN{YGV6pDVcj^((kMC-lF1E!WbT6W8)*)pMEC_D3k?61=$v z$Y5=j1w-)mH*6>GYspr&$?f%8Hh;TOqTi)b>xQbRyH_gxgmSLi%Bis^>v|kUvTP!rD6(EG=dm`sGTWu2|_~OO@_WsN|@uxk$;fjT;qdw}*m4vyDqU zhIgn{T2SH5$^G=DLBC#E5K)$Gep^|P(=?Trl#93r1>p<>53`&p6?6Ci@moyFm8)c|3Vj~jb&=%vXx(#b8yX35mD=j-i4 z6K-i5`fr>tUjH=maG6~F88`GVg8J#V^#9gL&Yyoi|9t-W{PX!|;phJVO);Ph0O9}u D$4Q%A literal 0 HcmV?d00001 diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/globby.json b/workspaces/arborist/test/fixtures/registry-mocks/content/globby.json index e6b2d221ff1c4..1acfb4c5ad338 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/globby.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/globby.json @@ -1,35 +1,16 @@ { "_id": "globby", - "_rev": "94-982357a0a5dde656184f56e0674c533b", + "_rev": "122-474580f441b28f698c3f096c59570240", "name": "globby", "description": "User-friendly glob matching", "dist-tags": { - "latest": "11.0.1" + "version11": "11.1.0", + "latest": "14.0.2" }, "versions": { "0.1.0": { "name": "globby", "version": "0.1.0", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "git://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "http://sindresorhus.com" - }, - "engines": { - "node": ">=0.10.0" - }, - "scripts": { - "test": "mocha" - }, - "files": [ - "index.js" - ], "keywords": [ "glob", "globs", @@ -48,62 +29,69 @@ "wildcard", "expand" ], - "dependencies": { - "array-differ": "^0.1.0", - "array-union": "^0.1.0", - "async": "^0.9.0", - "glob": "^4.0.2" - }, - "devDependencies": { - "mocha": "*" - }, - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@0.1.0", - "_shasum": "133eb75f549d2cd2306cef1781e47e7671576a02", - "_from": ".", - "_npmVersion": "1.4.9", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "http://sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, + "license": "MIT", + "_id": "globby@0.1.0", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "133eb75f549d2cd2306cef1781e47e7671576a02", - "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.0.tgz" - }, - "directories": {} - }, - "0.1.1": { - "name": "globby", - "version": "0.1.1", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "git://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "http://sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.0.tgz", + "integrity": "sha512-UaTSFq7btbeWOS3OnD3wk/YMxjyB7kCwfYzAqrMjGPGKxZuyhN1Izv8eWpfk2PKfX2Esu9ifoeqC38AP+ovOog==", + "signatures": [ + { + "sig": "MEYCIQCXsFqGGaRQLb5KNKuOCKtOegtM/PhNan7E+9ywqlKGZAIhAOFUQdA0KJd2TMZN1QK59vpuQxLqLM5srKK0KSMMrM5I", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "133eb75f549d2cd2306cef1781e47e7671576a02", "engines": { "node": ">=0.10.0" }, "scripts": { "test": "mocha" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "1.4.9", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "dependencies": { + "glob": "^4.0.2", + "async": "^0.9.0", + "array-union": "^0.1.0", + "array-differ": "^0.1.0" + }, + "devDependencies": { + "mocha": "*" + } + }, + "0.1.1": { + "name": "globby", + "version": "0.1.1", "keywords": [ "glob", "globs", @@ -135,62 +123,69 @@ "util", "utility" ], - "dependencies": { - "array-differ": "^0.1.0", - "array-union": "^0.1.0", - "async": "^0.9.0", - "glob": "^4.0.2" - }, - "devDependencies": { - "mocha": "*" - }, - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@0.1.1", - "_shasum": "cbec63df724b4bea458b79a16cc0e3b1f2ca8620", - "_from": ".", - "_npmVersion": "1.4.9", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "http://sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, + "license": "MIT", + "_id": "globby@0.1.1", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "cbec63df724b4bea458b79a16cc0e3b1f2ca8620", - "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.1.tgz" - }, - "directories": {} - }, - "1.0.0": { - "name": "globby", - "version": "1.0.0", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "http://sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.1.tgz", + "integrity": "sha512-2pbBkdOV/R5/MhfIjBuYikDsIYEJr7V9grzdsGkJKYCww7PV1pB5BJmBq4vAPvfZT1FO+EM373bK4HaOVl988g==", + "signatures": [ + { + "sig": "MEUCIQCng8YCN5VUIAHG/WuqzKLDOQGxW1TttGu2SmxMgbvS5AIgfVybZcvz7a8o4o4C4HLr5F5+73AN7xv4ts1vMyVaWMw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "cbec63df724b4bea458b79a16cc0e3b1f2ca8620", "engines": { "node": ">=0.10.0" }, "scripts": { "test": "mocha" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "1.4.9", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "dependencies": { + "glob": "^4.0.2", + "async": "^0.9.0", + "array-union": "^0.1.0", + "array-differ": "^0.1.0" + }, + "devDependencies": { + "mocha": "*" + } + }, + "1.0.0": { + "name": "globby", + "version": "1.0.0", "keywords": [ "glob", "globs", @@ -222,65 +217,71 @@ "util", "utility" ], - "dependencies": { - "array-differ": "^1.0.0", - "array-union": "^1.0.1", - "async": "^0.9.0", - "glob": "^4.0.2" - }, - "devDependencies": { - "mocha": "*" - }, - "gitHead": "dd3e3fa37824c5fb3bb49e25da20f03d5f46ed55", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@1.0.0", - "_shasum": "49edf76fa45bf214423e812f4035060f1a2cfb51", - "_from": ".", - "_npmVersion": "2.1.5", - "_nodeVersion": "0.10.32", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "http://sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, + "license": "MIT", + "_id": "globby@1.0.0", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "49edf76fa45bf214423e812f4035060f1a2cfb51", - "tarball": "https://registry.npmjs.org/globby/-/globby-1.0.0.tgz" - }, - "directories": {} - }, - "1.1.0": { - "name": "globby", - "version": "1.1.0", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "http://sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-1.0.0.tgz", + "integrity": "sha512-bapBU236nkjzVG4dm2WnNYKmolgNee3FGruBUG98NgtotXosfKm42DBelYoU1PkbLvuJlGQYmNuEms06xlIUrw==", + "signatures": [ + { + "sig": "MEYCIQCW3cr4Hbi6tguo5zXb2kif9WE3qdEg6XeasCrvYnHAxgIhAIUD7hKxwJTWGlVtG3FQZJo8ucv78B8YzXhqP+9XrGsz", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "49edf76fa45bf214423e812f4035060f1a2cfb51", "engines": { "node": ">=0.10.0" }, + "gitHead": "dd3e3fa37824c5fb3bb49e25da20f03d5f46ed55", "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", "test": "mocha" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "2.1.5", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "_nodeVersion": "0.10.32", + "dependencies": { + "glob": "^4.0.2", + "async": "^0.9.0", + "array-union": "^1.0.1", + "array-differ": "^1.0.0" + }, + "devDependencies": { + "mocha": "*" + } + }, + "1.1.0": { + "name": "globby", + "version": "1.1.0", "keywords": [ "glob", "globs", @@ -312,69 +313,76 @@ "util", "utility" ], - "dependencies": { - "array-union": "^1.0.1", - "async": "^0.9.0", - "glob": "^4.0.2", - "minimatch": "^2.0.1" - }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" - }, - "gitHead": "f6191fb39132b84534c9b1058e1e4af608c67eea", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@1.1.0", - "_shasum": "182928fafef4a036959caff1cb7b458b5b442a81", - "_from": ".", - "_npmVersion": "2.1.16", - "_nodeVersion": "0.10.32", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "http://sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, + "license": "MIT", + "_id": "globby@1.1.0", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "182928fafef4a036959caff1cb7b458b5b442a81", - "tarball": "https://registry.npmjs.org/globby/-/globby-1.1.0.tgz" - }, - "directories": {} - }, - "1.2.0": { - "name": "globby", - "version": "1.2.0", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-1.1.0.tgz", + "integrity": "sha512-DgTXXIVPi6Qm6s305W5nul9pFtdCtL8Taizwp8bZPPj0mN5apcav4nY4bibmMgLUqGmeEOxycnO/PxmOmKjIgg==", + "signatures": [ + { + "sig": "MEQCIFmxzOzcQC3obvCDeKJOnH8KlnvjPNIS/D7fuXHHgZTdAiAYFcernTMsDxbwfWatwOYdyq4iu8Dzcj9n20CmVmSpCw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "182928fafef4a036959caff1cb7b458b5b442a81", "engines": { "node": ">=0.10.0" }, + "gitHead": "f6191fb39132b84534c9b1058e1e4af608c67eea", "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "mocha" + "test": "mocha", + "bench": "npm update globby glob-stream && matcha bench.js" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "2.1.16", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "_nodeVersion": "0.10.32", + "dependencies": { + "glob": "^4.0.2", + "async": "^0.9.0", + "minimatch": "^2.0.1", + "array-union": "^1.0.1" + }, + "devDependencies": { + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } + }, + "1.2.0": { + "name": "globby", + "version": "1.2.0", "keywords": [ "glob", "globs", @@ -406,69 +414,76 @@ "util", "utility" ], - "dependencies": { - "array-union": "^1.0.1", - "async": "^0.9.0", - "glob": "^4.4.0", - "object-assign": "^2.0.0" - }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" - }, - "gitHead": "a9f08a55db62ab333883c1f05e716ddc707fdc16", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@1.2.0", - "_shasum": "c7c97ad1cc6f8594811da1eb82906a852ba47da4", - "_from": ".", - "_npmVersion": "2.5.1", - "_nodeVersion": "0.12.0", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, + "license": "MIT", + "_id": "globby@1.2.0", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "c7c97ad1cc6f8594811da1eb82906a852ba47da4", - "tarball": "https://registry.npmjs.org/globby/-/globby-1.2.0.tgz" - }, - "directories": {} - }, - "2.0.0": { - "name": "globby", - "version": "2.0.0", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-1.2.0.tgz", + "integrity": "sha512-G0PVnJQIP+DFdf1ZCoL96tzJFeGv9yHn3Iwr5sH+d4DuL5ST8WvEW/uiNetGPUYVAHGtI8DpbOpA3Orgh9CvCw==", + "signatures": [ + { + "sig": "MEYCIQCXEB2b/aWih91VNXHAKMQI/tAIVJtvzcpadnuEJ/TSlQIhAMxCMtNyAY3I84JEb/3AuG/qY/OvQrJoax3yk1vxQSQ4", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "c7c97ad1cc6f8594811da1eb82906a852ba47da4", "engines": { "node": ">=0.10.0" }, + "gitHead": "a9f08a55db62ab333883c1f05e716ddc707fdc16", "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "mocha" + "test": "mocha", + "bench": "npm update globby glob-stream && matcha bench.js" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "2.5.1", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "_nodeVersion": "0.12.0", + "dependencies": { + "glob": "^4.4.0", + "async": "^0.9.0", + "array-union": "^1.0.1", + "object-assign": "^2.0.0" + }, + "devDependencies": { + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } + }, + "2.0.0": { + "name": "globby", + "version": "2.0.0", "keywords": [ "glob", "globs", @@ -500,69 +515,76 @@ "util", "utility" ], - "dependencies": { - "array-union": "^1.0.1", - "async": "^0.9.0", - "glob": "^5.0.3", - "object-assign": "^2.0.0" - }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" - }, - "gitHead": "a0829c49932cb5afeba8ed7b13784fbf98e356b2", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@2.0.0", - "_shasum": "a401a4db2cc0c246ee2a45c19fece98a510eafbc", - "_from": ".", - "_npmVersion": "2.7.4", - "_nodeVersion": "0.10.36", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, + "license": "MIT", + "_id": "globby@2.0.0", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "a401a4db2cc0c246ee2a45c19fece98a510eafbc", - "tarball": "https://registry.npmjs.org/globby/-/globby-2.0.0.tgz" - }, - "directories": {} - }, - "2.1.0": { - "name": "globby", - "version": "2.1.0", - "description": "Extends `glob` with support for multiple patterns", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-2.0.0.tgz", + "integrity": "sha512-0Bei0b05c5oTAIxy5CbMP6RQMCaLQ0NS9LEhOyvzIAZWMROdzPEj6Qhoak8usNty+GwsJq7ImJ3Q03Q/KmQ03Q==", + "signatures": [ + { + "sig": "MEYCIQD4JoE/csrzBjiWxeBoA48LPF0vPGD6A6PXHXSqd5b9UwIhAMcauOb4oAgV2X+EWtVqo/9k572K/7127L8L/DOxB9eS", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "a401a4db2cc0c246ee2a45c19fece98a510eafbc", "engines": { "node": ">=0.10.0" }, + "gitHead": "a0829c49932cb5afeba8ed7b13784fbf98e356b2", "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "mocha" + "test": "mocha", + "bench": "npm update globby glob-stream && matcha bench.js" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "2.7.4", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "_nodeVersion": "0.10.36", + "dependencies": { + "glob": "^5.0.3", + "async": "^0.9.0", + "array-union": "^1.0.1", + "object-assign": "^2.0.0" + }, + "devDependencies": { + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } + }, + "2.1.0": { + "name": "globby", + "version": "2.1.0", "keywords": [ "glob", "globs", @@ -594,69 +616,76 @@ "util", "utility" ], - "dependencies": { - "array-union": "^1.0.1", - "async": "^1.2.1", - "glob": "^5.0.3", - "object-assign": "^3.0.0" - }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" - }, - "gitHead": "2b49f02ac7211b8de3eb570e0d81d8733b249a9b", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@2.1.0", - "_shasum": "9e9192bcd33f4ab6a4f894e5e7ea8b713213c482", - "_from": ".", - "_npmVersion": "2.11.2", - "_nodeVersion": "0.12.5", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "9e9192bcd33f4ab6a4f894e5e7ea8b713213c482", - "tarball": "https://registry.npmjs.org/globby/-/globby-2.1.0.tgz" - }, + "license": "MIT", + "_id": "globby@2.1.0", "maintainers": [ { "name": "sindresorhus", "email": "sindresorhus@gmail.com" } ], - "directories": {} - }, - "3.0.0": { - "name": "globby", - "version": "3.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "9e9192bcd33f4ab6a4f894e5e7ea8b713213c482", + "tarball": "https://registry.npmjs.org/globby/-/globby-2.1.0.tgz", + "integrity": "sha512-CqRID2dMaN4Zi9PANiQHhmKaGu7ZASehBLnaDogjR9L3L1EqAGFhflafT0IrSN/zm9xFk+KMTXZCN8pUYOiO/Q==", + "signatures": [ + { + "sig": "MEQCIA7t1BLbT2hfEeFFfbEZXWIS3LXjzqytc1dgkfBK7l2VAiBtNddQWTM7p/UAlM+AZqtAk95j3ZpoYKpADveMDU4PJQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "9e9192bcd33f4ab6a4f894e5e7ea8b713213c482", "engines": { "node": ">=0.10.0" }, + "gitHead": "2b49f02ac7211b8de3eb570e0d81d8733b249a9b", "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "xo && mocha" + "test": "mocha", + "bench": "npm update globby glob-stream && matcha bench.js" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" + }, + "_npmVersion": "2.11.2", + "description": "Extends `glob` with support for multiple patterns", + "directories": {}, + "_nodeVersion": "0.12.5", + "dependencies": { + "glob": "^5.0.3", + "async": "^1.2.1", + "array-union": "^1.0.1", + "object-assign": "^3.0.0" + }, + "devDependencies": { + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } + }, + "3.0.0": { + "name": "globby", + "version": "3.0.0", "keywords": [ "all", "array", @@ -689,21 +718,22 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^5.0.3", - "object-assign": "^4.0.1", - "pify": "^1.0.0", - "pinkie-promise": "^1.0.0" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8", - "xo": "*" + "license": "MIT", + "_id": "globby@3.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "envs": [ @@ -711,56 +741,62 @@ "mocha" ] }, - "gitHead": "3f0e82bc72a35ba54d052ff0edaad55228f4ee8e", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "dist": { + "shasum": "9f8592c0c50aad78d12802ba87fb96082aaf7e93", + "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.0.tgz", + "integrity": "sha512-6yDSrePLH9SJedVRfoj2rC9d+V3Udq1CExgDkLMcwwN2vlUMVDCAmKjmf/P+pRqb+z3OI5yeDwgARtHOK/qKug==", + "signatures": [ + { + "sig": "MEUCIBtvUP6pmGB1rAuP/dNYYYRGIHfYSXuEFaCnK70TqvtbAiEAqXMNQlfJJZCBMJblWFp8FUD2Iqu8JFRwBEKzQWst1UM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@3.0.0", - "_shasum": "9f8592c0c50aad78d12802ba87fb96082aaf7e93", "_from": ".", - "_npmVersion": "2.11.3", - "_nodeVersion": "0.12.7", + "files": [ + "index.js" + ], + "_shasum": "9f8592c0c50aad78d12802ba87fb96082aaf7e93", + "engines": { + "node": ">=0.10.0" + }, + "gitHead": "3f0e82bc72a35ba54d052ff0edaad55228f4ee8e", + "scripts": { + "test": "xo && mocha", + "bench": "npm update globby glob-stream && matcha bench.js" + }, "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "9f8592c0c50aad78d12802ba87fb96082aaf7e93", - "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.0.tgz" + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" }, - "maintainers": [ - { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - } - ], - "directories": {} + "_npmVersion": "2.11.3", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "0.12.7", + "dependencies": { + "glob": "^5.0.3", + "pify": "^1.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^1.0.0" + }, + "devDependencies": { + "xo": "*", + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } }, "3.0.1": { "name": "globby", "version": "3.0.1", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=0.10.0" - }, - "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "xo && mocha" - }, - "files": [ - "index.js" - ], "keywords": [ "all", "array", @@ -793,21 +829,22 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^5.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^1.0.0" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8", - "xo": "*" + "license": "MIT", + "_id": "globby@3.0.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "envs": [ @@ -815,56 +852,62 @@ "mocha" ] }, - "gitHead": "55b2e222eb804588dfb56a910d96a5cf2831704d", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "dist": { + "shasum": "2094af8421e19152150d5893eb6416b312d9a22f", + "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.1.tgz", + "integrity": "sha512-xgjWNuCSDGwGXHBDLr8B9Wm+CzkpvwcWJVA3rj13VnUBX/2QXrPRoUPK84JZ15KPqDoJLOt/FImFo9s2g3xy2Q==", + "signatures": [ + { + "sig": "MEYCIQDtoWuCJXfoQMfM1iN1fkXV3S1M6gJ7dRfSbB22OwgxEQIhAI9D0gkrFbaWakcFQN6w5hFIgVS/OnbAYSztDbHync+Y", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@3.0.1", - "_shasum": "2094af8421e19152150d5893eb6416b312d9a22f", "_from": ".", - "_npmVersion": "2.11.3", - "_nodeVersion": "0.12.7", + "files": [ + "index.js" + ], + "_shasum": "2094af8421e19152150d5893eb6416b312d9a22f", + "engines": { + "node": ">=0.10.0" + }, + "gitHead": "55b2e222eb804588dfb56a910d96a5cf2831704d", + "scripts": { + "test": "xo && mocha", + "bench": "npm update globby glob-stream && matcha bench.js" + }, "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "2094af8421e19152150d5893eb6416b312d9a22f", - "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.1.tgz" + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" }, - "maintainers": [ - { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - } - ], - "directories": {} + "_npmVersion": "2.11.3", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "0.12.7", + "dependencies": { + "glob": "^5.0.3", + "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^1.0.0" + }, + "devDependencies": { + "xo": "*", + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } }, "4.0.0": { "name": "globby", "version": "4.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/sindresorhus/globby" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=0.10.0" - }, - "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "xo && mocha" - }, - "files": [ - "index.js" - ], "keywords": [ "all", "array", @@ -897,21 +940,22 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^6.0.1", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", - "globby": "git+https://github.com/sindresorhus/globby#master", - "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8", - "xo": "*" + "license": "MIT", + "_id": "globby@4.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "envs": [ @@ -919,56 +963,62 @@ "mocha" ] }, - "gitHead": "70389b06d4633868ea016ce38956d0a86aa90a23", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "dist": { + "shasum": "36ff06c5a9dc1dbc201f700074992882857e9817", + "tarball": "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz", + "integrity": "sha512-tf+ZZEIfGphbdxcRZPDHuVGEanAs/LmWL60v0rCi4zFF5W3JvoPYXy3P7I8KWqLYUEEl41YOK6zH84bnjELNLA==", + "signatures": [ + { + "sig": "MEYCIQDa62nj7pD0X6i86EC/+5giDcsDXmA8Gjg8D24uuTAvVgIhAPctH5KvMhnnvYQn/Jiskj/Ag2o48R9eHbjE9Q8E1oqb", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "homepage": "https://github.com/sindresorhus/globby", - "_id": "globby@4.0.0", - "_shasum": "36ff06c5a9dc1dbc201f700074992882857e9817", "_from": ".", - "_npmVersion": "2.14.7", - "_nodeVersion": "4.2.1", + "files": [ + "index.js" + ], + "_shasum": "36ff06c5a9dc1dbc201f700074992882857e9817", + "engines": { + "node": ">=0.10.0" + }, + "gitHead": "70389b06d4633868ea016ce38956d0a86aa90a23", + "scripts": { + "test": "xo && mocha", + "bench": "npm update globby glob-stream && matcha bench.js" + }, "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "36ff06c5a9dc1dbc201f700074992882857e9817", - "tarball": "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz" + "repository": { + "url": "https://github.com/sindresorhus/globby", + "type": "git" }, - "maintainers": [ - { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - } - ], - "directories": {} + "_npmVersion": "2.14.7", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "4.2.1", + "dependencies": { + "glob": "^6.0.1", + "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "devDependencies": { + "xo": "*", + "mocha": "*", + "globby": "git+https://github.com/sindresorhus/globby#master", + "matcha": "^0.6.0", + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" + } }, "4.1.0": { "name": "globby", "version": "4.1.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=0.10.0" - }, - "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "xo && mocha" - }, - "files": [ - "index.js" - ], "keywords": [ "all", "array", @@ -1001,21 +1051,22 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^6.0.1", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "glob-stream": "github:wearefractal/glob-stream#master", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "mocha": "*", - "rimraf": "^2.2.8", - "xo": "*" + "license": "MIT", + "_id": "globby@4.1.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "envs": [ @@ -1023,60 +1074,66 @@ "mocha" ] }, - "gitHead": "be0f9481251b163a94328519ecdc6305d059e6fc", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "dist": { + "shasum": "080f54549ec1b82a6c60e631fc82e1211dbe95f8", + "tarball": "https://registry.npmjs.org/globby/-/globby-4.1.0.tgz", + "integrity": "sha512-JPDtMSr0bt25W64q792rvlrSwIaZwqUAhqdYKSr57Wh/xBcQ5JDWLM85ndn+Q1WdBQXLb9YGCl0QN/T0HpqU0A==", + "signatures": [ + { + "sig": "MEQCIA3IiJS8oQ+GnNfB1nfL6Sj6C9QYRbI4FNHD/RLdo9iIAiAQKTlh2wj0vGQC6wVT53zuA2nB1qBV1gKnUTlQKshGzQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@4.1.0", - "_shasum": "080f54549ec1b82a6c60e631fc82e1211dbe95f8", "_from": ".", - "_npmVersion": "2.15.0", - "_nodeVersion": "4.4.2", + "files": [ + "index.js" + ], + "_shasum": "080f54549ec1b82a6c60e631fc82e1211dbe95f8", + "engines": { + "node": ">=0.10.0" + }, + "gitHead": "be0f9481251b163a94328519ecdc6305d059e6fc", + "scripts": { + "test": "xo && mocha", + "bench": "npm update globby glob-stream && matcha bench.js" + }, "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "080f54549ec1b82a6c60e631fc82e1211dbe95f8", - "tarball": "https://registry.npmjs.org/globby/-/globby-4.1.0.tgz" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - } - ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/globby-4.1.0.tgz_1463549816081_0.4191678147763014" + "_npmVersion": "2.15.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "4.4.2", + "dependencies": { + "glob": "^6.0.1", + "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" }, - "directories": {} + "devDependencies": { + "xo": "*", + "mocha": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "glob-stream": "github:wearefractal/glob-stream#master" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-4.1.0.tgz_1463549816081_0.4191678147763014", + "host": "packages-16-east.internal.npmjs.com" + } }, "5.0.0": { "name": "globby", "version": "5.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=0.10.0" - }, - "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "xo && ava" - }, - "files": [ - "index.js" - ], "keywords": [ "all", "array", @@ -1109,36 +1166,13 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "devDependencies": { - "ava": "*", - "glob-stream": "github:wearefractal/glob-stream#master", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "*" - }, - "gitHead": "2cb6d1f112407b3eca42ac87c810e7715189e708", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "homepage": "https://github.com/sindresorhus/globby#readme", + "license": "MIT", "_id": "globby@5.0.0", - "_shasum": "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d", - "_from": ".", - "_npmVersion": "3.7.5", - "_nodeVersion": "5.11.0", - "_npmUser": { - "name": "ult_combo", - "email": "ult_combo@hotmail.com" - }, "maintainers": [ { "name": "schnittstabil", @@ -1153,40 +1187,70 @@ "email": "ultcombo@gmail.com" } ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, "dist": { "shasum": "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d", - "tarball": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz" - }, - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/globby-5.0.0.tgz_1465626598422_0.48254713881760836" - }, - "directories": {} - }, - "6.0.0": { - "name": "globby", - "version": "6.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "tarball": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", + "signatures": [ + { + "sig": "MEQCIGYEFsHUTKPKpD4UDogxYjm/Ch6pTX5ceHnwtl+3kKHTAiBRIn67R+n1SFBX1CqCPHjuPSvn+4BouNP5565L4VsdJQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d", "engines": { "node": ">=0.10.0" }, + "gitHead": "2cb6d1f112407b3eca42ac87c810e7715189e708", "scripts": { - "bench": "npm update globby glob-stream && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update globby glob-stream && matcha bench.js" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "ult_combo", + "email": "ult_combo@hotmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "3.7.5", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "5.11.0", + "dependencies": { + "glob": "^7.0.3", + "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "devDependencies": { + "xo": "*", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "glob-stream": "github:wearefractal/glob-stream#master" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-5.0.0.tgz_1465626598422_0.48254713881760836", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "6.0.0": { + "name": "globby", + "version": "6.0.0", "keywords": [ "all", "array", @@ -1219,39 +1283,13 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "devDependencies": { - "ava": "*", - "glob-stream": "github:wearefractal/glob-stream#master", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "*" - }, - "gitHead": "f7fde2ecb6eaf773dea39e11a1dc704c3fc2dd38", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@6.0.0", - "_shasum": "8f5710eda32296ac53f011a97dccc70e936685dc", - "_from": ".", - "_npmVersion": "2.15.5", - "_nodeVersion": "4.4.5", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "8f5710eda32296ac53f011a97dccc70e936685dc", - "tarball": "https://registry.npmjs.org/globby/-/globby-6.0.0.tgz" - }, + "license": "MIT", + "_id": "globby@6.0.0", "maintainers": [ { "name": "schnittstabil", @@ -1266,36 +1304,69 @@ "email": "ultcombo@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/globby-6.0.0.tgz_1469224506166_0.6408459325321019" - }, - "directories": {} - }, - "6.1.0": { - "name": "globby", - "version": "6.1.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "8f5710eda32296ac53f011a97dccc70e936685dc", + "tarball": "https://registry.npmjs.org/globby/-/globby-6.0.0.tgz", + "integrity": "sha512-QuzMdXHFJBjY4Rje1/EavSzy7jWhvhiC8RrKBd3GYeg+jdCM+rc6f3XS4LtAmmJeEIrEI7xtw3V/mj59Sd0KhQ==", + "signatures": [ + { + "sig": "MEUCIEXfIg8T6ghKvXKEIZ/agGFYgjb5Fcy3cG8z7fV8ykyMAiEAy7uST8OQiAmMUZ/SkyQCcYTy6EBPxMDNKyaSfhYJYaY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "8f5710eda32296ac53f011a97dccc70e936685dc", "engines": { "node": ">=0.10.0" }, + "gitHead": "f7fde2ecb6eaf773dea39e11a1dc704c3fc2dd38", "scripts": { - "bench": "npm update glob-stream && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update globby glob-stream && matcha bench.js" }, - "files": [ - "index.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "2.15.5", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "4.4.5", + "dependencies": { + "glob": "^7.0.3", + "pify": "^2.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "devDependencies": { + "xo": "*", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "glob-stream": "github:wearefractal/glob-stream#master" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-6.0.0.tgz_1469224506166_0.6408459325321019", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "6.1.0": { + "name": "globby", + "version": "6.1.0", "keywords": [ "all", "array", @@ -1328,39 +1399,13 @@ "wildcards", "promise" ], - "dependencies": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "devDependencies": { - "ava": "*", - "glob-stream": "github:gulpjs/glob-stream#master", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "^0.16.0" - }, - "gitHead": "5c647384e349e90a13658778029b96b28112a972", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@6.1.0", - "_shasum": "f5a6d70e8395e21c858fb0489d64df02424d506c", - "_from": ".", - "_npmVersion": "2.15.9", - "_nodeVersion": "4.6.1", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "f5a6d70e8395e21c858fb0489d64df02424d506c", - "tarball": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" - }, + "license": "MIT", + "_id": "globby@6.1.0", "maintainers": [ { "name": "schnittstabil", @@ -1375,37 +1420,69 @@ "email": "ultcombo@gmail.com" } ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/globby-6.1.0.tgz_1478246824721_0.12834556330926716" - }, - "directories": {} - }, - "7.0.0": { - "name": "globby", - "version": "7.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "f5a6d70e8395e21c858fb0489d64df02424d506c", + "tarball": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "signatures": [ + { + "sig": "MEQCIA5zJ2/9z3SNj+UORjEk0ofZyHZvu3abyg4iAxslsmY8AiACA++kpsNRCL4R09uu3OU29U+J+Gu5cwvE7xPw3NUAtw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js" + ], + "_shasum": "f5a6d70e8395e21c858fb0489d64df02424d506c", "engines": { - "node": ">=4" + "node": ">=0.10.0" }, + "gitHead": "5c647384e349e90a13658778029b96b28112a972", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update glob-stream && matcha bench.js" }, - "files": [ - "index.js", - "gitignore.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "2.15.9", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "4.6.1", + "dependencies": { + "glob": "^7.0.3", + "pify": "^2.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "devDependencies": { + "xo": "^0.16.0", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "glob-stream": "github:gulpjs/glob-stream#master" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-6.1.0.tgz_1478246824721_0.12834556330926716", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "7.0.0": { + "name": "globby", + "version": "7.0.0", "keywords": [ "all", "array", @@ -1440,40 +1517,13 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - }, - "devDependencies": { - "ava": "*", - "fast-glob": "^1.0.1", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "^0.18.0" - }, - "gitHead": "90266787a476c4b1a0ae82f8c3b34ad00d07edee", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@7.0.0", - "_npmVersion": "5.5.1", - "_nodeVersion": "9.2.0", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-5n6UgzNezcYIi8V7Wmmf6jpVSLIhQVaz00B9Fjqq1dEFDnmFDpNSoO/0D203AgcgUQ5lgm1j8NKzbWCwk50dlg==", - "shasum": "eceef117ab948f394e85a0729bf5b96348958a84", - "tarball": "https://registry.npmjs.org/globby/-/globby-7.0.0.tgz" - }, + "license": "MIT", + "_id": "globby@7.0.0", "maintainers": [ { "name": "schnittstabil", @@ -1488,37 +1538,70 @@ "email": "ultcombo@gmail.com" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby-7.0.0.tgz_1510852506009_0.8633008548058569" - }, - "directories": {} - }, - "7.1.0": { - "name": "globby", - "version": "7.1.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "eceef117ab948f394e85a0729bf5b96348958a84", + "tarball": "https://registry.npmjs.org/globby/-/globby-7.0.0.tgz", + "integrity": "sha512-5n6UgzNezcYIi8V7Wmmf6jpVSLIhQVaz00B9Fjqq1dEFDnmFDpNSoO/0D203AgcgUQ5lgm1j8NKzbWCwk50dlg==", + "signatures": [ + { + "sig": "MEUCIEnoAAze64CJ22WoKpa+2hymcc7anI4eL0R4bIGealalAiEAsUkcUuk1sMYeO7QJ7h25Xu1zSScc3AmbU37yOnnRa04=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "files": [ + "index.js", + "gitignore.js" + ], "engines": { "node": ">=4" }, + "gitHead": "90266787a476c4b1a0ae82f8c3b34ad00d07edee", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" }, - "files": [ - "index.js", - "gitignore.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "5.5.1", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "9.2.0", + "dependencies": { + "glob": "^7.1.2", + "pify": "^3.0.0", + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "array-union": "^1.0.1" + }, + "devDependencies": { + "xo": "^0.18.0", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "fast-glob": "^1.0.1", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-7.0.0.tgz_1510852506009_0.8633008548058569", + "host": "s3://npm-registry-packages" + } + }, + "7.1.0": { + "name": "globby", + "version": "7.1.0", "keywords": [ "all", "array", @@ -1553,41 +1636,13 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "*", - "fast-glob": "^1.0.1", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "^0.18.0" - }, - "gitHead": "1c010918fe32f63c623b45ae356991ed255abc5f", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby#readme", + "license": "MIT", "_id": "globby@7.1.0", - "_shasum": "1900b3d559f647341b8f82beb1971af63ec68482", - "_from": ".", - "_npmVersion": "2.15.11", - "_nodeVersion": "4.8.4", - "_npmUser": { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - }, - "dist": { - "shasum": "1900b3d559f647341b8f82beb1971af63ec68482", - "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.0.tgz" - }, "maintainers": [ { "name": "schnittstabil", @@ -1602,37 +1657,72 @@ "email": "ultcombo@gmail.com" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby-7.1.0.tgz_1511086661821_0.726674459176138" - }, - "directories": {} - }, - "7.1.1": { - "name": "globby", - "version": "7.1.1", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "1900b3d559f647341b8f82beb1971af63ec68482", + "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.0.tgz", + "integrity": "sha512-xHqMnrHtoRVvAo/ZQz9R4BXZgjNSsP9ed6I9CkIkN6Yz27bAJMM93rfrCHCP1OtuG5f2lY4iX6cYmRPDNMLoug==", + "signatures": [ + { + "sig": "MEUCICfcVEUmEuCj6j61iVIsIEH1aUKw4Dkw+LrhClhRY3saAiEA+lbho3YoMN+pj8qqod7mADi/x/qOyOqnZEAhpZO9nWw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js", + "gitignore.js" + ], + "_shasum": "1900b3d559f647341b8f82beb1971af63ec68482", "engines": { "node": ">=4" }, + "gitHead": "1c010918fe32f63c623b45ae356991ed255abc5f", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" }, - "files": [ - "index.js", - "gitignore.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "2.15.11", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "4.8.4", + "dependencies": { + "glob": "^7.1.2", + "pify": "^3.0.0", + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "array-union": "^1.0.1" + }, + "devDependencies": { + "xo": "^0.18.0", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "fast-glob": "^1.0.1", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-7.1.0.tgz_1511086661821_0.726674459176138", + "host": "s3://npm-registry-packages" + } + }, + "7.1.1": { + "name": "globby", + "version": "7.1.1", "keywords": [ "all", "array", @@ -1667,41 +1757,13 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - }, - "devDependencies": { - "ava": "*", - "fast-glob": "^1.0.1", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "^0.18.0" - }, - "gitHead": "9bf9983bca42c2176657a2084608bd6fca417258", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@7.1.1", - "_shasum": "fb2ccff9401f8600945dfada97440cca972b8680", - "_from": ".", - "_npmVersion": "2.15.11", - "_nodeVersion": "4.8.4", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "shasum": "fb2ccff9401f8600945dfada97440cca972b8680", - "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz" - }, + "license": "MIT", + "_id": "globby@7.1.1", "maintainers": [ { "name": "schnittstabil", @@ -1716,37 +1778,72 @@ "email": "ultcombo@gmail.com" } ], - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby-7.1.1.tgz_1511088613172_0.09194997837767005" - }, - "directories": {} - }, - "8.0.0": { - "name": "globby", - "version": "8.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "fb2ccff9401f8600945dfada97440cca972b8680", + "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", + "integrity": "sha512-yANWAN2DUcBtuus5Cpd+SKROzXHs2iVXFZt/Ykrfz6SAXqacLX25NZpltE+39ceMexYF4TtEadjuSTw8+3wX4g==", + "signatures": [ + { + "sig": "MEUCIQCa4Uz3ABtxEoPotsiS4+ssTJmiF0CbUEyFX+5JO2udPgIgFfmcMz7j0e4cOOEahw9/uhiyNNq9d/LuGKRew59zw9Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "_from": ".", + "files": [ + "index.js", + "gitignore.js" + ], + "_shasum": "fb2ccff9401f8600945dfada97440cca972b8680", "engines": { "node": ">=4" }, + "gitHead": "9bf9983bca42c2176657a2084608bd6fca417258", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" }, - "files": [ - "index.js", - "gitignore.js" - ], + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "2.15.11", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "4.8.4", + "dependencies": { + "glob": "^7.1.2", + "pify": "^3.0.0", + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "array-union": "^1.0.1" + }, + "devDependencies": { + "xo": "^0.18.0", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "fast-glob": "^1.0.1", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby-7.1.1.tgz_1511088613172_0.09194997837767005", + "host": "s3://npm-registry-packages" + } + }, + "8.0.0": { + "name": "globby", + "version": "8.0.0", "keywords": [ "all", "array", @@ -1781,42 +1878,13 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "fast-glob": "^2.0.2", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - }, - "devDependencies": { - "ava": "*", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "^0.18.0" - }, - "gitHead": "5d3d4de8c3a17feaa6df962d2ba99a0937587c3c", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" - }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@8.0.0", - "_npmVersion": "5.6.0", - "_nodeVersion": "8.9.4", - "_npmUser": { - "name": "sindresorhus", + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-J8ous7DaaOmpw58Vw6E0EyV3yPK+RdMe7Y+/T3rGy3uhFBMwRL1/UEntVCLg5xY6ASm7X6aziXCO+ZgtMv/ZMA==", - "shasum": "e6f8340ead9a52fa417ec0e75ae664ae0026f5c6", - "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.0.tgz", - "fileCount": 5, - "unpackedSize": 12359 - }, + "license": "MIT", + "_id": "globby@8.0.0", "maintainers": [ { "name": "schnittstabil", @@ -1831,47 +1899,82 @@ "email": "ultcombo@gmail.com" } ], - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_8.0.0_1518495189595_0.026858297359410477" - }, - "_hasShrinkwrap": false - }, - "8.0.1": { - "name": "globby", - "version": "8.0.1", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "e6f8340ead9a52fa417ec0e75ae664ae0026f5c6", + "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.0.tgz", + "fileCount": 5, + "integrity": "sha512-J8ous7DaaOmpw58Vw6E0EyV3yPK+RdMe7Y+/T3rGy3uhFBMwRL1/UEntVCLg5xY6ASm7X6aziXCO+ZgtMv/ZMA==", + "signatures": [ + { + "sig": "MEUCIQCbvOl55A3oa56/mtxNEtd1fLX7SONNcdwKdkJVt3iKXAIgNBbnc7SelEmv7L/cZQXOdObYaQdTRH1ytzBiRj2BiEI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 12359 }, + "files": [ + "index.js", + "gitignore.js" + ], "engines": { "node": ">=4" }, + "gitHead": "5d3d4de8c3a17feaa6df962d2ba99a0937587c3c", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" }, - "files": [ - "index.js", - "gitignore.js" - ], - "keywords": [ - "all", - "array", - "directories", - "dirs", - "expand", - "files", - "filesystem", - "filter", + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "5.6.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "8.9.4", + "dependencies": { + "glob": "^7.1.2", + "pify": "^3.0.0", + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "fast-glob": "^2.0.2", + "array-union": "^1.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.18.0", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_8.0.0_1518495189595_0.026858297359410477", + "host": "s3://npm-registry-packages" + } + }, + "8.0.1": { + "name": "globby", + "version": "8.0.1", + "keywords": [ + "all", + "array", + "directories", + "dirs", + "expand", + "files", + "filesystem", + "filter", "find", "fnmatch", "folders", @@ -1897,42 +2000,135 @@ "gitignore", "git" ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@8.0.1", + "maintainers": [ + { + "name": "schnittstabil", + "email": "michael@schnittstabil.de" + }, + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + { + "name": "ult_combo", + "email": "ultcombo@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "dist": { + "shasum": "b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50", + "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz", + "fileCount": 5, + "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", + "signatures": [ + { + "sig": "MEQCIEWXTbwp/SwITyNCdftXRg9Nb86srTzYxTTPN60QFemWAiB4Od4vyWc1ZRGKFjIhzEzsZG59FK2f1ub5c1Ga/DjcBA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 12394 + }, + "files": [ + "index.js", + "gitignore.js" + ], + "engines": { + "node": ">=4" + }, + "gitHead": "c22e731c7c47c351b5f4d03e1195cbfa5f611fea", + "scripts": { + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "5.6.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "8.9.4", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "fast-glob": "^2.0.2", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "fast-glob": "^2.0.2", + "array-union": "^1.0.1" }, + "_hasShrinkwrap": false, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" - }, - "gitHead": "c22e731c7c47c351b5f4d03e1195cbfa5f611fea", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "glob-stream": "^6.1.0" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@8.0.1", - "_npmVersion": "5.6.0", - "_nodeVersion": "8.9.4", - "_npmUser": { - "name": "sindresorhus", + "_npmOperationalInternal": { + "tmp": "tmp/globby_8.0.1_1518849395259_0.29304546660026753", + "host": "s3://npm-registry-packages" + } + }, + "8.0.2": { + "name": "globby", + "version": "8.0.2", + "keywords": [ + "all", + "array", + "directories", + "dirs", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", - "shasum": "b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50", - "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz", - "fileCount": 5, - "unpackedSize": 12394 - }, + "license": "MIT", + "_id": "globby@8.0.2", "maintainers": [ { "name": "schnittstabil", @@ -1947,34 +2143,70 @@ "email": "ultcombo@gmail.com" } ], - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_8.0.1_1518849395259_0.29304546660026753" - }, - "_hasShrinkwrap": false - }, - "8.0.2": { - "name": "globby", - "version": "8.0.2", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "dist": { + "shasum": "5697619ccd95c5275dbb2d6faa42087c1a941d8d", + "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "fileCount": 5, + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "signatures": [ + { + "sig": "MEQCID4ikws08u/3BfAfYtLAjKdcAZHTLlQxrDEcEz6kXDTyAiBoJdtAN4Fgr8pZ5yxng+XdqQs3DF78GK2Zf8ZMy8gI0Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 12393, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNcwXCRA9TVsSAnZWagAAn3MP/13jWhW935BJshaerQ8/\neLPxAfvi3ruMp6OHWuGHaboao8bQiu/IrLHl93Za9FBRHWHLrZyGUFYP2cnx\nMuNzjF5lStKk7nK+P/jZpVBj+0cOaXgaYuDXZyR3u788RQDV2IriMXfVgCE5\ndM06KfRDOJl7E/x4pngih4QEObK5g8z9zJVe6gCFOuoJDgyqGEbjWfiiItd8\nGoih8SE05f3NdjvuRYhl2keajxeFE+lrA5/nNjES5jVUZoWXzopdD8BEO72n\nZ6vFu72JOh5jvQa6Bw5P8IQcA7zq+dWwJUc2TtByFWNaYtsigVlX+q6QEHOi\nBzRuxcooh5SQmVJtAyVOlGJGClLq8iiVD/s9d1W4D85Mz5ajb0KHUwntHpMv\n4tLAxcUMLSBt4LmnMYhkiMZPFpRKNmG8Tpi3jHTI8uCoDhRmJO+EwkfmRVnT\nDgj2YBE/G9eAOC/+SSNaTm8y3nm2gegQ1w1KRXCQhwfH/A+9BjPI81ibwVir\nhw4qnlLX/kH+6EMn5reknC5eNofSQAyc6PJIPzSXNqTTTPYGQzMAusDeCoZc\nygva3Zij7gn2v5dstlV6hPXEtjP/JKBLj6ExsBA/Onf04/ETQ0Wnfm/BVJ3c\nQBU/Si+ufS0bP1LLZDjJVMaJIUsgJzy9PQK323aX1td37zc8JgY4VnfZmnT+\n7VIO\r\n=ygOk\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": ">=4" }, + "gitHead": "946fcea913beb06817d91d8ffb5b4dfe09719a1c", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.5.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "10.13.0", + "dependencies": { + "glob": "^7.1.2", + "pify": "^3.0.0", + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "array-union": "^1.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.18.0", + "ava": "*", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.2.8", + "glob-stream": "^6.1.0" }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_8.0.2_1547029526488_0.46598739272501977", + "host": "s3://npm-registry-packages" + } + }, + "9.0.0": { + "name": "globby", + "version": "9.0.0", "keywords": [ "all", "array", @@ -2009,90 +2241,2521 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "2.0.0", - "fast-glob": "^2.0.2", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - }, - "devDependencies": { - "ava": "*", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.2.8", - "xo": "^0.18.0" + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "gitHead": "946fcea913beb06817d91d8ffb5b4dfe09719a1c", + "license": "MIT", + "_id": "globby@9.0.0", + "maintainers": [ + { + "name": "schnittstabil", + "email": "michael@schnittstabil.de" + }, + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + { + "name": "ult_combo", + "email": "ultcombo@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", "bugs": { "url": "https://github.com/sindresorhus/globby/issues" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@8.0.2", - "_npmVersion": "6.5.0", - "_nodeVersion": "10.13.0", - "_npmUser": { - "name": "sindresorhus", + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "3800df736dc711266df39b4ce33fe0d481f94c23", + "tarball": "https://registry.npmjs.org/globby/-/globby-9.0.0.tgz", + "fileCount": 5, + "integrity": "sha512-q0qiO/p1w/yJ0hk8V9x1UXlgsXUxlGd0AHUOXZVXBO6aznDtpx7M8D1kBrCAItoPm+4l8r6ATXV1JpjY2SBQOw==", + "signatures": [ + { + "sig": "MEUCIQDbQldF2n7SaG82xyRVBFdiWVb1PVN8jmy7Cm28MEvuYAIgLaEC8zph609tGZAouSXazrKBHO7QW2nqopXTfIdUAZo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 12708, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcODg1CRA9TVsSAnZWagAAhSYQAIndBU3DjVNyD3XcVKBN\nCPT2/OpstazNS7LebywO54FrPc78F+w+aWkSdCubB6oK6ggNS1cq9SRsIPUf\n7e07/m/09S09HhUvZsWL7zVMhrH9VwhsBpeGdxaxMOkYHtLbvuZwofNAkLqW\nGJta722xYvuKL9V17HZ3V+yK0l0F6AOq4+K8oKpgz0Kzb7WNO7YEVH0xTFOH\no5PA2WfOi2M3uQdLMMarKSRqs5RUvYX+dxBERTVSFxIkJcUAXinwxsALSyEj\nNl5YM206BiTFmscbAVe2oVEfpXQ/Zf64j/r6ea+XgoRs7C7Hqh5Af1rGHZ9r\n43+uMe9rMPOqw320fR8Ojx1PoDYOCvXaWdSv+iIaTKe2NHl/GN04y6hUSCDR\nNA4rGihOzABal8xly8WibqsdurD4GyrQ4nomeiSIF8rvCnMwej5CiZm/GBXR\nlirFW5PYdAwSL9yevQSpIpL2tTDJ8CBaDqgddhn+45hbwU1KJkJBSDRijc/v\nip76PVlINGjII5vjgv0WfSAgKtwLZfuOyaAO0G3+uOwUb3+l/fA2dygJwOEd\n6ixOgRcDVi+XEvVkBhGR4QZDdzk5UxPGK0cmYVWFUTwn4DINInta6YAd+iLh\nXLUFZdQ24vkkPSVc+NmYvCOd8qiSgnsE87RzitF4DqtZUewZTuZcdztXze2x\neZm5\r\n=/oQx\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=6" + }, + "gitHead": "71b9c58f86b4625b58ae241360016f4418dac288", + "scripts": { + "test": "xo && ava", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.5.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "10.13.0", + "dependencies": { + "glob": "^7.1.3", + "pify": "^4.0.1", + "slash": "^2.0.0", + "ignore": "^4.0.3", + "dir-glob": "^2.2.1", + "fast-glob": "^2.2.6", + "array-union": "^1.0.2" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.23.0", + "ava": "^1.0.1", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_9.0.0_1547188277243_0.8836554519309334", + "host": "s3://npm-registry-packages" + } + }, + "9.1.0": { + "name": "globby", + "version": "9.1.0", + "keywords": [ + "all", + "array", + "directories", + "dirs", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@9.1.0", + "maintainers": [ + { + "name": "schnittstabil", + "email": "michael@schnittstabil.de" + }, + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + { + "name": "ult_combo", + "email": "ultcombo@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "e90f4d5134109e6d855abdd31bdb1b085428592e", + "tarball": "https://registry.npmjs.org/globby/-/globby-9.1.0.tgz", + "fileCount": 6, + "integrity": "sha512-VtYjhHr7ncls724Of5W6Kaahz0ag7dB4G62/2HsN+xEKG6SrPzM1AJMerGxQTwJGnN9reeyxdvXbuZYpfssCvg==", + "signatures": [ + { + "sig": "MEQCIApIdy+sda3arKJG4S4BVppkwEPc0KmDg1kRXCGqaG7cAiBf5Cw5ly3fXuX9S/sdKEGHXVMtjVddtGENylP/P4q5Uw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 17692, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce9RjCRA9TVsSAnZWagAAtDYQAIiHoZJvCF9/U2vpn6he\n7rRW3sl1EA3oek+xo+ZI/vIujfZmNtyJMb0cMZ+QVzDyIUvUgSbkUm1PBIyT\n2drw2WPhjiurEfHt+00AjFf2iiFWlESbm5cVBlMZ0US52phyFEujM+8wZXlY\n2GyXtTQQsIrqUmj5XxvVPfegyZCSXIFSLeZN31+03OueN80age2IfOtrDrcr\nAKaxUbmmwx8UghMN+FdpM9urlMqPTkaFo5/hxqEgWUnOQo8dnZWr+SCNdxHI\nTBundoTPR/T4Wgx6j/i6M4gJ9MrPPg8CXZqlgJi68r1toElvmg0m0VWB9gch\nCSFL7jjGYjCafQE47DoZ6UsansNII5qn+dqJG/44g8gCC7ZejWqdwet+ZjN/\naFTE0sssS5OnJozfbjjHJh8lBmsww8Buvz+d6GabV9aGqGUv8FV73WwOkKiq\ntJ683tbj8ueSMy/yrDkZ0qmOtdhQS95G/KlG8GQJ3UgaXUO8DNLP3ZHPdxI4\nD8nC4caLcY3eXNAMA837SegDD6aqZlG0Fmch98YQv3rqZd9H50hL1hAGJrZb\n2JUzAZsGReUo4jl1hyvpXcEeUNhK+0JrPxMkfnqfxmrJAu2sUaFn1t45mttp\nafx9JCAYMbsRZgnUPeGUUM15tC3FBE9aPf7zJMJ+uVetFCWl1pQqMk+oDhwo\nr5dz\r\n=tvxx\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=6" + }, + "gitHead": "89cee24d7dd225279549f59023f905a9062c96b5", + "scripts": { + "test": "xo && ava && tsd-check", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.8.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "10.15.1", + "dependencies": { + "glob": "^7.1.3", + "pify": "^4.0.1", + "slash": "^2.0.0", + "ignore": "^4.0.3", + "dir-glob": "^2.2.1", + "fast-glob": "^2.2.6", + "@types/glob": "^7.1.1", + "array-union": "^1.0.2" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.24.0", + "ava": "^1.2.1", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "tsd-check": "^0.3.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_9.1.0_1551619170937_0.15984265992606628", + "host": "s3://npm-registry-packages" + } + }, + "9.2.0": { + "name": "globby", + "version": "9.2.0", + "keywords": [ + "all", + "array", + "directories", + "dirs", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@9.2.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "fd029a706c703d29bdd170f4b6db3a3f7a7cb63d", + "tarball": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", + "fileCount": 6, + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "signatures": [ + { + "sig": "MEUCIQDTQBPiyoE9GUP77mvuzMBXQ4izXKk1SuksztAkogTzEQIgZtOtDHjdsnoGZ6GoUIfxu7qb5Sp6uO4/9bN1HgBel2o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 17947, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcodaGCRA9TVsSAnZWagAASdcP/2cwUC55wveQgF+/3yg5\nke+djhfhPfISG7rZL5F6O5Rj3UGbH56YqPt2AWTgU2UL3WC8qYThry1MLiXI\niinjSEjEP4QMbQfuz9e3V4irv5sHH4VstZE5mI9E2JEa0LMmDJCdJmboF2GP\n0yw6krP4enpE2Nj5/NdMfx5UKPboCeuI2y7rVYRR8J2M5mcwT8EhmeG2R3qW\ngTAdu1i1fy13AQdKddNN3FCFCgjMp5aolgMf1jflKnL7gfr/Zt+dsqP5dcjm\nazwi6yGVSkmgUsnru7OogvTjZzVY2PFVN/OsXMOQ/HuhRU9cYwdrL5DGJhdl\nI7z+zdW6hHQuSn723T3OD7e/GERAkELqAFPEpFMgnIdGCq/XXE0YZPXBsdu9\nWu7QZT56/yFPoHdS+zQackmR6vEgTflUypBH3gpujnGfoJ0wYPXEtqtsBbxX\nhb12hvW8TDm497v9BimHKu1kLCl6RVqis1xv5eZMyec5k5OA4juzvbCeW5EO\nTDuoKpAvNXuEV27VtxFdEl8Q+c8McNRj2fohZdQehZwt2efY6a26x6UFoaPF\n1z92O1+acjjysngPqKjsDxkvkd+XivjoCi8DhrZpckTp1wHTHHFH8ohD9Q1I\nL9LiEs/SJmpjWhBsyIDT2xB6tsshR+i5WJdZFFY7tRBo9mEOVuqRUtewQChy\n5WB8\r\n=k3po\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=6" + }, + "gitHead": "766b728570193dcc2daebcf64c6e14bf5d95270a", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.9.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "8.15.0", + "dependencies": { + "glob": "^7.1.3", + "pify": "^4.0.1", + "slash": "^2.0.0", + "ignore": "^4.0.3", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "@types/glob": "^7.1.1", + "array-union": "^1.0.2" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.24.0", + "ava": "^1.4.1", + "tsd": "^0.7.1", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_9.2.0_1554110085359_0.9425982527014123", + "host": "s3://npm-registry-packages" + } + }, + "10.0.0": { + "name": "globby", + "version": "10.0.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@10.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "abfcd0630037ae174a88590132c2f6804e291072", + "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", + "signatures": [ + { + "sig": "MEUCIEnakPEsLWerahwIFAioGiOY978jNqz2S8OZpGdGqf0tAiEAkk6poYjURLt93EUjWT0LzwaI3FmLBhtwQU+vqQeg/3c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 20813, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdF6dsCRA9TVsSAnZWagAAskgP/iRAUZlp13E0ZZdNmbf5\nPSuGyFUhFwuo3Fy0fnZbFY+FMDjaApOBhUk/7jfXBfx5svSMnIqKPmezEscJ\nkkIsJknl/q7W+/ryhVsNXpYMul4mWOtnyZif7kHbpEje/H5XlHJNFksUx+/1\nQ84CYG3lhEnQOziJ2+zqVAr2asmTn3xxfRvyjLWZPmt3Uv+JavVFLxazTkv1\nNz6Z14M9d06I97pTYcQT29/A+bAiNkVtHHhV55JTWsFbPJ5usBXr+O4qb3Cn\nLphTJdVjYqFw8bMu41m1bvYT05e2dXvKn4zedJa94bZv2XkreKegnxbVxoTm\n/EQYlUcGbVPa50E1nL4wmasytIUfGtp62fCWj/t0QCMnn5PsnYVOFiap9ORk\n7G5oRu2MbMqz8L+iDIxV3rwYhKHAwwBKS9s3Kpwi9js9QCLp4+d+z+2ZIb8T\nWUrLfClkKL63ws69vo9P6GT7GVilm7wORPt2xcH3V+PXpmlGVbx08Xn5n/kZ\ntdeLZCfcB5S8h4sdD1vspu7o5RZM3rraXY4c5OONoJIoDOGEY8NLKmyoeSoK\nPrKhuPtF+kx8DF5E6Ok57Mv88gwqaopGWnF9LKEfBa8lEv83yHaUOrr8MfjT\njhpw2i9dqYv8c3QNS0/aqzlerk0wfxwUgNYTpsmGQ4214aMQ2Z4b7WG1TJs7\nkxdG\r\n=kN49\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=8" + }, + "gitHead": "878ef6e11ae66d71bce1175e5b2054b5ee63a9e0", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.9.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "10.16.0", + "dependencies": { + "glob": "^7.1.3", + "slash": "^3.0.0", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "@types/glob": "^7.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.24.0", + "ava": "^2.1.0", + "tsd": "^0.7.3", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_10.0.0_1561831275891_0.839704134980173", + "host": "s3://npm-registry-packages" + } + }, + "10.0.1": { + "name": "globby", + "version": "10.0.1", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@10.0.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "4782c34cb75dd683351335c5829cc3420e606b22", + "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.1.tgz", + "fileCount": 7, + "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==", + "signatures": [ + { + "sig": "MEUCIQCwLm59YStFOB4QBrB+IVmf+ha1J+rwn+1KRUV6z6hlnwIgT4LPnHhsEJdVKI69GptcDvJ4dY0+0imXq3e71BkFvpc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21937, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHu1oCRA9TVsSAnZWagAAMqEP/RbsHVqJTfUCTbyyTDBv\nGUAxxTjWLCAo0ENKFyfcTCOVXKHrDoPeLI3AIhQR64XeAJ1SVcM1Iyu2ch2A\nCLOce6Az2hr/WlzJ2sj17aIbKAArx23ZfQ/vewLxIM5supIYyO9vLCvZbo2c\nEvxMnXtaqnL4ZTEQBuzMAwQlW6zdKUUP0udT8a+KjbUdXixeVOh1nMZ4HbOv\n3DhiGTCLfkRTbHbi0MG0xf1QSopeLt3oqM+sQRy2QNqz5Qs+rSf1x4DJS/e4\noB4CBFqSwW9cCin9ZPAvhmhGsIxcZ/DSXLbk/x1cnPyN4/gFSSedMcXpQqaG\ntdg9JnkeIQHPvAfyHkbO4ySlN82Hcq2QIC+QXSiMvPZoWG459PX4a6dArfWM\nsaguxr7goPdgtCnBpdAqYjkDzAcm0o579ucYq20qSR4TNW7hrDO4cgrhjwyA\nGx9W6oXkdK6QO6rU3PN1WpSndZpVuRI0ZZLmZovXnrBhkfe4Xfzzg2vufPmH\nYm1YH2z6tlAJ3PteC48aEsozp/Q7DdeWmxq4iBMYgoCVR4vW/Rs1kv0VdE7m\n4IAoXzwbWhkgYYmVaCm3Ua3iWYwbAwhOlp6H/KS2Reqn+cOXcULA0RvqBP3j\nAO49WMj64p1HCqVr0s9tFFAjGZqc6LcPJIEbHmoNDHN0lFEo+baJ7QykAXFt\n1aVG\r\n=madz\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=8" + }, + "gitHead": "4a470444b83882d488eb9c4a1c323896b0fd6c66", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.9.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "12.3.1", + "dependencies": { + "glob": "^7.1.3", + "slash": "^3.0.0", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "@types/glob": "^7.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.24.0", + "ava": "^2.1.0", + "tsd": "^0.7.3", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_10.0.1_1562307944002_0.7338105205900769", + "host": "s3://npm-registry-packages" + } + }, + "10.0.2": { + "name": "globby", + "version": "10.0.2", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@10.0.2", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "277593e745acaa4646c3ab411289ec47a0392543", + "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "fileCount": 7, + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "signatures": [ + { + "sig": "MEUCICkVRomXAVjLbM9c5hiTXZFziv8sG5pqu6+91k3kdpDMAiEAkdwF7AK4Sg4GKn3Jf0Y6EwajDRw5VvwJI1bhP/j3XFg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 22044, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEvF7CRA9TVsSAnZWagAAFiUP/2k3nrSzS2AGAT0Fc43M\n5011Rn4jCgjkiTdUyLarFrg2qHpYKzD8U8mqBuY0YHPFGCuVBTABr1cYguO+\nOe+fKavVnxtEo1KuSZVBcgc8Tw1Rw5cRvT0hFbF4oGD2e9N2MMUopgqmQMjy\nVBBEk1ud2uT+o475JxCZFE0Z2+nzRppurnlpaX47/rNXLEQ07Ixdizr/CBSL\nN1oxjkiCMSGc2zHl7oJknV8fTOrR2kg+RG4UWTOAsfRn6Wa0vnU+1vEiVnIu\nu0XWXJVA2qckeicppvL68T/PGY3W+Vbii0uZsmOdXrsqybGPDnyh0Oyv+NRy\nz2/R09JnIYyzHoRAt+jRtEwSUqjMbuO7+2oCnFkgkOB68nOhPG9oeEXSWO63\np7AMcCkM5Sjyvwa70vbDlzVGJfKh5hbgGLgTOuiuua/KQtq+BaSsgDPHmbdk\n7b4fQSQeUHgKAfCokl36pxYv+py7+RT9ZkL6rUberCG309i3HRTWR3fLp2dV\nmHOTDXfg4bMYvpyr8cZmOEoW7Cwl1hrGT9CcQunb9sQR+KtdERrPyWpGNEDf\njDVeWU+gbdMT95zVV2vdxxuTuFFgeqmG6N2yrpjC5586gYQyFrHyA+a4LjhA\niUEXhcigRmPUlxLvQs13zq5KJll3G5465Mz0QvqF8YQydOO/0+w1+b5LU8yD\nSIWP\r\n=YQf8\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=8" + }, + "gitHead": "8bc1ab0bfe7117d459e2ab2c841652f5a53b34cd", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.13.4", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "directories": {}, + "_nodeVersion": "10.17.0", + "dependencies": { + "glob": "^7.1.3", + "slash": "^3.0.0", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "@types/glob": "^7.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.24.0", + "ava": "^2.1.0", + "tsd": "^0.7.3", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^2.6.3", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_10.0.2_1578299770793_0.8588366452121496", + "host": "s3://npm-registry-packages" + } + }, + "11.0.0": { + "name": "globby", + "version": "11.0.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@11.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "56fd0e9f0d4f8fb0c456f1ab0dee96e1380bc154", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==", + "signatures": [ + { + "sig": "MEQCIAiQ0tQk/UG7xyQo8RBJ++8OeC6td2XHc6zi0zZ9LXCsAiBss9liWGVuA4m580AKHAmBXM2VrmZVqpzzGcd22BY5DA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21499, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEwAPCRA9TVsSAnZWagAAEMkP/RWZ58vraC+EU5htWwXP\nDqxcjJ21KmQzCQUXN2bgz9SGeSiaQH4wR3dPfeoek893+hiRXGjwn+HmXm1T\nkP2KuK4ePo9nTyAhCSd67gNoaBqUtjO1VdWfMH06z9Lu61N0n0QH1aGBUkmQ\nKpEesAUabBWxe11hSXVxqU0PeTezB2/m6wBjhCsiv4KhuHxYcESnCxsnp4/R\nXts8y/MMG2qLG4D4empvCq8iLJIPRURf4NMvOqY7q1S1H/dOx2/FdvUapfwj\nOmrvkI0e36+b42ajzhCqpkgpxnEWhR2Oh4eUCA+CeT7yLs6oyTcdUHU+CaC3\nEd5UWNwwL+GfjKVqUt0pWrIIVNYu8juf2ssyuS5OVnxunH5Je3FraXtBlQUI\niIpVzbeoIJFNzCrSohDsO09ZEe4MGZ9w4bOUEhcTp/p7M8fnDAOMGMjc1D9n\nwrWBf0oiM6xnVfJCnpSrzkSdik5CgLfc8+iT3eDyGfFD8xW2QAaJP7H7pS/b\nidG4B/RO7dw1lgBK/LpqXLCppCfonEsDq5vUFXSJ027qAJLzbuclSjX6pXNQ\nasJ58Pk55WXrHXosNBXx6v+tGcZqWIU5Az+O6pzFt0zhJ1MDiSAyk4jP5Ywa\n5DfKPRMnaysfkr/iBfOEvJk+JHyak4FEr/jainVZrqbfSW1ZUx7lRf2PDJG3\n6Tgb\r\n=iEea\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "45ac58a95d9f774acd66a8996b777e52d3ed51d6", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.13.4", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "10.17.0", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.25.3", + "ava": "^2.1.0", + "tsd": "^0.11.0", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_11.0.0_1578303503320_0.2052850620069775", + "host": "s3://npm-registry-packages" + } + }, + "11.0.1": { + "name": "globby", + "version": "11.0.1", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@11.0.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "9a2bf107a068f3ffeabc49ad702c79ede8cfd357", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "fileCount": 7, + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "signatures": [ + { + "sig": "MEUCIHki1ETnsFyWBaAeuNf7+R2e2yrUY9Hy8v/Kh3npGxAbAiEA2vKp+1ID0gBibosKHwzfyJA1BC2LZ8+TirPqSaaWkC8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21518, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1gLrCRA9TVsSAnZWagAACHsP/0cGGGOSFkXbuk6e6lUQ\n4w3iK1ruHicjFdqeeqDWxj/J7v3gDdQd3O5kpHzn6l480NGp84bOiVQsagvG\nydTE23wEdxV8e7mkwFsqDmrK6ffDuqu9WPYlfI+uM2k+EeTVVZJebE9uGbjD\n0NMyYAbvuku/x5+aM5PCJkzORmXAGCblq40IhKMLkIxXnQMi1dmA3ZpKzAB0\nd2f/98oMZz5Z3eUJRSjMQpKwZq/IWneZEQGkZrIzwQ1QLPxx5w/Q8TIQGSxE\nyNCiTIO5HbxH06HNaQ9TEBTGycY8dYFGhhEYYNhHruUvaPUsh8yi+KB2Zwj+\nsgDkd4OdW6q3h8TX2zgpBpaDzf+OBArdWO5mTes+TRsOmfJI23q2wF3JRktg\nVIhmaw7/R9u5R3TQmCyBxTMUmbflEhkbYBinxRkcgxAeLt7eRlONEbfu4OR3\nreXpUzjl+2PkLNKL9YU1iOaE41qO2XoD7ELHXA9W4/2EPKF2oDWFkttKgF2d\nBovHQBbEBa6kFfiGKAg6YIq1afBBOK3QmBalq5xpyr6Jz0MdAahpTrcKSrnl\n509scFDf8dJ9NsdQ91ua5G+JbkBig/n5X7vvg5CdmchuVgG/MdKQpYmom8GY\nGJgTyel4jKGh68ADFDFoV/199v57eXg6N3dmLMO07MPoTaKfdkUYh0SorDxK\ndDU2\r\n=vxMk\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "39b7636370f8d57e9d0462f8bdb3bf9be88f98a6", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.14.5", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "10.20.1", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.25.3", + "ava": "^2.1.0", + "tsd": "^0.11.0", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.0", + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_11.0.1_1591083754810_0.36065016745674594", + "host": "s3://npm-registry-packages" + } + }, + "11.0.2": { + "name": "globby", + "version": "11.0.2", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@11.0.2", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "1af538b766a3b540ebfb58a32b2e2d5897321d83", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "fileCount": 7, + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "signatures": [ + { + "sig": "MEQCICIjbGO+f/wppv8euoZc4adl0QP8gfGxR1Z/EAJdh7SmAiBMko5XMZ82Aj/EwepULks5ga/5vD4I6MI1BmGJlJfOBw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21453, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9a34CRA9TVsSAnZWagAACg8P/0803G8DLX4zoE7loT29\nEJoPRuL+0TyraIgheaPKGgoDRF3XdhoOiIg8oLuyq11Ds3ukM2PbA7o0gTeA\nSnyxBy6m7Cwzw/+BaIEKfEjijxSZMXetR27cpV5BSOcikCw/x5GSb0KrkFcr\nbKsZafidz1BhJDYNlYsj2+CujxgzNel4OVjBmtd+2MCf6w9f/UBT7G+lL6w1\n2+m71U/8998u/S1C75BEvvdsQohkmOPclqkOTOuinbtIDNAxiQd71xKnghRr\nVxac5tN6wsXQ5DHcYo9Eb8HobcRTDfDnC5K2y7XukLznQwkBYaLl4vaYsVSB\nzXukevQTo5tWBxGf6PUaro2Cm9VUfSeRXwyzsK6Z399HYVbs32cf7CTNaFo/\nkxLSCzNR/EqyESOuv74fzyf5ZCTC2OhIWJQIeno6Bi6fPiOgr0XCvU9MXvoI\nQuzGTwO6GYo21O3nFEIGV+fvZTHrvYRaGXTZyhXMI334qmsJBgomHO8KBuT4\n4JBW5R6jbCa4inWFFTTdokZpl/9nrKH+YCliJoa7QVXB4QiE3yLzCN2XR2yU\nX8NdX3Qew82xJ5DhgJdQCDgQjbosy3cYA+WQvy57RJ0TtdJoekxKK/1xwspQ\nAmMvZHK8w9r3s1gTFewtq5bZGUwFRuIIe+xl6xikAEoii412U92jQhpOE82D\njliQ\r\n=0pk1\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "4bb7f4a3ffb1a4ef23c86fbf70261110513e1fcc", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.14.10", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "15.5.0", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_11.0.2_1609936375622_0.12925357541750482", + "host": "s3://npm-registry-packages" + } + }, + "11.0.3": { + "name": "globby", + "version": "11.0.3", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@11.0.3", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", + "fileCount": 7, + "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", + "signatures": [ + { + "sig": "MEUCIQC/JSGANCL7CFEZBT0rq9/QXhs9IdKcdjlDCnf9WIH8+wIgD0uKeXX14fHrhahTykdh2gpr+B1qexJGcBn1yIIGX1c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21456, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWGn9CRA9TVsSAnZWagAADp0P/jDMqwC4YtVT58AVkag4\n5hKTUMReMQ0qPw+yDcxAaeAWHhYQHUC0Umynnf7p1NCVk/KRuc6mmqfVJvXu\npEzFNOKABSzQ2uE8SUIRwYKPa6035USg2gDzm7JEkI1Chzv00yIsXDXHVWNi\nD1SrOJArKWLZySg65EtRcE04Fb6lclnbpro+GFKcLKBLhvAMTpZWNmJrTTf6\nqPeFPMNPwhCUgh0oFF8Bi4nc3sSIUpaxIdu5OuyE3DgPQFalKdpXmB1dkD79\naVzAt4r5t/kNiFzaVbQ+eJKaZRKoHQRNTmUFfZ8gk5s2lq163MCJt3ojoLGo\n/aAi7j7Enm8dATyQAgyXA9ifKgEr5pxBD+ibHHCbCSz1PlPIkasr8MGTGh1F\nWscBPndSRaviH/+LiR1Xn/Gk82zoon9XFeYB49mTdf3PyXbINbppz6ILX0jC\nW2zX5Plnp/cFJOttP7uNwBPq5S/23W2uMajcqfiiRLXQsIlwHHT/0MaAC28o\nSN7WHK/rhcXD0AuGcDAcKX8ocunXT0Aegf5y6b8MxZhxQeo8pdPras5y1eiX\nqZ3G3SBtMLJqGKXlmUoefVVtWZEj7OLkPg5e4AsvPqwRSIUoVUtqi8pKaYV2\nragVw/BTvs4Kve1WZI78tb6nxhjcUvhC1EN/uWW52Gr20wlBZ3+yyF39SmfA\ntRrA\r\n=ehcM\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "c1a3b3244ae992ba7e7e76f501a510ea0d9306df", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "6.14.10", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.20.1", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_11.0.3_1616407037244_0.10763246203093879", + "host": "s3://npm-registry-packages" + } + }, + "11.0.4": { + "name": "globby", + "version": "11.0.4", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@11.0.4", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "fileCount": 7, + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "signatures": [ + { + "sig": "MEUCIGmJaEUVW5JTl8GzXwJAgEH7MY4A5PKZYDNQ206E98pXAiEAvroaCFfhegju4HmKRFUF9L8d4BJi7PlX62hbf9nBt7E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21758, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyfxZCRA9TVsSAnZWagAAyyYP/1qmveok0cokUmxEySzG\ngX406MxsPte9d33hEMzO0Q7BSwukXHIDWdgeBpXlNwa3nLy6bmLAyz1LpbO8\nU9CIH2KlMsL9TrF0/3RoIKjTPr9Kwbvmy01yCY3FDRgHsMnpCbD0l+8ou6DW\nL5yZwadAeecfHbum0/Wfh9dwtSgauGrn2fVVcS2IALfo21QMFGq2pdm/yZRa\n0lDp/S0ax9Oeto1iz9FSCO2Ax1BCoJGpPVgWOi3Et9mNplzBNn8W8Y1Daq9s\n3OGXqwWCT3fm+BNGzN8BRByzYjaLh2ZR1/AlmE24o1UAPibc4dUqM16tFU7v\nusToD4WG+cRts2tQQvEwmSCq0l+cgp6jCLw9NG0gX8XjDdntOx5xAvjrQoT/\nqdAMhkV8SOS8EL01yslqoSC2htOade0CapuPRPZqeRpYxYHWbC3Qo+Py45G9\nc/aBgzGA5aq0URCI0P3mguctlfH61c2yM39TyBs1IXs6sOlYW3UK2UNPsK0t\nosVcw8iuzXLRPJM3NMZxwKx5vTNFu8y/Vh7cMFhbd1OujQUmImOW3s5TpUZC\nnBKcRnJFKRTFfDlUUC2kmdpHMmRARIyvcFoZVn4yxksAxE9tHihVsXAo88bS\neUpH+5z0QjC3ph6BErqDw/HAISWt/ThOFA5dbRtdigBVOPS+EanYZ8m4Ta4y\nwNGw\r\n=5W/n\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "94e192c7b73fa76f9a95131fe4714aec94731ebe", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "7.10.0", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_11.0.4_1623850073303_0.7398850776225132", + "host": "s3://npm-registry-packages" + } + }, + "12.0.0": { + "name": "globby", + "version": "12.0.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@12.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "b8bbb8e9d48f8a3c9abf5624030f1f9e1cfbe3ed", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-3mOIUduqSMHm6gNjIw9E641TZ93NB8lFVt+6MKIw6vUaIS5aSsw/6cl0gT86z1IoKlaL90BiOQlA593GUMlzEA==", + "signatures": [ + { + "sig": "MEQCIA1Rs6PNrFkOCKwNomg1IV/+QicGudNa0/UBL7A+yCy3AiANE1BQkfxuKrRcy0MD/XuMKVXAIO5zQHF8n6gOU9CDHQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21458, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+MzOCRA9TVsSAnZWagAA7C8P/3gNupkknvXWOoJrmLm5\nidAxrEJtEwr+YL3H5Ykvuc16fMpue/wwMT6ryQ1cOND7LPBzA+AHBz3lL/Pi\nSa0WDlS1qkdGt82vcgNAAwy5DjyzVDdVymSpoJliDdZJivNIVzkkkE7BW3uw\njoPmBJVXbCQiScZZmsK+dllK8mGqPjGyj9rkwWktFk492bZKDW/NaR/aLa1l\nnQH6koi3LS3TjApJVagpNthFUEyHXSVTizbOES1yzUuKJiQZ72d+SN7Zob9G\nhCFQYZr7LJRpIhB3H1HYLG+sYsgsUDSexVkazh67gSCqlDBK/OsNGNHqiwaf\nTRK3Rzrhv/J3VVr17en7QZOJYUmEDsajHoCbC4tSJ7iZogcpb9abhT8oVN2K\nMpmkMWuZPXLyW0XEHYPsHIsPh7vRhsLDblhGIDMXOiMEiwTTI35KZDynopaE\n3UlaZZET3d4b78jKv6j9GQtIaOO0TWi0OAukBfLbrpod4ERdkAbsOhhfbA5x\nKSSUHdVrfhpNjpp8nTrNv9T3cBeOTgt1EZRecbQR7Xhwnrm/nomqDcd88xoD\nT6C7zjghiN1XRr68gUexKOPv5Wc+lXhBtStbVBDpL3vHGY4R6jiJ7mNx7+5x\n3lRE5tQI9DuTZdZJfFG4stKWlMyUs0z4HasqhaFG9DUyMICv0s1+S8aQeStV\n6NQN\r\n=feCq\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "engines": { + "node": ">=12.20" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "24453e6bffef4588dc003379a19581c495084c74", + "scripts": { + "test": "echo foo", + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "//test": "xo && ava && tsd" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "7.10.0", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "14.16.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.8", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.42.0", + "ava": "^3.15.0", + "tsd": "^0.17.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.3.5", + "@types/node": "^16.4.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_12.0.0_1626918094205_0.8232627430549904", + "host": "s3://npm-registry-packages" + } + }, + "12.0.1": { + "name": "globby", + "version": "12.0.1", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@12.0.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "2c4dd20cc1e6647946afa26078b16c352422a931", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.0.1.tgz", + "fileCount": 7, + "integrity": "sha512-AofdCGi+crQ1uN9+nMbTnvC4XGNPJN9hRiPf+A76lUZIZoWoj4Z9iyUQGge7xCGKgR/7ejB36qoIlLoDBc7fYw==", + "signatures": [ + { + "sig": "MEUCIF2SNk4AbWz0mrHDyqG7Z8igvhQqBak27T1tln6L673wAiEAqEzdMQsn41Bsg5zm4+TTd60Lpw0s6VTDQNP+my5mPU0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21483, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhGtI1CRA9TVsSAnZWagAAuHcP/RTfs3JcuEi28grLP7oR\n8eUw8CeZXgxe9CbuhBoxxaf/Ix8dvyp00q5sCaX2Ja6H9oLgTLgnQXmHppg0\ng0O3Vmuqj0Edh3AAxD7uNbHgSvyJpy6Be/GmU2L9hYk/u1G+O3b0wLBdHbrR\nL0UD4GiZYwWzcPMlc7Rip6gDVLw2ZlE1+cZeYPWbpsDUOt+jLS+YfC15KBNU\nI89TOyKirv0tpaAFrRGcoTsIOBZUeQ9DORBkMycXNiA9I5gMqpHe/rGXyheO\ncz00qZmtH8yEDuDUrl155uGKZy9b0QYoa6fp+iKgrsK5NjHesuvqrm1Mg659\nrl2gZtRtMq2XsWlThRT//t0MTUm8dG8VWO+bBjhAaR/R1pYEGBJpODcZrAnG\n1J6W1CHmC8jG/SXmF+P6Ey8JT73ovhpOyUHJZRCrotSd4RBsbfEqoLFtP91u\n4cZTCJ30es2vfkiD5tb++ERNEvrRgfSzs/vdVzbQi1kaMdYPezCEmHbPO9Bh\nIIarwqPn1DFm0O6xuXAm3JSXomenAVo0mf3bIL6X5ytpIjgZ4pZJTlFmoX0I\nvjsUoA/fTFsajM4R0jxM9kajsY8KnHE5KxluITceJD8ap91rHL0O4+SpZ1Bk\nP/HJXd4XZUPdLMnaiFt4LoMDcs4MvO3No/ezXrDhudGwSMKlU2AYJNqw0O3H\noSjt\r\n=qhSe\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "c69526fb351f5aca59682173b7f9e109aacf9a3f", + "scripts": { + "test": "echo foo", + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "//test": "xo && ava && tsd" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "7.10.0", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "16.2.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.8", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.44.0", + "ava": "^3.15.0", + "tsd": "^0.17.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.3.5", + "@types/node": "^16.6.1", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_12.0.1_1629147701601_0.7791013345915361", + "host": "s3://npm-registry-packages" + } + }, + "12.0.2": { + "name": "globby", + "version": "12.0.2", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@12.0.2", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "53788b2adf235602ed4cabfea5c70a1139e1ab11", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.0.2.tgz", + "fileCount": 7, + "integrity": "sha512-lAsmb/5Lww4r7MM9nCCliDZVIKbZTavrsunAsHLr9oHthrZP1qi7/gAnHOsUs9bLvEt2vKVJhHmxuL7QbDuPdQ==", + "signatures": [ + { + "sig": "MEUCIQCA1/1+ohJ2wwHHllyLHxDfOhZGO6wbRH44OnVLrghwVAIgEhEiGrU4NXaabr0fr4uWhbsoitZp+mhT8xTrkpcMVYM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21748, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJMneCRA9TVsSAnZWagAAGF8P/2UdgL/TIyMh7ofPpVph\nNBF49DLUlcJWr13VYZ340VJlliiv2oc3m7E/wjd/D+9L7OKMpcWkK9CwjIbG\nGKW66Zy/stbyQjGBR/vQajUK75TJY82/RDvpwDWaYxPgV1zTkmBpNo9m0AKD\nl+pXzvsqvsfiBWsz0cu7+0rem09fMfeQYtHcikcBahasLrcJq3BHIKYcAxy9\nsr6BfbV7YbXHN51A40hHWuI3SMC7wPRggk7mZNJGsU5H34qKW24xtYK9ZTDu\nKtkQXX7KwSjNr3ZPTGdv4uM4NbDXYxc9cA8noFHPtuoyWeFDkDsM+LVlEpRV\n24804dBsfq4k6iQQ4YHpEzUP97LO7Ov+FenmXp0yUKR2ns0O7WJoYitsVRV3\nxxwiWdgVE2SK27be+pKSJ8KD2v7pWMJBnIYojsRlcj6ytolNYoQIcBpZ2Axj\n6B6fUtXWsnX9adeBP/a7wK0CbfLsDHPcA9T0k7vBhxKPk8mdMa0Yh2G7dOem\nqrIoWtVevPDtg569af9D9BxB5AhXCDkiqfvalXA5jxqcWFl+Ua7fHBhdX+0/\nI1fBEnyQzbLWcxLENqEny6lEh8mqsbiREjEGbit2wwBlFttni5gjQtIrnF+A\nQY5gFNu6y3K9pjj8c7589YomfwLMCaVtlR6TKrzlOtKBb+ZKGWI1VMMWqLI7\nQWeN\r\n=pC4x\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "6e099869e77240f705a951b6a80c09d3bab55423", + "scripts": { + "test": "echo foo", + "bench": "npm update glob-stream fast-glob && matcha bench.js", + "//test": "xo && ava && tsd" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "7.20.3", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "16.7.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.8", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.44.0", + "ava": "^3.15.0", + "tsd": "^0.17.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.3.5", + "@types/node": "^16.6.1", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_12.0.2_1629800926129_0.06662249391273334", + "host": "s3://npm-registry-packages" + } + }, + "11.1.0": { + "name": "globby", + "version": "11.1.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@11.1.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "bd4be98bb042f83d796f7e3811991fbe82a0d34b", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "fileCount": 7, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "signatures": [ + { + "sig": "MEYCIQCdLNeYk/I6qvNcqsvDNPWczLhaEc6iXDWknLB7VPLJ0wIhALsE8ux4hGpT5UbQ2LQuwPyPqtGEr7D3fGbDjCJyY0Tr", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21758, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2PsOCRA9TVsSAnZWagAAG6kP/0mm0XiEn37Py66MuP+z\nKK7w7Latcx1vtgmmnaybLWhae+WlYnqnMYBwpMNxUm5//m4IbwoRSHst/leZ\ntmmeWlwivXnTHZf2zduP0ZKeH/oubuQT+7gHcgoH0OL3NGjSHXAWFoLfuwsD\nEG497pqEpT3nFkpq4mFOh8WjEEZ9vZ7zXClG+MDYMXHbpe5qFdZg5B5Uaalb\ndbiCWbRiRoceZ69JE+aJz388bWpiFaDShVX9pHzbXLkrXn17Lcvql1iKlYlE\ntKVOS6Yex5SkRr1L2bhUfBZCEJz/7MHQRuZP7DydnCw6u3sx/74v+V5wF7gy\njELOdvp6DaQMdWKdJGwZJrG+gW/B/oV1itB0J46XIVPVuzKY41/vFFjryCYn\nkl7iO1Wzk0TORnFUd5oSBEbz5rSrD/JgSWdqsuE11wMNNqx49zP+TARegpn9\nqQxVFlEZrv1tnTCbMm59sk+QmY09286wofsPX1Tqy9hf7UuPEMzwjtxL9k64\nwsAazNzhCoP8rpsvDJbqL+Rq3iBOmFiGGMVooFpu1Bs0HGjqDcZ+N4V40sMj\n+FbTJPgTdvbYQFmtmhAafA360Oh+8XVmAYkID8Gp/+ud47we9UdnaKuQRD8D\nvah/0euMxdQy3aZqKZcew2+uWHO3DhEhzu+T0VCm1yPdlDCS+ku8FSIoZxGe\nHW2j\r\n=01Ko\r\n-----END PGP SIGNATURE-----\r\n" + }, + "types": "./index.d.ts", + "readme": "# globby\n\n> User-friendly glob matching\n\nBased on [`fast-glob`](https://github.com/mrmlnc/fast-glob) but adds a bunch of useful features.\n\n## Features\n\n- Promise API\n- Multiple patterns\n- Negated patterns: `['foo*', '!foobar']`\n- Expands directories: `foo` → `foo/**/*`\n- Supports `.gitignore`\n\n## Install\n\n```\n$ npm install globby\n```\n\n## Usage\n\n```\n├── unicorn\n├── cake\n└── rainbow\n```\n\n```js\nconst globby = require('globby');\n\n(async () => {\n\tconst paths = await globby(['*', '!cake']);\n\n\tconsole.log(paths);\n\t//=> ['unicorn', 'rainbow']\n})();\n```\n\n## API\n\nNote that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.\n\n### globby(patterns, options?)\n\nReturns a `Promise` of matching paths.\n\n#### patterns\n\nType: `string | string[]`\n\nSee supported `minimatch` [patterns](https://github.com/isaacs/minimatch#usage).\n\n#### options\n\nType: `object`\n\nSee the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones below.\n\n##### expandDirectories\n\nType: `boolean | string[] | object`\\\nDefault: `true`\n\nIf set to `true`, `globby` will automatically glob directories for you. If you define an `Array` it will only glob files that matches the patterns inside the `Array`. You can also define an `object` with `files` and `extensions` like below:\n\n```js\nconst globby = require('globby');\n\n(async () => {\n\tconst paths = await globby('images', {\n\t\texpandDirectories: {\n\t\t\tfiles: ['cat', 'unicorn', '*.jpg'],\n\t\t\textensions: ['png']\n\t\t}\n\t});\n\n\tconsole.log(paths);\n\t//=> ['cat.png', 'unicorn.png', 'cow.jpg', 'rainbow.jpg']\n})();\n```\n\nNote that if you set this option to `false`, you won't get back matched directories unless you set `onlyFiles: false`.\n\n##### gitignore\n\nType: `boolean`\\\nDefault: `false`\n\nRespect ignore patterns in `.gitignore` files that apply to the globbed files.\n\n### globby.sync(patterns, options?)\n\nReturns `string[]` of matching paths.\n\n### globby.stream(patterns, options?)\n\nReturns a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_readable_streams) of matching paths.\n\nSince Node.js 10, [readable streams are iterable](https://nodejs.org/api/stream.html#stream_readable_symbol_asynciterator), so you can loop over glob matches in a [`for await...of` loop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of) like this:\n\n```js\nconst globby = require('globby');\n\n(async () => {\n\tfor await (const path of globby.stream('*.tmp')) {\n\t\tconsole.log(path);\n\t}\n})();\n```\n\n### globby.generateGlobTasks(patterns, options?)\n\nReturns an `object[]` in the format `{pattern: string, options: Object}`, which can be passed as arguments to [`fast-glob`](https://github.com/mrmlnc/fast-glob). This is useful for other globbing-related packages.\n\nNote that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.\n\n### globby.hasMagic(patterns, options?)\n\nReturns a `boolean` of whether there are any special glob characters in the `patterns`.\n\nNote that the options affect the results.\n\nThis function is backed by [`fast-glob`](https://github.com/mrmlnc/fast-glob#isdynamicpatternpattern-options).\n\n### globby.gitignore(options?)\n\nReturns a `Promise<(path: string) => boolean>` indicating whether a given path is ignored via a `.gitignore` file.\n\nTakes `cwd?: string` and `ignore?: string[]` as options. `.gitignore` files matched by the ignore config are not used for the resulting filter function.\n\n```js\nconst {gitignore} = require('globby');\n\n(async () => {\n\tconst isIgnored = await gitignore();\n\tconsole.log(isIgnored('some/file'));\n})();\n```\n\n### globby.gitignore.sync(options?)\n\nReturns a `(path: string) => boolean` indicating whether a given path is ignored via a `.gitignore` file.\n\nTakes the same options as `globby.gitignore`.\n\n## Globbing patterns\n\nJust a quick overview.\n\n- `*` matches any number of characters, but not `/`\n- `?` matches a single character, but not `/`\n- `**` matches any number of characters, including `/`, as long as it's the only thing in a path part\n- `{}` allows for a comma-separated list of \"or\" expressions\n- `!` at the beginning of a pattern will negate the match\n\n[Various patterns and expected matches.](https://github.com/sindresorhus/multimatch/blob/main/test/test.js)\n\n## globby for enterprise\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of globby and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-globby?utm_source=npm-globby&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)\n\n## Related\n\n- [multimatch](https://github.com/sindresorhus/multimatch) - Match against a list instead of the filesystem\n- [matcher](https://github.com/sindresorhus/matcher) - Simple wildcard matching\n- [del](https://github.com/sindresorhus/del) - Delete files and directories\n- [make-dir](https://github.com/sindresorhus/make-dir) - Make a directory and its parents if needed\n", + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "ca080d8a447e43ad489433ebfb421b176a46dfe1", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.1.1", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "array-union": "^2.1.0" + }, + "_hasShrinkwrap": false, + "readmeFilename": "readme.md", + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_11.1.0_1641609998432_0.08058616657979467", + "host": "s3://npm-registry-packages" + } + }, + "12.1.0": { + "name": "globby", + "version": "12.1.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@12.1.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "471757d6d9d25651b655b1da3eae1e25209f86a5", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.1.0.tgz", + "fileCount": 8, + "integrity": "sha512-YULDaNwsoUZkRy9TWSY/M7Obh0abamTKoKzTfOI3uU+hfpX2FZqOq8LFDxsjYheF1RH7ITdArgbQnsNBFgcdBA==", + "signatures": [ + { + "sig": "MEQCIFE4nHozBYx39cYIo2ke9uHj12pA3UByY1QuipKFa9UlAiBQTulOdIeIj6jhpL36qyAVU08H2VYDbo/qaH3FpGpHkQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 22452, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4nppCRA9TVsSAnZWagAAEUoP/0E2kHTyKXcm5vBCgQ12\n1opg3NqR4my20Spgb8UO7osryaRx11DGzaYmRna4wgZZ+BOnx2GSKGO/EKPh\nrGnw9E6q5AkrQr2EYBC0rG48qTdP6osC3WTXmGyOqT88r4SK/VDR3lmc0ezJ\njY/eFL5ZduE2gfQMGEJ9zuHwCkRbsgU4NJ8l/2nn5U/iC2evSUSnxcHEyLxp\n4JckjCJfcK6uvomZZ6phpoNxl0EW3KId3gPj54vxZfid4jjvvOnWKjpVMsIN\npwlW1DjXOfk3BWqg4gcDzasNHuLit6X5PasoUMD0px3Wyi8gutc7Z0xVahtG\nWSoCVfL/Js2BCYhlhG0+7cDDlOI9Mmea+qj6mKL8BcdtJJokNj1GFSgh1BK2\nRa3SIqtg24wwACwZLeJnaxMd0z7/8lMOmyx0lKkH0kMJhFUmZH3+chjU975i\newtdVQCEr/nySjhUuWinAUfJXM0ewl4qkRr0D7tkwT0SUtbt8vxmib/RDc4V\naSlaFe1gvvwXyxJSf7ACTctsNMzoApsxscNozN6ZX9C4n2iw6wppwbauYoBV\nRKsklicXGpL0GEwO8QQmW6TVTWopFKKV988Jr1y315R/7luziencvoP2mrcu\nCZ2Za/wn9RrG2wnqiZD9HnSPaoAog2WkQU2G6QPTibW43WNc9T6dBKQZjz2o\nL6hl\r\n=fFFO\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "1be9d025b8c4d97eef3f0a9e39116aad8dde352a", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.1.0", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "14.17.5", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^3.15.0", + "tsd": "^0.19.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.5.2", + "@types/node": "^16.11.11", + "glob-stream": "^7.0.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_12.1.0_1642232425367_0.9419510327680327", + "host": "s3://npm-registry-packages" + } + }, + "12.2.0": { + "name": "globby", + "version": "12.2.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@12.2.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "dist": { + "shasum": "2ab8046b4fba4ff6eede835b29f678f90e3d3c22", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "fileCount": 8, + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "signatures": [ + { + "sig": "MEQCIGNlR7Yz0SXS6TUYhYodoMCmkROI/lfWlNeohu8Gu6NnAiAyWqoqI8K7Oj5RjwJR5yL1SeXUfcapqrwgxvZ1jkTVmA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 22608, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5SpfCRA9TVsSAnZWagAAEUIQAKIyXRmo1PUR+h+jtpl+\nIN+FCW3cE1Sq3Uy+OnCwsWLkOPTawAewfJWlaJEXkIvBYZucBxUCS/ttqeAA\n6sKuMRpb4ppzSwWfcS45oJFWFqHW8HYVlfm5NJ4Nj8EkhN/Qj+HuaQkduUed\nsdsfxOxQVSDK9DQS9bkrOLAdsForRnwAioUKiS4lhlql0MjbQISNbd5ra+2u\nkyGSmgb0KC/qMeSyoTm+KeYUtY9j4Reub20b+jKmKY7yAy+G6B5pT4z6aI4u\nGp/Dg/LN9UJL9dbxyiSeVQdBfEGojxcMmG6fKA0dTfnwItNMy2w0bV7bst5U\nTDkiAgWslgsrJ2ole07hxAocwe4QDZy52yov9Sp+YoCQotl0TjMOT4qKtB+8\n9Lejqv7M0qL9HMq/mtgU+iH8Y+9QzIl+/eH9NI+a6sgaI7gf20kONMS1dNlA\nQcqIRAbg+D1/DQkkmPIqwlPFgOD7SB40BGSaOjzs2ZdxvmJLsOyOvyOLMVel\nlmV4hRKa7JyFS1HpI2KZvR1mNlufhjdG7skzHsbmoRH+/gstiFsbY2nohkAT\nfjqtevA/qAYFV5PK/NX1/teRZ2Be1OhsqCL43TAbMnJxAxcotb061k+jLDCT\nqxsDEnzUxHlrR3z4em8xbH20fxZB1JYbpurNMyavSl8stQYGo1oKZiZCQJQO\nCowZ\r\n=6Lqi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "fc653c7277b5cc4e035531aef20e3d873fe55658", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update glob-stream fast-glob && matcha bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.1.0", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^3.15.0", + "tsd": "^0.19.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.5.2", + "@types/node": "^16.11.11", + "glob-stream": "^7.0.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_12.2.0_1642408543098_0.8343058625575135", + "host": "s3://npm-registry-packages" + } + }, + "13.0.0": { + "name": "globby", + "version": "13.0.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@13.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "1118e53acc5e0f32fc06d5fc592ce701ba239474", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-peWsS6/uJ4lRXg7qK11lnkMTIdoDp35bpJzpR3vpRNFkP1qMNsM7OQvUqwe6r+9RCT6VpEAhL9DDrK/jD0PGvw==", + "signatures": [ + { + "sig": "MEUCIQDuwooaMIF9fWd2oil76WJpn2jRlRKU15AmihEwv2whxgIgT0mGzJC9UTqJMqHdbHVvywbH+gaIaxOU/pLut9rhBNk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 23075, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7lY3CRA9TVsSAnZWagAAeucP+gMwJMgiTDzmWdRE2Ed5\nlihWi4W88mXH/uUl0OcfnZhHWk3LN8MZOUBmUIF13cjSwJowrCx9YXjGi6kx\nncm52S805sA2CSSQqhdcNRzohZ2YpbAKBQ9CxjqWr8FQ0aPdamzfivcOYiRC\ncjrd9VPW9mXtvHewcnYchEh5D7M89NN4vJHMQVR3kiCtg/wa7xWf/snxyUV/\nMi/kmiZx5Zo9NPtwkSUn2FDDsW2y7DdY1BUDiIXIfZ9GABA01wTLRhBasZqC\n/hB29eF3DWXEsqGzyVj5yE0pn+v+yUrCl6IWt/aD4UWuVkL5rGshVGKAnYFI\n2H1VTR4t32UoFVjBDBqoj4wV0pcnGVB9YF9RerxTsHSfnkKKkoS/9siwN2XK\nLJu0aqVG0afV/ByoVrRO62tRpJO+2f+8Cr74jCXPMwb+qdbhuCQHEHUXwDI/\nILFGjz7L+pVLmKMIb5au6/v4MQmEZxL8nhf46ly4moh+Iqynn0OWvLdYXFQq\nMNvzY3j+OMeLBoGybp9Ijh3lziKYGiMtQZTPdeQM0Kfe6+8+3IlZiZYg3El1\nB+Q62VSG1byd9WZTeKGLmF9PAEnAiVOAdTu17ctWK3QzO21goR0AHd3RPfrR\nWKPr0qxhF6M+6KwCUhI0G4xNEdfsv+4/cki/e15X+utMSEDRtwM7hU2YPeg3\n5Skl\r\n=YFqw\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "43eccf41a800a5dedb3b3fcdf313f7daf5c199ff", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.3.2", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.0.0_1643009591235_0.3771641314590166", + "host": "s3://npm-registry-packages" + } + }, + "13.1.0": { + "name": "globby", + "version": "13.1.0", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@13.1.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "7a5390411c5c13a844875d94fbd1988ddc6ac9c8", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.0.tgz", + "fileCount": 7, + "integrity": "sha512-BECc0Q0jlCk2BLaY2DuHFCdKo+Es6OzOHECV4KpNtVtgXZobl4jmLThiBPY+RiHoOFeI0pd1G035CFLFP/o2Fg==", + "signatures": [ + { + "sig": "MEUCIAau58qOwe5swQcl0Gb9C+JGYKlJZnGpHnckoWldVF8fAiEA6GqEVFKSFj8AP4VUSoieRzl8aIXAHneP2x/UURiMNLE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24705, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh79FUCRA9TVsSAnZWagAAVZsP+we/sTQJGuSAMaMSQ2wm\n8yjI283Hw8SDLc2yfPubZJiS/X6LsZYrMqjL0Ch/H29SKoQCxdaDl0Q1F28Y\np4eSKsBZP9YFw1vQbZVITXRVUb5CMO2nC8t1ZrXptwUP7AV9KX/8EE12mi0r\nq9EsCpDIxdmGuGzKVSp78g7FkOqEBCeAWQbSi/8tuL5NHnOc9cp9k6RQ3IJH\naAlhDbHMJoqfy2EpsXT2qVA9dMbqkv5EF7nu0uhSa+6N3tkXY/V4AS9l37Ax\n2+5ingLtlDZfnBTd8/i+JjYNmRlDZV7FEWybKIXysuBRdPyqE6Ul31Sav2+j\nWnTorc9e9aCR/eJoRGWfrkwT2LVlhieEROU9QZTI/v0d292443N2ThPCy1Zj\nOB+ZaAofSlEdth09rhAa2zz0O7suFB2ZwM+4PbAp/Cp7Pyko7KntHLMbrr+5\naVSRZPGuS4SaPNbJiIKA2V3pOQe0YyiEI8g5Cl+tHqI8Kr33WdReJU3hAcQh\n8DMHruJLWOt2MYeqziJcmNkPikYo2VNgsXKL2l7hYr3GVRiREQl+Chju6hhb\nHAKIx946W4afM6Z1p7IgUTmxIQSECCBmXhX3ZzHQcjPcjlUbj3lHaK+8ff70\nJi9eKQGOsKt0lMvyqO5VS2V4gqsbRj3DMKet9jD/SExS3xpKtt7b04/C+sYz\nx7Xi\r\n=zdG3\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "1906cfff1f3219261a06bcf193423b9ff480bde2", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.3.2", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.1.0_1643106644773_0.6298039116016667", + "host": "s3://npm-registry-packages" + } + }, + "13.1.1": { + "name": "globby", + "version": "13.1.1", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@13.1.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" + }, + "xo": { + "ignores": [ + "fixtures" + ] + }, + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "7c44a93869b0b7612e38f22ed532bfe37b25ea6f", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.1.tgz", + "fileCount": 7, + "integrity": "sha512-XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q==", + "signatures": [ + { + "sig": "MEYCIQDs+zBrBjp956gwtDZpV5fAId05RlrJ3OXE3oQfSlu4EwIhAO+u5RJMN465MWlexAMwDVEQctlam8PwOi9yQVzDCZJD", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24789, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+kd+CRA9TVsSAnZWagAAy00P/j3yedMU33WlvWYq9oGC\nMMCPpMIq/kR08l3nKfQGvvXuHlTsZjdGy4O/nWOQlCUiHp9z+iH3JqdhErp8\nWBCGxvizUc8kG2reBAvvfGxmSEiGHF/6+4jZBV0DnGjK/zyo/gjlqRPurL24\nlFuJS9wl9gR9iNM7otg7UXqKnLxU9JJ5Vo/yPCfm9JJPkCsWrFuqxCOBeDNn\nlXyCBBCZKekKaq5CuNUF2kRQnbIfZJObzz4Qz7hEev72dpfp7381Js/h14A6\ngy4fwvv3qKkJ/xE/w42jC0ixl4uymK9IQOCwTQEK8veWAgO0o2SRYmVuIrvJ\nTKZpl/FABruwVc0HnG+FUXXPaBrqY4qpy1VHEHCxuZ3wbLVyGk44zxSS569G\nS1DsFawlpnMLY/bhudDOBrKkt3cV2Ypt+OYalkmM8pYEC3/aCOsTxwF+ZLRW\nWEROLnvXp71XPGOqYnywuCawOxMiPgQQxNk8EmDEzU9N7C0jm6ci/klMWFZh\nnpiU7MRLcSlKRdETB4LZIFVENPkvBdyOlAdCCXLcw0fqXj5OM5RhaErxSbug\nFhSzjYenxo/LUs4CUusgVXsIcr771UsLXzEg2K0XL3MITYN0dwbGS9/mp8jp\npsPNPNoZNCDc82Js3Ss6t5HS8OH17VE9aoIVtBjNFBaVHOxgU49KwTFmMKjb\nxbvH\r\n=fVIz\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "f7dc7d2818f2843bc58995ea5ff82b4619e48afd", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.3.2", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.1.1_1643792254019_0.2397992059419971", + "host": "s3://npm-registry-packages" + } + }, + "13.1.2": { + "name": "globby", + "version": "13.1.2", + "keywords": [ + "all", + "array", + "directories", + "expand", + "files", + "filesystem", + "filter", + "find", + "fnmatch", + "folders", + "fs", + "glob", + "globbing", + "globs", + "gulpfriendly", + "match", + "matcher", + "minimatch", + "multi", + "multiple", + "paths", + "pattern", + "patterns", + "traverse", + "util", + "utility", + "wildcard", + "wildcards", + "promise", + "gitignore", + "git" + ], + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", - "shasum": "5697619ccd95c5275dbb2d6faa42087c1a941d8d", - "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", - "fileCount": 5, - "unpackedSize": 12393, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNcwXCRA9TVsSAnZWagAAn3MP/13jWhW935BJshaerQ8/\neLPxAfvi3ruMp6OHWuGHaboao8bQiu/IrLHl93Za9FBRHWHLrZyGUFYP2cnx\nMuNzjF5lStKk7nK+P/jZpVBj+0cOaXgaYuDXZyR3u788RQDV2IriMXfVgCE5\ndM06KfRDOJl7E/x4pngih4QEObK5g8z9zJVe6gCFOuoJDgyqGEbjWfiiItd8\nGoih8SE05f3NdjvuRYhl2keajxeFE+lrA5/nNjES5jVUZoWXzopdD8BEO72n\nZ6vFu72JOh5jvQa6Bw5P8IQcA7zq+dWwJUc2TtByFWNaYtsigVlX+q6QEHOi\nBzRuxcooh5SQmVJtAyVOlGJGClLq8iiVD/s9d1W4D85Mz5ajb0KHUwntHpMv\n4tLAxcUMLSBt4LmnMYhkiMZPFpRKNmG8Tpi3jHTI8uCoDhRmJO+EwkfmRVnT\nDgj2YBE/G9eAOC/+SSNaTm8y3nm2gegQ1w1KRXCQhwfH/A+9BjPI81ibwVir\nhw4qnlLX/kH+6EMn5reknC5eNofSQAyc6PJIPzSXNqTTTPYGQzMAusDeCoZc\nygva3Zij7gn2v5dstlV6hPXEtjP/JKBLj6ExsBA/Onf04/ETQ0Wnfm/BVJ3c\nQBU/Si+ufS0bP1LLZDjJVMaJIUsgJzy9PQK323aX1td37zc8JgY4VnfZmnT+\n7VIO\r\n=ygOk\r\n-----END PGP SIGNATURE-----\r\n" - }, + "license": "MIT", + "_id": "globby@13.1.2", "maintainers": [ - { - "name": "schnittstabil", - "email": "michael@schnittstabil.de" - }, { "name": "sindresorhus", "email": "sindresorhus@gmail.com" - }, - { - "name": "ult_combo", - "email": "ultcombo@gmail.com" } ], - "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_8.0.2_1547029526488_0.46598739272501977" + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, - "_hasShrinkwrap": false - }, - "9.0.0": { - "name": "globby", - "version": "9.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" + "xo": { + "ignores": [ + "fixtures" + ] }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false }, + "dist": { + "shasum": "29047105582427ab6eca4f905200667b056da515", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", + "fileCount": 7, + "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", + "signatures": [ + { + "sig": "MEUCIQDt40znfhm/9YH/ztp8bW4SL8p9VVcgIXVhGLSrsPSE8QIgDr+heDDDU3BbqELuCMySIeAjeHR0EBQyoRkkniniKtM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24798, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipbTBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLzQ/+LXoPACbmztj5bwWlSLCbWptsovLbCDni5IqzBh6EsYXPkhev\r\ntpuQHA+Vtm+RE49PVVYp/IyMl7t2gYvpiYTCxDmxC7G65Yz4wx2A22eudSRO\r\njIMY5J4jZdJY9+lPqtWAybOyYscPhk56zS8xaj15eukTCNsjcz8/9twi11Oo\r\n9ikBgbCefl+OCkNB8S+S1H4IND621ZLiNKk4cFPe9YgMilZIcDVaLrV0kSQO\r\nyz5p1me6mpb7+IBFZ+mgdUIZQ3jY8cLAnD/TxOJaj6HMWBcn4Ioz1gADV0bs\r\nEFiZr+Eowtubk9EXpwnZzG7Z//B4ktXWFJGFFkedZxFw1Li0VGfrDK6+cGbb\r\n6QCHSpheYAq7Y6VguiMobGlzzYGN0ycy2ZmOXK/P07oUn20VFysJNYxCjIER\r\nSiY5qftKevhqa089YsAY9P6mFwztlUThlz7MAxg8TtThhw5E00ANGuWjJxWg\r\nUX+WPZW4S9kBzeINIitMgZwmPUdmEuupF2vo4srjVaWbWmGG4s5CZIB8Oeq5\r\nK6IZdXhilKKA8G1DUMdivs2hdtvg9DIyuD4RSJvbMt3autNRnJ0zeG4xsO3r\r\nYsuu/zjKNPG0e07CHo51NRom2GK1Hvq7xON1iTVk1iWQlHXfHmDqjF6VfXnV\r\n6CZQ3Yx4X79lE5y6E8m1usjdI/G6y43tvcA=\r\n=KRa4\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", "engines": { - "node": ">=6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "cb892abe709a6359e80e1895b8a6d4a0890155f4", "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava" + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" + }, + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" + }, + "_npmVersion": "8.3.2", + "description": "User-friendly glob matching", + "directories": {}, + "_nodeVersion": "12.22.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.1.2_1655026881404_0.17088438423636831", + "host": "s3://npm-registry-packages" + } + }, + "13.1.3": { + "name": "globby", + "version": "13.1.3", "keywords": [ "all", "array", "directories", - "dirs", "expand", "files", "filesystem", @@ -2122,95 +4785,104 @@ "gitignore", "git" ], - "dependencies": { - "array-union": "^1.0.2", - "dir-glob": "^2.2.1", - "fast-glob": "^2.2.6", - "glob": "^7.1.3", - "ignore": "^4.0.3", - "pify": "^4.0.1", - "slash": "^2.0.0" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "^1.0.1", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "xo": "^0.23.0" + "license": "MIT", + "_id": "globby@13.1.3", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "ignores": [ "fixtures" ] }, - "gitHead": "71b9c58f86b4625b58ae241360016f4418dac288", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "f62baf5720bcb2c1330c8d4ef222ee12318563ff", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", + "fileCount": 7, + "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", + "signatures": [ + { + "sig": "MEYCIQDiduphh5TLRgZ9B7mLZXFHB6zAxsCkP/aBoH0lAMpp0wIhALh42lVP0roQeU1quYsvLQKGgoTS61ElK/KCmBZCcXvc", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24824, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjl1/ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEZw/9HUtwJjRHpyzkXoo7tDcmwiFryy9y4py0rMFp+uoyOouDvBNm\r\nQb0CrkVoucCEkP3HyRdNwWOcNYfj2NQUixO3T4s1YlfxnSsx2hHecqReik0h\r\n9WupoeibpjP6nOLn8twmWVUfblRR50i427fThPKNUMNUb0qEA3SZfQyLprI+\r\nkEAKF6NzyZDg+6FRtvkRptD8M9jOS3hObgBVO1OzLbitqczthUfkRMckfBdY\r\nQCuZ1ooWQvvIzrEGDbrmTlknMhhhWEvaPfbd4+xlgNHqYozE3AsfajjqUcv0\r\nSwudpotc5J88RsBXPMFrhoCoVzcrtkBfbDIElyfYbuyzNRK8ExQTJnvEn/TS\r\ndhft0rxXeqD5utMUZMLDLloIHVBt55gFzpsxRpLtzXwdNggG0tEF6VYXwOWU\r\nJiHA9QAOCWzvBoE7UPzqBzeXkcXL/2/NTgu+IEHNviHd7qi+lnZJxfKMv1o0\r\npOIlLaMcnSG1LqgvQg9R+PXGYiZ3F9Wa6JysoGikrnvY4RaMg4witb1Rue9+\r\nkrApSU+rImMRXcmr1lgt1f2r67TenKBLX6KHZWOVrlB7+moNp9s8fRZa46jl\r\n5vwYqf+FpOz1cnQAFLe8pHcClB9XRzUu28hvZzvcLMs8hbEXnQDx94J5raLg\r\nlR7EF6WRWgpnPgPgUMg0JptYDPjWeT5nBX4=\r\n=VVvr\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "bfd2555ac743b8543b1895c86cf50da41d1ae9c3", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@9.0.0", - "_npmVersion": "6.5.0", - "_nodeVersion": "10.13.0", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-q0qiO/p1w/yJ0hk8V9x1UXlgsXUxlGd0AHUOXZVXBO6aznDtpx7M8D1kBrCAItoPm+4l8r6ATXV1JpjY2SBQOw==", - "shasum": "3800df736dc711266df39b4ce33fe0d481f94c23", - "tarball": "https://registry.npmjs.org/globby/-/globby-9.0.0.tgz", - "fileCount": 5, - "unpackedSize": 12708, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcODg1CRA9TVsSAnZWagAAhSYQAIndBU3DjVNyD3XcVKBN\nCPT2/OpstazNS7LebywO54FrPc78F+w+aWkSdCubB6oK6ggNS1cq9SRsIPUf\n7e07/m/09S09HhUvZsWL7zVMhrH9VwhsBpeGdxaxMOkYHtLbvuZwofNAkLqW\nGJta722xYvuKL9V17HZ3V+yK0l0F6AOq4+K8oKpgz0Kzb7WNO7YEVH0xTFOH\no5PA2WfOi2M3uQdLMMarKSRqs5RUvYX+dxBERTVSFxIkJcUAXinwxsALSyEj\nNl5YM206BiTFmscbAVe2oVEfpXQ/Zf64j/r6ea+XgoRs7C7Hqh5Af1rGHZ9r\n43+uMe9rMPOqw320fR8Ojx1PoDYOCvXaWdSv+iIaTKe2NHl/GN04y6hUSCDR\nNA4rGihOzABal8xly8WibqsdurD4GyrQ4nomeiSIF8rvCnMwej5CiZm/GBXR\nlirFW5PYdAwSL9yevQSpIpL2tTDJ8CBaDqgddhn+45hbwU1KJkJBSDRijc/v\nip76PVlINGjII5vjgv0WfSAgKtwLZfuOyaAO0G3+uOwUb3+l/fA2dygJwOEd\n6ixOgRcDVi+XEvVkBhGR4QZDdzk5UxPGK0cmYVWFUTwn4DINInta6YAd+iLh\nXLUFZdQ24vkkPSVc+NmYvCOd8qiSgnsE87RzitF4DqtZUewZTuZcdztXze2x\neZm5\r\n=/oQx\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "name": "schnittstabil", - "email": "michael@schnittstabil.de" - }, - { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - }, - { - "name": "ult_combo", - "email": "ultcombo@gmail.com" - } - ], + "_npmVersion": "8.19.2", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_9.0.0_1547188277243_0.8836554519309334" + "_nodeVersion": "16.16.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" }, - "_hasShrinkwrap": false + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.1.3_1670864857141_0.9717661167807985", + "host": "s3://npm-registry-packages" + } }, - "9.1.0": { + "13.1.4": { "name": "globby", - "version": "9.1.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd-check" - }, + "version": "13.1.4", "keywords": [ "all", "array", "directories", - "dirs", "expand", "files", "filesystem", @@ -2240,97 +4912,105 @@ "gitignore", "git" ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.1", - "fast-glob": "^2.2.6", - "glob": "^7.1.3", - "ignore": "^4.0.3", - "pify": "^4.0.1", - "slash": "^2.0.0" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "^1.2.1", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd-check": "^0.3.0", - "xo": "^0.24.0" + "license": "MIT", + "_id": "globby@13.1.4", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "ignores": [ "fixtures" ] }, - "gitHead": "89cee24d7dd225279549f59023f905a9062c96b5", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "2f91c116066bcec152465ba36e5caa4a13c01317", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", + "fileCount": 7, + "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", + "signatures": [ + { + "sig": "MEQCIBFE6WZacyMAVBmq3TB4WnoGcpyt11Z8fdco8k2kmHSlAiAr6Vj4RLvhx5a37yo5e1iJfubUkqHsc+VgCoyB2Sg1KQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24807, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNWi3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrbxg/+P2n7CUrOygSNscMvl4m+qMPqhnDUKOzwzGb6/gHeYPyaAxIF\r\nnQ2YWAnEn0LV4AVGNQbslEJJWeZ0cDO6s4eJVYf35B4an9vt8n14aNunkqgt\r\njcPh9CRQjuq0oLA+UVK2tiGPRAt2L/dcxKZOUL6qMEqu3XihQY8UUX4FJROV\r\nI+cbqkxn6DCWIAgpAeLcFZe4dfrvqhHRpSHJZgjPZJ6b9uGD1cKiL/9Xqtor\r\n7oIiffMcrDvaHkwykTR+tlAIHL5InpBfFARJGtoJc0sD1c+P1RvIAuFPnza/\r\nTFzoVCKNtvqkiVO/mVjPRqK0o/n0m/bZy6ZGuqqjNW872mfbj8RGTcRS//zV\r\nx1mvjIUWrVquo50JRGPuUXyjZuRK1bEvhccqVYW2Nc0LuBHTAcyF56doFsDR\r\nf+greijf0AXcoXMJQ11fgrBpaylQ+seipXSHXBhgkR4pukK+6iwtQ22MjIF6\r\nuoh4KqsWlE9VqvWalouc8/gEeCOFz1z/yIKK+3NwapqVF+RxEMQ4CTZFwKu0\r\n5ATkwtxgH+sr3bj7C6BQKHxgcBgGDts0Z4hT7tOCvX6pUn1fOzAEZ2IHBkHM\r\nKc+Av9/hsDdBz2JXs7Dt0JBiI8KbTLRW+kUTo+z8UIzlM5wwTCbswdN7/3p8\r\nPc4zG3DIXqWgT/MMP+puKqls4uc/e1tMtdw=\r\n=zhMS\r\n-----END PGP SIGNATURE-----\r\n" + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "863ec4ab56c84c7c9fa7e6dddfa09425e98276bd", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@9.1.0", - "_nodeVersion": "10.15.1", - "_npmVersion": "6.8.0", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-VtYjhHr7ncls724Of5W6Kaahz0ag7dB4G62/2HsN+xEKG6SrPzM1AJMerGxQTwJGnN9reeyxdvXbuZYpfssCvg==", - "shasum": "e90f4d5134109e6d855abdd31bdb1b085428592e", - "tarball": "https://registry.npmjs.org/globby/-/globby-9.1.0.tgz", - "fileCount": 6, - "unpackedSize": 17692, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce9RjCRA9TVsSAnZWagAAtDYQAIiHoZJvCF9/U2vpn6he\n7rRW3sl1EA3oek+xo+ZI/vIujfZmNtyJMb0cMZ+QVzDyIUvUgSbkUm1PBIyT\n2drw2WPhjiurEfHt+00AjFf2iiFWlESbm5cVBlMZ0US52phyFEujM+8wZXlY\n2GyXtTQQsIrqUmj5XxvVPfegyZCSXIFSLeZN31+03OueN80age2IfOtrDrcr\nAKaxUbmmwx8UghMN+FdpM9urlMqPTkaFo5/hxqEgWUnOQo8dnZWr+SCNdxHI\nTBundoTPR/T4Wgx6j/i6M4gJ9MrPPg8CXZqlgJi68r1toElvmg0m0VWB9gch\nCSFL7jjGYjCafQE47DoZ6UsansNII5qn+dqJG/44g8gCC7ZejWqdwet+ZjN/\naFTE0sssS5OnJozfbjjHJh8lBmsww8Buvz+d6GabV9aGqGUv8FV73WwOkKiq\ntJ683tbj8ueSMy/yrDkZ0qmOtdhQS95G/KlG8GQJ3UgaXUO8DNLP3ZHPdxI4\nD8nC4caLcY3eXNAMA837SegDD6aqZlG0Fmch98YQv3rqZd9H50hL1hAGJrZb\n2JUzAZsGReUo4jl1hyvpXcEeUNhK+0JrPxMkfnqfxmrJAu2sUaFn1t45mttp\nafx9JCAYMbsRZgnUPeGUUM15tC3FBE9aPf7zJMJ+uVetFCWl1pQqMk+oDhwo\nr5dz\r\n=tvxx\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "name": "schnittstabil", - "email": "michael@schnittstabil.de" - }, - { - "name": "sindresorhus", - "email": "sindresorhus@gmail.com" - }, - { - "name": "ult_combo", - "email": "ultcombo@gmail.com" - } - ], + "_npmVersion": "9.2.0", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_9.1.0_1551619170937_0.15984265992606628" + "_nodeVersion": "19.8.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" }, - "_hasShrinkwrap": false + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "tempy": "^3.0.0", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.18", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.1.4_1681221814778_0.47142213822458046", + "host": "s3://npm-registry-packages" + } }, - "9.2.0": { + "13.2.0": { "name": "globby", - "version": "9.2.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, + "version": "13.2.0", "keywords": [ "all", "array", "directories", - "dirs", "expand", "files", "filesystem", @@ -2360,84 +5040,105 @@ "gitignore", "git" ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.2", - "fast-glob": "^2.2.6", - "glob": "^7.1.3", - "ignore": "^4.0.3", - "pify": "^4.0.1", - "slash": "^2.0.0" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "^1.4.1", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.1", - "xo": "^0.24.0" + "license": "MIT", + "_id": "globby@13.2.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { + "rules": { + "n/prefer-global/url": "off", + "@typescript-eslint/consistent-type-imports": "off", + "@typescript-eslint/consistent-type-definitions": "off" + }, "ignores": [ "fixtures" ] }, - "gitHead": "766b728570193dcc2daebcf64c6e14bf5d95270a", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "7dd5678d765c4680c2e6d106230d86cb727cb1af", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.2.0.tgz", + "fileCount": 7, + "integrity": "sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ==", + "signatures": [ + { + "sig": "MEQCIGab6hiZzBA8fKjHj02s+F2NCysK0TStH9YU8wGyS92yAiBRCRnGLgdWmNGNR3GMausyFSAtXJwPa0mu0vR5fb/IOQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25080 + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "5f7ceaefc6b58989bbbaceb8bafd3e62e5d0ee4b", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@9.2.0", - "_nodeVersion": "8.15.0", - "_npmVersion": "6.9.0", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", - "shasum": "fd029a706c703d29bdd170f4b6db3a3f7a7cb63d", - "tarball": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", - "fileCount": 6, - "unpackedSize": 17947, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcodaGCRA9TVsSAnZWagAASdcP/2cwUC55wveQgF+/3yg5\nke+djhfhPfISG7rZL5F6O5Rj3UGbH56YqPt2AWTgU2UL3WC8qYThry1MLiXI\niinjSEjEP4QMbQfuz9e3V4irv5sHH4VstZE5mI9E2JEa0LMmDJCdJmboF2GP\n0yw6krP4enpE2Nj5/NdMfx5UKPboCeuI2y7rVYRR8J2M5mcwT8EhmeG2R3qW\ngTAdu1i1fy13AQdKddNN3FCFCgjMp5aolgMf1jflKnL7gfr/Zt+dsqP5dcjm\nazwi6yGVSkmgUsnru7OogvTjZzVY2PFVN/OsXMOQ/HuhRU9cYwdrL5DGJhdl\nI7z+zdW6hHQuSn723T3OD7e/GERAkELqAFPEpFMgnIdGCq/XXE0YZPXBsdu9\nWu7QZT56/yFPoHdS+zQackmR6vEgTflUypBH3gpujnGfoJ0wYPXEtqtsBbxX\nhb12hvW8TDm497v9BimHKu1kLCl6RVqis1xv5eZMyec5k5OA4juzvbCeW5EO\nTDuoKpAvNXuEV27VtxFdEl8Q+c8McNRj2fohZdQehZwt2efY6a26x6UFoaPF\n1z92O1+acjjysngPqKjsDxkvkd+XivjoCi8DhrZpckTp1wHTHHFH8ohD9Q1I\nL9LiEs/SJmpjWhBsyIDT2xB6tsshR+i5WJdZFFY7tRBo9mEOVuqRUtewQChy\n5WB8\r\n=k3po\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], + "_npmVersion": "9.2.0", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_9.2.0_1554110085359_0.9425982527014123" + "_nodeVersion": "16.20.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" }, - "_hasShrinkwrap": false + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.54.2", + "ava": "^5.3.1", + "tsd": "^0.28.1", + "tempy": "^3.0.0", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.18", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.2.0_1687114416143_0.016827537788673297", + "host": "s3://npm-registry-packages" + } }, - "10.0.0": { + "13.2.1": { "name": "globby", - "version": "10.0.0", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, + "version": "13.2.1", "keywords": [ "all", "array", @@ -2471,85 +5172,105 @@ "gitignore", "git" ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "license": "MIT", + "_id": "globby@13.2.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { + "rules": { + "n/prefer-global/url": "off", + "@typescript-eslint/consistent-type-imports": "off", + "@typescript-eslint/consistent-type-definitions": "off" + }, "ignores": [ "fixtures" ] }, - "gitHead": "878ef6e11ae66d71bce1175e5b2054b5ee63a9e0", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "986d44187ba6a9fc4aa9b16caf0ab9a04db94ae9", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", + "fileCount": 7, + "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", + "signatures": [ + { + "sig": "MEYCIQCs1eJs9e6cDmcMH1Pwkc0We5zcuB1XF9Olzmpt/3aIiwIhAIwMa7vgFRpMgJxA5m+Bqi/rvqDgCzTwlYO5r+MQoB6d", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25174 + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "51a5e34bd578c3bb63430531f3494cc421b44eb6", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@10.0.0", - "_nodeVersion": "10.16.0", - "_npmVersion": "6.9.0", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", - "shasum": "abfcd0630037ae174a88590132c2f6804e291072", - "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", - "fileCount": 7, - "unpackedSize": 20813, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdF6dsCRA9TVsSAnZWagAAskgP/iRAUZlp13E0ZZdNmbf5\nPSuGyFUhFwuo3Fy0fnZbFY+FMDjaApOBhUk/7jfXBfx5svSMnIqKPmezEscJ\nkkIsJknl/q7W+/ryhVsNXpYMul4mWOtnyZif7kHbpEje/H5XlHJNFksUx+/1\nQ84CYG3lhEnQOziJ2+zqVAr2asmTn3xxfRvyjLWZPmt3Uv+JavVFLxazTkv1\nNz6Z14M9d06I97pTYcQT29/A+bAiNkVtHHhV55JTWsFbPJ5usBXr+O4qb3Cn\nLphTJdVjYqFw8bMu41m1bvYT05e2dXvKn4zedJa94bZv2XkreKegnxbVxoTm\n/EQYlUcGbVPa50E1nL4wmasytIUfGtp62fCWj/t0QCMnn5PsnYVOFiap9ORk\n7G5oRu2MbMqz8L+iDIxV3rwYhKHAwwBKS9s3Kpwi9js9QCLp4+d+z+2ZIb8T\nWUrLfClkKL63ws69vo9P6GT7GVilm7wORPt2xcH3V+PXpmlGVbx08Xn5n/kZ\ntdeLZCfcB5S8h4sdD1vspu7o5RZM3rraXY4c5OONoJIoDOGEY8NLKmyoeSoK\nPrKhuPtF+kx8DF5E6Ok57Mv88gwqaopGWnF9LKEfBa8lEv83yHaUOrr8MfjT\njhpw2i9dqYv8c3QNS0/aqzlerk0wfxwUgNYTpsmGQ4214aMQ2Z4b7WG1TJs7\nkxdG\r\n=kN49\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], + "_npmVersion": "9.2.0", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_10.0.0_1561831275891_0.839704134980173" + "_nodeVersion": "16.20.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" }, - "_hasShrinkwrap": false + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.54.2", + "ava": "^5.3.1", + "tsd": "^0.28.1", + "tempy": "^3.0.0", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.18", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.2.1_1688235308390_0.504887801214583", + "host": "s3://npm-registry-packages" + } }, - "10.0.1": { + "13.2.2": { "name": "globby", - "version": "10.0.1", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, + "version": "13.2.2", "keywords": [ "all", "array", @@ -2583,85 +5304,104 @@ "gitignore", "git" ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "license": "MIT", + "_id": "globby@13.2.2", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { + "rules": { + "n/prefer-global/url": "off", + "@typescript-eslint/consistent-type-imports": "off", + "@typescript-eslint/consistent-type-definitions": "off" + }, "ignores": [ "fixtures" ] }, - "gitHead": "4a470444b83882d488eb9c4a1c323896b0fd6c66", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "63b90b1bf68619c2135475cbd4e71e66aa090592", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "fileCount": 7, + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "signatures": [ + { + "sig": "MEUCIQCTI+Z8ik6+3bDS3AK5qKVr8GJMjcvpI0Ml9FButQeSWwIgDWAOyg0pK2C15a9R2pNct3A/2ug73C+pooWcXYc9o+E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25146 + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "exports": "./index.js", + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "76c70abf8eeffe6b01457f83a2a1ef38ef9d6b20", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@10.0.1", - "_nodeVersion": "12.3.1", - "_npmVersion": "6.9.0", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==", - "shasum": "4782c34cb75dd683351335c5829cc3420e606b22", - "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.1.tgz", - "fileCount": 7, - "unpackedSize": 21937, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHu1oCRA9TVsSAnZWagAAMqEP/RbsHVqJTfUCTbyyTDBv\nGUAxxTjWLCAo0ENKFyfcTCOVXKHrDoPeLI3AIhQR64XeAJ1SVcM1Iyu2ch2A\nCLOce6Az2hr/WlzJ2sj17aIbKAArx23ZfQ/vewLxIM5supIYyO9vLCvZbo2c\nEvxMnXtaqnL4ZTEQBuzMAwQlW6zdKUUP0udT8a+KjbUdXixeVOh1nMZ4HbOv\n3DhiGTCLfkRTbHbi0MG0xf1QSopeLt3oqM+sQRy2QNqz5Qs+rSf1x4DJS/e4\noB4CBFqSwW9cCin9ZPAvhmhGsIxcZ/DSXLbk/x1cnPyN4/gFSSedMcXpQqaG\ntdg9JnkeIQHPvAfyHkbO4ySlN82Hcq2QIC+QXSiMvPZoWG459PX4a6dArfWM\nsaguxr7goPdgtCnBpdAqYjkDzAcm0o579ucYq20qSR4TNW7hrDO4cgrhjwyA\nGx9W6oXkdK6QO6rU3PN1WpSndZpVuRI0ZZLmZovXnrBhkfe4Xfzzg2vufPmH\nYm1YH2z6tlAJ3PteC48aEsozp/Q7DdeWmxq4iBMYgoCVR4vW/Rs1kv0VdE7m\n4IAoXzwbWhkgYYmVaCm3Ua3iWYwbAwhOlp6H/KS2Reqn+cOXcULA0RvqBP3j\nAO49WMj64p1HCqVr0s9tFFAjGZqc6LcPJIEbHmoNDHN0lFEo+baJ7QykAXFt\n1aVG\r\n=madz\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], + "_npmVersion": "9.2.0", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_10.0.1_1562307944002_0.7338105205900769" + "_nodeVersion": "16.20.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0" }, - "_hasShrinkwrap": false + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.54.2", + "ava": "^5.3.1", + "tsd": "^0.28.1", + "tempy": "^3.0.0", + "rimraf": "^5.0.1", + "benchmark": "2.1.4", + "typescript": "^5.1.6", + "@types/node": "^20.3.3", + "glob-stream": "^8.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "_npmOperationalInternal": { + "tmp": "tmp/globby_13.2.2_1688594635493_0.45777967183502666", + "host": "s3://npm-registry-packages" + } }, - "10.0.2": { + "14.0.0": { "name": "globby", - "version": "10.0.2", - "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=8" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, + "version": "14.0.0", "keywords": [ "all", "array", @@ -2695,86 +5435,102 @@ "gitignore", "git" ], - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" + }, + "license": "MIT", + "_id": "globby@14.0.0", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "ignores": [ "fixtures" ] }, - "gitHead": "8bc1ab0bfe7117d459e2ab2c841652f5a53b34cd", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "ea9c062a3614e33f516804e778590fcf055256b9", + "tarball": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "signatures": [ + { + "sig": "MEYCIQDETdZ7MqoxrAmPH5lCrDE2yFzhv3kYQ6kC6YdncIe8uwIhALDbLp+GNcZy7EhzeyEbpH+eZKmkvSJyOGvWO4Z3DEAT", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25576 + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": ">=18" + }, + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "bd76374396886157357883b2223a342ff983b032", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@10.0.2", - "_nodeVersion": "10.17.0", - "_npmVersion": "6.13.4", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", - "shasum": "277593e745acaa4646c3ab411289ec47a0392543", - "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "fileCount": 7, - "unpackedSize": 22044, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEvF7CRA9TVsSAnZWagAAFiUP/2k3nrSzS2AGAT0Fc43M\n5011Rn4jCgjkiTdUyLarFrg2qHpYKzD8U8mqBuY0YHPFGCuVBTABr1cYguO+\nOe+fKavVnxtEo1KuSZVBcgc8Tw1Rw5cRvT0hFbF4oGD2e9N2MMUopgqmQMjy\nVBBEk1ud2uT+o475JxCZFE0Z2+nzRppurnlpaX47/rNXLEQ07Ixdizr/CBSL\nN1oxjkiCMSGc2zHl7oJknV8fTOrR2kg+RG4UWTOAsfRn6Wa0vnU+1vEiVnIu\nu0XWXJVA2qckeicppvL68T/PGY3W+Vbii0uZsmOdXrsqybGPDnyh0Oyv+NRy\nz2/R09JnIYyzHoRAt+jRtEwSUqjMbuO7+2oCnFkgkOB68nOhPG9oeEXSWO63\np7AMcCkM5Sjyvwa70vbDlzVGJfKh5hbgGLgTOuiuua/KQtq+BaSsgDPHmbdk\n7b4fQSQeUHgKAfCokl36pxYv+py7+RT9ZkL6rUberCG309i3HRTWR3fLp2dV\nmHOTDXfg4bMYvpyr8cZmOEoW7Cwl1hrGT9CcQunb9sQR+KtdERrPyWpGNEDf\njDVeWU+gbdMT95zVV2vdxxuTuFFgeqmG6N2yrpjC5586gYQyFrHyA+a4LjhA\niUEXhcigRmPUlxLvQs13zq5KJll3G5465Mz0QvqF8YQydOO/0+w1+b5LU8yD\nSIWP\r\n=YQf8\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], + "_npmVersion": "9.2.0", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_10.0.2_1578299770793_0.8588366452121496" + "sideEffects": false, + "_nodeVersion": "20.9.0", + "dependencies": { + "slash": "^5.1.0", + "ignore": "^5.2.4", + "fast-glob": "^3.3.2", + "path-type": "^5.0.0", + "unicorn-magic": "^0.1.0", + "@sindresorhus/merge-streams": "^1.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.56.0", + "ava": "^5.3.1", + "tsd": "^0.29.0", + "tempy": "^3.1.0", + "benchmark": "2.1.4", + "@types/node": "^20.9.0", + "glob-stream": "^8.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" }, - "_hasShrinkwrap": false + "_npmOperationalInternal": { + "tmp": "tmp/globby_14.0.0_1699549687416_0.7256339431191396", + "host": "s3://npm-registry-packages" + } }, - "11.0.0": { + "14.0.1": { "name": "globby", - "version": "11.0.0", - "description": "User-friendly glob matching", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", - "test": "xo && ava && tsd" - }, + "version": "14.0.1", "keywords": [ "all", "array", @@ -2808,65 +5564,102 @@ "gitignore", "git" ], - "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" + "author": { + "url": "https://sindresorhus.com", + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com" }, - "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" + "license": "MIT", + "_id": "globby@14.0.1", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "homepage": "https://github.com/sindresorhus/globby#readme", + "bugs": { + "url": "https://github.com/sindresorhus/globby/issues" }, "xo": { "ignores": [ "fixtures" ] }, - "gitHead": "45ac58a95d9f774acd66a8996b777e52d3ed51d6", - "bugs": { - "url": "https://github.com/sindresorhus/globby/issues" + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "dist": { + "shasum": "a1b44841aa7f4c6d8af2bc39951109d77301959b", + "tarball": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "fileCount": 7, + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "signatures": [ + { + "sig": "MEUCIQC8+PoxdjLukmwTMedQtlm5wVM9NT94Ondmd+/fvNVi8wIgCr2LFvvXuiRfQK36bzdoeMk82d5jis68+inL2VyPOww=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25811 + }, + "type": "module", + "types": "./index.d.ts", + "engines": { + "node": ">=18" + }, + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "funding": "https://github.com/sponsors/sindresorhus", + "gitHead": "b0d7330942a3d36a12056f3a1257f676a534b6ea", + "scripts": { + "test": "xo && ava && tsd", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js" }, - "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@11.0.0", - "_nodeVersion": "10.17.0", - "_npmVersion": "6.13.4", "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==", - "shasum": "56fd0e9f0d4f8fb0c456f1ab0dee96e1380bc154", - "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz", - "fileCount": 7, - "unpackedSize": 21499, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEwAPCRA9TVsSAnZWagAAEMkP/RWZ58vraC+EU5htWwXP\nDqxcjJ21KmQzCQUXN2bgz9SGeSiaQH4wR3dPfeoek893+hiRXGjwn+HmXm1T\nkP2KuK4ePo9nTyAhCSd67gNoaBqUtjO1VdWfMH06z9Lu61N0n0QH1aGBUkmQ\nKpEesAUabBWxe11hSXVxqU0PeTezB2/m6wBjhCsiv4KhuHxYcESnCxsnp4/R\nXts8y/MMG2qLG4D4empvCq8iLJIPRURf4NMvOqY7q1S1H/dOx2/FdvUapfwj\nOmrvkI0e36+b42ajzhCqpkgpxnEWhR2Oh4eUCA+CeT7yLs6oyTcdUHU+CaC3\nEd5UWNwwL+GfjKVqUt0pWrIIVNYu8juf2ssyuS5OVnxunH5Je3FraXtBlQUI\niIpVzbeoIJFNzCrSohDsO09ZEe4MGZ9w4bOUEhcTp/p7M8fnDAOMGMjc1D9n\nwrWBf0oiM6xnVfJCnpSrzkSdik5CgLfc8+iT3eDyGfFD8xW2QAaJP7H7pS/b\nidG4B/RO7dw1lgBK/LpqXLCppCfonEsDq5vUFXSJ027qAJLzbuclSjX6pXNQ\nasJ58Pk55WXrHXosNBXx6v+tGcZqWIU5Az+O6pzFt0zhJ1MDiSAyk4jP5Ywa\n5DfKPRMnaysfkr/iBfOEvJk+JHyak4FEr/jainVZrqbfSW1ZUx7lRf2PDJG3\n6Tgb\r\n=iEea\r\n-----END PGP SIGNATURE-----\r\n" + "repository": { + "url": "git+https://github.com/sindresorhus/globby.git", + "type": "git" }, - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], + "_npmVersion": "9.2.0", + "description": "User-friendly glob matching", "directories": {}, - "_npmOperationalInternal": { - "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_11.0.0_1578303503320_0.2052850620069775" + "sideEffects": false, + "_nodeVersion": "20.11.0", + "dependencies": { + "slash": "^5.1.0", + "ignore": "^5.2.4", + "fast-glob": "^3.3.2", + "path-type": "^5.0.0", + "unicorn-magic": "^0.1.0", + "@sindresorhus/merge-streams": "^2.1.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "xo": "^0.57.0", + "ava": "^5.3.1", + "tsd": "^0.30.4", + "tempy": "^3.1.0", + "benchmark": "2.1.4", + "@types/node": "^20.9.0", + "glob-stream": "^8.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" }, - "_hasShrinkwrap": false + "_npmOperationalInternal": { + "tmp": "tmp/globby_14.0.1_1707649246916_0.21985305568308622", + "host": "s3://npm-registry-packages" + } }, - "11.0.1": { + "14.0.2": { "name": "globby", - "version": "11.0.1", + "version": "14.0.2", "description": "User-friendly glob matching", "license": "MIT", "repository": { @@ -2877,13 +5670,19 @@ "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" + "url": "https://sindresorhus.com" }, + "type": "module", + "exports": { + "types": "./index.d.ts", + "default": "./index.js" + }, + "sideEffects": false, "engines": { - "node": ">=10" + "node": ">=18" }, "scripts": { - "bench": "npm update glob-stream fast-glob && matcha bench.js", + "bench": "npm update @globby/main-branch glob-stream fast-glob && node bench.js", "test": "xo && ava && tsd" }, "keywords": [ @@ -2920,72 +5719,71 @@ "git" ], "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" + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "devDependencies": { - "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", - "globby": "github:sindresorhus/globby#master", - "matcha": "^0.7.0", - "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" + "@globby/main-branch": "github:sindresorhus/globby#main", + "@types/node": "^20.9.0", + "ava": "^5.3.1", + "benchmark": "2.1.4", + "glob-stream": "^8.0.0", + "tempy": "^3.1.0", + "tsd": "^0.30.4", + "xo": "^0.57.0" }, "xo": { "ignores": [ "fixtures" ] }, - "gitHead": "39b7636370f8d57e9d0462f8bdb3bf9be88f98a6", + "ava": { + "files": [ + "!tests/utilities.js" + ], + "workerThreads": false + }, + "_id": "globby@14.0.2", + "gitHead": "c000568bd20c97d94397c71ec22df4e1c5f41d47", + "types": "./index.d.ts", "bugs": { "url": "https://github.com/sindresorhus/globby/issues" }, "homepage": "https://github.com/sindresorhus/globby#readme", - "_id": "globby@11.0.1", - "_nodeVersion": "10.20.1", - "_npmVersion": "6.14.5", + "_nodeVersion": "18.20.2", + "_npmVersion": "10.6.0", + "dist": { + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "shasum": "06554a54ccfe9264e5a9ff8eded46aa1e306482f", + "tarball": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "fileCount": 7, + "unpackedSize": 25662, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFO9RqZ6NX5ehdZWk6uM3ByC6WcDMz65bH0XduN5zSemAiB5PjdqWTkhh+BmEHsSFQqUzlT/5gux0+UboLVXj2hCQQ==" + } + ] + }, "_npmUser": { "name": "sindresorhus", "email": "sindresorhus@gmail.com" }, - "dist": { - "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", - "shasum": "9a2bf107a068f3ffeabc49ad702c79ede8cfd357", - "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", - "fileCount": 7, - "unpackedSize": 21518, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1gLrCRA9TVsSAnZWagAACHsP/0cGGGOSFkXbuk6e6lUQ\n4w3iK1ruHicjFdqeeqDWxj/J7v3gDdQd3O5kpHzn6l480NGp84bOiVQsagvG\nydTE23wEdxV8e7mkwFsqDmrK6ffDuqu9WPYlfI+uM2k+EeTVVZJebE9uGbjD\n0NMyYAbvuku/x5+aM5PCJkzORmXAGCblq40IhKMLkIxXnQMi1dmA3ZpKzAB0\nd2f/98oMZz5Z3eUJRSjMQpKwZq/IWneZEQGkZrIzwQ1QLPxx5w/Q8TIQGSxE\nyNCiTIO5HbxH06HNaQ9TEBTGycY8dYFGhhEYYNhHruUvaPUsh8yi+KB2Zwj+\nsgDkd4OdW6q3h8TX2zgpBpaDzf+OBArdWO5mTes+TRsOmfJI23q2wF3JRktg\nVIhmaw7/R9u5R3TQmCyBxTMUmbflEhkbYBinxRkcgxAeLt7eRlONEbfu4OR3\nreXpUzjl+2PkLNKL9YU1iOaE41qO2XoD7ELHXA9W4/2EPKF2oDWFkttKgF2d\nBovHQBbEBa6kFfiGKAg6YIq1afBBOK3QmBalq5xpyr6Jz0MdAahpTrcKSrnl\n509scFDf8dJ9NsdQ91ua5G+JbkBig/n5X7vvg5CdmchuVgG/MdKQpYmom8GY\nGJgTyel4jKGh68ADFDFoV/199v57eXg6N3dmLMO07MPoTaKfdkUYh0SorDxK\ndDU2\r\n=vxMk\r\n-----END PGP SIGNATURE-----\r\n" - }, - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], "directories": {}, "_npmOperationalInternal": { "host": "s3://npm-registry-packages", - "tmp": "tmp/globby_11.0.1_1591083754810_0.36065016745674594" + "tmp": "tmp/globby_14.0.2_1719749576188_0.046644516317927875" }, "_hasShrinkwrap": false } }, - "readme": "# globby [![Build Status](https://travis-ci.org/sindresorhus/globby.svg?branch=master)](https://travis-ci.org/sindresorhus/globby)\n\n> User-friendly glob matching\n\nBased on [`fast-glob`](https://github.com/mrmlnc/fast-glob) but adds a bunch of useful features.\n\n## Features\n\n- Promise API\n- Multiple patterns\n- Negated patterns: `['foo*', '!foobar']`\n- Expands directories: `foo` → `foo/**/*`\n- Supports `.gitignore`\n\n## Install\n\n```\n$ npm install globby\n```\n\n## Usage\n\n```\n├── unicorn\n├── cake\n└── rainbow\n```\n\n```js\nconst globby = require('globby');\n\n(async () => {\n\tconst paths = await globby(['*', '!cake']);\n\n\tconsole.log(paths);\n\t//=> ['unicorn', 'rainbow']\n})();\n```\n\n## API\n\nNote that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.\n\n### globby(patterns, options?)\n\nReturns a `Promise` of matching paths.\n\n#### patterns\n\nType: `string | string[]`\n\nSee supported `minimatch` [patterns](https://github.com/isaacs/minimatch#usage).\n\n#### options\n\nType: `object`\n\nSee the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones below.\n\n##### expandDirectories\n\nType: `boolean | string[] | object`\\\nDefault: `true`\n\nIf set to `true`, `globby` will automatically glob directories for you. If you define an `Array` it will only glob files that matches the patterns inside the `Array`. You can also define an `object` with `files` and `extensions` like below:\n\n```js\nconst globby = require('globby');\n\n(async () => {\n\tconst paths = await globby('images', {\n\t\texpandDirectories: {\n\t\t\tfiles: ['cat', 'unicorn', '*.jpg'],\n\t\t\textensions: ['png']\n\t\t}\n\t});\n\n\tconsole.log(paths);\n\t//=> ['cat.png', 'unicorn.png', 'cow.jpg', 'rainbow.jpg']\n})();\n```\n\nNote that if you set this option to `false`, you won't get back matched directories unless you set `onlyFiles: false`.\n\n##### gitignore\n\nType: `boolean`\\\nDefault: `false`\n\nRespect ignore patterns in `.gitignore` files that apply to the globbed files.\n\n### globby.sync(patterns, options?)\n\nReturns `string[]` of matching paths.\n\n### globby.stream(patterns, options?)\n\nReturns a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_readable_streams) of matching paths.\n\nSince Node.js 10, [readable streams are iterable](https://nodejs.org/api/stream.html#stream_readable_symbol_asynciterator), so you can loop over glob matches in a [`for await...of` loop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of) like this:\n\n```js\nconst globby = require('globby');\n\n(async () => {\n\tfor await (const path of globby.stream('*.tmp')) {\n\t\tconsole.log(path);\n\t}\n})();\n```\n\n### globby.generateGlobTasks(patterns, options?)\n\nReturns an `object[]` in the format `{pattern: string, options: Object}`, which can be passed as arguments to [`fast-glob`](https://github.com/mrmlnc/fast-glob). This is useful for other globbing-related packages.\n\nNote that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.\n\n### globby.hasMagic(patterns, options?)\n\nReturns a `boolean` of whether there are any special glob characters in the `patterns`.\n\nNote that the options affect the results.\n\nThis function is backed by [`fast-glob`](https://github.com/mrmlnc/fast-glob#isdynamicpatternpattern-options).\n\n### globby.gitignore(options?)\n\nReturns a `Promise<(path: string) => boolean>` indicating whether a given path is ignored via a `.gitignore` file.\n\nTakes `cwd?: string` and `ignore?: string[]` as options. `.gitignore` files matched by the ignore config are not used for the resulting filter function.\n\n```js\nconst {gitignore} = require('globby');\n\n(async () => {\n\tconst isIgnored = await gitignore();\n\tconsole.log(isIgnored('some/file'));\n})();\n```\n\n### globby.gitignore.sync(options?)\n\nReturns a `(path: string) => boolean` indicating whether a given path is ignored via a `.gitignore` file.\n\nTakes the same options as `globby.gitignore`.\n\n## Globbing patterns\n\nJust a quick overview.\n\n- `*` matches any number of characters, but not `/`\n- `?` matches a single character, but not `/`\n- `**` matches any number of characters, including `/`, as long as it's the only thing in a path part\n- `{}` allows for a comma-separated list of \"or\" expressions\n- `!` at the beginning of a pattern will negate the match\n\n[Various patterns and expected matches.](https://github.com/sindresorhus/multimatch/blob/master/test/test.js)\n\n## globby for enterprise\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of globby and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-globby?utm_source=npm-globby&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)\n\n## Related\n\n- [multimatch](https://github.com/sindresorhus/multimatch) - Match against a list instead of the filesystem\n- [matcher](https://github.com/sindresorhus/matcher) - Simple wildcard matching\n- [del](https://github.com/sindresorhus/del) - Delete files and directories\n- [make-dir](https://github.com/sindresorhus/make-dir) - Make a directory and its parents if needed\n", - "maintainers": [ - { - "email": "sindresorhus@gmail.com", - "name": "sindresorhus" - } - ], "time": { - "modified": "2020-06-02T07:42:40.215Z", "created": "2014-06-21T13:52:26.626Z", + "modified": "2024-06-30T12:12:56.552Z", "0.1.0": "2014-06-21T13:52:26.626Z", "0.1.1": "2014-06-21T14:47:47.200Z", "1.0.0": "2014-11-18T08:37:51.732Z", @@ -3013,9 +5811,44 @@ "10.0.1": "2019-07-05T06:25:44.161Z", "10.0.2": "2020-01-06T08:36:10.939Z", "11.0.0": "2020-01-06T09:38:23.444Z", - "11.0.1": "2020-06-02T07:42:34.982Z" + "11.0.1": "2020-06-02T07:42:34.982Z", + "11.0.2": "2021-01-06T12:32:55.743Z", + "11.0.3": "2021-03-22T09:57:17.401Z", + "11.0.4": "2021-06-16T13:27:53.478Z", + "12.0.0": "2021-07-22T01:41:34.386Z", + "12.0.1": "2021-08-16T21:01:41.758Z", + "12.0.2": "2021-08-24T10:28:46.247Z", + "11.1.0": "2022-01-08T02:46:38.602Z", + "12.1.0": "2022-01-15T07:40:25.524Z", + "12.2.0": "2022-01-17T08:35:43.259Z", + "13.0.0": "2022-01-24T07:33:11.433Z", + "13.1.0": "2022-01-25T10:30:44.916Z", + "13.1.1": "2022-02-02T08:57:34.169Z", + "13.1.2": "2022-06-12T09:41:21.517Z", + "13.1.3": "2022-12-12T17:07:37.298Z", + "13.1.4": "2023-04-11T14:03:34.979Z", + "13.2.0": "2023-06-18T18:53:36.320Z", + "13.2.1": "2023-07-01T18:15:08.582Z", + "13.2.2": "2023-07-05T22:03:55.698Z", + "14.0.0": "2023-11-09T17:08:07.596Z", + "14.0.1": "2024-02-11T11:00:47.063Z", + "14.0.2": "2024-06-30T12:12:56.375Z" + }, + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/globby.git" }, - "homepage": "https://github.com/sindresorhus/globby#readme", "keywords": [ "all", "array", @@ -3049,69 +5882,64 @@ "gitignore", "git" ], - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globby.git" - }, - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, + "license": "MIT", + "homepage": "https://github.com/sindresorhus/globby#readme", "bugs": { "url": "https://github.com/sindresorhus/globby/issues" }, - "license": "MIT", + "readme": "# globby\n\n> User-friendly glob matching\n\nBased on [`fast-glob`](https://github.com/mrmlnc/fast-glob) but adds a bunch of useful features.\n\n## Features\n\n- Promise API\n- Multiple patterns\n- Negated patterns: `['foo*', '!foobar']`\n- Expands directories: `foo` → `foo/**/*`\n- Supports `.gitignore` and similar ignore config files\n- Supports `URL` as `cwd`\n\n## Install\n\n```sh\nnpm install globby\n```\n\n## Usage\n\n```\n├── unicorn\n├── cake\n└── rainbow\n```\n\n```js\nimport {globby} from 'globby';\n\nconst paths = await globby(['*', '!cake']);\n\nconsole.log(paths);\n//=> ['unicorn', 'rainbow']\n```\n\n## API\n\nNote that glob patterns can only contain forward-slashes, not backward-slashes, so if you want to construct a glob pattern from path components, you need to use `path.posix.join()` instead of `path.join()`.\n\n### globby(patterns, options?)\n\nReturns a `Promise` of matching paths.\n\n#### patterns\n\nType: `string | string[]`\n\nSee supported `minimatch` [patterns](https://github.com/isaacs/minimatch#usage).\n\n#### options\n\nType: `object`\n\nSee the [`fast-glob` options](https://github.com/mrmlnc/fast-glob#options-3) in addition to the ones below.\n\n##### expandDirectories\n\nType: `boolean | string[] | object`\\\nDefault: `true`\n\nIf set to `true`, `globby` will automatically glob directories for you. If you define an `Array` it will only glob files that matches the patterns inside the `Array`. You can also define an `object` with `files` and `extensions` like below:\n\n```js\nimport {globby} from 'globby';\n\nconst paths = await globby('images', {\n\texpandDirectories: {\n\t\tfiles: ['cat', 'unicorn', '*.jpg'],\n\t\textensions: ['png']\n\t}\n});\n\nconsole.log(paths);\n//=> ['cat.png', 'unicorn.png', 'cow.jpg', 'rainbow.jpg']\n```\n\nNote that if you set this option to `false`, you won't get back matched directories unless you set `onlyFiles: false`.\n\n##### gitignore\n\nType: `boolean`\\\nDefault: `false`\n\nRespect ignore patterns in `.gitignore` files that apply to the globbed files.\n\n##### ignoreFiles\n\nType: `string | string[]`\\\nDefault: `undefined`\n\nGlob patterns to look for ignore files, which are then used to ignore globbed files.\n\nThis is a more generic form of the `gitignore` option, allowing you to find ignore files with a [compatible syntax](http://git-scm.com/docs/gitignore). For instance, this works with Babel's `.babelignore`, Prettier's `.prettierignore`, or ESLint's `.eslintignore` files.\n\n### globbySync(patterns, options?)\n\nReturns `string[]` of matching paths.\n\n### globbyStream(patterns, options?)\n\nReturns a [`stream.Readable`](https://nodejs.org/api/stream.html#stream_readable_streams) of matching paths.\n\nFor example, loop over glob matches in a [`for await...of` loop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of) like this:\n\n```js\nimport {globbyStream} from 'globby';\n\nfor await (const path of globbyStream('*.tmp')) {\n\tconsole.log(path);\n}\n```\n\n### convertPathToPattern(path)\n\nConvert a path to a pattern. [Learn more.](https://github.com/mrmlnc/fast-glob#convertpathtopatternpath)\n\n### generateGlobTasks(patterns, options?)\n\nReturns an `Promise` in the format `{patterns: string[], options: Object}`, which can be passed as arguments to [`fast-glob`](https://github.com/mrmlnc/fast-glob). This is useful for other globbing-related packages.\n\nNote that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.\n\n### generateGlobTasksSync(patterns, options?)\n\nReturns an `object[]` in the format `{patterns: string[], options: Object}`, which can be passed as arguments to [`fast-glob`](https://github.com/mrmlnc/fast-glob). This is useful for other globbing-related packages.\n\nTakes the same arguments as `generateGlobTasks`.\n\n### isDynamicPattern(patterns, options?)\n\nReturns a `boolean` of whether there are any special glob characters in the `patterns`.\n\nNote that the options affect the results.\n\nThis function is backed by [`fast-glob`](https://github.com/mrmlnc/fast-glob#isdynamicpatternpattern-options).\n\n### isGitIgnored(options?)\n\nReturns a `Promise<(path: URL | string) => boolean>` indicating whether a given path is ignored via a `.gitignore` file.\n\nTakes `cwd?: URL | string` as options.\n\n```js\nimport {isGitIgnored} from 'globby';\n\nconst isIgnored = await isGitIgnored();\n\nconsole.log(isIgnored('some/file'));\n```\n\n### isGitIgnoredSync(options?)\n\nReturns a `(path: URL | string) => boolean` indicating whether a given path is ignored via a `.gitignore` file.\n\nTakes `cwd?: URL | string` as options.\n\n## Globbing patterns\n\nJust a quick overview.\n\n- `*` matches any number of characters, but not `/`\n- `?` matches a single character, but not `/`\n- `**` matches any number of characters, including `/`, as long as it's the only thing in a path part\n- `{}` allows for a comma-separated list of \"or\" expressions\n- `!` at the beginning of a pattern will negate the match\n\n[Various patterns and expected matches.](https://github.com/sindresorhus/multimatch/blob/main/test/test.js)\n\n## Related\n\n- [multimatch](https://github.com/sindresorhus/multimatch) - Match against a list instead of the filesystem\n- [matcher](https://github.com/sindresorhus/matcher) - Simple wildcard matching\n- [del](https://github.com/sindresorhus/del) - Delete files and directories\n- [make-dir](https://github.com/sindresorhus/make-dir) - Make a directory and its parents if needed\n", "readmeFilename": "readme.md", "users": { + "bret": true, + "eijs": true, "fill": true, - "noyobo": true, - "zhangyaochun": true, - "schnittstabil": true, - "laravelfanatic": true, + "tpkn": true, + "ccd3v": true, "ddffx": true, - "bret": true, - "mariusc23": true, - "tomekf": true, - "sapientnitrola": true, - "arttse": true, - "igorpupkinable": true, - "rokt33r": true, - "mysticatea": true, - "nichoth": true, - "tongjieme": true, - "recursion_excursion": true, - "koalaylj": true, - "dennisli87": true, - "abdihaikal": true, "eerne": true, + "laomu": true, + "arttse": true, + "daizch": true, "monjer": true, - "eijs": true, - "usingthesystem": true, + "noyobo": true, + "tomekf": true, + "yoksel": true, + "banyudu": true, "drewigg": true, - "seangenabe": true, - "aitoralejandro": true, - "necanicum": true, - "shangsinian": true, - "laomu": true, + "fizzpop": true, + "nichoth": true, + "rokt33r": true, + "suchipi": true, + "jon_shen": true, + "koalaylj": true, "ru7hl355": true, "simonfan": true, - "gavinning": true, - "jon_shen": true, + "tdmalone": true, "alexxnica": true, + "gavinning": true, "heartnett": true, + "mariusc23": true, + "necanicum": true, + "tongjieme": true, + "yanrivera": true, + "abdihaikal": true, + "dennisli87": true, "jrobinsonc": true, - "banyudu": true, - "daizch": true, - "tdmalone": true, - "ccd3v": true, - "tpkn": true, + "mysticatea": true, + "seangenabe": true, "shuoshubao": true, + "flumpus-dev": true, + "shangsinian": true, + "wangnan0610": true, "killparadise": true, + "zhangyaochun": true, + "schnittstabil": true, + "aitoralejandro": true, + "igorpupkinable": true, + "laravelfanatic": true, + "sapientnitrola": true, "shanewholloway": true, - "wangnan0610": true, - "fizzpop": true, - "suchipi": true, - "yoksel": true + "usingthesystem": true, + "recursion_excursion": true } -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/globby.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/globby.min.json index 02f78b84ac790..dd65fee4d6580 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/globby.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/globby.min.json @@ -1,24 +1,32 @@ { "name": "globby", "dist-tags": { - "latest": "11.0.1" + "version11": "11.1.0", + "latest": "14.0.2" }, "versions": { "0.1.0": { "name": "globby", "version": "0.1.0", "dependencies": { - "array-differ": "^0.1.0", - "array-union": "^0.1.0", + "glob": "^4.0.2", "async": "^0.9.0", - "glob": "^4.0.2" + "array-union": "^0.1.0", + "array-differ": "^0.1.0" }, "devDependencies": { "mocha": "*" }, "dist": { "shasum": "133eb75f549d2cd2306cef1781e47e7671576a02", - "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.0.tgz", + "integrity": "sha512-UaTSFq7btbeWOS3OnD3wk/YMxjyB7kCwfYzAqrMjGPGKxZuyhN1Izv8eWpfk2PKfX2Esu9ifoeqC38AP+ovOog==", + "signatures": [ + { + "sig": "MEYCIQCXsFqGGaRQLb5KNKuOCKtOegtM/PhNan7E+9ywqlKGZAIhAOFUQdA0KJd2TMZN1QK59vpuQxLqLM5srKK0KSMMrM5I", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -28,17 +36,24 @@ "name": "globby", "version": "0.1.1", "dependencies": { - "array-differ": "^0.1.0", - "array-union": "^0.1.0", + "glob": "^4.0.2", "async": "^0.9.0", - "glob": "^4.0.2" + "array-union": "^0.1.0", + "array-differ": "^0.1.0" }, "devDependencies": { "mocha": "*" }, "dist": { "shasum": "cbec63df724b4bea458b79a16cc0e3b1f2ca8620", - "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.1.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-0.1.1.tgz", + "integrity": "sha512-2pbBkdOV/R5/MhfIjBuYikDsIYEJr7V9grzdsGkJKYCww7PV1pB5BJmBq4vAPvfZT1FO+EM373bK4HaOVl988g==", + "signatures": [ + { + "sig": "MEUCIQCng8YCN5VUIAHG/WuqzKLDOQGxW1TttGu2SmxMgbvS5AIgfVybZcvz7a8o4o4C4HLr5F5+73AN7xv4ts1vMyVaWMw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -48,17 +63,24 @@ "name": "globby", "version": "1.0.0", "dependencies": { - "array-differ": "^1.0.0", - "array-union": "^1.0.1", + "glob": "^4.0.2", "async": "^0.9.0", - "glob": "^4.0.2" + "array-union": "^1.0.1", + "array-differ": "^1.0.0" }, "devDependencies": { "mocha": "*" }, "dist": { "shasum": "49edf76fa45bf214423e812f4035060f1a2cfb51", - "tarball": "https://registry.npmjs.org/globby/-/globby-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-1.0.0.tgz", + "integrity": "sha512-bapBU236nkjzVG4dm2WnNYKmolgNee3FGruBUG98NgtotXosfKm42DBelYoU1PkbLvuJlGQYmNuEms06xlIUrw==", + "signatures": [ + { + "sig": "MEYCIQCW3cr4Hbi6tguo5zXb2kif9WE3qdEg6XeasCrvYnHAxgIhAIUD7hKxwJTWGlVtG3FQZJo8ucv78B8YzXhqP+9XrGsz", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -68,21 +90,28 @@ "name": "globby", "version": "1.1.0", "dependencies": { - "array-union": "^1.0.1", - "async": "^0.9.0", "glob": "^4.0.2", - "minimatch": "^2.0.1" + "async": "^0.9.0", + "minimatch": "^2.0.1", + "array-union": "^1.0.1" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "182928fafef4a036959caff1cb7b458b5b442a81", - "tarball": "https://registry.npmjs.org/globby/-/globby-1.1.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-1.1.0.tgz", + "integrity": "sha512-DgTXXIVPi6Qm6s305W5nul9pFtdCtL8Taizwp8bZPPj0mN5apcav4nY4bibmMgLUqGmeEOxycnO/PxmOmKjIgg==", + "signatures": [ + { + "sig": "MEQCIFmxzOzcQC3obvCDeKJOnH8KlnvjPNIS/D7fuXHHgZTdAiAYFcernTMsDxbwfWatwOYdyq4iu8Dzcj9n20CmVmSpCw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -92,21 +121,28 @@ "name": "globby", "version": "1.2.0", "dependencies": { - "array-union": "^1.0.1", - "async": "^0.9.0", "glob": "^4.4.0", + "async": "^0.9.0", + "array-union": "^1.0.1", "object-assign": "^2.0.0" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "c7c97ad1cc6f8594811da1eb82906a852ba47da4", - "tarball": "https://registry.npmjs.org/globby/-/globby-1.2.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-1.2.0.tgz", + "integrity": "sha512-G0PVnJQIP+DFdf1ZCoL96tzJFeGv9yHn3Iwr5sH+d4DuL5ST8WvEW/uiNetGPUYVAHGtI8DpbOpA3Orgh9CvCw==", + "signatures": [ + { + "sig": "MEYCIQCXEB2b/aWih91VNXHAKMQI/tAIVJtvzcpadnuEJ/TSlQIhAMxCMtNyAY3I84JEb/3AuG/qY/OvQrJoax3yk1vxQSQ4", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -116,21 +152,28 @@ "name": "globby", "version": "2.0.0", "dependencies": { - "array-union": "^1.0.1", - "async": "^0.9.0", "glob": "^5.0.3", + "async": "^0.9.0", + "array-union": "^1.0.1", "object-assign": "^2.0.0" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "a401a4db2cc0c246ee2a45c19fece98a510eafbc", - "tarball": "https://registry.npmjs.org/globby/-/globby-2.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-2.0.0.tgz", + "integrity": "sha512-0Bei0b05c5oTAIxy5CbMP6RQMCaLQ0NS9LEhOyvzIAZWMROdzPEj6Qhoak8usNty+GwsJq7ImJ3Q03Q/KmQ03Q==", + "signatures": [ + { + "sig": "MEYCIQD4JoE/csrzBjiWxeBoA48LPF0vPGD6A6PXHXSqd5b9UwIhAMcauOb4oAgV2X+EWtVqo/9k572K/7127L8L/DOxB9eS", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -140,21 +183,28 @@ "name": "globby", "version": "2.1.0", "dependencies": { - "array-union": "^1.0.1", - "async": "^1.2.1", "glob": "^5.0.3", + "async": "^1.2.1", + "array-union": "^1.0.1", "object-assign": "^3.0.0" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", - "rimraf": "^2.2.8" + "rimraf": "^2.2.8", + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "9e9192bcd33f4ab6a4f894e5e7ea8b713213c482", - "tarball": "https://registry.npmjs.org/globby/-/globby-2.1.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-2.1.0.tgz", + "integrity": "sha512-CqRID2dMaN4Zi9PANiQHhmKaGu7ZASehBLnaDogjR9L3L1EqAGFhflafT0IrSN/zm9xFk+KMTXZCN8pUYOiO/Q==", + "signatures": [ + { + "sig": "MEQCIA7t1BLbT2hfEeFFfbEZXWIS3LXjzqytc1dgkfBK7l2VAiBtNddQWTM7p/UAlM+AZqtAk95j3ZpoYKpADveMDU4PJQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -164,24 +214,31 @@ "name": "globby", "version": "3.0.0", "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", "glob": "^5.0.3", - "object-assign": "^4.0.1", "pify": "^1.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^1.0.0" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "xo": "*", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", "rimraf": "^2.2.8", - "xo": "*" + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "9f8592c0c50aad78d12802ba87fb96082aaf7e93", - "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.0.tgz", + "integrity": "sha512-6yDSrePLH9SJedVRfoj2rC9d+V3Udq1CExgDkLMcwwN2vlUMVDCAmKjmf/P+pRqb+z3OI5yeDwgARtHOK/qKug==", + "signatures": [ + { + "sig": "MEUCIBtvUP6pmGB1rAuP/dNYYYRGIHfYSXuEFaCnK70TqvtbAiEAqXMNQlfJJZCBMJblWFp8FUD2Iqu8JFRwBEKzQWst1UM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -191,24 +248,31 @@ "name": "globby", "version": "3.0.1", "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", "glob": "^5.0.3", - "object-assign": "^4.0.1", "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^1.0.0" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "xo": "*", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", "rimraf": "^2.2.8", - "xo": "*" + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "2094af8421e19152150d5893eb6416b312d9a22f", - "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.1.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-3.0.1.tgz", + "integrity": "sha512-xgjWNuCSDGwGXHBDLr8B9Wm+CzkpvwcWJVA3rj13VnUBX/2QXrPRoUPK84JZ15KPqDoJLOt/FImFo9s2g3xy2Q==", + "signatures": [ + { + "sig": "MEYCIQDtoWuCJXfoQMfM1iN1fkXV3S1M6gJ7dRfSbB22OwgxEQIhAI9D0gkrFbaWakcFQN6w5hFIgVS/OnbAYSztDbHync+Y", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -218,24 +282,31 @@ "name": "globby", "version": "4.0.0", "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", "glob": "^6.0.1", - "object-assign": "^4.0.1", "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^2.0.0" }, "devDependencies": { - "glob-stream": "git+https://github.com/wearefractal/glob-stream#master", + "xo": "*", + "mocha": "*", "globby": "git+https://github.com/sindresorhus/globby#master", "matcha": "^0.6.0", - "mocha": "*", "rimraf": "^2.2.8", - "xo": "*" + "glob-stream": "git+https://github.com/wearefractal/glob-stream#master" }, "dist": { "shasum": "36ff06c5a9dc1dbc201f700074992882857e9817", - "tarball": "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz", + "integrity": "sha512-tf+ZZEIfGphbdxcRZPDHuVGEanAs/LmWL60v0rCi4zFF5W3JvoPYXy3P7I8KWqLYUEEl41YOK6zH84bnjELNLA==", + "signatures": [ + { + "sig": "MEYCIQDa62nj7pD0X6i86EC/+5giDcsDXmA8Gjg8D24uuTAvVgIhAPctH5KvMhnnvYQn/Jiskj/Ag2o48R9eHbjE9Q8E1oqb", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -245,24 +316,31 @@ "name": "globby", "version": "4.1.0", "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", "glob": "^6.0.1", - "object-assign": "^4.0.1", "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^2.0.0" }, "devDependencies": { - "glob-stream": "github:wearefractal/glob-stream#master", + "xo": "*", + "mocha": "*", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", - "mocha": "*", "rimraf": "^2.2.8", - "xo": "*" + "glob-stream": "github:wearefractal/glob-stream#master" }, "dist": { "shasum": "080f54549ec1b82a6c60e631fc82e1211dbe95f8", - "tarball": "https://registry.npmjs.org/globby/-/globby-4.1.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-4.1.0.tgz", + "integrity": "sha512-JPDtMSr0bt25W64q792rvlrSwIaZwqUAhqdYKSr57Wh/xBcQ5JDWLM85ndn+Q1WdBQXLb9YGCl0QN/T0HpqU0A==", + "signatures": [ + { + "sig": "MEQCIA3IiJS8oQ+GnNfB1nfL6Sj6C9QYRbI4FNHD/RLdo9iIAiAQKTlh2wj0vGQC6wVT53zuA2nB1qBV1gKnUTlQKshGzQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -272,24 +350,31 @@ "name": "globby", "version": "5.0.0", "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", "glob": "^7.0.3", - "object-assign": "^4.0.1", "pify": "^2.0.0", + "arrify": "^1.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^2.0.0" }, "devDependencies": { + "xo": "*", "ava": "*", - "glob-stream": "github:wearefractal/glob-stream#master", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "*" + "glob-stream": "github:wearefractal/glob-stream#master" }, "dist": { "shasum": "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d", - "tarball": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", + "signatures": [ + { + "sig": "MEQCIGYEFsHUTKPKpD4UDogxYjm/Ch6pTX5ceHnwtl+3kKHTAiBRIn67R+n1SFBX1CqCPHjuPSvn+4BouNP5565L4VsdJQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -299,23 +384,30 @@ "name": "globby", "version": "6.0.0", "dependencies": { - "array-union": "^1.0.1", "glob": "^7.0.3", - "object-assign": "^4.0.1", "pify": "^2.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^2.0.0" }, "devDependencies": { + "xo": "*", "ava": "*", - "glob-stream": "github:wearefractal/glob-stream#master", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "*" + "glob-stream": "github:wearefractal/glob-stream#master" }, "dist": { "shasum": "8f5710eda32296ac53f011a97dccc70e936685dc", - "tarball": "https://registry.npmjs.org/globby/-/globby-6.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-6.0.0.tgz", + "integrity": "sha512-QuzMdXHFJBjY4Rje1/EavSzy7jWhvhiC8RrKBd3GYeg+jdCM+rc6f3XS4LtAmmJeEIrEI7xtw3V/mj59Sd0KhQ==", + "signatures": [ + { + "sig": "MEUCIEXfIg8T6ghKvXKEIZ/agGFYgjb5Fcy3cG8z7fV8ykyMAiEAy7uST8OQiAmMUZ/SkyQCcYTy6EBPxMDNKyaSfhYJYaY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -325,23 +417,30 @@ "name": "globby", "version": "6.1.0", "dependencies": { - "array-union": "^1.0.1", "glob": "^7.0.3", - "object-assign": "^4.0.1", "pify": "^2.0.0", + "array-union": "^1.0.1", + "object-assign": "^4.0.1", "pinkie-promise": "^2.0.0" }, "devDependencies": { + "xo": "^0.16.0", "ava": "*", - "glob-stream": "github:gulpjs/glob-stream#master", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.16.0" + "glob-stream": "github:gulpjs/glob-stream#master" }, "dist": { "shasum": "f5a6d70e8395e21c858fb0489d64df02424d506c", - "tarball": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "signatures": [ + { + "sig": "MEQCIA5zJ2/9z3SNj+UORjEk0ofZyHZvu3abyg4iAxslsmY8AiACA++kpsNRCL4R09uu3OU29U+J+Gu5cwvE7xPw3NUAtw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=0.10.0" @@ -351,26 +450,32 @@ "name": "globby", "version": "7.0.0", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "array-union": "^1.0.1" }, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "fast-glob": "^1.0.1", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" + "fast-glob": "^1.0.1", + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-5n6UgzNezcYIi8V7Wmmf6jpVSLIhQVaz00B9Fjqq1dEFDnmFDpNSoO/0D203AgcgUQ5lgm1j8NKzbWCwk50dlg==", "shasum": "eceef117ab948f394e85a0729bf5b96348958a84", - "tarball": "https://registry.npmjs.org/globby/-/globby-7.0.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-7.0.0.tgz", + "integrity": "sha512-5n6UgzNezcYIi8V7Wmmf6jpVSLIhQVaz00B9Fjqq1dEFDnmFDpNSoO/0D203AgcgUQ5lgm1j8NKzbWCwk50dlg==", + "signatures": [ + { + "sig": "MEUCIEnoAAze64CJ22WoKpa+2hymcc7anI4eL0R4bIGealalAiEAsUkcUuk1sMYeO7QJ7h25Xu1zSScc3AmbU37yOnnRa04=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=4" @@ -380,25 +485,32 @@ "name": "globby", "version": "7.1.0", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "array-union": "^1.0.1" }, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "fast-glob": "^1.0.1", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" + "fast-glob": "^1.0.1", + "glob-stream": "^6.1.0" }, "dist": { "shasum": "1900b3d559f647341b8f82beb1971af63ec68482", - "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.0.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.0.tgz", + "integrity": "sha512-xHqMnrHtoRVvAo/ZQz9R4BXZgjNSsP9ed6I9CkIkN6Yz27bAJMM93rfrCHCP1OtuG5f2lY4iX6cYmRPDNMLoug==", + "signatures": [ + { + "sig": "MEUCICfcVEUmEuCj6j61iVIsIEH1aUKw4Dkw+LrhClhRY3saAiEA+lbho3YoMN+pj8qqod7mADi/x/qOyOqnZEAhpZO9nWw=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=4" @@ -408,25 +520,32 @@ "name": "globby", "version": "7.1.1", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "array-union": "^1.0.1" }, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "fast-glob": "^1.0.1", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" + "fast-glob": "^1.0.1", + "glob-stream": "^6.1.0" }, "dist": { "shasum": "fb2ccff9401f8600945dfada97440cca972b8680", - "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz" + "tarball": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", + "integrity": "sha512-yANWAN2DUcBtuus5Cpd+SKROzXHs2iVXFZt/Ykrfz6SAXqacLX25NZpltE+39ceMexYF4TtEadjuSTw8+3wX4g==", + "signatures": [ + { + "sig": "MEUCIQCa4Uz3ABtxEoPotsiS4+ssTJmiF0CbUEyFX+5JO2udPgIgFfmcMz7j0e4cOOEahw9/uhiyNNq9d/LuGKRew59zw9Q=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": ">=4" @@ -436,27 +555,33 @@ "name": "globby", "version": "8.0.0", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "fast-glob": "^2.0.2", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "fast-glob": "^2.0.2", + "array-union": "^1.0.1" }, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-J8ous7DaaOmpw58Vw6E0EyV3yPK+RdMe7Y+/T3rGy3uhFBMwRL1/UEntVCLg5xY6ASm7X6aziXCO+ZgtMv/ZMA==", "shasum": "e6f8340ead9a52fa417ec0e75ae664ae0026f5c6", "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.0.tgz", "fileCount": 5, + "integrity": "sha512-J8ous7DaaOmpw58Vw6E0EyV3yPK+RdMe7Y+/T3rGy3uhFBMwRL1/UEntVCLg5xY6ASm7X6aziXCO+ZgtMv/ZMA==", + "signatures": [ + { + "sig": "MEUCIQCbvOl55A3oa56/mtxNEtd1fLX7SONNcdwKdkJVt3iKXAIgNBbnc7SelEmv7L/cZQXOdObYaQdTRH1ytzBiRj2BiEI=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 12359 }, "engines": { @@ -467,27 +592,33 @@ "name": "globby", "version": "8.0.1", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "^2.0.0", - "fast-glob": "^2.0.2", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "^2.0.0", + "fast-glob": "^2.0.2", + "array-union": "^1.0.1" }, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", "shasum": "b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50", "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz", "fileCount": 5, + "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", + "signatures": [ + { + "sig": "MEQCIEWXTbwp/SwITyNCdftXRg9Nb86srTzYxTTPN60QFemWAiB4Od4vyWc1ZRGKFjIhzEzsZG59FK2f1ub5c1Ga/DjcBA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 12394 }, "engines": { @@ -498,27 +629,33 @@ "name": "globby", "version": "8.0.2", "dependencies": { - "array-union": "^1.0.1", - "dir-glob": "2.0.0", - "fast-glob": "^2.0.2", "glob": "^7.1.2", - "ignore": "^3.3.5", "pify": "^3.0.0", - "slash": "^1.0.0" + "slash": "^1.0.0", + "ignore": "^3.3.5", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "array-union": "^1.0.1" }, "devDependencies": { + "xo": "^0.18.0", "ava": "*", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.2.8", - "xo": "^0.18.0" + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", "shasum": "5697619ccd95c5275dbb2d6faa42087c1a941d8d", "tarball": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", "fileCount": 5, + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "signatures": [ + { + "sig": "MEQCID4ikws08u/3BfAfYtLAjKdcAZHTLlQxrDEcEz6kXDTyAiBoJdtAN4Fgr8pZ5yxng+XdqQs3DF78GK2Zf8ZMy8gI0Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 12393, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNcwXCRA9TVsSAnZWagAAn3MP/13jWhW935BJshaerQ8/\neLPxAfvi3ruMp6OHWuGHaboao8bQiu/IrLHl93Za9FBRHWHLrZyGUFYP2cnx\nMuNzjF5lStKk7nK+P/jZpVBj+0cOaXgaYuDXZyR3u788RQDV2IriMXfVgCE5\ndM06KfRDOJl7E/x4pngih4QEObK5g8z9zJVe6gCFOuoJDgyqGEbjWfiiItd8\nGoih8SE05f3NdjvuRYhl2keajxeFE+lrA5/nNjES5jVUZoWXzopdD8BEO72n\nZ6vFu72JOh5jvQa6Bw5P8IQcA7zq+dWwJUc2TtByFWNaYtsigVlX+q6QEHOi\nBzRuxcooh5SQmVJtAyVOlGJGClLq8iiVD/s9d1W4D85Mz5ajb0KHUwntHpMv\n4tLAxcUMLSBt4LmnMYhkiMZPFpRKNmG8Tpi3jHTI8uCoDhRmJO+EwkfmRVnT\nDgj2YBE/G9eAOC/+SSNaTm8y3nm2gegQ1w1KRXCQhwfH/A+9BjPI81ibwVir\nhw4qnlLX/kH+6EMn5reknC5eNofSQAyc6PJIPzSXNqTTTPYGQzMAusDeCoZc\nygva3Zij7gn2v5dstlV6hPXEtjP/JKBLj6ExsBA/Onf04/ETQ0Wnfm/BVJ3c\nQBU/Si+ufS0bP1LLZDjJVMaJIUsgJzy9PQK323aX1td37zc8JgY4VnfZmnT+\n7VIO\r\n=ygOk\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -530,27 +667,33 @@ "name": "globby", "version": "9.0.0", "dependencies": { - "array-union": "^1.0.2", - "dir-glob": "^2.2.1", - "fast-glob": "^2.2.6", "glob": "^7.1.3", - "ignore": "^4.0.3", "pify": "^4.0.1", - "slash": "^2.0.0" + "slash": "^2.0.0", + "ignore": "^4.0.3", + "dir-glob": "^2.2.1", + "fast-glob": "^2.2.6", + "array-union": "^1.0.2" }, "devDependencies": { + "xo": "^0.23.0", "ava": "^1.0.1", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.6.3", - "xo": "^0.23.0" + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-q0qiO/p1w/yJ0hk8V9x1UXlgsXUxlGd0AHUOXZVXBO6aznDtpx7M8D1kBrCAItoPm+4l8r6ATXV1JpjY2SBQOw==", "shasum": "3800df736dc711266df39b4ce33fe0d481f94c23", "tarball": "https://registry.npmjs.org/globby/-/globby-9.0.0.tgz", "fileCount": 5, + "integrity": "sha512-q0qiO/p1w/yJ0hk8V9x1UXlgsXUxlGd0AHUOXZVXBO6aznDtpx7M8D1kBrCAItoPm+4l8r6ATXV1JpjY2SBQOw==", + "signatures": [ + { + "sig": "MEUCIQDbQldF2n7SaG82xyRVBFdiWVb1PVN8jmy7Cm28MEvuYAIgLaEC8zph609tGZAouSXazrKBHO7QW2nqopXTfIdUAZo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 12708, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcODg1CRA9TVsSAnZWagAAhSYQAIndBU3DjVNyD3XcVKBN\nCPT2/OpstazNS7LebywO54FrPc78F+w+aWkSdCubB6oK6ggNS1cq9SRsIPUf\n7e07/m/09S09HhUvZsWL7zVMhrH9VwhsBpeGdxaxMOkYHtLbvuZwofNAkLqW\nGJta722xYvuKL9V17HZ3V+yK0l0F6AOq4+K8oKpgz0Kzb7WNO7YEVH0xTFOH\no5PA2WfOi2M3uQdLMMarKSRqs5RUvYX+dxBERTVSFxIkJcUAXinwxsALSyEj\nNl5YM206BiTFmscbAVe2oVEfpXQ/Zf64j/r6ea+XgoRs7C7Hqh5Af1rGHZ9r\n43+uMe9rMPOqw320fR8Ojx1PoDYOCvXaWdSv+iIaTKe2NHl/GN04y6hUSCDR\nNA4rGihOzABal8xly8WibqsdurD4GyrQ4nomeiSIF8rvCnMwej5CiZm/GBXR\nlirFW5PYdAwSL9yevQSpIpL2tTDJ8CBaDqgddhn+45hbwU1KJkJBSDRijc/v\nip76PVlINGjII5vjgv0WfSAgKtwLZfuOyaAO0G3+uOwUb3+l/fA2dygJwOEd\n6ixOgRcDVi+XEvVkBhGR4QZDdzk5UxPGK0cmYVWFUTwn4DINInta6YAd+iLh\nXLUFZdQ24vkkPSVc+NmYvCOd8qiSgnsE87RzitF4DqtZUewZTuZcdztXze2x\neZm5\r\n=/oQx\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -562,29 +705,35 @@ "name": "globby", "version": "9.1.0", "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.1", - "fast-glob": "^2.2.6", "glob": "^7.1.3", - "ignore": "^4.0.3", "pify": "^4.0.1", - "slash": "^2.0.0" + "slash": "^2.0.0", + "ignore": "^4.0.3", + "dir-glob": "^2.2.1", + "fast-glob": "^2.2.6", + "@types/glob": "^7.1.1", + "array-union": "^1.0.2" }, "devDependencies": { + "xo": "^0.24.0", "ava": "^1.2.1", - "glob-stream": "^6.1.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.6.3", "tsd-check": "^0.3.0", - "xo": "^0.24.0" + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-VtYjhHr7ncls724Of5W6Kaahz0ag7dB4G62/2HsN+xEKG6SrPzM1AJMerGxQTwJGnN9reeyxdvXbuZYpfssCvg==", "shasum": "e90f4d5134109e6d855abdd31bdb1b085428592e", "tarball": "https://registry.npmjs.org/globby/-/globby-9.1.0.tgz", "fileCount": 6, + "integrity": "sha512-VtYjhHr7ncls724Of5W6Kaahz0ag7dB4G62/2HsN+xEKG6SrPzM1AJMerGxQTwJGnN9reeyxdvXbuZYpfssCvg==", + "signatures": [ + { + "sig": "MEQCIApIdy+sda3arKJG4S4BVppkwEPc0KmDg1kRXCGqaG7cAiBf5Cw5ly3fXuX9S/sdKEGHXVMtjVddtGENylP/P4q5Uw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 17692, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce9RjCRA9TVsSAnZWagAAtDYQAIiHoZJvCF9/U2vpn6he\n7rRW3sl1EA3oek+xo+ZI/vIujfZmNtyJMb0cMZ+QVzDyIUvUgSbkUm1PBIyT\n2drw2WPhjiurEfHt+00AjFf2iiFWlESbm5cVBlMZ0US52phyFEujM+8wZXlY\n2GyXtTQQsIrqUmj5XxvVPfegyZCSXIFSLeZN31+03OueN80age2IfOtrDrcr\nAKaxUbmmwx8UghMN+FdpM9urlMqPTkaFo5/hxqEgWUnOQo8dnZWr+SCNdxHI\nTBundoTPR/T4Wgx6j/i6M4gJ9MrPPg8CXZqlgJi68r1toElvmg0m0VWB9gch\nCSFL7jjGYjCafQE47DoZ6UsansNII5qn+dqJG/44g8gCC7ZejWqdwet+ZjN/\naFTE0sssS5OnJozfbjjHJh8lBmsww8Buvz+d6GabV9aGqGUv8FV73WwOkKiq\ntJ683tbj8ueSMy/yrDkZ0qmOtdhQS95G/KlG8GQJ3UgaXUO8DNLP3ZHPdxI4\nD8nC4caLcY3eXNAMA837SegDD6aqZlG0Fmch98YQv3rqZd9H50hL1hAGJrZb\n2JUzAZsGReUo4jl1hyvpXcEeUNhK+0JrPxMkfnqfxmrJAu2sUaFn1t45mttp\nafx9JCAYMbsRZgnUPeGUUM15tC3FBE9aPf7zJMJ+uVetFCWl1pQqMk+oDhwo\nr5dz\r\n=tvxx\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -596,29 +745,35 @@ "name": "globby", "version": "9.2.0", "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.2", - "fast-glob": "^2.2.6", "glob": "^7.1.3", - "ignore": "^4.0.3", "pify": "^4.0.1", - "slash": "^2.0.0" + "slash": "^2.0.0", + "ignore": "^4.0.3", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "@types/glob": "^7.1.1", + "array-union": "^1.0.2" }, "devDependencies": { + "xo": "^0.24.0", "ava": "^1.4.1", - "glob-stream": "^6.1.0", + "tsd": "^0.7.1", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.6.3", - "tsd": "^0.7.1", - "xo": "^0.24.0" + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", "shasum": "fd029a706c703d29bdd170f4b6db3a3f7a7cb63d", "tarball": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", "fileCount": 6, + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "signatures": [ + { + "sig": "MEUCIQDTQBPiyoE9GUP77mvuzMBXQ4izXKk1SuksztAkogTzEQIgZtOtDHjdsnoGZ6GoUIfxu7qb5Sp6uO4/9bN1HgBel2o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 17947, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcodaGCRA9TVsSAnZWagAASdcP/2cwUC55wveQgF+/3yg5\nke+djhfhPfISG7rZL5F6O5Rj3UGbH56YqPt2AWTgU2UL3WC8qYThry1MLiXI\niinjSEjEP4QMbQfuz9e3V4irv5sHH4VstZE5mI9E2JEa0LMmDJCdJmboF2GP\n0yw6krP4enpE2Nj5/NdMfx5UKPboCeuI2y7rVYRR8J2M5mcwT8EhmeG2R3qW\ngTAdu1i1fy13AQdKddNN3FCFCgjMp5aolgMf1jflKnL7gfr/Zt+dsqP5dcjm\nazwi6yGVSkmgUsnru7OogvTjZzVY2PFVN/OsXMOQ/HuhRU9cYwdrL5DGJhdl\nI7z+zdW6hHQuSn723T3OD7e/GERAkELqAFPEpFMgnIdGCq/XXE0YZPXBsdu9\nWu7QZT56/yFPoHdS+zQackmR6vEgTflUypBH3gpujnGfoJ0wYPXEtqtsBbxX\nhb12hvW8TDm497v9BimHKu1kLCl6RVqis1xv5eZMyec5k5OA4juzvbCeW5EO\nTDuoKpAvNXuEV27VtxFdEl8Q+c8McNRj2fohZdQehZwt2efY6a26x6UFoaPF\n1z92O1+acjjysngPqKjsDxkvkd+XivjoCi8DhrZpckTp1wHTHHFH8ohD9Q1I\nL9LiEs/SJmpjWhBsyIDT2xB6tsshR+i5WJdZFFY7tRBo9mEOVuqRUtewQChy\n5WB8\r\n=k3po\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -630,30 +785,36 @@ "name": "globby", "version": "10.0.0", "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", "glob": "^7.1.3", + "slash": "^3.0.0", "ignore": "^5.1.1", "merge2": "^1.2.3", - "slash": "^3.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "@types/glob": "^7.1.1", + "array-union": "^2.1.0" }, "devDependencies": { + "xo": "^0.24.0", "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", + "tsd": "^0.7.3", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", "shasum": "abfcd0630037ae174a88590132c2f6804e291072", "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.0.tgz", "fileCount": 7, + "integrity": "sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==", + "signatures": [ + { + "sig": "MEUCIEnakPEsLWerahwIFAioGiOY978jNqz2S8OZpGdGqf0tAiEAkk6poYjURLt93EUjWT0LzwaI3FmLBhtwQU+vqQeg/3c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 20813, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdF6dsCRA9TVsSAnZWagAAskgP/iRAUZlp13E0ZZdNmbf5\nPSuGyFUhFwuo3Fy0fnZbFY+FMDjaApOBhUk/7jfXBfx5svSMnIqKPmezEscJ\nkkIsJknl/q7W+/ryhVsNXpYMul4mWOtnyZif7kHbpEje/H5XlHJNFksUx+/1\nQ84CYG3lhEnQOziJ2+zqVAr2asmTn3xxfRvyjLWZPmt3Uv+JavVFLxazTkv1\nNz6Z14M9d06I97pTYcQT29/A+bAiNkVtHHhV55JTWsFbPJ5usBXr+O4qb3Cn\nLphTJdVjYqFw8bMu41m1bvYT05e2dXvKn4zedJa94bZv2XkreKegnxbVxoTm\n/EQYlUcGbVPa50E1nL4wmasytIUfGtp62fCWj/t0QCMnn5PsnYVOFiap9ORk\n7G5oRu2MbMqz8L+iDIxV3rwYhKHAwwBKS9s3Kpwi9js9QCLp4+d+z+2ZIb8T\nWUrLfClkKL63ws69vo9P6GT7GVilm7wORPt2xcH3V+PXpmlGVbx08Xn5n/kZ\ntdeLZCfcB5S8h4sdD1vspu7o5RZM3rraXY4c5OONoJIoDOGEY8NLKmyoeSoK\nPrKhuPtF+kx8DF5E6Ok57Mv88gwqaopGWnF9LKEfBa8lEv83yHaUOrr8MfjT\njhpw2i9dqYv8c3QNS0/aqzlerk0wfxwUgNYTpsmGQ4214aMQ2Z4b7WG1TJs7\nkxdG\r\n=kN49\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -665,30 +826,36 @@ "name": "globby", "version": "10.0.1", "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", "glob": "^7.1.3", + "slash": "^3.0.0", "ignore": "^5.1.1", "merge2": "^1.2.3", - "slash": "^3.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "@types/glob": "^7.1.1", + "array-union": "^2.1.0" }, "devDependencies": { + "xo": "^0.24.0", "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", + "tsd": "^0.7.3", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==", "shasum": "4782c34cb75dd683351335c5829cc3420e606b22", "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.1.tgz", "fileCount": 7, + "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==", + "signatures": [ + { + "sig": "MEUCIQCwLm59YStFOB4QBrB+IVmf+ha1J+rwn+1KRUV6z6hlnwIgT4LPnHhsEJdVKI69GptcDvJ4dY0+0imXq3e71BkFvpc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 21937, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHu1oCRA9TVsSAnZWagAAMqEP/RbsHVqJTfUCTbyyTDBv\nGUAxxTjWLCAo0ENKFyfcTCOVXKHrDoPeLI3AIhQR64XeAJ1SVcM1Iyu2ch2A\nCLOce6Az2hr/WlzJ2sj17aIbKAArx23ZfQ/vewLxIM5supIYyO9vLCvZbo2c\nEvxMnXtaqnL4ZTEQBuzMAwQlW6zdKUUP0udT8a+KjbUdXixeVOh1nMZ4HbOv\n3DhiGTCLfkRTbHbi0MG0xf1QSopeLt3oqM+sQRy2QNqz5Qs+rSf1x4DJS/e4\noB4CBFqSwW9cCin9ZPAvhmhGsIxcZ/DSXLbk/x1cnPyN4/gFSSedMcXpQqaG\ntdg9JnkeIQHPvAfyHkbO4ySlN82Hcq2QIC+QXSiMvPZoWG459PX4a6dArfWM\nsaguxr7goPdgtCnBpdAqYjkDzAcm0o579ucYq20qSR4TNW7hrDO4cgrhjwyA\nGx9W6oXkdK6QO6rU3PN1WpSndZpVuRI0ZZLmZovXnrBhkfe4Xfzzg2vufPmH\nYm1YH2z6tlAJ3PteC48aEsozp/Q7DdeWmxq4iBMYgoCVR4vW/Rs1kv0VdE7m\n4IAoXzwbWhkgYYmVaCm3Ua3iWYwbAwhOlp6H/KS2Reqn+cOXcULA0RvqBP3j\nAO49WMj64p1HCqVr0s9tFFAjGZqc6LcPJIEbHmoNDHN0lFEo+baJ7QykAXFt\n1aVG\r\n=madz\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -700,30 +867,36 @@ "name": "globby", "version": "10.0.2", "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", "glob": "^7.1.3", + "slash": "^3.0.0", "ignore": "^5.1.1", "merge2": "^1.2.3", - "slash": "^3.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "@types/glob": "^7.1.1", + "array-union": "^2.1.0" }, "devDependencies": { + "xo": "^0.24.0", "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", + "tsd": "^0.7.3", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^2.6.3", - "tsd": "^0.7.3", - "xo": "^0.24.0" + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", "shasum": "277593e745acaa4646c3ab411289ec47a0392543", "tarball": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", "fileCount": 7, + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "signatures": [ + { + "sig": "MEUCICkVRomXAVjLbM9c5hiTXZFziv8sG5pqu6+91k3kdpDMAiEAkdwF7AK4Sg4GKn3Jf0Y6EwajDRw5VvwJI1bhP/j3XFg=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 22044, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEvF7CRA9TVsSAnZWagAAFiUP/2k3nrSzS2AGAT0Fc43M\n5011Rn4jCgjkiTdUyLarFrg2qHpYKzD8U8mqBuY0YHPFGCuVBTABr1cYguO+\nOe+fKavVnxtEo1KuSZVBcgc8Tw1Rw5cRvT0hFbF4oGD2e9N2MMUopgqmQMjy\nVBBEk1ud2uT+o475JxCZFE0Z2+nzRppurnlpaX47/rNXLEQ07Ixdizr/CBSL\nN1oxjkiCMSGc2zHl7oJknV8fTOrR2kg+RG4UWTOAsfRn6Wa0vnU+1vEiVnIu\nu0XWXJVA2qckeicppvL68T/PGY3W+Vbii0uZsmOdXrsqybGPDnyh0Oyv+NRy\nz2/R09JnIYyzHoRAt+jRtEwSUqjMbuO7+2oCnFkgkOB68nOhPG9oeEXSWO63\np7AMcCkM5Sjyvwa70vbDlzVGJfKh5hbgGLgTOuiuua/KQtq+BaSsgDPHmbdk\n7b4fQSQeUHgKAfCokl36pxYv+py7+RT9ZkL6rUberCG309i3HRTWR3fLp2dV\nmHOTDXfg4bMYvpyr8cZmOEoW7Cwl1hrGT9CcQunb9sQR+KtdERrPyWpGNEDf\njDVeWU+gbdMT95zVV2vdxxuTuFFgeqmG6N2yrpjC5586gYQyFrHyA+a4LjhA\niUEXhcigRmPUlxLvQs13zq5KJll3G5465Mz0QvqF8YQydOO/0+w1+b5LU8yD\nSIWP\r\n=YQf8\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -735,28 +908,34 @@ "name": "globby", "version": "11.0.0", "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", + "slash": "^3.0.0", "ignore": "^5.1.4", "merge2": "^1.3.0", - "slash": "^3.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" }, "devDependencies": { + "xo": "^0.25.3", "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", + "tsd": "^0.11.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==", "shasum": "56fd0e9f0d4f8fb0c456f1ab0dee96e1380bc154", "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.0.tgz", "fileCount": 7, + "integrity": "sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg==", + "signatures": [ + { + "sig": "MEQCIAiQ0tQk/UG7xyQo8RBJ++8OeC6td2XHc6zi0zZ9LXCsAiBss9liWGVuA4m580AKHAmBXM2VrmZVqpzzGcd22BY5DA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 21499, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEwAPCRA9TVsSAnZWagAAEMkP/RWZ58vraC+EU5htWwXP\nDqxcjJ21KmQzCQUXN2bgz9SGeSiaQH4wR3dPfeoek893+hiRXGjwn+HmXm1T\nkP2KuK4ePo9nTyAhCSd67gNoaBqUtjO1VdWfMH06z9Lu61N0n0QH1aGBUkmQ\nKpEesAUabBWxe11hSXVxqU0PeTezB2/m6wBjhCsiv4KhuHxYcESnCxsnp4/R\nXts8y/MMG2qLG4D4empvCq8iLJIPRURf4NMvOqY7q1S1H/dOx2/FdvUapfwj\nOmrvkI0e36+b42ajzhCqpkgpxnEWhR2Oh4eUCA+CeT7yLs6oyTcdUHU+CaC3\nEd5UWNwwL+GfjKVqUt0pWrIIVNYu8juf2ssyuS5OVnxunH5Je3FraXtBlQUI\niIpVzbeoIJFNzCrSohDsO09ZEe4MGZ9w4bOUEhcTp/p7M8fnDAOMGMjc1D9n\nwrWBf0oiM6xnVfJCnpSrzkSdik5CgLfc8+iT3eDyGfFD8xW2QAaJP7H7pS/b\nidG4B/RO7dw1lgBK/LpqXLCppCfonEsDq5vUFXSJ027qAJLzbuclSjX6pXNQ\nasJ58Pk55WXrHXosNBXx6v+tGcZqWIU5Az+O6pzFt0zhJ1MDiSAyk4jP5Ywa\n5DfKPRMnaysfkr/iBfOEvJk+JHyak4FEr/jainVZrqbfSW1ZUx7lRf2PDJG3\n6Tgb\r\n=iEea\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -769,28 +948,34 @@ "name": "globby", "version": "11.0.1", "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", + "slash": "^3.0.0", "ignore": "^5.1.4", "merge2": "^1.3.0", - "slash": "^3.0.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" }, "devDependencies": { + "xo": "^0.25.3", "ava": "^2.1.0", - "get-stream": "^5.1.0", - "glob-stream": "^6.1.0", + "tsd": "^0.11.0", "globby": "github:sindresorhus/globby#master", "matcha": "^0.7.0", "rimraf": "^3.0.0", - "tsd": "^0.11.0", - "xo": "^0.25.3" + "get-stream": "^5.1.0", + "glob-stream": "^6.1.0" }, "dist": { - "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", "shasum": "9a2bf107a068f3ffeabc49ad702c79ede8cfd357", "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", "fileCount": 7, + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "signatures": [ + { + "sig": "MEUCIHki1ETnsFyWBaAeuNf7+R2e2yrUY9Hy8v/Kh3npGxAbAiEA2vKp+1ID0gBibosKHwzfyJA1BC2LZ8+TirPqSaaWkC8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], "unpackedSize": 21518, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1gLrCRA9TVsSAnZWagAACHsP/0cGGGOSFkXbuk6e6lUQ\n4w3iK1ruHicjFdqeeqDWxj/J7v3gDdQd3O5kpHzn6l480NGp84bOiVQsagvG\nydTE23wEdxV8e7mkwFsqDmrK6ffDuqu9WPYlfI+uM2k+EeTVVZJebE9uGbjD\n0NMyYAbvuku/x5+aM5PCJkzORmXAGCblq40IhKMLkIxXnQMi1dmA3ZpKzAB0\nd2f/98oMZz5Z3eUJRSjMQpKwZq/IWneZEQGkZrIzwQ1QLPxx5w/Q8TIQGSxE\nyNCiTIO5HbxH06HNaQ9TEBTGycY8dYFGhhEYYNhHruUvaPUsh8yi+KB2Zwj+\nsgDkd4OdW6q3h8TX2zgpBpaDzf+OBArdWO5mTes+TRsOmfJI23q2wF3JRktg\nVIhmaw7/R9u5R3TQmCyBxTMUmbflEhkbYBinxRkcgxAeLt7eRlONEbfu4OR3\nreXpUzjl+2PkLNKL9YU1iOaE41qO2XoD7ELHXA9W4/2EPKF2oDWFkttKgF2d\nBovHQBbEBa6kFfiGKAg6YIq1afBBOK3QmBalq5xpyr6Jz0MdAahpTrcKSrnl\n509scFDf8dJ9NsdQ91ua5G+JbkBig/n5X7vvg5CdmchuVgG/MdKQpYmom8GY\nGJgTyel4jKGh68ADFDFoV/199v57eXg6N3dmLMO07MPoTaKfdkUYh0SorDxK\ndDU2\r\n=vxMk\r\n-----END PGP SIGNATURE-----\r\n" }, @@ -798,7 +983,863 @@ "node": ">=10" }, "funding": "https://github.com/sponsors/sindresorhus" + }, + "11.0.2": { + "name": "globby", + "version": "11.0.2", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#master", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "1af538b766a3b540ebfb58a32b2e2d5897321d83", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "fileCount": 7, + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "signatures": [ + { + "sig": "MEQCICIjbGO+f/wppv8euoZc4adl0QP8gfGxR1Z/EAJdh7SmAiBMko5XMZ82Aj/EwepULks5ga/5vD4I6MI1BmGJlJfOBw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21453, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9a34CRA9TVsSAnZWagAACg8P/0803G8DLX4zoE7loT29\nEJoPRuL+0TyraIgheaPKGgoDRF3XdhoOiIg8oLuyq11Ds3ukM2PbA7o0gTeA\nSnyxBy6m7Cwzw/+BaIEKfEjijxSZMXetR27cpV5BSOcikCw/x5GSb0KrkFcr\nbKsZafidz1BhJDYNlYsj2+CujxgzNel4OVjBmtd+2MCf6w9f/UBT7G+lL6w1\n2+m71U/8998u/S1C75BEvvdsQohkmOPclqkOTOuinbtIDNAxiQd71xKnghRr\nVxac5tN6wsXQ5DHcYo9Eb8HobcRTDfDnC5K2y7XukLznQwkBYaLl4vaYsVSB\nzXukevQTo5tWBxGf6PUaro2Cm9VUfSeRXwyzsK6Z399HYVbs32cf7CTNaFo/\nkxLSCzNR/EqyESOuv74fzyf5ZCTC2OhIWJQIeno6Bi6fPiOgr0XCvU9MXvoI\nQuzGTwO6GYo21O3nFEIGV+fvZTHrvYRaGXTZyhXMI334qmsJBgomHO8KBuT4\n4JBW5R6jbCa4inWFFTTdokZpl/9nrKH+YCliJoa7QVXB4QiE3yLzCN2XR2yU\nX8NdX3Qew82xJ5DhgJdQCDgQjbosy3cYA+WQvy57RJ0TtdJoekxKK/1xwspQ\nAmMvZHK8w9r3s1gTFewtq5bZGUwFRuIIe+xl6xikAEoii412U92jQhpOE82D\njliQ\r\n=0pk1\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "11.0.3": { + "name": "globby", + "version": "11.0.3", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", + "fileCount": 7, + "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", + "signatures": [ + { + "sig": "MEUCIQC/JSGANCL7CFEZBT0rq9/QXhs9IdKcdjlDCnf9WIH8+wIgD0uKeXX14fHrhahTykdh2gpr+B1qexJGcBn1yIIGX1c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21456, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWGn9CRA9TVsSAnZWagAADp0P/jDMqwC4YtVT58AVkag4\n5hKTUMReMQ0qPw+yDcxAaeAWHhYQHUC0Umynnf7p1NCVk/KRuc6mmqfVJvXu\npEzFNOKABSzQ2uE8SUIRwYKPa6035USg2gDzm7JEkI1Chzv00yIsXDXHVWNi\nD1SrOJArKWLZySg65EtRcE04Fb6lclnbpro+GFKcLKBLhvAMTpZWNmJrTTf6\nqPeFPMNPwhCUgh0oFF8Bi4nc3sSIUpaxIdu5OuyE3DgPQFalKdpXmB1dkD79\naVzAt4r5t/kNiFzaVbQ+eJKaZRKoHQRNTmUFfZ8gk5s2lq163MCJt3ojoLGo\n/aAi7j7Enm8dATyQAgyXA9ifKgEr5pxBD+ibHHCbCSz1PlPIkasr8MGTGh1F\nWscBPndSRaviH/+LiR1Xn/Gk82zoon9XFeYB49mTdf3PyXbINbppz6ILX0jC\nW2zX5Plnp/cFJOttP7uNwBPq5S/23W2uMajcqfiiRLXQsIlwHHT/0MaAC28o\nSN7WHK/rhcXD0AuGcDAcKX8ocunXT0Aegf5y6b8MxZhxQeo8pdPras5y1eiX\nqZ3G3SBtMLJqGKXlmUoefVVtWZEj7OLkPg5e4AsvPqwRSIUoVUtqi8pKaYV2\nragVw/BTvs4Kve1WZI78tb6nxhjcUvhC1EN/uWW52Gr20wlBZ3+yyF39SmfA\ntRrA\r\n=ehcM\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "11.0.4": { + "name": "globby", + "version": "11.0.4", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "array-union": "^2.1.0" + }, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "fileCount": 7, + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "signatures": [ + { + "sig": "MEUCIGmJaEUVW5JTl8GzXwJAgEH7MY4A5PKZYDNQ206E98pXAiEAvroaCFfhegju4HmKRFUF9L8d4BJi7PlX62hbf9nBt7E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21758, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyfxZCRA9TVsSAnZWagAAyyYP/1qmveok0cokUmxEySzG\ngX406MxsPte9d33hEMzO0Q7BSwukXHIDWdgeBpXlNwa3nLy6bmLAyz1LpbO8\nU9CIH2KlMsL9TrF0/3RoIKjTPr9Kwbvmy01yCY3FDRgHsMnpCbD0l+8ou6DW\nL5yZwadAeecfHbum0/Wfh9dwtSgauGrn2fVVcS2IALfo21QMFGq2pdm/yZRa\n0lDp/S0ax9Oeto1iz9FSCO2Ax1BCoJGpPVgWOi3Et9mNplzBNn8W8Y1Daq9s\n3OGXqwWCT3fm+BNGzN8BRByzYjaLh2ZR1/AlmE24o1UAPibc4dUqM16tFU7v\nusToD4WG+cRts2tQQvEwmSCq0l+cgp6jCLw9NG0gX8XjDdntOx5xAvjrQoT/\nqdAMhkV8SOS8EL01yslqoSC2htOade0CapuPRPZqeRpYxYHWbC3Qo+Py45G9\nc/aBgzGA5aq0URCI0P3mguctlfH61c2yM39TyBs1IXs6sOlYW3UK2UNPsK0t\nosVcw8iuzXLRPJM3NMZxwKx5vTNFu8y/Vh7cMFhbd1OujQUmImOW3s5TpUZC\nnBKcRnJFKRTFfDlUUC2kmdpHMmRARIyvcFoZVn4yxksAxE9tHihVsXAo88bS\neUpH+5z0QjC3ph6BErqDw/HAISWt/ThOFA5dbRtdigBVOPS+EanYZ8m4Ta4y\nwNGw\r\n=5W/n\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "12.0.0": { + "name": "globby", + "version": "12.0.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.8", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "devDependencies": { + "xo": "^0.42.0", + "ava": "^3.15.0", + "tsd": "^0.17.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.3.5", + "@types/node": "^16.4.0", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "b8bbb8e9d48f8a3c9abf5624030f1f9e1cfbe3ed", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-3mOIUduqSMHm6gNjIw9E641TZ93NB8lFVt+6MKIw6vUaIS5aSsw/6cl0gT86z1IoKlaL90BiOQlA593GUMlzEA==", + "signatures": [ + { + "sig": "MEQCIA1Rs6PNrFkOCKwNomg1IV/+QicGudNa0/UBL7A+yCy3AiANE1BQkfxuKrRcy0MD/XuMKVXAIO5zQHF8n6gOU9CDHQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21458, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+MzOCRA9TVsSAnZWagAA7C8P/3gNupkknvXWOoJrmLm5\nidAxrEJtEwr+YL3H5Ykvuc16fMpue/wwMT6ryQ1cOND7LPBzA+AHBz3lL/Pi\nSa0WDlS1qkdGt82vcgNAAwy5DjyzVDdVymSpoJliDdZJivNIVzkkkE7BW3uw\njoPmBJVXbCQiScZZmsK+dllK8mGqPjGyj9rkwWktFk492bZKDW/NaR/aLa1l\nnQH6koi3LS3TjApJVagpNthFUEyHXSVTizbOES1yzUuKJiQZ72d+SN7Zob9G\nhCFQYZr7LJRpIhB3H1HYLG+sYsgsUDSexVkazh67gSCqlDBK/OsNGNHqiwaf\nTRK3Rzrhv/J3VVr17en7QZOJYUmEDsajHoCbC4tSJ7iZogcpb9abhT8oVN2K\nMpmkMWuZPXLyW0XEHYPsHIsPh7vRhsLDblhGIDMXOiMEiwTTI35KZDynopaE\n3UlaZZET3d4b78jKv6j9GQtIaOO0TWi0OAukBfLbrpod4ERdkAbsOhhfbA5x\nKSSUHdVrfhpNjpp8nTrNv9T3cBeOTgt1EZRecbQR7Xhwnrm/nomqDcd88xoD\nT6C7zjghiN1XRr68gUexKOPv5Wc+lXhBtStbVBDpL3vHGY4R6jiJ7mNx7+5x\n3lRE5tQI9DuTZdZJfFG4stKWlMyUs0z4HasqhaFG9DUyMICv0s1+S8aQeStV\n6NQN\r\n=feCq\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=12.20" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "12.0.1": { + "name": "globby", + "version": "12.0.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.8", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "devDependencies": { + "xo": "^0.44.0", + "ava": "^3.15.0", + "tsd": "^0.17.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.3.5", + "@types/node": "^16.6.1", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "2c4dd20cc1e6647946afa26078b16c352422a931", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.0.1.tgz", + "fileCount": 7, + "integrity": "sha512-AofdCGi+crQ1uN9+nMbTnvC4XGNPJN9hRiPf+A76lUZIZoWoj4Z9iyUQGge7xCGKgR/7ejB36qoIlLoDBc7fYw==", + "signatures": [ + { + "sig": "MEUCIF2SNk4AbWz0mrHDyqG7Z8igvhQqBak27T1tln6L673wAiEAqEzdMQsn41Bsg5zm4+TTd60Lpw0s6VTDQNP+my5mPU0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21483, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhGtI1CRA9TVsSAnZWagAAuHcP/RTfs3JcuEi28grLP7oR\n8eUw8CeZXgxe9CbuhBoxxaf/Ix8dvyp00q5sCaX2Ja6H9oLgTLgnQXmHppg0\ng0O3Vmuqj0Edh3AAxD7uNbHgSvyJpy6Be/GmU2L9hYk/u1G+O3b0wLBdHbrR\nL0UD4GiZYwWzcPMlc7Rip6gDVLw2ZlE1+cZeYPWbpsDUOt+jLS+YfC15KBNU\nI89TOyKirv0tpaAFrRGcoTsIOBZUeQ9DORBkMycXNiA9I5gMqpHe/rGXyheO\ncz00qZmtH8yEDuDUrl155uGKZy9b0QYoa6fp+iKgrsK5NjHesuvqrm1Mg659\nrl2gZtRtMq2XsWlThRT//t0MTUm8dG8VWO+bBjhAaR/R1pYEGBJpODcZrAnG\n1J6W1CHmC8jG/SXmF+P6Ey8JT73ovhpOyUHJZRCrotSd4RBsbfEqoLFtP91u\n4cZTCJ30es2vfkiD5tb++ERNEvrRgfSzs/vdVzbQi1kaMdYPezCEmHbPO9Bh\nIIarwqPn1DFm0O6xuXAm3JSXomenAVo0mf3bIL6X5ytpIjgZ4pZJTlFmoX0I\nvjsUoA/fTFsajM4R0jxM9kajsY8KnHE5KxluITceJD8ap91rHL0O4+SpZ1Bk\nP/HJXd4XZUPdLMnaiFt4LoMDcs4MvO3No/ezXrDhudGwSMKlU2AYJNqw0O3H\noSjt\r\n=qhSe\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "12.0.2": { + "name": "globby", + "version": "12.0.2", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.8", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "devDependencies": { + "xo": "^0.44.0", + "ava": "^3.15.0", + "tsd": "^0.17.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.3.5", + "@types/node": "^16.6.1", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "53788b2adf235602ed4cabfea5c70a1139e1ab11", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.0.2.tgz", + "fileCount": 7, + "integrity": "sha512-lAsmb/5Lww4r7MM9nCCliDZVIKbZTavrsunAsHLr9oHthrZP1qi7/gAnHOsUs9bLvEt2vKVJhHmxuL7QbDuPdQ==", + "signatures": [ + { + "sig": "MEUCIQCA1/1+ohJ2wwHHllyLHxDfOhZGO6wbRH44OnVLrghwVAIgEhEiGrU4NXaabr0fr4uWhbsoitZp+mhT8xTrkpcMVYM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21748, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJMneCRA9TVsSAnZWagAAGF8P/2UdgL/TIyMh7ofPpVph\nNBF49DLUlcJWr13VYZ340VJlliiv2oc3m7E/wjd/D+9L7OKMpcWkK9CwjIbG\nGKW66Zy/stbyQjGBR/vQajUK75TJY82/RDvpwDWaYxPgV1zTkmBpNo9m0AKD\nl+pXzvsqvsfiBWsz0cu7+0rem09fMfeQYtHcikcBahasLrcJq3BHIKYcAxy9\nsr6BfbV7YbXHN51A40hHWuI3SMC7wPRggk7mZNJGsU5H34qKW24xtYK9ZTDu\nKtkQXX7KwSjNr3ZPTGdv4uM4NbDXYxc9cA8noFHPtuoyWeFDkDsM+LVlEpRV\n24804dBsfq4k6iQQ4YHpEzUP97LO7Ov+FenmXp0yUKR2ns0O7WJoYitsVRV3\nxxwiWdgVE2SK27be+pKSJ8KD2v7pWMJBnIYojsRlcj6ytolNYoQIcBpZ2Axj\n6B6fUtXWsnX9adeBP/a7wK0CbfLsDHPcA9T0k7vBhxKPk8mdMa0Yh2G7dOem\nqrIoWtVevPDtg569af9D9BxB5AhXCDkiqfvalXA5jxqcWFl+Ua7fHBhdX+0/\nI1fBEnyQzbLWcxLENqEny6lEh8mqsbiREjEGbit2wwBlFttni5gjQtIrnF+A\nQY5gFNu6y3K9pjj8c7589YomfwLMCaVtlR6TKrzlOtKBb+ZKGWI1VMMWqLI7\nQWeN\r\n=pC4x\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "11.1.0": { + "name": "globby", + "version": "11.1.0", + "dependencies": { + "slash": "^3.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "array-union": "^2.1.0" + }, + "devDependencies": { + "xo": "^0.33.1", + "ava": "^3.13.0", + "tsd": "^0.13.1", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.0", + "glob-stream": "^6.1.0" + }, + "dist": { + "shasum": "bd4be98bb042f83d796f7e3811991fbe82a0d34b", + "tarball": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "fileCount": 7, + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "signatures": [ + { + "sig": "MEYCIQCdLNeYk/I6qvNcqsvDNPWczLhaEc6iXDWknLB7VPLJ0wIhALsE8ux4hGpT5UbQ2LQuwPyPqtGEr7D3fGbDjCJyY0Tr", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 21758, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2PsOCRA9TVsSAnZWagAAG6kP/0mm0XiEn37Py66MuP+z\nKK7w7Latcx1vtgmmnaybLWhae+WlYnqnMYBwpMNxUm5//m4IbwoRSHst/leZ\ntmmeWlwivXnTHZf2zduP0ZKeH/oubuQT+7gHcgoH0OL3NGjSHXAWFoLfuwsD\nEG497pqEpT3nFkpq4mFOh8WjEEZ9vZ7zXClG+MDYMXHbpe5qFdZg5B5Uaalb\ndbiCWbRiRoceZ69JE+aJz388bWpiFaDShVX9pHzbXLkrXn17Lcvql1iKlYlE\ntKVOS6Yex5SkRr1L2bhUfBZCEJz/7MHQRuZP7DydnCw6u3sx/74v+V5wF7gy\njELOdvp6DaQMdWKdJGwZJrG+gW/B/oV1itB0J46XIVPVuzKY41/vFFjryCYn\nkl7iO1Wzk0TORnFUd5oSBEbz5rSrD/JgSWdqsuE11wMNNqx49zP+TARegpn9\nqQxVFlEZrv1tnTCbMm59sk+QmY09286wofsPX1Tqy9hf7UuPEMzwjtxL9k64\nwsAazNzhCoP8rpsvDJbqL+Rq3iBOmFiGGMVooFpu1Bs0HGjqDcZ+N4V40sMj\n+FbTJPgTdvbYQFmtmhAafA360Oh+8XVmAYkID8Gp/+ud47we9UdnaKuQRD8D\nvah/0euMxdQy3aZqKZcew2+uWHO3DhEhzu+T0VCm1yPdlDCS+ku8FSIoZxGe\nHW2j\r\n=01Ko\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "12.1.0": { + "name": "globby", + "version": "12.1.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^3.15.0", + "tsd": "^0.19.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.5.2", + "@types/node": "^16.11.11", + "glob-stream": "^7.0.0" + }, + "dist": { + "shasum": "471757d6d9d25651b655b1da3eae1e25209f86a5", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.1.0.tgz", + "fileCount": 8, + "integrity": "sha512-YULDaNwsoUZkRy9TWSY/M7Obh0abamTKoKzTfOI3uU+hfpX2FZqOq8LFDxsjYheF1RH7ITdArgbQnsNBFgcdBA==", + "signatures": [ + { + "sig": "MEQCIFE4nHozBYx39cYIo2ke9uHj12pA3UByY1QuipKFa9UlAiBQTulOdIeIj6jhpL36qyAVU08H2VYDbo/qaH3FpGpHkQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 22452, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4nppCRA9TVsSAnZWagAAEUoP/0E2kHTyKXcm5vBCgQ12\n1opg3NqR4my20Spgb8UO7osryaRx11DGzaYmRna4wgZZ+BOnx2GSKGO/EKPh\nrGnw9E6q5AkrQr2EYBC0rG48qTdP6osC3WTXmGyOqT88r4SK/VDR3lmc0ezJ\njY/eFL5ZduE2gfQMGEJ9zuHwCkRbsgU4NJ8l/2nn5U/iC2evSUSnxcHEyLxp\n4JckjCJfcK6uvomZZ6phpoNxl0EW3KId3gPj54vxZfid4jjvvOnWKjpVMsIN\npwlW1DjXOfk3BWqg4gcDzasNHuLit6X5PasoUMD0px3Wyi8gutc7Z0xVahtG\nWSoCVfL/Js2BCYhlhG0+7cDDlOI9Mmea+qj6mKL8BcdtJJokNj1GFSgh1BK2\nRa3SIqtg24wwACwZLeJnaxMd0z7/8lMOmyx0lKkH0kMJhFUmZH3+chjU975i\newtdVQCEr/nySjhUuWinAUfJXM0ewl4qkRr0D7tkwT0SUtbt8vxmib/RDc4V\naSlaFe1gvvwXyxJSf7ACTctsNMzoApsxscNozN6ZX9C4n2iw6wppwbauYoBV\nRKsklicXGpL0GEwO8QQmW6TVTWopFKKV988Jr1y315R/7luziencvoP2mrcu\nCZ2Za/wn9RrG2wnqiZD9HnSPaoAog2WkQU2G6QPTibW43WNc9T6dBKQZjz2o\nL6hl\r\n=fFFO\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "12.2.0": { + "name": "globby", + "version": "12.2.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "array-union": "^3.0.1" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^3.15.0", + "tsd": "^0.19.0", + "globby": "github:sindresorhus/globby#main", + "matcha": "^0.7.0", + "rimraf": "^3.0.2", + "get-stream": "^6.0.1", + "typescript": "^4.5.2", + "@types/node": "^16.11.11", + "glob-stream": "^7.0.0" + }, + "dist": { + "shasum": "2ab8046b4fba4ff6eede835b29f678f90e3d3c22", + "tarball": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "fileCount": 8, + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "signatures": [ + { + "sig": "MEQCIGNlR7Yz0SXS6TUYhYodoMCmkROI/lfWlNeohu8Gu6NnAiAyWqoqI8K7Oj5RjwJR5yL1SeXUfcapqrwgxvZ1jkTVmA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 22608, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5SpfCRA9TVsSAnZWagAAEUIQAKIyXRmo1PUR+h+jtpl+\nIN+FCW3cE1Sq3Uy+OnCwsWLkOPTawAewfJWlaJEXkIvBYZucBxUCS/ttqeAA\n6sKuMRpb4ppzSwWfcS45oJFWFqHW8HYVlfm5NJ4Nj8EkhN/Qj+HuaQkduUed\nsdsfxOxQVSDK9DQS9bkrOLAdsForRnwAioUKiS4lhlql0MjbQISNbd5ra+2u\nkyGSmgb0KC/qMeSyoTm+KeYUtY9j4Reub20b+jKmKY7yAy+G6B5pT4z6aI4u\nGp/Dg/LN9UJL9dbxyiSeVQdBfEGojxcMmG6fKA0dTfnwItNMy2w0bV7bst5U\nTDkiAgWslgsrJ2ole07hxAocwe4QDZy52yov9Sp+YoCQotl0TjMOT4qKtB+8\n9Lejqv7M0qL9HMq/mtgU+iH8Y+9QzIl+/eH9NI+a6sgaI7gf20kONMS1dNlA\nQcqIRAbg+D1/DQkkmPIqwlPFgOD7SB40BGSaOjzs2ZdxvmJLsOyOvyOLMVel\nlmV4hRKa7JyFS1HpI2KZvR1mNlufhjdG7skzHsbmoRH+/gstiFsbY2nohkAT\nfjqtevA/qAYFV5PK/NX1/teRZ2Be1OhsqCL43TAbMnJxAxcotb061k+jLDCT\nqxsDEnzUxHlrR3z4em8xbH20fxZB1JYbpurNMyavSl8stQYGo1oKZiZCQJQO\nCowZ\r\n=6Lqi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.0.0": { + "name": "globby", + "version": "13.0.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "1118e53acc5e0f32fc06d5fc592ce701ba239474", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-peWsS6/uJ4lRXg7qK11lnkMTIdoDp35bpJzpR3vpRNFkP1qMNsM7OQvUqwe6r+9RCT6VpEAhL9DDrK/jD0PGvw==", + "signatures": [ + { + "sig": "MEUCIQDuwooaMIF9fWd2oil76WJpn2jRlRKU15AmihEwv2whxgIgT0mGzJC9UTqJMqHdbHVvywbH+gaIaxOU/pLut9rhBNk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 23075, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7lY3CRA9TVsSAnZWagAAeucP+gMwJMgiTDzmWdRE2Ed5\nlihWi4W88mXH/uUl0OcfnZhHWk3LN8MZOUBmUIF13cjSwJowrCx9YXjGi6kx\nncm52S805sA2CSSQqhdcNRzohZ2YpbAKBQ9CxjqWr8FQ0aPdamzfivcOYiRC\ncjrd9VPW9mXtvHewcnYchEh5D7M89NN4vJHMQVR3kiCtg/wa7xWf/snxyUV/\nMi/kmiZx5Zo9NPtwkSUn2FDDsW2y7DdY1BUDiIXIfZ9GABA01wTLRhBasZqC\n/hB29eF3DWXEsqGzyVj5yE0pn+v+yUrCl6IWt/aD4UWuVkL5rGshVGKAnYFI\n2H1VTR4t32UoFVjBDBqoj4wV0pcnGVB9YF9RerxTsHSfnkKKkoS/9siwN2XK\nLJu0aqVG0afV/ByoVrRO62tRpJO+2f+8Cr74jCXPMwb+qdbhuCQHEHUXwDI/\nILFGjz7L+pVLmKMIb5au6/v4MQmEZxL8nhf46ly4moh+Iqynn0OWvLdYXFQq\nMNvzY3j+OMeLBoGybp9Ijh3lziKYGiMtQZTPdeQM0Kfe6+8+3IlZiZYg3El1\nB+Q62VSG1byd9WZTeKGLmF9PAEnAiVOAdTu17ctWK3QzO21goR0AHd3RPfrR\nWKPr0qxhF6M+6KwCUhI0G4xNEdfsv+4/cki/e15X+utMSEDRtwM7hU2YPeg3\n5Skl\r\n=YFqw\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.1.0": { + "name": "globby", + "version": "13.1.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "7a5390411c5c13a844875d94fbd1988ddc6ac9c8", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.0.tgz", + "fileCount": 7, + "integrity": "sha512-BECc0Q0jlCk2BLaY2DuHFCdKo+Es6OzOHECV4KpNtVtgXZobl4jmLThiBPY+RiHoOFeI0pd1G035CFLFP/o2Fg==", + "signatures": [ + { + "sig": "MEUCIAau58qOwe5swQcl0Gb9C+JGYKlJZnGpHnckoWldVF8fAiEA6GqEVFKSFj8AP4VUSoieRzl8aIXAHneP2x/UURiMNLE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24705, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh79FUCRA9TVsSAnZWagAAVZsP+we/sTQJGuSAMaMSQ2wm\n8yjI283Hw8SDLc2yfPubZJiS/X6LsZYrMqjL0Ch/H29SKoQCxdaDl0Q1F28Y\np4eSKsBZP9YFw1vQbZVITXRVUb5CMO2nC8t1ZrXptwUP7AV9KX/8EE12mi0r\nq9EsCpDIxdmGuGzKVSp78g7FkOqEBCeAWQbSi/8tuL5NHnOc9cp9k6RQ3IJH\naAlhDbHMJoqfy2EpsXT2qVA9dMbqkv5EF7nu0uhSa+6N3tkXY/V4AS9l37Ax\n2+5ingLtlDZfnBTd8/i+JjYNmRlDZV7FEWybKIXysuBRdPyqE6Ul31Sav2+j\nWnTorc9e9aCR/eJoRGWfrkwT2LVlhieEROU9QZTI/v0d292443N2ThPCy1Zj\nOB+ZaAofSlEdth09rhAa2zz0O7suFB2ZwM+4PbAp/Cp7Pyko7KntHLMbrr+5\naVSRZPGuS4SaPNbJiIKA2V3pOQe0YyiEI8g5Cl+tHqI8Kr33WdReJU3hAcQh\n8DMHruJLWOt2MYeqziJcmNkPikYo2VNgsXKL2l7hYr3GVRiREQl+Chju6hhb\nHAKIx946W4afM6Z1p7IgUTmxIQSECCBmXhX3ZzHQcjPcjlUbj3lHaK+8ff70\nJi9eKQGOsKt0lMvyqO5VS2V4gqsbRj3DMKet9jD/SExS3xpKtt7b04/C+sYz\nx7Xi\r\n=zdG3\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.1.1": { + "name": "globby", + "version": "13.1.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "7c44a93869b0b7612e38f22ed532bfe37b25ea6f", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.1.tgz", + "fileCount": 7, + "integrity": "sha512-XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q==", + "signatures": [ + { + "sig": "MEYCIQDs+zBrBjp956gwtDZpV5fAId05RlrJ3OXE3oQfSlu4EwIhAO+u5RJMN465MWlexAMwDVEQctlam8PwOi9yQVzDCZJD", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24789, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+kd+CRA9TVsSAnZWagAAy00P/j3yedMU33WlvWYq9oGC\nMMCPpMIq/kR08l3nKfQGvvXuHlTsZjdGy4O/nWOQlCUiHp9z+iH3JqdhErp8\nWBCGxvizUc8kG2reBAvvfGxmSEiGHF/6+4jZBV0DnGjK/zyo/gjlqRPurL24\nlFuJS9wl9gR9iNM7otg7UXqKnLxU9JJ5Vo/yPCfm9JJPkCsWrFuqxCOBeDNn\nlXyCBBCZKekKaq5CuNUF2kRQnbIfZJObzz4Qz7hEev72dpfp7381Js/h14A6\ngy4fwvv3qKkJ/xE/w42jC0ixl4uymK9IQOCwTQEK8veWAgO0o2SRYmVuIrvJ\nTKZpl/FABruwVc0HnG+FUXXPaBrqY4qpy1VHEHCxuZ3wbLVyGk44zxSS569G\nS1DsFawlpnMLY/bhudDOBrKkt3cV2Ypt+OYalkmM8pYEC3/aCOsTxwF+ZLRW\nWEROLnvXp71XPGOqYnywuCawOxMiPgQQxNk8EmDEzU9N7C0jm6ci/klMWFZh\nnpiU7MRLcSlKRdETB4LZIFVENPkvBdyOlAdCCXLcw0fqXj5OM5RhaErxSbug\nFhSzjYenxo/LUs4CUusgVXsIcr771UsLXzEg2K0XL3MITYN0dwbGS9/mp8jp\npsPNPNoZNCDc82Js3Ss6t5HS8OH17VE9aoIVtBjNFBaVHOxgU49KwTFmMKjb\nxbvH\r\n=fVIz\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.1.2": { + "name": "globby", + "version": "13.1.2", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "29047105582427ab6eca4f905200667b056da515", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", + "fileCount": 7, + "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", + "signatures": [ + { + "sig": "MEUCIQDt40znfhm/9YH/ztp8bW4SL8p9VVcgIXVhGLSrsPSE8QIgDr+heDDDU3BbqELuCMySIeAjeHR0EBQyoRkkniniKtM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24798, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipbTBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLzQ/+LXoPACbmztj5bwWlSLCbWptsovLbCDni5IqzBh6EsYXPkhev\r\ntpuQHA+Vtm+RE49PVVYp/IyMl7t2gYvpiYTCxDmxC7G65Yz4wx2A22eudSRO\r\njIMY5J4jZdJY9+lPqtWAybOyYscPhk56zS8xaj15eukTCNsjcz8/9twi11Oo\r\n9ikBgbCefl+OCkNB8S+S1H4IND621ZLiNKk4cFPe9YgMilZIcDVaLrV0kSQO\r\nyz5p1me6mpb7+IBFZ+mgdUIZQ3jY8cLAnD/TxOJaj6HMWBcn4Ioz1gADV0bs\r\nEFiZr+Eowtubk9EXpwnZzG7Z//B4ktXWFJGFFkedZxFw1Li0VGfrDK6+cGbb\r\n6QCHSpheYAq7Y6VguiMobGlzzYGN0ycy2ZmOXK/P07oUn20VFysJNYxCjIER\r\nSiY5qftKevhqa089YsAY9P6mFwztlUThlz7MAxg8TtThhw5E00ANGuWjJxWg\r\nUX+WPZW4S9kBzeINIitMgZwmPUdmEuupF2vo4srjVaWbWmGG4s5CZIB8Oeq5\r\nK6IZdXhilKKA8G1DUMdivs2hdtvg9DIyuD4RSJvbMt3autNRnJ0zeG4xsO3r\r\nYsuu/zjKNPG0e07CHo51NRom2GK1Hvq7xON1iTVk1iWQlHXfHmDqjF6VfXnV\r\n6CZQ3Yx4X79lE5y6E8m1usjdI/G6y43tvcA=\r\n=KRa4\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.1.3": { + "name": "globby", + "version": "13.1.3", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.10", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "f62baf5720bcb2c1330c8d4ef222ee12318563ff", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", + "fileCount": 7, + "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", + "signatures": [ + { + "sig": "MEYCIQDiduphh5TLRgZ9B7mLZXFHB6zAxsCkP/aBoH0lAMpp0wIhALh42lVP0roQeU1quYsvLQKGgoTS61ElK/KCmBZCcXvc", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24824, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjl1/ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEZw/9HUtwJjRHpyzkXoo7tDcmwiFryy9y4py0rMFp+uoyOouDvBNm\r\nQb0CrkVoucCEkP3HyRdNwWOcNYfj2NQUixO3T4s1YlfxnSsx2hHecqReik0h\r\n9WupoeibpjP6nOLn8twmWVUfblRR50i427fThPKNUMNUb0qEA3SZfQyLprI+\r\nkEAKF6NzyZDg+6FRtvkRptD8M9jOS3hObgBVO1OzLbitqczthUfkRMckfBdY\r\nQCuZ1ooWQvvIzrEGDbrmTlknMhhhWEvaPfbd4+xlgNHqYozE3AsfajjqUcv0\r\nSwudpotc5J88RsBXPMFrhoCoVzcrtkBfbDIElyfYbuyzNRK8ExQTJnvEn/TS\r\ndhft0rxXeqD5utMUZMLDLloIHVBt55gFzpsxRpLtzXwdNggG0tEF6VYXwOWU\r\nJiHA9QAOCWzvBoE7UPzqBzeXkcXL/2/NTgu+IEHNviHd7qi+lnZJxfKMv1o0\r\npOIlLaMcnSG1LqgvQg9R+PXGYiZ3F9Wa6JysoGikrnvY4RaMg4witb1Rue9+\r\nkrApSU+rImMRXcmr1lgt1f2r67TenKBLX6KHZWOVrlB7+moNp9s8fRZa46jl\r\n5vwYqf+FpOz1cnQAFLe8pHcClB9XRzUu28hvZzvcLMs8hbEXnQDx94J5raLg\r\nlR7EF6WRWgpnPgPgUMg0JptYDPjWeT5nBX4=\r\n=VVvr\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.1.4": { + "name": "globby", + "version": "13.1.4", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.47.0", + "ava": "^4.0.1", + "tsd": "^0.19.1", + "tempy": "^3.0.0", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.18", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "2f91c116066bcec152465ba36e5caa4a13c01317", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", + "fileCount": 7, + "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", + "signatures": [ + { + "sig": "MEQCIBFE6WZacyMAVBmq3TB4WnoGcpyt11Z8fdco8k2kmHSlAiAr6Vj4RLvhx5a37yo5e1iJfubUkqHsc+VgCoyB2Sg1KQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 24807, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNWi3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrbxg/+P2n7CUrOygSNscMvl4m+qMPqhnDUKOzwzGb6/gHeYPyaAxIF\r\nnQ2YWAnEn0LV4AVGNQbslEJJWeZ0cDO6s4eJVYf35B4an9vt8n14aNunkqgt\r\njcPh9CRQjuq0oLA+UVK2tiGPRAt2L/dcxKZOUL6qMEqu3XihQY8UUX4FJROV\r\nI+cbqkxn6DCWIAgpAeLcFZe4dfrvqhHRpSHJZgjPZJ6b9uGD1cKiL/9Xqtor\r\n7oIiffMcrDvaHkwykTR+tlAIHL5InpBfFARJGtoJc0sD1c+P1RvIAuFPnza/\r\nTFzoVCKNtvqkiVO/mVjPRqK0o/n0m/bZy6ZGuqqjNW872mfbj8RGTcRS//zV\r\nx1mvjIUWrVquo50JRGPuUXyjZuRK1bEvhccqVYW2Nc0LuBHTAcyF56doFsDR\r\nf+greijf0AXcoXMJQ11fgrBpaylQ+seipXSHXBhgkR4pukK+6iwtQ22MjIF6\r\nuoh4KqsWlE9VqvWalouc8/gEeCOFz1z/yIKK+3NwapqVF+RxEMQ4CTZFwKu0\r\n5ATkwtxgH+sr3bj7C6BQKHxgcBgGDts0Z4hT7tOCvX6pUn1fOzAEZ2IHBkHM\r\nKc+Av9/hsDdBz2JXs7Dt0JBiI8KbTLRW+kUTo+z8UIzlM5wwTCbswdN7/3p8\r\nPc4zG3DIXqWgT/MMP+puKqls4uc/e1tMtdw=\r\n=zhMS\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.2.0": { + "name": "globby", + "version": "13.2.0", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.54.2", + "ava": "^5.3.1", + "tsd": "^0.28.1", + "tempy": "^3.0.0", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.18", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "7dd5678d765c4680c2e6d106230d86cb727cb1af", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.2.0.tgz", + "fileCount": 7, + "integrity": "sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ==", + "signatures": [ + { + "sig": "MEQCIGab6hiZzBA8fKjHj02s+F2NCysK0TStH9YU8wGyS92yAiBRCRnGLgdWmNGNR3GMausyFSAtXJwPa0mu0vR5fb/IOQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25080 + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.2.1": { + "name": "globby", + "version": "13.2.1", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11" + }, + "devDependencies": { + "xo": "^0.54.2", + "ava": "^5.3.1", + "tsd": "^0.28.1", + "tempy": "^3.0.0", + "rimraf": "^3.0.2", + "benchmark": "2.1.4", + "get-stream": "^6.0.1", + "typescript": "^4.5.5", + "@types/node": "^17.0.18", + "glob-stream": "^7.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "986d44187ba6a9fc4aa9b16caf0ab9a04db94ae9", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.2.1.tgz", + "fileCount": 7, + "integrity": "sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==", + "signatures": [ + { + "sig": "MEYCIQCs1eJs9e6cDmcMH1Pwkc0We5zcuB1XF9Olzmpt/3aIiwIhAIwMa7vgFRpMgJxA5m+Bqi/rvqDgCzTwlYO5r+MQoB6d", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25174 + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "13.2.2": { + "name": "globby", + "version": "13.2.2", + "dependencies": { + "slash": "^4.0.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0" + }, + "devDependencies": { + "xo": "^0.54.2", + "ava": "^5.3.1", + "tsd": "^0.28.1", + "tempy": "^3.0.0", + "rimraf": "^5.0.1", + "benchmark": "2.1.4", + "typescript": "^5.1.6", + "@types/node": "^20.3.3", + "glob-stream": "^8.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "63b90b1bf68619c2135475cbd4e71e66aa090592", + "tarball": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "fileCount": 7, + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "signatures": [ + { + "sig": "MEUCIQCTI+Z8ik6+3bDS3AK5qKVr8GJMjcvpI0Ml9FButQeSWwIgDWAOyg0pK2C15a9R2pNct3A/2ug73C+pooWcXYc9o+E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25146 + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "14.0.0": { + "name": "globby", + "version": "14.0.0", + "dependencies": { + "slash": "^5.1.0", + "ignore": "^5.2.4", + "fast-glob": "^3.3.2", + "path-type": "^5.0.0", + "unicorn-magic": "^0.1.0", + "@sindresorhus/merge-streams": "^1.0.0" + }, + "devDependencies": { + "xo": "^0.56.0", + "ava": "^5.3.1", + "tsd": "^0.29.0", + "tempy": "^3.1.0", + "benchmark": "2.1.4", + "@types/node": "^20.9.0", + "glob-stream": "^8.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "ea9c062a3614e33f516804e778590fcf055256b9", + "tarball": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "fileCount": 7, + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "signatures": [ + { + "sig": "MEYCIQDETdZ7MqoxrAmPH5lCrDE2yFzhv3kYQ6kC6YdncIe8uwIhALDbLp+GNcZy7EhzeyEbpH+eZKmkvSJyOGvWO4Z3DEAT", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25576 + }, + "engines": { + "node": ">=18" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "14.0.1": { + "name": "globby", + "version": "14.0.1", + "dependencies": { + "slash": "^5.1.0", + "ignore": "^5.2.4", + "fast-glob": "^3.3.2", + "path-type": "^5.0.0", + "unicorn-magic": "^0.1.0", + "@sindresorhus/merge-streams": "^2.1.0" + }, + "devDependencies": { + "xo": "^0.57.0", + "ava": "^5.3.1", + "tsd": "^0.30.4", + "tempy": "^3.1.0", + "benchmark": "2.1.4", + "@types/node": "^20.9.0", + "glob-stream": "^8.0.0", + "@globby/main-branch": "github:sindresorhus/globby#main" + }, + "dist": { + "shasum": "a1b44841aa7f4c6d8af2bc39951109d77301959b", + "tarball": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "fileCount": 7, + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "signatures": [ + { + "sig": "MEUCIQC8+PoxdjLukmwTMedQtlm5wVM9NT94Ondmd+/fvNVi8wIgCr2LFvvXuiRfQK36bzdoeMk82d5jis68+inL2VyPOww=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 25811 + }, + "engines": { + "node": ">=18" + }, + "funding": "https://github.com/sponsors/sindresorhus" + }, + "14.0.2": { + "name": "globby", + "version": "14.0.2", + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "devDependencies": { + "@globby/main-branch": "github:sindresorhus/globby#main", + "@types/node": "^20.9.0", + "ava": "^5.3.1", + "benchmark": "2.1.4", + "glob-stream": "^8.0.0", + "tempy": "^3.1.0", + "tsd": "^0.30.4", + "xo": "^0.57.0" + }, + "dist": { + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "shasum": "06554a54ccfe9264e5a9ff8eded46aa1e306482f", + "tarball": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "fileCount": 7, + "unpackedSize": 25662, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFO9RqZ6NX5ehdZWk6uM3ByC6WcDMz65bH0XduN5zSemAiB5PjdqWTkhh+BmEHsSFQqUzlT/5gux0+UboLVXj2hCQQ==" + } + ] + }, + "engines": { + "node": ">=18" + }, + "funding": "https://github.com/sponsors/sindresorhus" } }, - "modified": "2020-06-02T07:42:40.215Z" -} + "modified": "2024-06-30T12:12:56.552Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/globby/-/globby-1.2.0.tgz b/workspaces/arborist/test/fixtures/registry-mocks/content/globby/-/globby-1.2.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..0b0678e89131d01176412d0675de71b41b668be7 GIT binary patch literal 2636 zcmV-S3bXYeiwFP!000001ML~xa@)EwujW^5?9P#tk*S+ww@#f@vE`VpEqNq4X-4CY zAQF<0P$Wx`b~HJj=||+TKhWRkr<^b8F2I{)Cnsrh>6tOcV+xDK-mzE!0khw-8LtKU zYrc`b_uwnHdcD58vjg_#GRIRq?DU4sRi; zVH~|tOu07`9+w5KzN5H4J*b10g#l6^?f9;P0he|ivGSYS7#AYPz80=y zv(Q=Z=Z=3Du$--m!j%q&WZGw8$d*~hbu*j9ZZJirp5tc2Q*Xr(QOIbO@D+`gGU8ce zO^ez_xy|B8xW(ThTIP;(cz|3n3PdsFl$_hKm#nOm4aKYz3~He@ND9>TrVY zm^(StpS(eXZZj#xOw+>UU5sIeUme{kLm^;k-Zf_-pN7nim|H81Z7rBAD4Q(byI1uZ zu3iI)CcC-JI`|R%D20S#5wd9_e$)KD65qHnesn_pjkRRouci6pTk!bw{@;4M_c-7G zo2?e^|IKFO@%{e)Jz6Q29B|nRJ1RXfu2={v#lQiC{O>WQ-g2psc}f+HqjN_QX(g%T zXqc8(ND&|%r36qMq&|%q)7Z1A!T`ltOqXT+QNbj%5%MSwJ!li$6jFWl;4?x7-0JXi z`2_PoP6hK#be`-=<#c;e>B0Q?UN8N`f@1U&6t`0hAu1J2p1T1)OIEuKT%I6*GwCyi7zl6oY-u zr%Hf?>OQQ{NuZ{rLaf}V5IGIPIX9@e`j?rTNN4N{oQXpw(ta)-PG9o?kF1&JqmzBC zjjB0jH6vzarXdt^h>E20`Vk=T5;!cP|2xR!pHBEd%aPL7SeUFJ)5F8r!r`wMZMOgWlhe!U=&@ zer6UTri-;R9twzPJ*8FlV%M#bA)aK`OlYYDfd&n+665a2$*#I5g|E0LAGRk=J+eV5 zCc`$fb-5m&Yi#cbR~H({m>!;{QK4dqb%C%T&{j*WCrFtl+rAvLHL zNt*j8)~>YNM>wS z6cdLt*AO1iSURL`ulzW|f>hVTNP|i?+l?KPAsu$bLL?k$y0VfqkSJEtRV8N?Flk~f ziC?bN3gU??8kgxCz0;TGN#2(k07YXJ9Z6?HTT}>1DpLAf*J08Aj_d8$> z;Jn{^X&rTrV6#2I{$>?kS;Ldw#Sjpq-|h}yL+=>c-PiCJt9w+1&R@^_oxuQleZx9C zKeajtv$}_;7e`k21w6-j-5$ofg@KMlhdm&M2`Q^HAYx~o{^1FB+t002Yxufq99zRK z(LC<;p$+Hl{?IzSIBoag{Gxx}8+4HU5t8j%-QzxT>6~@CLle0o3_35d1A~+H=_#=? z+7~E&pX7tX-udgk_2Og*C%x074g#NdP_p*((~f3^N*$iIt+Of|wa?lwI%-xAsq_s( z)6&7KlMaE1UmO1phgPpkY8>{u!#;MasAYecO?_nzI#p=*tpOS2xZgXg8e~qK(Njcl zUbmyEkf~wCBZxx%i$NzN2uGdvDbhmsbXVMG{y*$+_w7?H-Ty<*oCP-*&NtxkEB8P3 z-By18Q{So6{@-e}?)U%i(YDgZh|$B*^H{hJ3~+Oc?K;Pz8zF;=i2u~q>M;Z|Q4^9eTh{2|Wt)&HpYhma z7{=BXSRQ&9_f=y&9vi;{dWI1i1l!w^U8T=4YFy2@khmf={x2W?`OAlY;2)h0Y(Ml0 z5SzW_*!_@nL#$OM{o<1ZqYaOdEx9f^3|K3MCLYHW`bFvQbbLT zLbvfX)>gshkNR3s=MjK0Tn2m}##HrqvvC#1>Yfe78DQa;I1g)u?7;~}DWOkAL598+ zldCFbB19sTk+Rj7k_k5|GqUi>75JQB+e(l#MyZX8{?R6Wkvydp4Dx48F<8N(QS7&X zbyavJ_%%}6hVi4Ze)YowiRxZ2UQBqH7R1a(0%&V27pcmEacxXD;?LWI#p{gDt!!N z^pb_b#{)@rjZ5_@5=Wm?Olhs}bnr?ZQh7sR*Cyz_n$BT0dUrM7D4&yK``jf>$Zey1 z#+Oj9z&4zzAZIg1DF{_mcA?+6{id~W{)}i6v%X$k}(Z#5z?<=)J u$%)S}==k^Vf5B+wl&4uCr`u<`AH8MWxBGVA?%RF)3hh7hE3>o!C;$N1a150I literal 0 HcmV?d00001 diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.json b/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.json index f99ce829ba9c7..28def5c8e11f6 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.json @@ -1,6 +1,6 @@ { "_id": "inflight", - "_rev": "33-ad7dc5aca6f9108f9bd7bc91b9e24971", + "_rev": "54-93e9536ff91a13da8b35764ab06ad8c5", "name": "inflight", "description": "Add callbacks to requests in flight to avoid async duplication", "dist-tags": { @@ -51,9 +51,17 @@ ], "dist": { "shasum": "002f6df5129a7f4bf3e1b471bec5334804a2dd99", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.0.tgz" - }, - "directories": {} + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.0.tgz", + "integrity": "sha512-IquTv6O0kQa09r/X61OrgkA0JVapoBcggufuyqlshPdh/KAtr8ybVxQdkMGp1Wj4upEYlNIhEoji6Rd4BPFs0g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDD9XXIHGNkWE4pTDjoSjttlmtE/S0eFft+l1lclHQSQQIgAgb1AoAYeyGxs/m1lxkbfnFidtgqFub0Dzvlu/wLAEU=" + } + ] + }, + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.1": { "name": "inflight", @@ -99,9 +107,17 @@ ], "dist": { "shasum": "01f6911821535243c790ac0f998f54e9023ffb6f", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.1.tgz" - }, - "directories": {} + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.1.tgz", + "integrity": "sha512-Y6qkFIUPPR+z9LXqnwjDS+okztmmNNsGeJ3JZX6E24bZ02P1oqv8faJbafHLjOPJsTZ0UgdtjOT8SZbRkLkIlw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDPAfFYHKrWnkJiiXN6fuCIawSaP/F4mxL87mKEDehPegIhAJbTPM3WTrkJumaWAc6fdYI7f0QYduj/t6opD/yIWRk5" + } + ] + }, + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.2": { "name": "inflight", @@ -150,9 +166,17 @@ ], "dist": { "shasum": "6d1d147db188760100f13e670ca0dfbd2b63d169", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.2.tgz" - }, - "directories": {} + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.2.tgz", + "integrity": "sha512-0cVKpb/7RAXWN77AVxc5czd7thGIUWMH+tlxPkVrh/0BWgbV68TjgMiGUHEBR3qvsF+dBf350u5gXbcK40r79g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCoQHkJ5dIaEQIQybaT624U5ivRIuRxBv0w57OhWul9fgIhAK30byjTacO74YbgQ3nE2icpfW8bIqNwgJ9KwT4CzE07" + } + ] + }, + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.3": { "name": "inflight", @@ -209,9 +233,17 @@ ], "dist": { "shasum": "70374be8ef3316248f37fa81276b6b329b95ff49", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.3.tgz" - }, - "directories": {} + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.3.tgz", + "integrity": "sha512-GMTbCij8VGwxokaQyO2DF++9IHPbIEqEN2hErcvJgs/tDRSNkF8QJoDVkkQxzLe3O+m+D2kbUw3ot+R4H/ekWw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBiwr/bQGYbdbk/e7plwJFlzefDsfhYvxRaampXWwaXvAiAenyXshn9kiFF45OsNEFOGfRssJ0EvuBQ55ilgJR+Jfg==" + } + ] + }, + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.4": { "name": "inflight", @@ -268,9 +300,17 @@ ], "dist": { "shasum": "6cbb4521ebd51ce0ec0a936bfd7657ef7e9b172a", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz" - }, - "directories": {} + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "integrity": "sha512-yMOGXregdgA+mer4gLyGWfj/gx0vzqmXtIY3YTxaQg4OZdk4GsrgiFCf/G96kVQt/aJDJyQPDeb/NtQRZp13xg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEe2iIHxEEhV5HTN5yKwa+tSN2zYXqeiT88W2IHctauMAiEAjtJOr5RRXFy5oiI+X3HG44otjH6ltYeBxJ9h1I+DE50=" + } + ] + }, + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.5": { "name": "inflight", @@ -316,7 +356,14 @@ }, "dist": { "shasum": "db3204cd5a9de2e6cd890b85c6e2f66bcf4f620a", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.5.tgz" + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.5.tgz", + "integrity": "sha512-ZOr/ZZjWvVTQML+yBDtsvuVlC9zkWqmaZVZTWP7XdfMTmoO3qjIP26vjfDKDJ6zA9ZffGlnm6Ry5t965o+WUgA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD20TiDL6jN6/AQQqM70KVWlPn9Wij0jPTOpoScNOpfNgIgMhxPzqjK2N9SmQkfYweGc7upRJOMmplNLXj47w0HCPg=" + } + ] }, "maintainers": [ { @@ -340,7 +387,8 @@ "host": "packages-12-west.internal.npmjs.com", "tmp": "tmp/inflight-1.0.5.tgz_1463529611443_0.00041943578980863094" }, - "directories": {} + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.6": { "name": "inflight", @@ -386,7 +434,14 @@ }, "dist": { "shasum": "49bd6331d7d02d0c09bc910a1075ba8165b56df9", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHeTY8VavURUkUCnD17oIqsNuSlwTwP/yQOChuwV87WDAiEAhw/ZF24OrzMti41jlv8EM7Cq/KEVSteKCUh9MJ5Oo7s=" + } + ] }, "maintainers": [ { @@ -410,34 +465,19 @@ "host": "packages-16-east.internal.npmjs.com", "tmp": "tmp/inflight-1.0.6.tgz_1476330807696_0.10388551792129874" }, - "directories": {} + "directories": {}, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." } }, "readme": "# inflight\n\nAdd callbacks to requests in flight to avoid async duplication\n\n## USAGE\n\n```javascript\nvar inflight = require('inflight')\n\n// some request that does some stuff\nfunction req(key, callback) {\n // key is any random string. like a url or filename or whatever.\n //\n // will return either a falsey value, indicating that the\n // request for this key is already in flight, or a new callback\n // which when called will call all callbacks passed to inflightk\n // with the same key\n callback = inflight(key, callback)\n\n // If we got a falsey value back, then there's already a req going\n if (!callback) return\n\n // this is where you'd fetch the url or whatever\n // callback is also once()-ified, so it can safely be assigned\n // to multiple events etc. First call wins.\n setTimeout(function() {\n callback(null, key)\n }, 100)\n}\n\n// only assigns a single setTimeout\n// when it dings, all cbs get called\nreq('foo', cb1)\nreq('foo', cb2)\nreq('foo', cb3)\nreq('foo', cb4)\n```\n", "maintainers": [ - { - "email": "quitlahok@gmail.com", - "name": "nlf" - }, - { - "email": "ruyadorno@hotmail.com", - "name": "ruyadorno" - }, - { - "email": "darcy@darcyclarke.me", - "name": "darcyclarke" - }, - { - "email": "evilpacket@gmail.com", - "name": "adam_baldwin" - }, { "email": "i@izs.me", "name": "isaacs" } ], "time": { - "modified": "2020-10-13T05:04:27.266Z", + "modified": "2024-05-23T03:14:32.244Z", "created": "2014-05-05T03:04:32.021Z", "1.0.0": "2014-05-05T03:04:32.021Z", "1.0.1": "2014-05-05T20:14:07.678Z", @@ -466,6 +506,8 @@ "program247365": true, "wenbing": true, "mojaray2k": true, - "sbruchmann": true + "sbruchmann": true, + "jasquier": true, + "flumpus-dev": true } -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.min.json index d1bd38b44160d..1adedfbbd0dfc 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/inflight.min.json @@ -15,8 +15,16 @@ }, "dist": { "shasum": "002f6df5129a7f4bf3e1b471bec5334804a2dd99", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.0.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.0.tgz", + "integrity": "sha512-IquTv6O0kQa09r/X61OrgkA0JVapoBcggufuyqlshPdh/KAtr8ybVxQdkMGp1Wj4upEYlNIhEoji6Rd4BPFs0g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDD9XXIHGNkWE4pTDjoSjttlmtE/S0eFft+l1lclHQSQQIgAgb1AoAYeyGxs/m1lxkbfnFidtgqFub0Dzvlu/wLAEU=" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.1": { "name": "inflight", @@ -29,8 +37,16 @@ }, "dist": { "shasum": "01f6911821535243c790ac0f998f54e9023ffb6f", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.1.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.1.tgz", + "integrity": "sha512-Y6qkFIUPPR+z9LXqnwjDS+okztmmNNsGeJ3JZX6E24bZ02P1oqv8faJbafHLjOPJsTZ0UgdtjOT8SZbRkLkIlw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDPAfFYHKrWnkJiiXN6fuCIawSaP/F4mxL87mKEDehPegIhAJbTPM3WTrkJumaWAc6fdYI7f0QYduj/t6opD/yIWRk5" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.2": { "name": "inflight", @@ -44,8 +60,16 @@ }, "dist": { "shasum": "6d1d147db188760100f13e670ca0dfbd2b63d169", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.2.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.2.tgz", + "integrity": "sha512-0cVKpb/7RAXWN77AVxc5czd7thGIUWMH+tlxPkVrh/0BWgbV68TjgMiGUHEBR3qvsF+dBf350u5gXbcK40r79g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCoQHkJ5dIaEQIQybaT624U5ivRIuRxBv0w57OhWul9fgIhAK30byjTacO74YbgQ3nE2icpfW8bIqNwgJ9KwT4CzE07" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.3": { "name": "inflight", @@ -59,8 +83,16 @@ }, "dist": { "shasum": "70374be8ef3316248f37fa81276b6b329b95ff49", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.3.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.3.tgz", + "integrity": "sha512-GMTbCij8VGwxokaQyO2DF++9IHPbIEqEN2hErcvJgs/tDRSNkF8QJoDVkkQxzLe3O+m+D2kbUw3ot+R4H/ekWw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBiwr/bQGYbdbk/e7plwJFlzefDsfhYvxRaampXWwaXvAiAenyXshn9kiFF45OsNEFOGfRssJ0EvuBQ55ilgJR+Jfg==" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.4": { "name": "inflight", @@ -74,8 +106,16 @@ }, "dist": { "shasum": "6cbb4521ebd51ce0ec0a936bfd7657ef7e9b172a", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "integrity": "sha512-yMOGXregdgA+mer4gLyGWfj/gx0vzqmXtIY3YTxaQg4OZdk4GsrgiFCf/G96kVQt/aJDJyQPDeb/NtQRZp13xg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEe2iIHxEEhV5HTN5yKwa+tSN2zYXqeiT88W2IHctauMAiEAjtJOr5RRXFy5oiI+X3HG44otjH6ltYeBxJ9h1I+DE50=" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.5": { "name": "inflight", @@ -89,8 +129,16 @@ }, "dist": { "shasum": "db3204cd5a9de2e6cd890b85c6e2f66bcf4f620a", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.5.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.5.tgz", + "integrity": "sha512-ZOr/ZZjWvVTQML+yBDtsvuVlC9zkWqmaZVZTWP7XdfMTmoO3qjIP26vjfDKDJ6zA9ZffGlnm6Ry5t965o+WUgA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD20TiDL6jN6/AQQqM70KVWlPn9Wij0jPTOpoScNOpfNgIgMhxPzqjK2N9SmQkfYweGc7upRJOMmplNLXj47w0HCPg=" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." }, "1.0.6": { "name": "inflight", @@ -104,9 +152,17 @@ }, "dist": { "shasum": "49bd6331d7d02d0c09bc910a1075ba8165b56df9", - "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" - } + "tarball": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHeTY8VavURUkUCnD17oIqsNuSlwTwP/yQOChuwV87WDAiEAhw/ZF24OrzMti41jlv8EM7Cq/KEVSteKCUh9MJ5Oo7s=" + } + ] + }, + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." } }, - "modified": "2020-10-13T05:04:27.266Z" -} + "modified": "2024-05-23T03:14:32.244Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.json b/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.json index fcecfceeae2af..cb9bf5672d043 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.json @@ -1,6 +1,6 @@ { "_id": "inherits", - "_rev": "92-d47e66caed3ecf0c853583be3f674b64", + "_rev": "97-53ea97dee2e9541a65b649ecb349a05d", "name": "inherits", "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", "dist-tags": { @@ -40,7 +40,14 @@ "_defaultsLoaded": true, "dist": { "shasum": "38e1975285bf1f7ba9c84da102bb12771322ac48", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz", + "integrity": "sha512-5KfXESjCAfFQel2TLqhr18NEz++UiWVIA0jwHzs2Kbvb3e+r+G/eVhRfoZbaPCL0PnERvK5YeMgh02O4eenufw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDCQCRNTdud0D6MQlD2K1U23YahprB/OiRSHk0Avz8VgAIhAIWziz2yt0m0OfeR5l7hSw0+Yq2Q/qR/U9V6pvC/NIUH" + } + ] }, "directories": {} }, @@ -81,7 +88,14 @@ "_id": "inherits@2.0.0", "dist": { "shasum": "76c81b3b1c10ddee3a60bf2c247162bc369f8ba8", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.0.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.0.tgz", + "integrity": "sha512-/1BHJ22Ma30b0G9pThu1BPqybizVGTE8kYkZA1jZG/drZtpsaQT6yaOBObN+SY77sfHGFPOr6tfx0pgzdXJYBA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFF7cq6vLIiyatOUaK/Y6nDxQunJgJlRdbv6pEvydBmJAiA63vEhPd/T13osTQNRHA+mU2PydSo9ZGFZOAMHfIvwZg==" + } + ] }, "_from": ".", "_npmVersion": "1.2.21", @@ -127,7 +141,14 @@ "_id": "inherits@2.0.1", "dist": { "shasum": "b17d08d326b4423e568eff719f91b0b1cbdf69f1", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAcFsX3T+mrxv2RNNEsUhROaf5Ue0VRglcBy/UFm1DDfAiEA//B/Tv6CGmF74+F8d2DsnMxHQl5tKvnd/lEik7g28BM=" + } + ] }, "_from": ".", "_npmVersion": "1.3.8", @@ -183,7 +204,14 @@ }, "dist": { "shasum": "1bdf16c6ff8266cb858c6da2baf3637a99fb3d87", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.1.tgz", + "integrity": "sha512-9QT+Biqw5CrQOHZw/X7cn3JIwJV6hJxiddHQ7WMHL4x6gdCzHHUA+fboy474lvK+8p5KHcADozSIN39aA6ZCag==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDu0B6+0VAAf1LLsxWbtLdLslQuoFUKArTj7D8b8BQeYQIgamLe6FYcfUnzK/xIUzPB//4KZFuH21W+54i5/OkDn3o=" + } + ] }, "maintainers": [ { @@ -230,7 +258,14 @@ }, "dist": { "shasum": "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", + "integrity": "sha512-Al67oatbRSo3RV5hRqIoln6Y5yMVbJSIn4jEJNL7VCImzq/kLr7vvb6sFRJXqr8rpHc/2kJOM+y0sPKN47VdzA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAWqCVtJoBS60UHntyYQrldjYdrPtuDfdtBDvdeq3Q2BAiBDMimJqowFSs0ww21+SUlu7B7I/cOomYLl8cUxVokZ9Q==" + } + ] }, "maintainers": [ { @@ -287,7 +322,14 @@ }, "dist": { "shasum": "633c2c83e3da42a502f52466022480f4208261de", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDsL6y7UY2qKCAifQ8Fnb7QwhOQbvtbI+Kr6VvNxZjHZQIhAL4wnDU7hqX4YDaHqbZRZHmZX5O+HRNZsauKdwk4sB8o" + } + ] }, "maintainers": [ { @@ -342,7 +384,13 @@ "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "fileCount": 5, "unpackedSize": 3958, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCpisCRA9TVsSAnZWagAA34wP/R7/M+OPDguEHhSTBFwm\nyr5qskotwW0egz8MlwqkYJnKmkNMGVwH2ciD0+mzkoomD+iUf9cAI6qjAT+p\n2b+qFTikQpScNZRMKnMF+f5Jf0X6IVS03tojFm2i9BSxD0DL7fRoNLw/3seH\nO/5vYeiQUq0Ojx3AY4hf31AQTfBlZ7pohiE6BNAYWBXWpCq2c3uENGaeiwxk\nnmTL/fUs8RRubjrqW5Bwpi+PZrkmwcL+Te/juGLP1Ef52BDjaeVk1e9YlNtJ\nX++I+HyVR0Kb4pYyBO/iRE1ifanLmGm70PsBFUmwAAq21FGhFH/cfAeoRJo7\n3MuW5+W8n2BmJKwpngGIf/92SWJP9Ww1Vo1Lo11fpwGjPjF4RiFkD81+GDSI\n6LXikSQRmGS+6FIrkXDKZ45ir8K3tGw6peXr/fq1FmzicySGRd8gFpAZIxCw\nLIM7YXBonoGsG8p/LqG6rTfmC3ymOR8R+WH5NGeMXkRw08KJED5nMkSp5b4I\nIRenKnfIZgz+daoFE8p/W6KtTz+Ac1pMou9vnSa3B7YZjr1y6B6B3PLDq3kC\nyZZWvv3u78F8u8WkVS8iA8BvEO6aPcENzQcT61P4h0r8mitpLmvKN2+WViLV\nowBn8STKGeuXImHwPgY6Et6U29r9ec1Y01YNNf8Qfd03eNhroDFKBsC3rPGU\nT9HJ\r\n=18y6\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCpisCRA9TVsSAnZWagAA34wP/R7/M+OPDguEHhSTBFwm\nyr5qskotwW0egz8MlwqkYJnKmkNMGVwH2ciD0+mzkoomD+iUf9cAI6qjAT+p\n2b+qFTikQpScNZRMKnMF+f5Jf0X6IVS03tojFm2i9BSxD0DL7fRoNLw/3seH\nO/5vYeiQUq0Ojx3AY4hf31AQTfBlZ7pohiE6BNAYWBXWpCq2c3uENGaeiwxk\nnmTL/fUs8RRubjrqW5Bwpi+PZrkmwcL+Te/juGLP1Ef52BDjaeVk1e9YlNtJ\nX++I+HyVR0Kb4pYyBO/iRE1ifanLmGm70PsBFUmwAAq21FGhFH/cfAeoRJo7\n3MuW5+W8n2BmJKwpngGIf/92SWJP9Ww1Vo1Lo11fpwGjPjF4RiFkD81+GDSI\n6LXikSQRmGS+6FIrkXDKZ45ir8K3tGw6peXr/fq1FmzicySGRd8gFpAZIxCw\nLIM7YXBonoGsG8p/LqG6rTfmC3ymOR8R+WH5NGeMXkRw08KJED5nMkSp5b4I\nIRenKnfIZgz+daoFE8p/W6KtTz+Ac1pMou9vnSa3B7YZjr1y6B6B3PLDq3kC\nyZZWvv3u78F8u8WkVS8iA8BvEO6aPcENzQcT61P4h0r8mitpLmvKN2+WViLV\nowBn8STKGeuXImHwPgY6Et6U29r9ec1Y01YNNf8Qfd03eNhroDFKBsC3rPGU\nT9HJ\r\n=18y6\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHXj0k+tuAUqkpeooUqc/nleKcodzFQI19krYf3DkGBZAiBW7yh/k9RVcOvSDyyahK0Lr4vyYCvkybyNbx1ELNPSVw==" + } + ] }, "maintainers": [ { @@ -369,7 +417,7 @@ } ], "time": { - "modified": "2019-06-19T20:18:56.232Z", + "modified": "2023-06-09T21:33:12.982Z", "created": "2011-04-07T00:35:14.848Z", "1.0.0": "2011-04-07T00:35:15.718Z", "2.0.0": "2013-05-16T14:44:54.523Z", @@ -416,7 +464,6 @@ "bret": true, "spywhere": true, "nickeltobias": true, - "roman-io": true, "princetoad": true, "slurm": true, "mikemimik": true, @@ -430,7 +477,8 @@ "leix3041": true, "semir2": true, "zhenguo.zhao": true, - "j3rrywan9": true + "j3rrywan9": true, + "flumpus-dev": true }, "keywords": [ "inheritance", @@ -449,4 +497,4 @@ "readme": "Browser-friendly inheritance fully compatible with standard node.js\n[inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor).\n\nThis package exports standard `inherits` from node.js `util` module in\nnode environment, but also provides alternative browser-friendly\nimplementation through [browser\nfield](https://gist.github.com/shtylman/4339901). Alternative\nimplementation is a literal copy of standard one located in standalone\nmodule to avoid requiring of `util`. It also has a shim for old\nbrowsers with no `Object.create` support.\n\nWhile keeping you sure you are using standard `inherits`\nimplementation in node.js environment, it allows bundlers such as\n[browserify](https://github.com/substack/node-browserify) to not\ninclude full `util` package to your client code if all you need is\njust `inherits` function. It worth, because browser shim for `util`\npackage is large and `inherits` is often the single function you need\nfrom it.\n\nIt's recommended to use this package instead of\n`require('util').inherits` for any code that has chances to be used\nnot only in node.js but in browser too.\n\n## usage\n\n```js\nvar inherits = require('inherits');\n// then use exactly as the standard one\n```\n\n## note on version ~1.0\n\nVersion ~1.0 had completely different motivation and is not compatible\nneither with 2.0 nor with standard node.js `inherits`.\n\nIf you are using version ~1.0 and planning to switch to ~2.0, be\ncareful:\n\n* new version uses `super_` instead of `super` for referencing\n superclass\n* new version overwrites current prototype while old one preserves any\n existing fields on it\n", "readmeFilename": "README.md", "homepage": "https://github.com/isaacs/inherits#readme" -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.min.json index bf2f51ec9c559..74d9691ec8601 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/inherits.min.json @@ -9,7 +9,14 @@ "version": "1.0.0", "dist": { "shasum": "38e1975285bf1f7ba9c84da102bb12771322ac48", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz", + "integrity": "sha512-5KfXESjCAfFQel2TLqhr18NEz++UiWVIA0jwHzs2Kbvb3e+r+G/eVhRfoZbaPCL0PnERvK5YeMgh02O4eenufw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDCQCRNTdud0D6MQlD2K1U23YahprB/OiRSHk0Avz8VgAIhAIWziz2yt0m0OfeR5l7hSw0+Yq2Q/qR/U9V6pvC/NIUH" + } + ] }, "engines": { "node": "*" @@ -20,7 +27,14 @@ "version": "2.0.0", "dist": { "shasum": "76c81b3b1c10ddee3a60bf2c247162bc369f8ba8", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.0.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.0.tgz", + "integrity": "sha512-/1BHJ22Ma30b0G9pThu1BPqybizVGTE8kYkZA1jZG/drZtpsaQT6yaOBObN+SY77sfHGFPOr6tfx0pgzdXJYBA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFF7cq6vLIiyatOUaK/Y6nDxQunJgJlRdbv6pEvydBmJAiA63vEhPd/T13osTQNRHA+mU2PydSo9ZGFZOAMHfIvwZg==" + } + ] } }, "2.0.1": { @@ -28,7 +42,14 @@ "version": "2.0.1", "dist": { "shasum": "b17d08d326b4423e568eff719f91b0b1cbdf69f1", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAcFsX3T+mrxv2RNNEsUhROaf5Ue0VRglcBy/UFm1DDfAiEA//B/Tv6CGmF74+F8d2DsnMxHQl5tKvnd/lEik7g28BM=" + } + ] } }, "1.0.1": { @@ -36,7 +57,14 @@ "version": "1.0.1", "dist": { "shasum": "1bdf16c6ff8266cb858c6da2baf3637a99fb3d87", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.1.tgz", + "integrity": "sha512-9QT+Biqw5CrQOHZw/X7cn3JIwJV6hJxiddHQ7WMHL4x6gdCzHHUA+fboy474lvK+8p5KHcADozSIN39aA6ZCag==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDu0B6+0VAAf1LLsxWbtLdLslQuoFUKArTj7D8b8BQeYQIgamLe6FYcfUnzK/xIUzPB//4KZFuH21W+54i5/OkDn3o=" + } + ] } }, "1.0.2": { @@ -44,7 +72,14 @@ "version": "1.0.2", "dist": { "shasum": "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", + "integrity": "sha512-Al67oatbRSo3RV5hRqIoln6Y5yMVbJSIn4jEJNL7VCImzq/kLr7vvb6sFRJXqr8rpHc/2kJOM+y0sPKN47VdzA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAWqCVtJoBS60UHntyYQrldjYdrPtuDfdtBDvdeq3Q2BAiBDMimJqowFSs0ww21+SUlu7B7I/cOomYLl8cUxVokZ9Q==" + } + ] } }, "2.0.3": { @@ -55,7 +90,14 @@ }, "dist": { "shasum": "633c2c83e3da42a502f52466022480f4208261de", - "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDsL6y7UY2qKCAifQ8Fnb7QwhOQbvtbI+Kr6VvNxZjHZQIhAL4wnDU7hqX4YDaHqbZRZHmZX5O+HRNZsauKdwk4sB8o" + } + ] } }, "2.0.4": { @@ -70,9 +112,15 @@ "tarball": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "fileCount": 5, "unpackedSize": 3958, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCpisCRA9TVsSAnZWagAA34wP/R7/M+OPDguEHhSTBFwm\nyr5qskotwW0egz8MlwqkYJnKmkNMGVwH2ciD0+mzkoomD+iUf9cAI6qjAT+p\n2b+qFTikQpScNZRMKnMF+f5Jf0X6IVS03tojFm2i9BSxD0DL7fRoNLw/3seH\nO/5vYeiQUq0Ojx3AY4hf31AQTfBlZ7pohiE6BNAYWBXWpCq2c3uENGaeiwxk\nnmTL/fUs8RRubjrqW5Bwpi+PZrkmwcL+Te/juGLP1Ef52BDjaeVk1e9YlNtJ\nX++I+HyVR0Kb4pYyBO/iRE1ifanLmGm70PsBFUmwAAq21FGhFH/cfAeoRJo7\n3MuW5+W8n2BmJKwpngGIf/92SWJP9Ww1Vo1Lo11fpwGjPjF4RiFkD81+GDSI\n6LXikSQRmGS+6FIrkXDKZ45ir8K3tGw6peXr/fq1FmzicySGRd8gFpAZIxCw\nLIM7YXBonoGsG8p/LqG6rTfmC3ymOR8R+WH5NGeMXkRw08KJED5nMkSp5b4I\nIRenKnfIZgz+daoFE8p/W6KtTz+Ac1pMou9vnSa3B7YZjr1y6B6B3PLDq3kC\nyZZWvv3u78F8u8WkVS8iA8BvEO6aPcENzQcT61P4h0r8mitpLmvKN2+WViLV\nowBn8STKGeuXImHwPgY6Et6U29r9ec1Y01YNNf8Qfd03eNhroDFKBsC3rPGU\nT9HJ\r\n=18y6\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCpisCRA9TVsSAnZWagAA34wP/R7/M+OPDguEHhSTBFwm\nyr5qskotwW0egz8MlwqkYJnKmkNMGVwH2ciD0+mzkoomD+iUf9cAI6qjAT+p\n2b+qFTikQpScNZRMKnMF+f5Jf0X6IVS03tojFm2i9BSxD0DL7fRoNLw/3seH\nO/5vYeiQUq0Ojx3AY4hf31AQTfBlZ7pohiE6BNAYWBXWpCq2c3uENGaeiwxk\nnmTL/fUs8RRubjrqW5Bwpi+PZrkmwcL+Te/juGLP1Ef52BDjaeVk1e9YlNtJ\nX++I+HyVR0Kb4pYyBO/iRE1ifanLmGm70PsBFUmwAAq21FGhFH/cfAeoRJo7\n3MuW5+W8n2BmJKwpngGIf/92SWJP9Ww1Vo1Lo11fpwGjPjF4RiFkD81+GDSI\n6LXikSQRmGS+6FIrkXDKZ45ir8K3tGw6peXr/fq1FmzicySGRd8gFpAZIxCw\nLIM7YXBonoGsG8p/LqG6rTfmC3ymOR8R+WH5NGeMXkRw08KJED5nMkSp5b4I\nIRenKnfIZgz+daoFE8p/W6KtTz+Ac1pMou9vnSa3B7YZjr1y6B6B3PLDq3kC\nyZZWvv3u78F8u8WkVS8iA8BvEO6aPcENzQcT61P4h0r8mitpLmvKN2+WViLV\nowBn8STKGeuXImHwPgY6Et6U29r9ec1Y01YNNf8Qfd03eNhroDFKBsC3rPGU\nT9HJ\r\n=18y6\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHXj0k+tuAUqkpeooUqc/nleKcodzFQI19krYf3DkGBZAiBW7yh/k9RVcOvSDyyahK0Lr4vyYCvkybyNbx1ELNPSVw==" + } + ] } } }, - "modified": "2019-06-19T20:18:56.232Z" -} + "modified": "2023-06-09T21:33:12.982Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.json b/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.json index b33a126316397..cfb4eba7ed5a7 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.json @@ -1,2255 +1,9851 @@ { "_id": "minimatch", - "_rev": "209-6ed13c6bc7badfe3af98146f5d20305f", + "_rev": "284-5c4daff5c10412457c10e43cb183b285", "name": "minimatch", - "description": "a glob matcher in javascript", "dist-tags": { - "latest": "3.0.4" + "v3-legacy": "3.1.2", + "v3.0-legacy": "3.0.8", + "legacy-v5": "5.1.6", + "legacy-v4": "4.2.3", + "legacy-v7": "7.4.6", + "latest": "10.0.1" }, "versions": { "0.0.1": { + "name": "minimatch", + "version": "0.0.1", "author": { + "url": "http://blog.izs.me", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "email": "i@izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "_id": "minimatch@0.0.1", + "dist": { + "shasum": "33b549784ce98eceb7a86329c11a1cd02cd00ce9", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.1.tgz", + "integrity": "sha512-O58AgKiuTUy9T9n8hHfzyd3G5edzELFW4FshSlo+CdhW8h32M99YSntYrSahkmGi2iRijW3fpjXQNZH5xI++1Q==", + "signatures": [ + { + "sig": "MEQCIB2FfKAEfxLj4yUj6YXfvAV3eviEWFY6FFaPqqdCSqBmAiBZ5tSdnDDeuG7nB+UmG3PR0+FZ+5VAUjIXCU28VflewQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.2" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.0.5" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.0.15", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "v0.5.2-pre", "_npmJsonOpts": { "file": "/Users/isaacs/.npm/minimatch/0.0.1/package/package.json", "wscript": false, - "contributors": false, - "serverjs": false + "serverjs": false, + "contributors": false + }, + "dependencies": { + "lru-cache": "~1.0.2" }, - "_id": "minimatch@0.0.1", - "_engineSupported": true, - "_npmVersion": "1.0.15", - "_nodeVersion": "v0.5.2-pre", "_defaultsLoaded": true, - "dist": { - "shasum": "33b549784ce98eceb7a86329c11a1cd02cd00ce9", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.1.tgz" + "devDependencies": { + "tap": "~0.0.5" }, - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" + "_engineSupported": true }, "0.0.2": { + "name": "minimatch", + "version": "0.0.2", "author": { + "url": "http://blog.izs.me", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "email": "i@izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.0.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "_id": "minimatch@0.0.2", + "dist": { + "shasum": "582b28fed87d3bbe9f9afc8c9490f4eb3b08ba91", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.2.tgz", + "integrity": "sha512-4JQR+18teufKm0qPXZLcppB1aHHYZfMroj42h3dvPVrEH2v/GVYTSgFdbSHyX9jcSk7g9R4zRRkRFTzxxYLHqQ==", + "signatures": [ + { + "sig": "MEYCIQC/Zz08HG5MV1s+RJNvFMqS/HiqMj66dygMFBZa0aNNhQIhANwMPqiKTPzYN/oxsj6cji2Fa1TFd3tyQIuBh00ZPyLs", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "bundleDependencies": [ - "lru-cache" - ], - "dependencies": { - "lru-cache": "~1.0.2" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.0.5" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.0.16", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "v0.5.2-pre", "_npmJsonOpts": { "file": "/Users/isaacs/.npm/minimatch/0.0.2/package/package.json", "wscript": false, - "contributors": false, - "serverjs": false + "serverjs": false, + "contributors": false + }, + "dependencies": { + "lru-cache": "~1.0.2" }, - "_id": "minimatch@0.0.2", - "_engineSupported": true, - "_npmVersion": "1.0.16", - "_nodeVersion": "v0.5.2-pre", "_defaultsLoaded": true, - "dist": { - "shasum": "582b28fed87d3bbe9f9afc8c9490f4eb3b08ba91", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.2.tgz" + "devDependencies": { + "tap": "~0.0.5" }, - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" + "_engineSupported": true, + "bundleDependencies": [ + "lru-cache" + ] }, "0.0.4": { + "name": "minimatch", + "version": "0.0.4", "author": { + "url": "http://blog.izs.me", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "email": "i@izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "_id": "minimatch@0.0.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "dist": { + "shasum": "791b9e5e6572b789cfda6f60e095614cbb7504b6", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.4.tgz", + "integrity": "sha512-vkUtv3vFj5nLzMHi2kksBn9f8Glfpl/kCe6DNmK5PuLGKOgeGyRL39HSQmYxBu2HOp6luKAPDVHVZf6Ey8fSSQ==", + "signatures": [ + { + "sig": "MEYCIQDqFwvn/fN2h9A+In45gIdbSrILj4c9mOqwYHSkk7U2awIhALHOUf2j8XiMRb7DGJH3xQnMWJK/W1HL6SUkv9jSmEtM", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "bundleDependencies": [ - "lru-cache" - ], - "dependencies": { - "lru-cache": "~1.0.2" - }, - "devDependencies": { - "tap": "~0.0.5" + "scripts": { + "test": "tap test" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "1.0.28-pre-DEV-UNSTABLE", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "v0.4.11", "_npmJsonOpts": { "file": "/Users/isaacs/.npm/minimatch/0.0.4/package/package.json", "wscript": false, - "contributors": false, - "serverjs": false + "serverjs": false, + "contributors": false + }, + "dependencies": { + "lru-cache": "~1.0.2" }, - "_id": "minimatch@0.0.4", - "_engineSupported": true, - "_npmVersion": "1.0.28-pre-DEV-UNSTABLE", - "_nodeVersion": "v0.4.11", "_defaultsLoaded": true, - "dist": { - "shasum": "791b9e5e6572b789cfda6f60e095614cbb7504b6", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.4.tgz" + "devDependencies": { + "tap": "~0.0.5" + }, + "_engineSupported": true, + "bundleDependencies": [ + "lru-cache" + ] + }, + "0.0.5": { + "name": "minimatch", + "version": "0.0.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.0.5", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.0.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.0.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "96bb490bbd3ba6836bbfac111adf75301b1584de", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz", + "integrity": "sha512-+uV1GoFd1Qme/Evj0R3kXX2sZvLFPPKv3FPBE+Q33Xx+ME1G4i3V1x9q68j6nHfZWsl74fdCfX4SIxjbuKtKXA==", + "signatures": [ + { + "sig": "MEUCID6VcGPzlCjk1mWPnyH/wYpvRWIO4OWUXbCUJZuG1NLWAiEArhqlScMY5SvEf5zqeRVWAnAHxEQ6LK18DesHk2ZtQ7c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.2" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.0.5" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.0.5", - "_engineSupported": true, "_npmVersion": "1.1.0-beta-0", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.6.6-pre", + "dependencies": { + "lru-cache": "~1.0.2" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "96bb490bbd3ba6836bbfac111adf75301b1584de", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz" + "devDependencies": { + "tap": "~0.0.5" + }, + "_engineSupported": true + }, + "0.1.1": { + "name": "minimatch", + "version": "0.1.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.1.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.1.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.1.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "2bbeb75b5819a6a112ef5cf444efa32e006bb20d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.1.tgz", + "integrity": "sha512-3P1PPnTQol15+tR2bCl4nLaB0RmTLI0+EoC3poub868Yf0JaMStkdm+Jsq2hPzga78XeqEHyC4VmpfDiXFOLDw==", + "signatures": [ + { + "sig": "MEYCIQCLSrJ26E7FKLKFPVxFPhsIZBZiu/3asp+VYd7TjHoNagIhAI/sPIXzDTiCAmrdk3T2dobUun4YWSLweAg1UeoGFiXs", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.1.3" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.1.1", - "_engineSupported": true, "_npmVersion": "1.1.0-beta-7", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.6.7-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "2bbeb75b5819a6a112ef5cf444efa32e006bb20d", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.1.tgz" + "devDependencies": { + "tap": "~0.1.3" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" + "_engineSupported": true }, "0.1.2": { + "name": "minimatch", + "version": "0.1.2", "author": { + "url": "http://blog.izs.me", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "email": "i@izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.1.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "_id": "minimatch@0.1.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "dist": { + "shasum": "81ba8cfe095f0acd7d1f8afa93819099ef2177e9", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.2.tgz", + "integrity": "sha512-iHrfWyTxNiTYxOyxO5V//w7V1m2xfsLQehQje7R3hCf2VKIGIak8WC+hwe9ib/qnWY+3HMktO7pWjBQ/sSYq8A==", + "signatures": [ + { + "sig": "MEYCIQD9Eq7oVejaSfoNayffxkiLpaat/squtJztnNUcfNt2cgIhALK4V8o4qc2z6X10UOAJ80JsjgpZdErNE+X3U4hm/V69", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.1.3" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.1.2", - "_engineSupported": true, "_npmVersion": "1.1.0-beta-7", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.6.7-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "81ba8cfe095f0acd7d1f8afa93819099ef2177e9", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.2.tgz" + "devDependencies": { + "tap": "~0.1.3" }, + "_engineSupported": true + }, + "0.1.3": { + "name": "minimatch", + "version": "0.1.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "minimatch@0.1.3", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.1.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.1.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "3811e5808181ee2d923614faf14e0b24543daf06", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.3.tgz", + "integrity": "sha512-4OSyt6WcgHyEKlqfdqrgYhTpDt1cDL1b/BPKeSPhinAW4zT+Ganc+5wwnDIpcL3LnkXLd3ScDGcSgza8+oVstQ==", + "signatures": [ + { + "sig": "MEQCIFsiTy+TrPzEfhnPBdPV0NASx6zMnUWn4LYPpFcpfiXxAiBLltTgmUPGUbEiDG2Zzj2IxaZ/rbQ9t32Hzlq2B7ouEQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.1.3" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.1.3", - "_engineSupported": true, "_npmVersion": "1.1.0-beta-7", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.6.7-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "3811e5808181ee2d923614faf14e0b24543daf06", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.3.tgz" + "devDependencies": { + "tap": "~0.1.3" + }, + "_engineSupported": true + }, + "0.1.4": { + "name": "minimatch", + "version": "0.1.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.1.4", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.1.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.1.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "5c5b370eebd3f729adc1f7740515ac3c70769ae4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.4.tgz", + "integrity": "sha512-X76ZdMWYNglH32KwUuoCtcL3+ne9M+FVjuGI6RMwGf1l5wFF13KGb+cdWyp/WzcHnOT4dFzyQ8VBzX5zqvnAww==", + "signatures": [ + { + "sig": "MEYCIQC1H47SSlgoItEnSWA0C/8l1+HHvylAbZrJM6/tp7F0GwIhAKO3Ox1YMVR6AA5mcb9A2rMWk7frPp0bKnBIJUSysHKs", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.1.3" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.1.4", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.0-2", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.6.8-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "5c5b370eebd3f729adc1f7740515ac3c70769ae4", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.4.tgz" + "devDependencies": { + "tap": "~0.1.3" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.1.5": { + "name": "minimatch", + "version": "0.1.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.1.5", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.1.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.1.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "b762f312066cbbfe50462a68360bfc9ca0ccb1b9", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz", + "integrity": "sha512-KFPxSmc7KgXLngf9Y6mZmg+uCySJ/rqeLkHbZK+ygcPtzQvN9XGBbgFMPO8pfFYEKFgOUAE0RmXFIQtoRc7VHg==", + "signatures": [ + { + "sig": "MEYCIQDyxK2OIQkFiINz2HGbghaCRujYdZZz6BBadDG9OE/CRwIhAMEU8wH41fJAoTzKqL17RqSQ7gRCorg8KQNOjOYZQS1d", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.1.3" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.1.5", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.0-3", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.6.9-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "b762f312066cbbfe50462a68360bfc9ca0ccb1b9", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz" + "devDependencies": { + "tap": "~0.1.3" }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.2.0": { + "name": "minimatch", + "version": "0.2.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "_id": "minimatch@0.2.0", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "7fb18a99421493c520b508f00699cc8f5db86e2a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.0.tgz", + "integrity": "sha512-b2FfTK0XrP05b+maK+WDBoZrkFPssZFghCUT4wWL3K1mR//P8ShntiMrQz/MPaNZQDZxeK4yq0AaySGugLLPyw==", + "signatures": [ + { + "sig": "MEQCIH+/+agcgWowvxzzpAv4SNTFM+lKYMdA7rJhkvxEclhKAiA2WqQZniylb0dZXclj9qQ16gl+ggEVaNpv25/u8SAyLw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "~0.1.3" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.2.0", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.1", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.7.5-pre", - "_defaultsLoaded": true, - "dist": { - "shasum": "7fb18a99421493c520b508f00699cc8f5db86e2a", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.0.tgz" + "dependencies": { + "lru-cache": "~1.0.5" + }, + "_defaultsLoaded": true, + "devDependencies": { + "tap": "~0.1.3" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.2.2": { + "name": "minimatch", + "version": "0.2.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.2.2", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "209c214e81dd8d831122c56793c93d90d8e44b7d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.2.tgz", + "integrity": "sha512-7MU7MvYmitfyHefoIpDPLpnHqt2mZDXm8AQY7Nfu61PI2j2nN7Gzh2WUGKdXJCg6U20QPyrN2Pt2mLdjlOduPQ==", + "signatures": [ + { + "sig": "MEUCID1PRROBwsaG6IubemhteD64uoY1WkRpU5g9S9s3lM2hAiEAy6+k+5gc0NH+d4U2XrWVcbmcLo8p8mz/OrQVljbqNLA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.2.2", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.10", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.7.7-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "209c214e81dd8d831122c56793c93d90d8e44b7d", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.2.tgz" + "devDependencies": { + "tap": "" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.2.3": { + "name": "minimatch", + "version": "0.2.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.2.3", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "625540b1be01b3e7fb5a04a01c847ae54e8f3a9f", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.3.tgz", + "integrity": "sha512-Wq0dfflKxiKUiEUhpAnmcrOajyQtOemEGuYsD8reIaeYxLGOd7TWAWFjN5//WP5PwJc0YfbLJFBrjMf03AzcHg==", + "signatures": [ + { + "sig": "MEYCIQCntasu8Eq6B8SLA5W57iSNWGrCCiGVmXTRn/EUjIMKEwIhAL+YIOTmFH39QSrbcCaCniGfqNhBIP0GT58Dqcc7sJ1I", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.2.3", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.13", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.7.7-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "625540b1be01b3e7fb5a04a01c847ae54e8f3a9f", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.3.tgz" + "devDependencies": { + "tap": "" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.2.4": { + "name": "minimatch", + "version": "0.2.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.2.4", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "093b5cd06c40d460d37c50a8ce3fa1c0ef636baf", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.4.tgz", + "integrity": "sha512-Y0qPir8GQ447NQ//SF5omZFjFQlv5Zy9C1hOLTLeQCxX3PZ8LQCo/wkTIDEXmvFafcPrOu3dH3eu+W/EmGb98Q==", + "signatures": [ + { + "sig": "MEQCIAtyUyZM5JZeqcDKGrKB4NYEWHvwh05lW9YVckxRxSrpAiBnCHGuXtJ3HOK8vZTLNFVhn0ogruvAb9OwiYCBMfnMzA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1.0.5" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.2.4", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.13", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.7.7-pre", + "dependencies": { + "lru-cache": "~1.0.5" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "093b5cd06c40d460d37c50a8ce3fa1c0ef636baf", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.4.tgz" + "devDependencies": { + "tap": "" + }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.2.5": { + "name": "minimatch", + "version": "0.2.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "_id": "minimatch@0.2.5", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "a85048c04cc707538cdcb6fb798c421c3cbc7026", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.5.tgz", + "integrity": "sha512-YBgP/Fxaod9F9gtGsTEMUhlpWpI0oGmr+ZfPNtXKXHZSqAacQjfix3Jx9MokCngc3xG+7IySJJpIPiBFJs2ePg==", + "signatures": [ + { + "sig": "MEYCIQCn8VSi0K97GkVu3o4WppB2MHtiDu9u9VtU/9kdA276RgIhANmhqZF2B8axfEfMdQ2klNHN3YpOOwI37lWR8jHxU94G", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~1" + "scripts": { + "test": "tap test" }, - "devDependencies": { - "tap": "" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, "licenses": [ { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" } ], - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, - "_id": "minimatch@0.2.5", - "optionalDependencies": {}, - "_engineSupported": true, "_npmVersion": "1.1.23", + "description": "a glob matcher in javascript", + "directories": {}, "_nodeVersion": "v0.7.10-pre", + "dependencies": { + "lru-cache": "~1" + }, "_defaultsLoaded": true, - "dist": { - "shasum": "a85048c04cc707538cdcb6fb798c421c3cbc7026", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.5.tgz" + "devDependencies": { + "tap": "" }, + "_engineSupported": true, + "optionalDependencies": {} + }, + "0.2.6": { + "name": "minimatch", + "version": "0.2.6", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": { + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" + }, + "_id": "minimatch@0.2.6", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "afc731fd9874c4c47496bc27938e5014134eaa57", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.6.tgz", + "integrity": "sha512-EvglFf563kuv5NZyrafElzdXmDS8aa0Ec+UWy6pFwDfjaqF2hMqEwVOH3ZoW/r/2yiK/1jslEQSn5liSNpr/zw==", + "signatures": [ + { + "sig": "MEQCICCF02s+mVZYpyNuL5jUyyckAzq2EThmbXNelALXJtxyAiA7KBEKGH0PF5MenOrml20V1iSif70pHlExOWI5NMl+/w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, "engines": { "node": "*" }, - "dependencies": { - "lru-cache": "~2.0.0" - }, - "devDependencies": { - "tap": "" - }, - "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "_id": "minimatch@0.2.6", - "dist": { - "shasum": "afc731fd9874c4c47496bc27938e5014134eaa57", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.6.tgz" + "scripts": { + "test": "tap test" }, - "_npmVersion": "1.1.48", "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.7": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.7", + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" - }, - "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, - "engines": { - "node": "*" + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.1.48", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" + } + }, + "0.2.7": { + "name": "minimatch", + "version": "0.2.7", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, "_id": "minimatch@0.2.7", - "dist": { - "shasum": "850e2708068bfb12b586c34491f2007cc0b52f67", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.7.tgz" - }, - "_npmVersion": "1.1.62", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.8": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.8", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "850e2708068bfb12b586c34491f2007cc0b52f67", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.7.tgz", + "integrity": "sha512-7bUwdPMeF9f10cs8IQviwU19NvvmnhgR+hD+raS6J1eA+e5gxE9alUMP2Rvhk3HzNRMALpR5UFYEA6iH46b1ww==", + "signatures": [ + { + "sig": "MEQCIF11HYRUfSZqDnQ0lSsTXdqWrekVth3xvduOSKJUdOrlAiBeWLaoSTfFMvJyeiJW06ZUEGBk/rly6FXH/RDmCIjJ1w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.1.62", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" + } + }, + "0.2.8": { + "name": "minimatch", + "version": "0.2.8", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, "_id": "minimatch@0.2.8", - "dist": { - "shasum": "1a983623de40ccda200c37192a28a58a640501c6", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.8.tgz" - }, - "_npmVersion": "1.1.65", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.9": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.9", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "1a983623de40ccda200c37192a28a58a640501c6", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.8.tgz", + "integrity": "sha512-P69iDaX+rSff7gi3eR0W5SgvDFLYULFEkHVrdu2mYFuILoOFlk9i/4Fj7jjyX5PzXMN5J8v8CqCfwm4c+3nvUQ==", + "signatures": [ + { + "sig": "MEYCIQCkFpGPDxYc4+mju6nUN7i/hFcDJrrUCAeI0FkOnWbHIAIhAL8I9W6xOmOkyDQ/WCrsBnA0mGe+Z7MA4UzDrAyuN5/v", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.1.65", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "~2.0.0", - "sigmund": "~1.0.0" + "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" + } + }, + "0.2.9": { + "name": "minimatch", + "version": "0.2.9", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, "_id": "minimatch@0.2.9", - "dist": { - "shasum": "b80af947e6a83a8c68f26e54c0d6125bac9f887f", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz" - }, - "_npmVersion": "1.1.65", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.10": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.10", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "b80af947e6a83a8c68f26e54c0d6125bac9f887f", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz", + "integrity": "sha512-rw/QYK0eczkp1dihfhMobD4kIObmAK/l6ET9ji8nFlB2MnmAAnqONDMZyALBz6sMdoWTHU+iqNx5GkT3Q30bcg==", + "signatures": [ + { + "sig": "MEUCIBAbPv3bG63kFvMIC38ZMWXr/dStyVeznvNyQaWlDfbyAiEAiDGlnTNTav3OWA4q6h9ys0CXVba35oNERdQjboKv13w=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.1.65", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "~2.0.0", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" + } + }, + "0.2.10": { + "name": "minimatch", + "version": "0.2.10", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, "_id": "minimatch@0.2.10", - "dist": { - "shasum": "4b1d35d316d09c78e31284d6acf6245b5ec8c455", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.10.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.12", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.11": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.11", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "4b1d35d316d09c78e31284d6acf6245b5ec8c455", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.10.tgz", + "integrity": "sha512-/tzON/XsyFGQt/ashgu1tyE79oPG1fUEUIOklXrRkiBUiVKCpQOkL1lQkdashrrsrdv096xisFHforsf41Qdng==", + "signatures": [ + { + "sig": "MEUCIBrxrZiNz45VayITP5zYpdejI9p4z9lZtwyQRK+NHFCZAiEA18Ua9Aa9o4uW00rn/CN0ZQvFzuxUle/ktP30MdTTT40=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.2.12", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" + } + }, + "0.2.11": { + "name": "minimatch", + "version": "0.2.11", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, "_id": "minimatch@0.2.11", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], "dist": { "shasum": "a0ef5fa776aa6fbd3ce1ebb74efb8a48c6abf4db", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.11.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.11.tgz", + "integrity": "sha512-4W9kRInQoxhLpsYkjM65o8vWk6Lq6ZBQRWXGppeRWWxPSyUKxfDtlIVHlJnIbkEiBcp9bFzusqr0OKdV2l/Hvg==", + "signatures": [ + { + "sig": "MEQCIGsPGxG1Ky09Xkm25JpuIYUgD3gguIPo6ilhlf6soO1EAiBcwFE7rkfnW2TI/uXKZk6yAd++0R+i78+SaWnwNQy8mQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "minimatch.js", "_from": ".", - "_npmVersion": "1.2.12", + "engines": { + "node": "*" + }, + "scripts": { + "test": "tap test" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.12": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.12", + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" - }, - "main": "minimatch.js", - "scripts": { - "test": "tap test" - }, - "engines": { - "node": "*" + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.2.12", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" + } + }, + "0.2.12": { + "name": "minimatch", + "version": "0.2.12", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, "_id": "minimatch@0.2.12", - "dist": { - "shasum": "ea82a012ac662c7ddfaa144f1c147e6946f5dafb", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.12.tgz" - }, - "_from": ".", - "_npmVersion": "1.2.18", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.13": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.13", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "ea82a012ac662c7ddfaa144f1c147e6946f5dafb", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.12.tgz", + "integrity": "sha512-jeVdfKmlomLerf8ecetSr6gLS0OXnLRluhnv9Rf2yj70NsD8uVGqrpwTqJGKpIF8VTRR9fQAl62CZ1eNIEMk3A==", + "signatures": [ + { + "sig": "MEUCIEvWL7v2tyA5rpnALFyM7/aZlR2RuOD84q9UALJlBDMTAiEAqJyNwcsBg8J+RW+zKRtn5nNRsSpqDJ+FyVDukdvh9RM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test/*.js" - }, + "_from": ".", "engines": { "node": "*" }, + "scripts": { + "test": "tap test" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "1.2.18", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" + } + }, + "0.2.13": { + "name": "minimatch", + "version": "0.2.13", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@0.2.13", - "dist": { - "shasum": "dc58caf1eba5681e403163af3ed477bf69c8df69", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.13.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.17", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "directories": {}, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue" - }, - "0.2.14": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.2.14", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "dc58caf1eba5681e403163af3ed477bf69c8df69", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.13.tgz", + "integrity": "sha512-S7ivEqu7jMn+hfWyiknt5V581pAa6/ZEUVPLAXmaGQJxoYShcGNQeovOA7hqHDU01uAcyrZ1cQOUc1+I3UgN7A==", + "signatures": [ + { + "sig": "MEUCIQCtHn+NfB2tNjXvZt9U5eA+VjcPpJwLeBMGqCS/n8Vj4wIgWQoFMTXNOxBQtw2jYgQZTUu3pLe9v1Ek7CoZ50uGvdc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test/*.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.3.17", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" + } + }, + "0.2.14": { + "name": "minimatch", + "version": "0.2.14", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@0.2.14", - "dist": { - "shasum": "c74e780574f63c6f9a090e90efbe6ef53a6a756a", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz" - }, - "_from": ".", - "_npmVersion": "1.3.17", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "0.3.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.3.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "c74e780574f63c6f9a090e90efbe6ef53a6a756a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha512-zZ+Jy8lVWlvqqeM8iZB7w7KmQkoJn8djM585z88rywrEbzoqawVa9FR5p2hwD+y74nfuKOjmNvi9gtWJNLqHvA==", + "signatures": [ + { + "sig": "MEUCIQDPftZ76eImQmDvh4OdfDpB5+8szm7Kyaw9SN6zx0igCAIgSwMQgovrkC5p5eR0w/njzevajwb5/z5rbZTjaUBuJaE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test/*.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "1.3.17", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" + } + }, + "0.3.0": { + "name": "minimatch", + "version": "0.3.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@0.3.0", - "_shasum": "275d8edaac4f1bb3326472089e7949c8394699dd", - "_from": ".", - "_npmVersion": "1.4.10", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "275d8edaac4f1bb3326472089e7949c8394699dd", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "0.4.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "0.4.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", + "integrity": "sha512-WFX1jI1AaxNTZVOHLBVazwTWKaQjoykSzCBNXB72vDTCzopQGtyP91tKdFK5cv1+qMwPyiTu1HqUriqplI8pcA==", + "signatures": [ + { + "sig": "MEQCIBnX4QzBRtFDjuk0kdzN/EuaHvrhSQaVtXsfEGk4PZCJAiBq6f4lhA9m1UfHBNbkXL0PAuOxU8hDg/NbdCYIlBqwzA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "_shasum": "275d8edaac4f1bb3326472089e7949c8394699dd", + "engines": { + "node": "*" + }, "scripts": { "test": "tap test/*.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "1.4.10", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" + } + }, + "0.4.0": { + "name": "minimatch", + "version": "0.4.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "gitHead": "56dc703f56c3678a3fad47ae67c92050d1689656", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@0.4.0", - "_shasum": "bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b", - "_from": ".", - "_npmVersion": "1.5.0-alpha-1", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.4.0.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "1.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "1.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.4.0.tgz", + "integrity": "sha512-yJKJL1g3to7f4C/9LzHXTzNh550xKGefiCls9RS+DDdsDpKpndY49UDZW5sj/3yeac3Hl2Px3w5bT8bM/dMrWQ==", + "signatures": [ + { + "sig": "MEYCIQC7MwfIMrN4v6S4YZ+Hw1kES2TDByMKlbWGLKtqOjjIQAIhALXu291op4MHzD7w2nCRaeBCK1S1RSQPIOMlZJPAHdcl", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "_shasum": "bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b", + "engines": { + "node": "*" + }, + "gitHead": "56dc703f56c3678a3fad47ae67c92050d1689656", "scripts": { "test": "tap test/*.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "1.5.0-alpha-1", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" + } + }, + "1.0.0": { + "name": "minimatch", + "version": "1.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "gitHead": "b374a643976eb55cdc19c60b6dd51ebe9bcc607a", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@1.0.0", - "_shasum": "e0dd2120b49e1b724ce8d714c520822a9438576d", - "_from": ".", - "_npmVersion": "1.4.21", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "e0dd2120b49e1b724ce8d714c520822a9438576d", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz", + "integrity": "sha512-Ejh5Odk/uFXAj5nf/NSXk0UamqcGAfOdHI7nY0zvCHyn4f3nKLFoUTp+lYxDxSih/40uW8lpwDplOWHdWkQXWA==", + "signatures": [ + { + "sig": "MEQCIGJqRub3TcTRXzbR471Yfk77/PPiCidXtH5Q3Z5L3kzzAiByxUDos3UBKaxZK7jttZnJBeSP0biKlzdE2JbDdiHayQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", - "scripts": { - "test": "tap test/*.js", - "prepublish": "browserify -o browser.js -e minimatch.js" - }, + "_from": ".", + "_shasum": "e0dd2120b49e1b724ce8d714c520822a9438576d", "engines": { "node": "*" }, + "gitHead": "b374a643976eb55cdc19c60b6dd51ebe9bcc607a", + "scripts": { + "test": "tap test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "1.4.21", + "description": "a glob matcher in javascript", + "directories": {}, "dependencies": { - "brace-expansion": "^1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { - "browserify": "^6.3.3", "tap": "" + } + }, + "2.0.0": { + "name": "minimatch", + "version": "2.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "gitHead": "105482161fc08437a84d4b51a69a5e3be6dd23bd", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@2.0.0", - "_shasum": "c0625745200ebcf77451423f3d649821f8f0b6e1", - "_from": ".", - "_npmVersion": "2.1.11", - "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "c0625745200ebcf77451423f3d649821f8f0b6e1", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.0.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.1": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.1", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.0.tgz", + "integrity": "sha512-9d7FVak20oGJ9AnjCtB4Q6Jp6O4tUlIziqTjCwOb0zMDDNNb+QqDoUxCZ8ngUjO64ArIgYgDCR5IUoANeK2GKg==", + "signatures": [ + { + "sig": "MEYCIQDazU7dErYfGSwurlFahzEYfcweoH9noVrh9/BQ6ol1JAIhAK6ZzBZpzHz89qQxrh/yMo4r1sWCSJEe0+rCoO2TmcWq", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "_shasum": "c0625745200ebcf77451423f3d649821f8f0b6e1", + "engines": { + "node": "*" + }, + "gitHead": "105482161fc08437a84d4b51a69a5e3be6dd23bd", "scripts": { "test": "tap test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "2.1.11", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "0.10.16", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" + } + }, + "2.0.1": { + "name": "minimatch", + "version": "2.0.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "gitHead": "eac219d8f665c8043fda9a1cd34eab9b006fae01", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@2.0.1", - "_shasum": "6c3760b45f66ed1cd5803143ee8d372488f02c37", - "_from": ".", - "_npmVersion": "2.1.11", - "_nodeVersion": "0.10.16", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "6c3760b45f66ed1cd5803143ee8d372488f02c37", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.1.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.1.tgz", + "integrity": "sha512-5JPbQbWRyGKQ91/OwLqpOZTyl00WtHP8E+cRqSsa7IHRuxKr5o8bx7XUIA8GybJiL5iMbaup1YT1A3U1/OqTyw==", + "signatures": [ + { + "sig": "MEYCIQCJacyM0I//T3VvhijEevYvrEt8gNScCSNbcCCnc/K38gIhAOtPo3vjUGZ+nFn58ElchkUaSCKmprTHOXowazPmOt0c", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "_shasum": "6c3760b45f66ed1cd5803143ee8d372488f02c37", + "engines": { + "node": "*" + }, + "gitHead": "eac219d8f665c8043fda9a1cd34eab9b006fae01", "scripts": { "test": "tap test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "2.1.11", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "0.10.16", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" + } + }, + "2.0.2": { + "name": "minimatch", + "version": "2.0.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "gitHead": "df6467ae94d679dbf6cf1d4e888588c2b55f1981", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@2.0.2", - "_shasum": "9e0d08d40a713a8e1644bec3d88d1c11ee4167f8", - "_from": ".", - "_npmVersion": "2.7.0", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "9e0d08d40a713a8e1644bec3d88d1c11ee4167f8", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.2.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.3": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.2.tgz", + "integrity": "sha512-nUuOvve2VVdJ5CewD8EcEXrkDlj7Wcak1jAWl22KTz9qyxN1wXLVJ/VS0FFTCCIN49yIncmpHxN1ABHMrIyFtA==", + "signatures": [ + { + "sig": "MEQCIA4TcZ1MuoBKzwojU/NZVBl5qNFVqu13scHaJ2It2Vc0AiB/a/AFKRLLKhm4Ks93ZwwQpd/LI8Qgl/p3OdAGTwJdlQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "_shasum": "9e0d08d40a713a8e1644bec3d88d1c11ee4167f8", + "engines": { + "node": "*" + }, + "gitHead": "df6467ae94d679dbf6cf1d4e888588c2b55f1981", "scripts": { "test": "tap test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, - "dependencies": { + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "2.7.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "1.4.2", + "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" + } + }, + "2.0.3": { + "name": "minimatch", + "version": "2.0.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "gitHead": "85c028654ca35b0a5ae3bc83b830785d58c3710c", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@2.0.3", - "_shasum": "a265d8cd62b109ce85be49dd36932b8017f7df18", - "_from": ".", - "_npmVersion": "2.7.0", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "a265d8cd62b109ce85be49dd36932b8017f7df18", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.3.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.4": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.4", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.3.tgz", + "integrity": "sha512-9MfwEqccfN6JF8kjrzN7qHfMgc88TYoYrqAY5Sz2e2TzSNW30wrxTmyp7i1c23GsDjTcNRdCLu6o5+1HQ7JRKw==", + "signatures": [ + { + "sig": "MEQCICyMCdcjMnibrnzHPqx3FdoVF8wttT52h2IdsAx4owlYAiBHQQMdVI3uD0C847SvC+z9vZv0oaUeAgu9+LrdIzTUCQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "_shasum": "a265d8cd62b109ce85be49dd36932b8017f7df18", + "engines": { + "node": "*" + }, + "gitHead": "85c028654ca35b0a5ae3bc83b830785d58c3710c", "scripts": { "test": "tap test/*.js", - "prepublish": "browserify -o browser.js -e minimatch.js --bare" + "prepublish": "browserify -o browser.js -e minimatch.js" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "2.7.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "1.4.2", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" + } + }, + "2.0.4": { + "name": "minimatch", + "version": "2.0.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "files": [ - "minimatch.js", - "browser.js" - ], - "gitHead": "c75d17c23df3b6050338ee654a58490255b36ebc", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "homepage": "https://github.com/isaacs/minimatch", "_id": "minimatch@2.0.4", - "_shasum": "83bea115803e7a097a78022427287edb762fafed", - "_from": ".", - "_npmVersion": "2.7.1", - "_nodeVersion": "1.4.2", - "_npmUser": { - "name": "isaacs", - "email": "i@izs.me" - }, "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, "dist": { "shasum": "83bea115803e7a097a78022427287edb762fafed", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.4.tgz" - }, - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.5": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.5", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.4.tgz", + "integrity": "sha512-S5wkq7sXohYqV86rbXQQZ8jay9Lnw1zMWlurkMsHOfX44ziIBxXUxf4mjMiqIaU/JkG3eu/W+uA4BTwQNQGN4g==", + "signatures": [ + { + "sig": "MEUCIQCuUZXY+D7fk+FWkn3hH+EoNhp87ANm8qJyh6hPsBaLrgIgKuNI1h/LiJaRQb7edMuL5xTCWdeXA9Vojg7IVHJk7L0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js", + "browser.js" + ], + "_shasum": "83bea115803e7a097a78022427287edb762fafed", + "engines": { + "node": "*" + }, + "gitHead": "c75d17c23df3b6050338ee654a58490255b36ebc", "scripts": { "test": "tap test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js --bare" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "2.7.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "1.4.2", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", - "tap": "" + "tap": "", + "browserify": "^9.0.3" + } + }, + "2.0.5": { + "name": "minimatch", + "version": "2.0.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" + }, + "_id": "minimatch@2.0.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "a5c79dfcbb3ad0f84a27132d28f3fcb16ffeef73", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.5.tgz", + "integrity": "sha512-ypM9yhrVq5GlAE5GXQFn8fpbkW6BCqKIst51+xpAhIuMbgBy+o/j6gtamnruXkcdPLWGSi0bpt+sj42QBso9kw==", + "signatures": [ + { + "sig": "MEUCIQDhoTSUaXUI5TnOO4FYZIduxkSinaaJcxjcq0jbsunM8gIgQxudYjlqqKOq139edT1xpFeesJsF0oVTvT3bKlNkP/k=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, + "main": "minimatch.js", + "_from": ".", "files": [ "minimatch.js", "browser.js" ], + "_shasum": "a5c79dfcbb3ad0f84a27132d28f3fcb16ffeef73", + "engines": { + "node": "*" + }, "gitHead": "11ffd7674dc8a76eb6ddceda6e1bf8863d2be63d", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" + "scripts": { + "test": "tap test/*.js", + "prepublish": "browserify -o browser.js -e minimatch.js --bare" }, - "homepage": "https://github.com/isaacs/minimatch", - "_id": "minimatch@2.0.5", - "_shasum": "a5c79dfcbb3ad0f84a27132d28f3fcb16ffeef73", - "_from": ".", - "_npmVersion": "2.7.6", - "_nodeVersion": "1.7.1", "_npmUser": { "name": "isaacs", "email": "isaacs@npmjs.com" }, - "dist": { - "shasum": "a5c79dfcbb3ad0f84a27132d28f3fcb16ffeef73", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.5.tgz" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "2.7.6", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "1.7.1", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "devDependencies": { + "tap": "", + "browserify": "^9.0.3" + } + }, + "2.0.6": { + "name": "minimatch", + "version": "2.0.6", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": { + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, + "_id": "minimatch@2.0.6", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.6": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "homepage": "https://github.com/isaacs/minimatch", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.6", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "21df8ea63e67b5848d09d67e57432a5dcb8cecf3", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.6.tgz", + "integrity": "sha512-F8O6X6fCXCGysUsI43Fv4FZ7ZSl21L+is3NCdej5XW1G/9ydCVKIbJCOMKW5f/RDSBH7dX3GRqiS0W3njNtm0g==", + "signatures": [ + { + "sig": "MEQCIGdW8MCaqKqOB4Wvjqi4d/sqCwW7DyGRa9LVk2/VKtFyAiBVEblTwnXk3g+jOVX5IDCyCT8E/ZeLckGf7+6jNKcIWg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js", + "browser.js" + ], + "_shasum": "21df8ea63e67b5848d09d67e57432a5dcb8cecf3", + "engines": { + "node": "*" + }, + "gitHead": "24d9260047c46e95418407b4a4b0078e11f658fc", "scripts": { - "pretest": "standard minimatch.js test/*.js", "test": "tap test/*.js", + "pretest": "standard minimatch.js test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js --bare" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "2.7.6", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "1.7.1", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "", "standard": "^3.7.2", - "tap": "" + "browserify": "^9.0.3" + } + }, + "2.0.7": { + "name": "minimatch", + "version": "2.0.7", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" + "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE", + "type": "MIT" }, - "files": [ - "minimatch.js", - "browser.js" + "_id": "minimatch@2.0.7", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "24d9260047c46e95418407b4a4b0078e11f658fc", + "homepage": "https://github.com/isaacs/minimatch", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch", - "_id": "minimatch@2.0.6", - "_shasum": "21df8ea63e67b5848d09d67e57432a5dcb8cecf3", - "_from": ".", - "_npmVersion": "2.7.6", - "_nodeVersion": "1.7.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, "dist": { - "shasum": "21df8ea63e67b5848d09d67e57432a5dcb8cecf3", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.6.tgz" + "shasum": "d23652ab10e663e7d914602e920e21f9f66492be", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.7.tgz", + "integrity": "sha512-ISURyo2Kd+8HslnBTx41UcZAhT66AQgn9Xm0HbJQHHjw0FL1+t5h7/SlIOsiFQ23NFUjulJ35vPi81jZnCnL+A==", + "signatures": [ + { + "sig": "MEYCIQCLOVMvBeum5Vpd2emnSHRNRwmZj5ZRsKssxHFycImb3QIhAKocJvrLKelHsYUKRrfSzDeU2INz+0G6Y4VOhjerdga/", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } + "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js", + "browser.js" ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.7": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.7", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "_shasum": "d23652ab10e663e7d914602e920e21f9f66492be", + "engines": { + "node": "*" }, - "main": "minimatch.js", + "gitHead": "4bd6dc22c248c7ea07cc49d63181fe6f6aafae9c", "scripts": { - "pretest": "standard minimatch.js test/*.js", "test": "tap test/*.js", + "pretest": "standard minimatch.js test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js --bare" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "2.7.6", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "1.7.1", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "", "standard": "^3.7.2", - "tap": "" - }, - "license": { - "type": "MIT", - "url": "http://github.com/isaacs/minimatch/raw/master/LICENSE" - }, - "files": [ - "minimatch.js", - "browser.js" - ], - "gitHead": "4bd6dc22c248c7ea07cc49d63181fe6f6aafae9c", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "homepage": "https://github.com/isaacs/minimatch", - "_id": "minimatch@2.0.7", - "_shasum": "d23652ab10e663e7d914602e920e21f9f66492be", - "_from": ".", - "_npmVersion": "2.7.6", - "_nodeVersion": "1.7.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" - }, - "dist": { - "shasum": "d23652ab10e663e7d914602e920e21f9f66492be", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.7.tgz" + "browserify": "^9.0.3" + } + }, + "2.0.8": { + "name": "minimatch", + "version": "2.0.8", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "ISC", + "_id": "minimatch@2.0.8", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.8": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.8", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "0bc20f6bf3570a698ef0ddff902063c6cabda6bf", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.8.tgz", + "integrity": "sha512-Y6T1De6r48DnKfyUmQ6RcB88IulNk2rfqEkSyqj+8HSoJ+qV6wsV5xmXsqMIaSMDhDs0EDLETlVWOsJs4P/rWQ==", + "signatures": [ + { + "sig": "MEYCIQD8YnMVuoK/2tWF4HZC3nLg34a4dkMeEEao4McEaDlkBAIhAOE6P25u7JbnvH1GLihzyCSPfHLx1Jb38X6Hfx0rQK/w", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js", + "browser.js" + ], + "_shasum": "0bc20f6bf3570a698ef0ddff902063c6cabda6bf", + "engines": { + "node": "*" + }, + "gitHead": "0bc7d9c4b2bc816502184862b45bd090de3406a3", "scripts": { - "pretest": "standard minimatch.js test/*.js", "test": "tap test/*.js", + "pretest": "standard minimatch.js test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js --bare" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "2.10.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "2.0.1", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "", "standard": "^3.7.2", - "tap": "" + "browserify": "^9.0.3" + } + }, + "2.0.9": { + "name": "minimatch", + "version": "2.0.9", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "files": [ - "minimatch.js", - "browser.js" + "_id": "minimatch@2.0.9", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "0bc7d9c4b2bc816502184862b45bd090de3406a3", + "homepage": "https://github.com/isaacs/minimatch#readme", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@2.0.8", - "_shasum": "0bc20f6bf3570a698ef0ddff902063c6cabda6bf", + "dist": { + "shasum": "4dbebef26f62a35976db0737ea3389641baf9b46", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.9.tgz", + "integrity": "sha512-mSfGkf61166JDC9TjQ3XUgAS+/szGgTUkCEba9DIMnvgpWsLt4/OPG5MAmV3U0C/bIVZHgyBkDlK6Hbxr/Bjsg==", + "signatures": [ + { + "sig": "MEQCIDdN9ggmh6MdKz/qpy6lQpW4cYrmgTunvLALcvFOsYyhAiByTfPdxFxd8R/4/2JKndFq2N3LAE6R4jgr4yk5ShNfgw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "minimatch.js", "_from": ".", - "_npmVersion": "2.10.0", - "_nodeVersion": "2.0.1", + "files": [ + "minimatch.js", + "browser.js" + ], + "_shasum": "4dbebef26f62a35976db0737ea3389641baf9b46", + "engines": { + "node": "*" + }, + "gitHead": "5adde897f3865210dfa659beceff8617ee828197", + "scripts": { + "test": "tap test/*.js", + "posttest": "standard minimatch.js test/*.js", + "prepublish": "browserify -o browser.js -e minimatch.js -s minimatch --bare" + }, "_npmUser": { "name": "isaacs", "email": "isaacs@npmjs.com" }, - "dist": { - "shasum": "0bc20f6bf3570a698ef0ddff902063c6cabda6bf", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.8.tgz" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "3.1.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "2.2.1", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "devDependencies": { + "tap": "^1.2.0", + "standard": "^3.7.2", + "browserify": "^9.0.3" + } + }, + "2.0.10": { + "name": "minimatch", + "version": "2.0.10", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "ISC", + "_id": "minimatch@2.0.10", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.9": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.9", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "dist": { + "shasum": "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha512-jQo6o1qSVLEWaw3l+bwYA2X0uLuK2KjNh2wjgO7Q/9UJnXr1Q3yQKR8BI0/Bt/rPg75e6SMW4hW/6cBHVTZUjA==", + "signatures": [ + { + "sig": "MEUCIQCsexMy5sD8Si9k/MRZEAFsWFz796LnRJfSRigactTHMwIgHzBR3+DIS8ork+XH7ytkl4WRTCSHMKsfvLjb34vYVZk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js", + "browser.js" + ], + "_shasum": "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7", + "engines": { + "node": "*" + }, + "gitHead": "6afb85f0c324b321f76a38df81891e562693e257", "scripts": { - "posttest": "standard minimatch.js test/*.js", "test": "tap test/*.js", + "posttest": "standard minimatch.js test/*.js", "prepublish": "browserify -o browser.js -e minimatch.js -s minimatch --bare" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "isaacs@npmjs.com" + }, + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "3.1.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "2.2.1", "dependencies": { "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "^1.2.0", "standard": "^3.7.2", - "tap": "^1.2.0" + "browserify": "^9.0.3" + } + }, + "3.0.0": { + "name": "minimatch", + "version": "3.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "files": [ - "minimatch.js", - "browser.js" + "_id": "minimatch@3.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "5adde897f3865210dfa659beceff8617ee828197", + "homepage": "https://github.com/isaacs/minimatch#readme", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@2.0.9", - "_shasum": "4dbebef26f62a35976db0737ea3389641baf9b46", + "dist": { + "shasum": "5236157a51e4f004c177fb3c527ff7dd78f0ef83", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "integrity": "sha512-ekKdP/98gMbw+JdQaHZlS5/irFw63ktA3FXHaal7TXkvdaUJ9M6BewwNyEujYzRsTirZGmEVDho+Gh8bfcpVxw==", + "signatures": [ + { + "sig": "MEUCIAW2o7uG32p42nbfkoAHcvfMdoanQiRmJ8yDDODn26czAiEAx2Nr6XBfbh1GL2xkBh/wpKGnHcnDXhsYUstsVq0ULCE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "minimatch.js", "_from": ".", - "_npmVersion": "3.1.0", - "_nodeVersion": "2.2.1", + "files": [ + "minimatch.js" + ], + "_shasum": "5236157a51e4f004c177fb3c527ff7dd78f0ef83", + "engines": { + "node": "*" + }, + "gitHead": "270dbea567f0af6918cb18103e98c612aa717a20", + "scripts": { + "test": "tap test/*.js", + "posttest": "standard minimatch.js test/*.js" + }, "_npmUser": { "name": "isaacs", "email": "isaacs@npmjs.com" }, - "dist": { - "shasum": "4dbebef26f62a35976db0737ea3389641baf9b46", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.9.tgz" + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "3.3.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "4.0.0", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "devDependencies": { + "tap": "^1.2.0", + "standard": "^3.7.2" + } + }, + "3.0.2": { + "name": "minimatch", + "version": "3.0.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz", + "integrity": "sha512-itcYJNfVYt/6nrpMDiFA6FY9msZ9G7jEfB896PrgYCakHrW0mOPmzBVvfI2b9yoy6kUKNde1Rvw4ah0f1E25tA==", + "signatures": [ + { + "sig": "MEUCIH5X2lyGbETJYcKsyHB4ZtvC6kY2LwJjoZJ+RBktPpVLAiEAgd64s6LF89VjmvK2xvVXhOZ1yled2KdDjxyCmcHfIoE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js" + ], + "_shasum": "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a", + "engines": { + "node": "*" + }, + "gitHead": "81edb7c763abd31ba981c87ec5e835f178786be0", + "scripts": { + "test": "tap test/*.js", + "posttest": "standard minimatch.js test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "3.9.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "4.4.4", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "devDependencies": { + "tap": "^5.6.0", + "standard": "^3.7.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch-3.0.2.tgz_1466194379770_0.11417287751100957", + "host": "packages-16-east.internal.npmjs.com" + } + }, + "3.0.3": { + "name": "minimatch", + "version": "3.0.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "2a4e4090b96b2db06a9d7df01055a62a77c9b774", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-NyXjqu1IwcqH6nv5vmMtaG3iw7kdV3g6MwlUBZkc3Vn5b5AMIWYKfptvzipoyFfhlfOgBQ9zoTxQMravF1QTnw==", + "signatures": [ + { + "sig": "MEYCIQDVnGy7m1NDW9pZ1TN5IebjzwyNAMeIlAw0MV1QJ0AEUgIhAIxuC0mxKvBPKaJxJgVpZZ0qn66Z+8YaVp7/+Mv2zfIv", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "minimatch.js", + "_from": ".", + "files": [ + "minimatch.js" + ], + "_shasum": "2a4e4090b96b2db06a9d7df01055a62a77c9b774", + "engines": { + "node": "*" + }, + "gitHead": "eed89491bd4a4e6bc463aac0dfb5c29ef0d1dc13", + "scripts": { + "test": "tap test/*.js", + "posttest": "standard minimatch.js test/*.js" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "3.10.6", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "4.4.4", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "devDependencies": { + "tap": "^5.6.0", + "standard": "^3.7.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch-3.0.3.tgz_1470678322731_0.1892083385027945", + "host": "packages-12-west.internal.npmjs.com" + } + }, + "3.0.4": { + "name": "minimatch", + "version": "3.0.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "5166e286457f03306064be5497e8dbb0c3d32083", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "signatures": [ + { + "sig": "MEQCIAQgj/vGRw4GsiGymCgvYIs89TYe/cCTDwvKfvFqzMpvAiAx74WMvfHgunlixpGmmaWBrGVcUp23wUCuSTGh29lWvQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "main": "minimatch.js", + "files": [ + "minimatch.js" + ], + "engines": { + "node": "*" + }, + "gitHead": "e46989a323d5f0aa4781eff5e2e6e7aafa223321", + "scripts": { + "test": "tap test/*.js --cov", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "5.0.0-beta.43", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "8.0.0-pre", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^10.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch-3.0.4.tgz_1494180669024_0.22628829116001725", + "host": "packages-18-east.internal.npmjs.com" + } + }, + "3.0.5": { + "name": "minimatch", + "version": "3.0.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "4da8f1290ee0f0f8e83d60ca69f8f134068604a3", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "fileCount": 4, + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "signatures": [ + { + "sig": "MEUCIFmtbk7KzRs+Pds5cLUrMTOO3Oua1zioZzquHkkGhg0qAiEAl5NiTtpRVzxDa78DmM1EcNK/GrmoVXoHZxmmbit+g2o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34000, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAC9UCRA9TVsSAnZWagAAYcMP/jf6QiKU3WOvktJPGGKz\neX03vLSIUkMMgxksl/2rwq1msHw6m+SLNvu5NetVgngXK5bwOVam4ZGJ0Z96\nmPdeuVzouEDg8Hzlz+kvdK32k8DXcfxfuP/gjuafUiaU+7l1CJ/zTjsuHU23\nUXuxgXjRS85Qv3aNygMXwM2/RSEbUsuEJFDcjHIarxlYeDHF93Xr4aevmJxA\n/BVtrT3JtZ5lu1x/jzZhAIKWhZwvuqoC7IYhogSs/4yE3jnxMi3rKYGiS2wA\nOZVZSj2EepM95yOB2mZtCChp7dvdboKCxvptnchamu0MP/7G6j30G7TjsutC\nimhtyTi95CXPwqzqBBhsZu8uo+fiOLw+zA/znBL/2hRU+/6xkz05mzsUUyYE\ntaFR8ivlyWneNg2RGX2d+6Ec7gXkY7w9jhBPbGi+JpiCfpoTpchXc5ZWimZh\nLeymiguK0bddXREaVPL2cye/5bwvrC32oBy9XJ5C43kMe+Awiq6DQajPMCCS\nTkW1glOQZ2qNvOhvP9WYktWnh+PKTtriejaVsE00nYWr2uAHjNhk76WaB1Uu\nyhCXcmqDrrRa5FyUmqkuc97CXx925T6phqzrZuR7DhoBgF02g+gGe9cn5Jyc\nodiLzYt2Lsxq+o3cIxaiV5ybvaA4QLuoJ6N1LKVIXj0GIdN7BHiwGrR0SHkb\n0ItT\r\n=gKVD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": "*" + }, + "gitHead": "707e1b231d5ddf5b00040bd04968a1a092992d1a", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.0.5_1644179284517_0.44135801625913396", + "host": "s3://npm-registry-packages" + } + }, + "3.0.6": { + "name": "minimatch", + "version": "3.0.6", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "4a2cab247c5f4cc03b85813ebbde7ae23a6406a2", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.6.tgz", + "fileCount": 4, + "integrity": "sha512-dpxq1Q5/wIfWZjlpjEZMpHWLDIEGKAzfxdWG/vDJs6sX2mtpm0vuysXd9bD/XnMrGc/O14D116bYXsSDBJK2lQ==", + "signatures": [ + { + "sig": "MEUCIQC01/8AbsaQSS08Yw0pjwKNDZ5ekgrQ5Kshn/Q6CludNAIgSiKQwzDsy0Kr12+yQxXl12AEnkKgSBYPHyOo9ahSlN0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34677, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCEmZCRA9TVsSAnZWagAApU4QAJ8Et5xhO/5xOaxqD3OU\npZpSaqGKTrhOwPH2KKBEm/ecZSkT7HtaGNStNKFJSxw5QWZ5jUYHjiD3GyaB\nfYZJN4/IGXM4iFzmr0t5oJ7E/1a7Mg5HsaDPd53QQMU1pGZFui+XbG1afdGF\nyD1j8X7UOUxkk1c8IinuUxFOgLR3Re6p6X3Z+xPEsl3Q54yNkaI9fuPtKsaT\nuZHTW5mW7ha7bCER7T+AKpGn8fEfLU1eqGFZr83+zoMe116MHbH1qqRkIDmY\n0JfLR4txqX7uPgmHv8Jfp8/LAzzQrwdJQAFeGLJpVOTZhHRJb2TbMkAvqgDI\ngL2WhXh3eO8dsIRZ/G6uKO0zNsMAqqpr84jMxW2cOzSQeDX6f1pwmPL4b5Bv\nYtigt4aEZIKoXNFnrc/r07uezwbcS0KmfYysQYw8BPme18MA72sbCnwXmZkO\nwYJLDS3ceNQuqQkubXdvhLIHOLmZeso+d1gh8WYwTYNUIVx16PZmfMMFBRUO\nugrMhNk+sKxNWuUXM1Hhcaxdc9dgmOXMYtsZVsQlIiWujU30WqDv7s9qnXdM\n6pUfDwW/F99MoqV8/G6K9GNxcdtJ4bxbwR+jvngGFoprU/gJowKwWHFIs9KS\n/mNVJPXqcPHLwwlyVESCwOwTXCdXQzK+SacvLRFavEaXf97SSfC3TXpqwQY8\nD8F+\r\n=7VkV\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": "*" + }, + "gitHead": "5b7cd3372be253759fb4d865eb3f38f189a5fcdf", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.0.6_1644710297540_0.9150656470974228", + "host": "s3://npm-registry-packages" + } + }, + "4.0.0": { + "name": "minimatch", + "version": "4.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "befe49964c07e98a5eb7c5191be997b2aaffacc8", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.0.0.tgz", + "fileCount": 4, + "integrity": "sha512-nUXi6viDR8DREKfJTnzZLh1amprrt6Hepx/WUngirNdiNEDmfkW2DLfiTeXWcMkMY0bRkuQ8eyCSbG3W4D0Qcg==", + "signatures": [ + { + "sig": "MEUCIQDd71LmyBvRR0Lqo4F3o10PgK7Jgk7EulaQzsh8aUFE4QIgcr9pn7Tpe3gNKK/lto3Jr+J/ofVmWPPrzHoB1EBoEoQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34684, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCFLNCRA9TVsSAnZWagAALRcP/1HqDx9jpAnruCjxh80O\nkeOPftFHEuSKKzhTd90Y4ZNwzKfb0xjl0QXZ3iGN9kx4GHoHn7D564l+z3Y+\ncKoxy9kGeX9y/tw7nKtosyraVKTrC3gbKTtA3FH2nPRm9KvABJ8OT776YJT9\nu2aSfk6mdF6hqqrSTubYnfQBNdcaO61kt+AJJUmWfUM5Iz6BAP2ljznViMwY\nzZF2/uQkh6AMtKeqR3q/4sEEPSxShI1qgNaDXuB1TWH6Lr9coa6OxJ72+K0s\nL3mrVxFbt5sGA0zi4G2sXc192HxJgX7oN6mjevOZex2z11x/6e7IichFw96b\n8PAyxQxDvLGpgt1efUu13g9/1N2xQQGZ2Ta+T9bbGOaqKFoXIJ6xW96icmW3\n0iWIQM17z509rKOcRpXB7bPpXMbU19QhU6EBVJNUdgqGozJuY4llpLg7g5bq\nIGcuYH2YZW0IRTWG9qgqO/BLuWZeWslr6gTlZUSTmeW/hIXCLZRj4v6IaZVu\n8ZuIGmyFDy7imL+ZeHf4iVhyLWcasJXXcW1g4lmasv04xKgz+MdHQs8isqXk\n6spOIYgxHcPZ1d26RwK3F/w97WcvsMvdesKTx52BN9yUqKLBknvJ0dBo/pGW\nQSqooaxUXBnaTh6p4H8C2tLumOtNUYxcBKBbKRzn9Gxl2NobDOPlPJd/x7Tr\nYU9/\r\n=052M\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "26d281dc585af91df47cb93844e227e0ee90b7ce", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.0.0_1644712653720_0.38662374444664915", + "host": "s3://npm-registry-packages" + } + }, + "4.1.0": { + "name": "minimatch", + "version": "4.1.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "6cf9879294e33a259536492d905e31be8420800b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.1.0.tgz", + "fileCount": 4, + "integrity": "sha512-CRDd39hmjy31EqKRNlvKSIblWVXjoB9v1+qwqsxVDlnXXEHrC/63ilDd/iZFnmDLUT/FZxHc4+4t9JbG1ZoeYg==", + "signatures": [ + { + "sig": "MEYCIQDI+Dt6aoY6d7ckeIEl5se7FXagkVrNJbxuFguOA9I/mwIhAMMZVS3kSgQc7yqIVST298wqJPq2uH1Pj0L+6MWra9lD", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34911, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCFfICRA9TVsSAnZWagAAV34P/2ETQvagtBgwR4vHSNM3\nWFlEHKLPRWJx0cywMYYG7tXfmMzLYsufG8r3f8HVCEoi0WdCXTK/cooIGdn7\nPElLUudr4sBcLBSnDwxEW4T+T2USavd/VeIvcw/mJjXngKn5/jKzyqM1fvqw\n8ogCnyQqX7dV2hCrxqnmLrkKeClV4ZAwrvvWlAYc8v77KUv+iQwwPqtimCWt\nY6H8wfQaRUYK99Eu67Ya/sVt0g81d/bGfs8SD/UkN8gPNglgzGx1/3+F4F+p\nX5/rHkGFNSv0yuO8E7QSA0ldy4es4E9uYR6Zw8WSO8qcapScN9Xj6byhZtnM\nJ9tQjAd633qEYoHI/2j0qobZNUtuneTbKwui1RwfQEORKdDTBXUxOibcEWac\nhs9sOPjfRzGcPPibGft78DZP00Xk8jWALaXzZx5+6jvfrf2FZVUeMd5bsarH\n+fUXXs1PrW/8j4xeT6bB1EkJ3MZ9yZIk/47g7bx5vf7IiFt9tPDdr1MbqT3A\nMQBe5gNa7VdOlBZuHnt2ydBcFTtbjmf82JHSG8hj95SfMoXuhNfAz1WE06DG\nMKr2lS9MJBZNAdVerHzUrKB8Klpu/I7VyXECe5cP7GXMA57+LwclDVH46ful\n3pj0V7JD4511uyZkD1yq99U6LcbLy/ggt3FhTI92VmfJ2N2ICun8PbGDRGvJ\ntv3d\r\n=kLsy\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "5d15c146e9af3cbded8e62b7b5bdf76a7189c58a", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.1.0_1644713927866_0.037644074617840806", + "host": "s3://npm-registry-packages" + } + }, + "3.1.0": { + "name": "minimatch", + "version": "3.1.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "f59168d5cba6b6fde15f6a88f557fe7eaf31d8ea", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.0.tgz", + "fileCount": 4, + "integrity": "sha512-vgmUyWyt2qidcJXdF6e+kf4DgJha4vzf3ctWJ0uGjfvqEgoX2V4GXQt0eZwM2FJWKANfS8VmzpvPKbWYibkHZA==", + "signatures": [ + { + "sig": "MEUCIQC5kVDVKTBEBi9F6R9/4/cxVqtfBgNL+AdNfDgyfat2KQIgOhMT7XtbAyCNjmt8O+Qesdrs+3juuPyaIxsS/jb2wto=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCFjaCRA9TVsSAnZWagAAF8IP/2+P7gq6aNTC1ubmkTcB\njZlPYLsPh78eRpCUjR0x8SGyH14/0wogEGPYq48r5J80qEnUUEOSGLq93es/\nWoJoixNjgk1PdOM9qZSXcxzek2VoCszRrRMntYJ4b8r2iMX7phBnyzt0IF4Q\nP1LkjF+5sspxfSo5jBTGbnItZ0Y3NIEXf1ZnjH18fDwm8rl6j7xXKQxLtK0y\n1/dIg5cHaXsWV253tboTDBy2LirDCggjmY38kMbwUqGmvEMg0eiJjXPNp8Nj\nAP7ffljigF5DQFaPA0fY3prxfa50sdl+ofVS5XbFd6J0CLHeVzdvIWuBgr3o\nZQ7eD/ENON21+Kw3AEcWqZHEFYuwFNHZe8znQNXuhXiPcnyCYYxIuTVa4R8M\n8e6New9MaP4JlVMibOxUdZw4nCRHHEZqXtlIN3QsT/jhY9UJatXwtYPVOhHx\nQ19cfJuhnFlrKj6BVfFdXlLAS0waBzWhjL3EcOdyTzDu/lK7e6zFiFbeeHFD\naz2V/+ubml/QwIU/RewwjF9Gj8vSSl1ZLobVTMvbQCf2Et9TLoFkt5KNUQSx\nbsuRoHnP54eyFtwY4YcOdqMmw1PBT4bwc/te04CUFFDbVHm36ufHEa3XMu/b\nELjJyc7oQaZNaB0f1g50ECuaclGD7FSA0Ld0xyt5X12412d7eg3Qwg1i0GYI\neYFM\r\n=99c7\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### allowWindowsEscape\n\nWindows path separator `\\` is by default converted to `/`, which\nprohibits the usage of `\\` as a escape character. This flag skips that\nbehavior and allows using the escape character.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": "*" + }, + "gitHead": "5e1fb8dd2bb78c0ae22101b9229fac4c76ef039e", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "v3-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.1.0_1644714202770_0.869405998492546", + "host": "s3://npm-registry-packages" + } + }, + "3.1.1": { + "name": "minimatch", + "version": "3.1.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.1.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "879ad447200773912898b46cd516a7abbb5e50b0", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz", + "fileCount": 4, + "integrity": "sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==", + "signatures": [ + { + "sig": "MEQCIDRHuxeUYfTOfuSKaniiGo7d6PLEPoxHSr7sQAMZzATvAiA+D2sFhBAk3Zhs8gjxf6VORhQuAwuLvcJjXBEsFzBddQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34874, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCIKoCRA9TVsSAnZWagAARqkP/jBV1JMkqDfVVhDH140k\nvRFNcYgYRhvSHX1R1fp+I+iVPF7WqlL9i+C87L7f37+OGC3z9gR3lQKBWbfo\n0tOGuFXJDM7oyKZz6KgjmDCHc/ABF6vISGg/MrDWb1TpG+0Qvcc8WjE92014\nETCfjjLqC3jqmyfKUkPnMFwcHePs4DI3whlQ7+aNqhAgUzbiBGCkSfgy7JFx\nRK+y+jdKSLJI1rAF9nV54FsRObFJeFh8/AccpRYL4KZWQORSjjGG+bGK6p5V\nD7Zxj6iVg3mH7Q/SHoPx/mVmL9wfrR4VzdqiASd5IzDd+y+UoZrkSAKDwYgV\nwB6Q+L5MIWn2GRLbkQzf5DSb1n0gH1pfwwYncNVjKCCWvYsgStpdZF/ll3w+\nGd1rD1tCizBpnhM1My9Za5w95dDgaZq7N4kOJwGvWRygwBORS8K3DROE7arE\nsRM93t4zwQWjCXWjsnAb9+ZvKBTTjS2a0OTm+waZ6wKy7olROD779oDGz/Ft\nePjGWRDL9VdtWkR4Tk37rScf3cjfR0NzHjLpxRcttojLX7L/g6Yn/Tqh6hok\nymNrKvJyF49L/Tjzt+v3dmzF1F6Wd8J8w8q5y67gFKbPqpmBcBbjB2k7xeQk\n6duKpPR0uEaINjTdfz3j7UdfPh6C9i99Lb+z8YIT68UE/IT17wDxuOWh5ieA\n3sdy\r\n=IqsG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### allowWindowsEscape\n\nWindows path separator `\\` is by default converted to `/`, which\nprohibits the usage of `\\` as a escape character. This flag skips that\nbehavior and allows using the escape character.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": "*" + }, + "gitHead": "25d7c0d09c47063c9b0d2ace17ef8e951d90eccc", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "v3-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.1.1_1644724904212_0.2022292949011142", + "host": "s3://npm-registry-packages" + } + }, + "3.0.7": { + "name": "minimatch", + "version": "3.0.7", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.7", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "e78aeb8dceccb0d12b57a75872da43bc68e7d7ca", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.7.tgz", + "fileCount": 4, + "integrity": "sha512-pYjbG0o9W2Wb3KVBuV6s7R/bzS/iS3HPiHcFcDee5GGiN1M5MErXqgS4jGn8pwVwTZAoy7B8bYb/+AqQU0NhZA==", + "signatures": [ + { + "sig": "MEQCIGl6hMac7Um2//TeRhJiO2strVBXSo/nBaz90WzMI9yeAiBlgoXIiLBPQZOc8qXd0hfu93M/sFfl0poFjfdcMZFH4Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34636, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCIMVCRA9TVsSAnZWagAAva4P/i0HkM5RG+FjQxZkMtH9\nSamKiqKt0g4O7tbn5oi22cqihGjbYL75AYC6TCBQ6BRAwtOjmmU5yQrF03sz\nORNdI4wNz3/+ZW5qyZCR/fQZzsfgu5hProcdMra4H8resSwgIPxuPCfdbK4d\n4o1rsi+vl2nhZEaazNH9jTaVHqHsInyXJUJURskh0QWFLAd7zEohb2OM+0av\n0VWcAwWCDXlPV6/ZCFb2+Kh4ZcI2/3Jx4jiKZ0fvrFjZjB8FMHRk5t92gRA8\nHD6VwGP9O5ZzXGvxUqliBNl+fIy7x+aSX4QSrdSJl2INILErTrzqBPLygFHI\nIAPwUEfQisaSDMXHeFMk2DW9mnknL7r3VKnuFV4UfDy0fscj/pWyak6rETbH\n9CXagq6kPELsBrkvZYHZ0492neAcg+Xhca1woRZ4GX8NzDAO0/BUaoKcAvX/\nCYiUxUABil/xMOtZ8F4PdTIrEMgWZoRD/gaUStY7ubA+34UkSXD5u9tjmc7l\n0ex7OTcEAbreQSHri3lG9LcpmIj1ASOaOicMzPIQtsBbx9VVLbMztnIjHYDP\n5cOKahVjoqdUpGxbHqeb+hzzGIn1MbZyqIqbx8yt/fCmNi6SXQREQd5TXQtf\n+saogj1GdD9ux5IwspEwdCP2QWTLGdxUyCkHnVbSV4Lmxu8gmmRhbeSZyzEW\nctv5\r\n=yweF\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": "*" + }, + "gitHead": "a6f52b0f9692e918e59bae84dabee02db97f96c8", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "v3.0-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.0.7_1644725012996_0.08373802686227072", + "host": "s3://npm-registry-packages" + } + }, + "4.1.1": { + "name": "minimatch", + "version": "4.1.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.1.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "88d8172f2e1babcc3e249538b1a46970dfea1300", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.1.1.tgz", + "fileCount": 4, + "integrity": "sha512-9ObkVPP8aM2KWHw1RMAaOoEzHjcqzE1dmEQHAOq9ySRhvVMru1VKqniUs/g6Us4KSwXKk0+uLko6caynDcWEWQ==", + "signatures": [ + { + "sig": "MEUCIFEr2UJz37yniW1AhGJ2LAlTNfefyTW+rwyzkDDgN7OAAiEA8wleh5ZLOyR+xSaC72yCBP1svcw7DTgf+nmgnlNEM2I=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34851, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCId1CRA9TVsSAnZWagAAoaMP/3D/9KQl03yq6n24Lnf3\ny4OqbqM9YIkBHbQCXeI6X3sr05q8DCw1OK72C6pAkgr1VPC0U8lWY4fRMDrh\neobrJ/Vi3X1gjoMRE5d6v3kHAx89Msn3I32zf3YfU13Sr5SIoR9TdSLX+izk\n6ZZbYSY4byxHAOSsxC3rklIYLu90N9521tq6ZHm/5xfcmZkGcPqzN94ebr+f\n+ly5xAWc08fkEAghnYoBoplTYtrUl+VIXdib3JCw91dhEY5tb5w8VASZDV0o\nXIbnUwUZcITTphmjCxEab1ki1IsqDzMD8xnkJqIgCy1o1QAlqHBNxTcI9mkS\nfetsJUs1rDo6wwsp43jlhZH4JxPhMeTeErATWEWS+17kwkLUxR0MfzSyQVUW\ngJR74RtLWYuIYiA0rzyJoqz//KtGSDAJha/XTFeBHBtWLSO/zeUnjyz9+shc\nId3wYiGZ7c2shnb7iurFTygctjqA34gfN/1yRHgNLjRusK9W2MdU8ISOJWEH\nrYNGRiwylJj6P1KD+LrP5rSGPRxixeSorq7CPfo0JNjiDhCqBTQG+YkBPCBo\nC2McFwoJRUyFq89PBgSu+VPP6TEOulXoKRMpurESJ6HeSzQx1wE2QDTPpDZb\nhFOAHK7MorzbomXZ6UgtTfS1YAZFZtR6NcWeotZ7V3XWsMNds3g8O6aTqlzG\nFBhj\r\n=mce5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "9c7c4bcd9abe9d2de9139383d6f69fd50a0cd990", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.1.1_1644726133727_0.39065732218879523", + "host": "s3://npm-registry-packages" + } + }, + "4.2.0": { + "name": "minimatch", + "version": "4.2.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.2.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "3575202103e58aa0065edbe85cbe5354c77135b6", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.0.tgz", + "fileCount": 4, + "integrity": "sha512-ZeCGOh91BdmL6q8aHpnLax/3UXJA+g41DbtDXt7MQ+rNUV7mlpdjxZJGtl5JQ4EYXl1ajRt+rd3p6r234BhZ0w==", + "signatures": [ + { + "sig": "MEYCIQC5WfiXFxwuf8OAuUmISZnDHzTY4yyEkBta7UjixVA3tQIhANB0UzVyTEqAo0tAA9yvXD3FkBSWATmUHahxDZvTPxPN", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36005, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC87QCRA9TVsSAnZWagAAzbkP/24NCnbmfkh8lbfEAYFe\np8ejYtf0Mo3HPexrbTEHLs2EJw1vFEXu+LXabUfIvIQiyKS4k7PnDxgv7GLx\ngbNAAn+8PdB8jOfBMZoI/r7iP9Xx0gUuIlrH5yvg0YjIOl4oJDSh1555TkVj\nKvyKhdbdp+JKZ4PIit5uCnFrSeJ0TlNr2O9v4IdiXb2AUUQ9Lg7DIdlNiSBQ\nBryoDgs/OGPsiDYRtAH0I6grsw//LlkotaKSyFxchuZI6rYozMmUD7912//V\nklNtIOgcNT24Ydq2bkE140NNuReu3BGJsXj0dYqv35Z6vBtvz6kfWeHLUDff\nu+w+ZK0Nh1aR1Z2xaUGFRmrOy0o1xLtQw6d6o1dL5Yfe+AaMj5ZfyFpCbTgq\nLlu6bGoCPCBjJetrl2vdeDvvTjG1g8qjI3T/NZhXBWYZST8oD5wiDqtIF4xo\nZDfixAhPjVwp+a8/KjQ5YfKOJAj4RsQHf7I1ogJldB4XrHlFyE3yn0FLDzHG\n5nv32MD3VJCA0DdopazAT8VJMPvnHlwVLC6P/cvrvB4mixfwQ2oqeHUgpzXj\nP5MpJNy2uWcAbFsbrAB27nIAGkdD6JuADNSXwuR6raLux+BDjlyWf17DKhDw\nGMd1M1O8fI25m1kZ6uqPsAIaZPoSDGR/fDOlhn2iIDWXmH5ywv4J1vVwXfH0\nXthG\r\n=4ZLI\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "dd7aa958cf4cbf9e0609739f46b78777afeeeb49", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.2.0_1644941008285_0.12448061888028517", + "host": "s3://npm-registry-packages" + } + }, + "4.2.1": { + "name": "minimatch", + "version": "4.2.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.2.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "40d9d511a46bdc4e563c22c3080cde9c0d8299b4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", + "fileCount": 4, + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "signatures": [ + { + "sig": "MEQCIBcXgrJSwR08WmGmb/kVg1JILZGlZW2UQe97P1XKgZTrAiA4qXi0RZir+hOB/oKYW01sOyyEr9b+Br1NicZ219nuJA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC9ZQCRA9TVsSAnZWagAA+kMQAIzfV71ZAcbVTxbirxVb\n9GDNdvISRrXgstza8d/wj6ZdGm08UbR3TLxE3L2ZCFiwnLacx+CaM7zbb+NX\nSKs8gtR3VgJEDuD20l7ktXSf1GDsrjacOdrlHrDga0AEiiVU8IPXIwOK90s6\nIQOU6iIxIRGRXO9mKr6cuE0kFOGCisZSkDc7cc+fZ5aTb9vLYtz+EnhVlBsP\njbAS2KS9ugBmRdqxVnV7gEH6koXq83M0NEkM5m5oXjgl/RXc5iNE622qbjux\nDsI3IrNdrflUCEweCZ7qBxOyPjQDb/SZYDXEzoKDMETA+c+/LclmEFFTp/4B\nlu7wUaOIAOlUzh7XSAIpi2qmDAemPJZMoqfXwwlhTrx2ZiBzKxbM5JmroXvg\ne0c0B2bbbK5Pn0AAHLNZNdSSV9V/qApJrjpCTwe1BsS3bswqg5PibnCqYNZk\nucCBQZr7eMvhugSr5ikEnRA1p2fgp6jkQgTETZFIi6WrAGOZnP7kFsz6eaIy\n1HNm7rE/2bH0vv1p2+avZKM+ZjhUCII3c+yW/WibiQYUB+pcMlqWoTruyYLc\nGhrANPIt3GNeQ74EeN9QWIgoJGjXfBDG02kY2VA4sdpEmrO5rZNZ5WHKS/dr\nDIEvx5PrnLE4HE9bS+OHrtMB4bL/Fx5FzzERwRWBDLCCC7t0MryBZRpx0muN\nHjKT\r\n=ciRQ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "048ada0f1f2c84718477050a25f5fb457e7fc75e", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.2.1_1644942927948_0.9465140767715339", + "host": "s3://npm-registry-packages" + } + }, + "5.0.0": { + "name": "minimatch", + "version": "5.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "281d8402aaaeed18a9e8406ad99c46a19206c6ef", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.0.tgz", + "fileCount": 4, + "integrity": "sha512-EU+GCVjXD00yOUf1TwAHVP7v3fBD3A8RkkPYsWWKGWesxM/572sL53wJQnHxquHlRhYUV36wHkqrN8cdikKc2g==", + "signatures": [ + { + "sig": "MEYCIQDkrrgNBShM0Xmqk86Zrr2CGq/7XjoE9IGikS4/OXCuFAIhAMStBAdzov0lbKSDWvf7+JJ/uHaRrD+ENhNue8Zltzs2", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36178, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC9m7CRA9TVsSAnZWagAAyyoP/RAf4SslmulJ4xXo1e/T\nYJT0+LL6OAoBrm7haqnW7NjTV0StqC+A5NIohzvSdRe46/i88YtFzgNppD3h\nOa8boghiBN3GdZ3i4wbwR6I/8l1cZe9KT5yuqZkAALbwEUOO3UPMxqdFaEfA\nSVMhugIMdxcBdR4nHpyDuqTdWgRFjanaMUluaBlq3VbxtT1iTodQHQmHNDML\ng7hW1tQ+G5tzb9cbP639fkZvIkBH4I/iVJqswbFNXfPUi+I/aXN9MShPi07j\nW9couHlVEhZJFYarl7cV1OW5u6P5QttB+c7WsL5/e7FJr8riQgoctIyDVRA5\nfYWtsWfC3WF8BQX3VNH4YK3/L8+m2+hfESRQKSgsAw5vRwZhqSIuvBIvpbRY\nyXC47ld+wS/CderXz3yUJGF8hxfWX9Nz/lgpHfgHQ/d0v1J1cVPzy+s0cZAf\n/C+a2oh9AXWIBKpt8ilPhngIkr17fX7bYS5L4KosFAJ8gua/+UswX1h4kUR4\nWgujKRdXHQmvsNyqLU8JYNlptMNODj92SXvRuoiVt7geQrO0j+AWSN931ikq\nx5VQt1LOQRAKLT6nmsSYo39CR8IqaFivi8nkbASjjxKC+yjzCBfcjZqgt/lm\npBk9kh1Wx8+dqkWmFXHxeKNmPCo7fAH838O5cJGif2x0Ai3/+wsxdVA7TTq8\nFlIv\r\n=2J8l\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "fc44f5f9123f534ecbf76af65558eb87d90f1028", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.0.0_1644943802981_0.33945245682881464", + "host": "s3://npm-registry-packages" + } + }, + "3.1.2": { + "name": "minimatch", + "version": "3.1.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.1.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "19cd194bfd3e428f049a70817c038d89ab4be35b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "fileCount": 4, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "signatures": [ + { + "sig": "MEUCIQCjRUIUS0JXXl/vaCoh294tvrp6lut12ZaWVv4bh7mmWAIgDLzDZgvoXeXzGPeAuSItCyQASG/Nnk+X7NCGfbFFR9M=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34902, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDA3rCRA9TVsSAnZWagAAiV8P/iCEUNUKlBcB1VfJNYRv\noTlTsav1Jmjk2+W5Asvl+fMwzWDOf4irHs1SS8vArxogUEvM6UBeCZedmtcE\n8y/XYYf1f4rMIODe906e30Xv4bcfDqQOMhKrxQSI7d7LqUS2EHnk9tYL2ROL\nxiqzxL0a2Ujpc34YD9hqV9WyhHJaq5IprVqi01Vg0NggZvVYj59BsvadIGDE\nb5HYaQVPpmhLy1ykt7dAXUmRFWco1uCfwmMhyX8204ZjJS7keRwkuhHqAVp/\nSfWyXaQzKoEQNWVuWf7wp+u8DWctHAAza69bdzIMDZoa0wOukve5eScDw2ud\nXvs/3kHPy5Li862zjU/kQdZW3WmN3AM0vId8pvWEzt6uaMxYOB+ce+ZR/2c6\n0pWfwwxg65qn6FYUx7mU3aHjharqHNUoPuPUJCAdmjsSRwNUl9hvFhbWr1W9\nCXQBpo+dZd8Iw8nVLmFMVmAJrDOb/1aQcEHmiriYIcSY7wLY+XZuxtZwxnvm\nuYDEFCuSmASf4M7f+RY/okzxwsGk7gD5PL5bKb+kANYctCrke6wDLzDNCxJJ\nnQR37/YjSJUxExmJETSuAkRR0brKi9qeKMMX6tw+0ZkdixRElncpETz3MkrL\ng3F78+eu8oZcSIr4s9CwE6wlXnMl3zQgyYaVyeXnZ9OC4aQ+vWU05n8mQgH7\n6u+o\r\n=0kEM\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### allowWindowsEscape\n\nWindows path separator `\\` is by default converted to `/`, which\nprohibits the usage of `\\` as a escape character. This flag skips that\nbehavior and allows using the escape character.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": "*" + }, + "gitHead": "699c459443a6bd98f5b28197978f76e7f71467ac", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "v3-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.1.2_1644957163371_0.7957923209168807", + "host": "s3://npm-registry-packages" + } + }, + "3.0.8": { + "name": "minimatch", + "version": "3.0.8", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@3.0.8", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "fileCount": 4, + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "signatures": [ + { + "sig": "MEYCIQD9j916UDkpsBvOBuzz39QTDMU4OHnlfybNOqUJydinsAIhALl8i6QHw6K97fGn2+cHLbLOmssW4OQu7pSGA5UBbWNP", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34664, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDA4dCRA9TVsSAnZWagAAeioP/0HV719lTdfog4/rZpwJ\n5Pmi0W8eU2JRS+fvakOJs6rmqc/nalWIK4MXDrwTZici8lSdxm+N43fBP6Lw\nF9wTN9EQCoOwSzEPqRjjq/xlwCSIQazGeay3b/WmvS6mZ6xRLfcyZkv0kv5b\n/xz/6qIuPFIiZExdLGnWZv20a6i9rOxuA3x4Yc1OPZPo1vdc0X9syNEdRZOQ\nvKEh943p9N2Py+3kUUCuBvsuK3deGyScYaM7sT2/nUgQXt9wKpBTiop+xm4d\nR1ND8SZUVE18QTlvUbkIZ73ZtySLd1WI6tGBgk2PJf7U0iu0l+xga6ON4bEt\n4y3VYLddmPk0HHCBQslnEULb02JMv9O4hZ+2IJJbCIcxy2jxtqHbuE+cL5vz\nqbY6W+NuOJJ+kxhCv44p3+CCNK+Mx2ZZNAIBk0y4gMJVUDHnjLR0YkD2at/m\nm5NaLYo+WCtlxuHgrHtKT7tP/g2bO/09JjK6vpl7/Tf9zGc8iVQEQf9NrEWU\n84kQresJlMG5DSX8A3QFIQceifsL32XxrJm/vq1n5hEO91h5YmkDAY1aN+JC\nTuknw7LPEFf6dyx/5Ou3Jn6WQYgFAIdpJz5dmEWvEcQHfY2fYwnwhjmhAqJY\nlCrvCJa/7WcZ5EfRMwQYYCLh5G1Ec4tBzN8roA3z6m0nb/uS99fsEP7LdJIf\nc2mB\r\n=1I1l\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": "*" + }, + "gitHead": "782c264e9ff4b02b41923e827726e03c1bcaec28", + "scripts": { + "test": "tap", + "preversion": "npm test", + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "v3.0-legacy" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_3.0.8_1644957213544_0.7912394685327393", + "host": "s3://npm-registry-packages" + } + }, + "5.0.1": { + "name": "minimatch", + "version": "5.0.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.0.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "fb9022f7528125187c92bd9e9b6366be1cf3415b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "fileCount": 5, + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "signatures": [ + { + "sig": "MEUCIE78pBtDY1bp9T5HHzwqUppgLnMNx6dairfX/YajzeuIAiEAkMOeOdbQGcAU3c3zKplJrAD63SISphtLaN0uV9Pefpc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36629, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiF8c8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqRw/9G4cX4DFDDrPuwP+A6vTrjRIlur6L2EzI6odrdM1DFAwVXk8R\r\n3617gRLK923cZdU7oKKlPBepkb3TBj7OPp1NKspBQJnNHfiREkGy8EOCzQRa\r\nJzpynnTrYRhemYav3lDutWCnQqHVjB59CDljmSN2nUgr8i/DI6xeYAipFEwH\r\nvYYU8swj+Xmqkir8kMQAF7q+AxZ6JVOa1O3ydZSlnsdbqw0XiQhGVnY+sWOm\r\nNdSb6pOkqHgmoMOHaVb61cpvU8C7+AmSThGpjuRg4QbOtcdVBiAO8bw8mCva\r\nXV+a3tggCCT6ImtJWgR2dEHZL6Ld9LsGKrQQ4nuN/z1b0Ti0jj6z9kS2jycT\r\noiFi7QzFX1fbPlZp3aPjiI+LSMNGrww5/C1Hbgg3Jd3VjelEf6v+pSjf1ski\r\nLlVJDn/22x6TmBlxTDezk2sXmkD2Kcn0CqZUzDyMXiXumrj7CeN8nNzepIxZ\r\nNikX9qIQlAtKoEFT62ZaY32usvvcb637oNxp8ucXi/lwWDCCOe8Tq1l8np6V\r\nj/CA+mN/EopGXvwebSn2eQHEUZHsCn3W9BKlR5YPRwaDedeZ9UR6tuP/Ag3B\r\ngNVJj/akzxAhgLRLnXvO+gT5gfmcUb2FBsJ+mjk31dpAetWF0U7q2ZkOYapc\r\npP7JaRxCS3GSOktJkKLTe02cJQo2c7g9CKk=\r\n=izgi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "9f49616b782481f3bc352ca76db958b813f14fe8", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.4.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "17.5.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.0.1_1645725500668_0.7098368038728715", + "host": "s3://npm-registry-packages" + } + }, + "5.1.0": { + "name": "minimatch", + "version": "5.1.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "1717b464f4971b144f6aabe8f2d0b8e4511e09c7", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "fileCount": 5, + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "signatures": [ + { + "sig": "MEYCIQCtEjMkg2cM5mBWKX+XLT8M+6vOTh2EvuCdLm3jykxhTAIhAKsTKSqNIOYklL56ap6FMJg3zm4/9gCHcmEOtzuB2AIA", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37474, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigngYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpp+w//f9ljiJNtvG+7F9qrWhwsYVagbeVJv2yZMn+/vAUN7S/f4k2e\r\nbPhboYu8F5PZxVC0cfLUihwEWMXNdWJBTNnBf76Qiu0Ody6d8PRm7HvdufI6\r\ndK7UbIm+fG+ksNYgTzzqwdD0oE6WqH1Cblv4t48MalNbwTKBLWtG/ZXsJEko\r\niffSzk1/QSbcfq/gt/uWS3iSKbxvWy5xQZLxAEfXWbLZKxlwIWtfoQ3Cu9Z4\r\nQoeq4zxHWSSMiAzD/0y8g57+5wOjC/FZkimdZqVJdMvcj1vXEAEHL8aTdhVp\r\naP2RZ9GssHIsJ8KcLMGP/LGa3sMLfAfzPvXMnSKkgE8d9qIzB3BtpoG9jaKU\r\nkkdhBkhH+5/d3LAZ2ymlUr5GqEq6XXhMEDP/6GgRWIo2BCEiOlpipLyKfOCW\r\nvA4YihgqBlO10xPARVY8ho7aW+IyOxGY3i9423cdXJIQdBViHxgmt0yUP5gx\r\nnObtuzsdm5G/qU2T2A4FGihFYm1WqSKZw/dEFGn/LkVS/WmOsAtjDuSbKEZ1\r\nKXZwEURd+AC9bY5CMKFQDuGMcAKdAaZ6T525uO0hD3feTVOVSkn11wHALA6j\r\n7exPJsd7pzTXt9EOlGB72kkgI7yXKwadV4DiFXvR4MBomU7ULVAy7ThH69fG\r\nM9Ywv58oz12RSA5BMLXQWeKOVl3Fb4dtV/E=\r\n=fBM9\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "6410ef32f59e4842121ca13eefacdf0b3da8533c", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "8.8.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.1.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.0_1652717591716_0.7625770559447562", + "host": "s3://npm-registry-packages" + } + }, + "5.1.1": { + "name": "minimatch", + "version": "5.1.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "6c9dffcf9927ff2a31e74b5af11adf8b9604b022", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz", + "fileCount": 5, + "integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==", + "signatures": [ + { + "sig": "MEUCIQCiQSitNr/7uI1kFENWZX0vcKe9UDUBoC+DVUbD2yu/yQIgV/AO6JaHWOn0hQn0Lk/Gxa4gy7PHShmOA4oeIuLoBFo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37478, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhmywACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPtQ/+LM+Kr1W84r9tv5SH0DziKuKHUYBoeJVs2f6qTuDoXcX8udLu\r\nP+DudiKurMPX8lvz008MEE+LzXlMWn+BjLVyiJU1LY9bJxiQGZfro2NDwIpD\r\nJ8facuYIn+I2/Gdf3y/AsT7hQOqE4Hing3uJ/PtSxuhI2zVsEGMV+AIYBXGi\r\nR3ygNF+Vo1kI8ZJVobReECn69zK4+RymFV4bKz0vv0hLvtsFPBx1JnniD2v3\r\npL3WsAdSyZSb3+frr+rSpWBshRX0Xh2PdH8Mt2RpF6cbA7S7bRqZaiz/LOab\r\nNuIWdGgPKqZG9a23s4U+5QNDCtvM1rgxyxa0hvEZbwl2piV9QL1QpGyIVH7K\r\nYizwIMtwFvH8nW3hhTD/75qMJhHrv4crm/769QGqtM9n07qLqOuhetF/NL9b\r\nC15zCMpjju4vXyFwOsx9bBpKQ3zuJ7lWWGF66wD3XWAm0SqkJGN7DB6bgqGr\r\nTqsCUdXDAHjdT2hG7XtYhQEI9Vw/if3HKkjJKkaRmjDVMiFLOnnThXFsrb4K\r\nG8uTUggazR8Nwjik/Gom5jq3Cd6iCEbFkXS2d9rK/xPhB0O82xrXHyojEnAx\r\nlWsTRbZ2BEfbguZ6LKgFwX+tMWWwG+KA6SwKStRysiZZrBDRVTWmg7XajKzs\r\nB5bg1ZkzlxuM2XPyurpxespGH0RN7CpANws=\r\n=C0Ma\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "493a42f9412a7d46c0c977c51f8e202caf417269", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.1.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.1.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.1_1669754032689_0.6542352854745834", + "host": "s3://npm-registry-packages" + } + }, + "5.1.2": { + "name": "minimatch", + "version": "5.1.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "0939d7d6f0898acbd1508abe534d1929368a8fff", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.2.tgz", + "fileCount": 5, + "integrity": "sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==", + "signatures": [ + { + "sig": "MEUCIQD3Ec9ljPRKPyC3kiypGbZBKui8o9w3B5Xct1ois/RzfgIgLILSPW00ASWsayyp/dhi8hZ3chuSZFtbrfo4FSRz/0Y=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37608, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjodDNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnWRAAlD7Vpt007BzI12H1M0EdWh+AvfIRI47HcFuniBcoFOvc2BMr\r\necqJTYbGGOH6Qtt7s+fQ3j3njIWdl84OWqJjaYb3eyTuWdPv7u4sDkqgzoH8\r\n0fdWW7MsTf6Kk8c77DjaPMWJnsGIWBHd6KrNp9utVtm0Aa+uYUAEEhVWcEE0\r\nMkTSmfWxEdEyf1QpwRKVvfV/qQJ6MGs45iivtVydVDH4cgoCuHPnjEoLgcYK\r\nszAW3hOG543FnWjzbfn0uiTA9P10Y6f8R1klQChO7MtQ9pXy/vfE2d/izXvH\r\naeZo1svYWAxlCmG/ObYpMib8v68hm2XqETRPDtJqoXYtc21wA9YHUn9nm345\r\nR/r4LvHgECAH/hejIEwmqITlVnJDpVxlfbejyiwsKXoHqCOy1c0OwpWOQHUG\r\nWWL+aRd9DSmUymICjlQhaWqUKc24GSO1V198MNJgnKbfGKedIo80bs7vXuMQ\r\nGynWc9bbSKLJdjGwzoTOgH4KtvL2puh461OsqzEhIV0agrpMI2HfDrwoaoIA\r\n4js5+k/u9q8t/HJitgWZLwQVqXInI8NFQc6znutfjob20oiPO6xt63ekUDhI\r\nS0xRChCSwoLf/nLRjYkyK+AXuKZch7IaCmdBDQy+PZdSO4g1F2iOreW18pzI\r\nHTPwoRttMK1W33b65bY/DDtferpEtTrew78=\r\n=GQJt\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "baa35781c7b4a121543996eb9e89dba4d9e9953b", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.1.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.1.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.2_1671549133721_0.9672506961819634", + "host": "s3://npm-registry-packages" + } + }, + "5.1.3": { + "name": "minimatch", + "version": "5.1.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "10ae385b8cb023b634156a145fb365331b9aee5d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.3.tgz", + "fileCount": 5, + "integrity": "sha512-yR0LpRkZBFmItN6as1GnWLpkKQNb8bbOWqb1ndXXnCtk97W/DM+GWc25WmTmOaP6/Mk4L4pI082ukXkYwOrmUA==", + "signatures": [ + { + "sig": "MEQCIHgT5p1IrGDLkUH4BPinPmiQPMGWNZLww4FNKv8OOEHvAiAxyHgikMe0gltNmuQhmHk+XtX/rOPh0MLz1MIWXMlYJw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37617, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwvpfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDkg//RR66RECu+rUasyKZv7pN4Q/Y5MLcjZOHH7/BcS/CxCX0+Tuv\r\nvgK/z8MwfvyY+WKMcw00tx8cpOg14u3E/JaytAmrHY2l7XvtEWz62c4FdzMr\r\nCyUZL8LvB5bR09Xd/ZcQw3P42qBbJ/yejHDNzImtkddcXbDdVyRvznKojTqh\r\nmlXl8SPoQ12r6QDaRzXbICko7XnOq4XR8t+cgL0tTaaS2/6iqqmKDddc8c8x\r\nOFVBSYmLxF/9mGuKOpbrkfvZ6XBRCnMTRkbW25edqYaYcB/TRS+Lii+Krrdw\r\nyUNLGmX3e685fI30PFeJ4BTeK5Qd7zGRkhh7yCJHVBmwBoizfUavT7xhesWV\r\nj6hN0SDnftTKjci5klcABA3djhAol2Msx99W0HQX8xaJarXC2G/ekQt5VM9x\r\nUFJYRZBqA287x+HYuIQLLvpRKgCw4m6OEaanoxTpIpFeBovHeU0CmSWBsBDA\r\np1oHIuYdkPwqxeIf+EkAQQhqRIaEiUTMcX4T43dYZQhKUN4bjCKzYAKduuTY\r\nt4jwrl9xe19hV6XVWrf4cuqOrpcM1JkSOGNiZc69I9mec4S1ALzVzcah4uTH\r\no7zG6Gvrc9Xr4mNizSsFn+qEw++LM6MVzFD6+gjAtU4DTCm48kRri4DRc1/D\r\nRgvKU/OI+AXtqLu48r5agWJI0DRKzfhpqUs=\r\n=kJw5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "9b42a9c252502016f7a318a28e3bcf9f325893f6", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.3_1673722463227_0.0543677901522126", + "host": "s3://npm-registry-packages" + } + }, + "5.1.4": { + "name": "minimatch", + "version": "5.1.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "4e2d39d872684e97b309a9104251c3f1aa4e9d1c", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.4.tgz", + "fileCount": 5, + "integrity": "sha512-U0iNYXt9wALljzfnGkhFSy5sAC6/SCR3JrHrlsdJz4kF8MvhTRQNiC59iUi1iqsitV7abrNAJWElVL9pdnoUgw==", + "signatures": [ + { + "sig": "MEYCIQCwZf4A13X7thWAHPVz25pR3cf5wjShqg867g4qvNM3SQIhAPEPDwv5bWn86QENNjx3Lr65NRAX0woIq0ux2vXE/cfP", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37788, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwv3zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqebRAAhEzcJKI4XZgJZ8hdLjc2lxGfI2Cp2reEgrWRHtjATJz6tBe/\r\nk32t1pAdBxI2vqbgYb3ob9Z8bIJpkUJOjh1ekSpjrQiRwdb0Uq4r14VOj+M3\r\nA+nLsNsOFpTz9q+SEoVW5DAoufiNr5FatshK6NVNekzYWRqxbavNenwxsVsA\r\ndkgaFSO9q26klW5GftJ2zcqfaXY7vS/riWKiNrmknRtKU1CXupTmkz+ia9NZ\r\n5rYv7HYjL5g0HUgK7zcBznsWPflIWB0v6o1j2krBRtZwF1oXMXVou+TLL+7t\r\n0zYTIzGvZQ/4IriFEgG3PF5QnLN0LK3v+FGqRVai8hDtOO1QAxvr/XqccfLL\r\nRzOiqL7hOPCYL3dpuIvfzumAAZt81NqUSlaRwE8i2mnkNBk2oEaBqBbHL+/h\r\n0SEoWXz0KOnq+qeDa6zYzzjkLnrXNpXiCLiQEclHYNFoNhJrwecZBEHDNBQc\r\nyeCmbeYeENi6MHNdTP7Z5enA1SX7TJjCwzbYw/XudZ2EJDgGYWZnuMcytwZ2\r\n9x0d9TVt2sih37/dWDUAtqQtMgql6MRTppwvPgo4j0kge6Tg+V8nzMfSoKPL\r\n0bW3KwDb0ooCW2ciP+fvlGYyjIwJKkANJqkxGXozlkBBMpup+eUp8B+0l3lY\r\nVrCjPweX+iI3EP1oIgLqF0NR3tlKbVNw09k=\r\n=YU4r\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "engines": { + "node": ">=10" + }, + "gitHead": "857a631ae19537b01d440aa2b4f77a6f07ab3eed", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^16.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.4_1673723379203_0.10104771982469174", + "host": "s3://npm-registry-packages" + } + }, + "6.0.0": { + "name": "minimatch", + "version": "6.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e00d2875b7ae572f9e699e674fdfdab587aa1fdd", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.0.tgz", + "fileCount": 11, + "integrity": "sha512-6c/YhQ/ZnMCtAGMJTuPQlk1Q6ig41qn1laC1H/AU6dIIgurKxxfh0OEALh9V4+vPcy2VC670D46TOGc8dirt6w==", + "signatures": [ + { + "sig": "MEUCICizfJvXoYBDSMcGaGVUS2CefsaWcjwin+MGPZ8p0KpDAiEA2NMxIgaaR+pFi39mGy08ERwtXGPkTJeVYPlpjU0AHGY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 136820, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwxl2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp9Bw/7BYke0jpMhqRwEgRerjU7xGDvDTG1s/29AIImToQBhX20uP0o\r\nVERg2A953FA+Fi/SG76ngG2fAEL7f3n1SU27M3mG6ofv0pBwPz+AksFBEFCx\r\nejZI7/ozekxuyq4CcLSkLLVJ0izRWxsDoM3FXo9sbZVo/euEmx+CFa77HdtT\r\nQuMxekC3avkWE6f8DWsUdO7ffQrtfir4rbbQjB62hXju+FoqMksSJUpGjD6a\r\ntDrLkQB/KyVBPhEwFMFcyyLPTO/xFfXEZhIXbaCiKe76y5RR8Rz+bCP6LIJR\r\nosZFQDuXHaRu2BsB7J3k23OcRmElbnEsNG0eztuHg53yrF1TXFxxRCCv3LJv\r\n4EB2CtZYPU0XD4/kwmerBd1H0r83VTdonz4wTvOjxIopxv9/jIP9IhtqOxIa\r\nJrNJMwWEEAR3FmzgDL52X0bMMZ8Yz7FParj9oIw6lMzzHJ4cVKXyEE982lLn\r\n91W+MfMNg4RL1N1gUMpYvXZgMItra2+jOp1miD6D4EU19tiurypKE7sDjG5E\r\n20h6pMu7pbueUH3c+muOeFY28k1Um+brvuVvj0mt/MczrQt2O+vFM8spaHdd\r\np/FBQP9lUUb0fPK3YPhW6upDpDtbOx+tHe8BGM62PcH64AM22lO+r/HGnk5m\r\nxYs/RyYPVtDf/uWpE/6K3v2255dpvGs1uXc=\r\n=dONy\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "types": "./dist/cjs/index.d.ts", + "import": "./dist/mjs/index.js", + "require": "./dist/cjs/index.js" + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "31f61eeaa6c4493f81bf5eb0a146f23e538fdfd7", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.0.0_1673730422676_0.9559884162297128", + "host": "s3://npm-registry-packages" + } + }, + "6.0.1": { + "name": "minimatch", + "version": "6.0.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.0.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "3b098e1b2e152b325d00be05080a3a4a31b2a53b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.1.tgz", + "fileCount": 11, + "integrity": "sha512-xmOf/NJae19NcLRIC3LQYGtEuHhbmLFTL/B6fmpD3+mkB3fmAt4NmiqBMVzq6ffycJqazfitJ5bQan3yzUDLCw==", + "signatures": [ + { + "sig": "MEUCIQDu3pAG4MKa9OOKo488YJv9qNK63MroUqK0OpfpexcjdQIgM0yu2doQ5jZcskB8Ns8qFgZYTYVI9APF8QE/46p3yxM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 136820, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxDnlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXyRAAiaggNUc375auQkBNsBdh/pN6HXU3g+9Menfw4fNsMchJeIjm\r\n6lw0VcLxEs14PCwG5BFlvu0L7y1d5iPRrbbgM3uUhd3qOImGAGc07HVazBov\r\nR2kJfV44z1adxIJW2xeCu9nNmKGh63ZqrqHAvd7FgNiRs7Cq4n7SupIsOvgv\r\nEYpibICS5Uv8vJPn2k7UUnXLZc6UkMjt6uxHZAaRgrYcIzBXcsi2I2Sd6zsG\r\n4mwFb6b4WLAiWyYYaK+8Uts0UE0r89I0JJXQ21V1Mq+nRSYcc1ZxH+eQRqXP\r\nbQz3OVhnOqw0+3N8jmARpJhWXV9wR2511pDc1FzrywunGyZerrR4531BllRf\r\n3UG38laaGwqBwkXBim0jAR7nXNZMe3qnLlfrC+ogphCJBK3k5eqRo3PpR6cz\r\n8M0jAZsxtVSJhthxWzEnspP2tu9O7E5h6hzgAlEGwDWDM6lwK4WQEU8nVL3v\r\neODcfU3cacV6+NMJPdqFy1/SAaomtJgXdpVoadjA8Qrnxlxxuc43+hF9dclo\r\nS4n+kcQN+etrT4xFWXygd3+w2BkSsRk0nDGpKRr9YolI/QkEspBmaVTI4jSw\r\ndZfEdCGz2DC8eUxSROhczyFCQJ29G/mEuXdHeU8tcWpCf6WVQt0DxWJGKUxz\r\nFW42HlOI8qdUYnwfERVs7AlsWRkoZgIzPzU=\r\n=1qEI\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "types": "./dist/cjs/index.d.ts", + "import": "./dist/mjs/index.js", + "require": "./dist/cjs/index.js" + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "8910265b5a1c368d519f63d5264cc743db95628c", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.0.1_1673804261217_0.8802099473212495", + "host": "s3://npm-registry-packages" + } + }, + "6.0.2": { + "name": "minimatch", + "version": "6.0.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.0.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "769d72a5988f266b201676d8c47eb65b76b92ca1", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.2.tgz", + "fileCount": 11, + "integrity": "sha512-grITTAm/pe4x0n/9/KKLhIWuMb+zqdK7QkFWa4/E2Xp98yyCOmYqm+CP/3dnd5v9Km1s2OYeSvsjSUPN2/oS7g==", + "signatures": [ + { + "sig": "MEQCIHIk+HE35dRvOkpb+bWBouilXuou4Y1uZ26c95toOiIvAiBIz5irQpA6at/Boh5NKB0kDrEUVrKkEHtpXb9djZu1rA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 136922, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxG9zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9zRAAlZrFUWowg+PCpQIh7ROh8dHcK9f/WjubPghn817F4NAMCzud\r\noH6VRFOCs5Svtfi/zLuoAVHqJYYinM92usetG5uLF1luAp39zQiO5p5q+q0G\r\n7bk1WyIK06H8Wlrrkw768Zk6KD8pWMlj6ElJdSlwjyZ0kzCFqQkvRWhz53y3\r\nxwdGKDsJaNdM4ba4251oDLdYYaj5CqKsbaJ2+BiVGpUb5aGgkI506+Met+YS\r\n6veGvVE5e+TKbnVItyOX01NNRD8TJRnezHELMc/rHglL+98HPg7Lccb0fzDV\r\nexFapQ2UOatuqT8NixTPca0PoWxN5KvqyuFTS7n3mZ6sOQREJJ4+2gYoXSqL\r\nh3JWCbusVXggtjeIcjrSW7NMCHVOIzE8ol7l+xtWKzAGUYuuBOSk4TFPj+/7\r\nAFCVxPldgxU/jCrNLl0Z3KHV5HS2ljQgaEYOlGtzranr7G+0z8VCdXHSzgpk\r\nHr32tH76IY/np5a7ocoEaOivKfz8hKZAqeVjl+SwmKEOhIVWw+eatCuxof/m\r\n6pl/qcRoyBZCpEaWFp5g+JPOuEIqwRUEFpRWnFSTi2RRzzaS/ldLXkirIwAi\r\nbFpXS7kAq6+6sIg70Lmge1SEn5mx6qgGs9gucFnO3eGyr5INw/jSPyZT32uX\r\nQ+rFfQV7wgb4P02DjYZfNBfWrcxOhK+8FhY=\r\n=QBTe\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "de4052acda8476cc96f552ae3569e3639ef3ff27", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.0.2_1673817971486_0.6356428605867932", + "host": "s3://npm-registry-packages" + } + }, + "6.0.3": { + "name": "minimatch", + "version": "6.0.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.0.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "9859768163dde0e998635f3a89068e96144a51bd", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.3.tgz", + "fileCount": 11, + "integrity": "sha512-MEMLwGVOlRN2AT3u2YEuC101XLzw8kxrYe3sfGLeSoNe0rK3gQAchxsMxlVqFhmkIX/lwFiQSnANfydPOWCR5g==", + "signatures": [ + { + "sig": "MEQCIHHHlLXvNWoiEJS9z4LFmxnbNjlzTkSoGXJ89Ot1W9j0AiATKjQKSSnun6zi/nvXr+iJ6jUvn1Uj7WGnucbwGBzxUA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 137184, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxIdSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpgUQ/+MvcPBbBp2D8aRoMNV1KF7zwUZWu79HV4Q0PrHHIQMJIkLc8n\r\nYshNms/3jPTg9dm+uX2VGlm4x6CrzQz0u9qPkdG1hKaTWxbhtGv2DkNVS2nM\r\ntcUq7UsSE3SOLWpBBnVs7dF0eMs4dBJyjhaXx6AEsnAbXgjD6JLbMUdrATau\r\nr+GGsCvAdKDdJlB+VhgIp1eq9Zwc/6r1QwDRXagRU88QuLLu3DZXHOo6clrS\r\nGBu2rSRES7htPsaDt8paeGNy/nXcB+l6srvfMjqqCRZtr7gSzoG5bP2Aw8XN\r\nlbynWg+J3TlNyHgMmlDNLHCaaUOE2xHtHpxPq0BSUaaffPK9kjxxQsQvLS9K\r\nLew1A4uCDVhLLIIGEV01DKQIp+n9h/F5XIO7BcNP8mqfT+C0nbLFgUZ0WEQ3\r\n2sekZQi0OttVnP8Q263EmfGQh6rfkCOIP+NpjLIpsGbGmwmVFrgxchjpBPDG\r\nVb51Z1TFzA3vF+WhyzdxKaLT9dh56cUWAagmQUgLg6vVyUIwabYMknspLe6H\r\nOHt6s30ru6tfYDa3ksNj8U6mfNdWKadHzE4eVrndCfK1YoO3nMN0NZu83GkI\r\nNMRYIiujN6/2ADOv7PFKoCD2U1yhYQyKHoJ2ZPJYx7n4wu3czaJs0vIO7Q0n\r\npMzRai/3QU09GpDgfubbMDtS90a08bryvQ0=\r\n=zJ+0\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "6c0c46421bd0175b546cbfb819f4ce72bebdfbc1", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.0.3_1673824082277_0.210773342275409", + "host": "s3://npm-registry-packages" + } + }, + "6.0.4": { + "name": "minimatch", + "version": "6.0.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.0.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "cbada37326e86dc19434874a04e29df0ba64cb17", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.4.tgz", + "fileCount": 11, + "integrity": "sha512-9SQupyyavjdAc1VFjJS/5kdtFtlLAhKSWt7HocG0h/npy626jYrGegSslcM7Xxet5z0U9GOx9YbcpyIjBzn7tA==", + "signatures": [ + { + "sig": "MEUCIQDKzu5Lm1nkp2AJgpi3eTJcxXeSu2QDM7vdW6GFjMsCmAIgTtz+CVC1a+821YJqPppqHXN/EYUjMNfjzEDJtITAWQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 137410, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxK51ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpychAAn5DaALi0JryCkSUNfF+aqMJvd7C5UYh4pMNth3iWISpkAaoA\r\nCwpI4ubdUYtEFaBguy6ytnOPNJ4A6RQBBQ+oekARawraeMg9FcdGVe1ZCaBi\r\nLyfM9KWBf6MlyzYfpN87hNqiI86wndImf0l6SJWnNKgr6nrfy3dDzCWvk32T\r\n8hCUBOn0MifiSMrAtZfQ4lqpkaDY9MEXUvl5nXNBW+QFhUjV6QijVmSEnuny\r\ngZLqiD0wfnggtKX95beKidu7LBWS6FJNSwmRvTPF+SK9egK3Vj4ok4vcS5/5\r\n7U560+GJYhZ9zINMKllOGSPpI5R66W3Yf4moCeBtYnboN2rUA4+Swvr+4cmZ\r\nju/QSY7+VJLpq1ypE1mChfmR43KsTSAGjEvHGg1uP1Eqfah5wIHqwXrb4xLk\r\nXsaM2SgeLZ7kSPPVJqxDuezPn40gFSPhGezeZpGWn4QOXd6TOavcPoy/3/s1\r\nLPXuRHIAqdYITXkF+YoK0jGkSkp8Sv0FZnyVFNjvZxYUOfMkb38RUAdjK+mT\r\nvbz1uNSjMscsOZbhD1I1sfEEeAGLqXQBb/ppu6oS2nQQMxaehO43H0g/B7wx\r\nWryduV/+AJEahYelOLiJdz7OD4ICadz7X9ZkrttrLZSgtxSCW9fAOHEp48DV\r\nR3TbgTx1jzWL/b5zkgR6ScBORHGRSW8tJTY=\r\n=LHCi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "0f4727498887820a72bade310a2472b9e0f01e0f", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.2.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.0.4_1673834101595_0.2678741342289297", + "host": "s3://npm-registry-packages" + } + }, + "6.1.0": { + "name": "minimatch", + "version": "6.1.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e0eafd0a19977f5accebd4b3909a34f6611d4288", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.0.tgz", + "fileCount": 11, + "integrity": "sha512-eqe4xaKs1/JmNylXNFY2f41n3jNZAZTZlmOitWd71YazZlvvXMtzL+gK67jRKhrTQmHfrCbErYWV8z9Nz4aNuQ==", + "signatures": [ + { + "sig": "MEQCIAtc0m94ajC5hFAjl1GOKxfsj38ljN/0RLF5btlDV+bgAiAgW2vnJzI/KbEcWfcY+lGC3VQiexMa4DJEZePFXutPZg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 148388, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxkoKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqwRxAAm1qIzgH86Wy7CK5uHrQVO7qdrvIJjykGCpUfTWA3SHiE/+Ud\r\nHD8vBe9DVYHmecE+RkYYqZ5/ms7n7yKLIbf2QemchIvUoepBWeFiJIaPpN/O\r\n6x/PVsDOMReu7y0CgrByqLyl2Ua7BuPnFkd3o+W4YfBD/9lZVeGv9mb9HWl6\r\nkYownTP9vT9LDBoetmyfMXvGR1Y7Wh68Eb18L2qzxQRTp12Lo66ustnZ6h3+\r\nMJ5vH8QE9w8nw47q5ibP16YwifLM+TjYnhT7NbTZSNjS6ginK1VcpocJgNNu\r\nN+VSX37xMV+6ZC/kiWQk3j+BmEr/DCo1vMNCdxjoAKuOqElfqUjg/YB6fLBL\r\nSLCxrT7PPfEHJHKoW9fDEH8m15X2QwLFpQXVa8wtx2Dpyjc2/QqwYarXToew\r\n12maQN17I4sSzG5/QbIqKcQSkCJzjBKfsJKiXniQ3Msi99xxhkUz57xZaIGs\r\nD2n0WVhJwrewQiS9jVHvw+gRfozW5q5qcJrH2WILE/WVDCQ6QNdw3x3UMNyG\r\ncFpUIp4NNYL1zRlWxNVDeUvHQKAHDDteVphgkZvzFZCsMNXboLt3oXwuRc97\r\nx5/5MNGwFQLkNhuiJhxTuxFC8pbT3kCM3zaAjnAY+FgsrsETYgEnBU+3BMAN\r\nzsh+O2k3s9qgziA2qpn2TZPRgRAqcrCSm0g=\r\n=ouF5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "0e7b19e667c0aac25271e3a55992fc3f8692d1cc", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.0_1673939466104_0.014389871239345986", + "host": "s3://npm-registry-packages" + } + }, + "6.1.1": { + "name": "minimatch", + "version": "6.1.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "79b77e6296ea6fefa1c83d86c7e667d2d4bb3cb2", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.1.tgz", + "fileCount": 11, + "integrity": "sha512-cNBGP54dXiAnbZWHrEh9nSHXNX5vvX+E3N9sF6F8vLYujV8TiCjDv0qSStGUlZEJEyaclfVh0qxok5PQFx+kTA==", + "signatures": [ + { + "sig": "MEYCIQCe/wY30MutOwgoEMhwz4HsQiAXAOr8BkEiLkBuwLWMMQIhANfZpzeQjisHvDzS+hKZqQluSqdjE+5+V0Om0uMfks26", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 148692, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxrdFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmovEA//b1nPvbSCrfGn5TJj+mHGQmxN54/75HJddGvNVgrLKSkg/ym8\r\nk/yb2uKyc4tQF31fHt2elDvoPnwfZ+p/zSB3moI+8ID/qlHszOct2fhCJb7L\r\nVN3byvM1Ia2PN41AtVf/ftJdbP0H0CfxuIS06iB5oMMUalJEyUjDRejCJGBb\r\ncs61ZBlrWttblKydXwV8s4MWc69oHk8b0dBtA/JlXg7nhGB6iPc9LtLnB5uC\r\nV6B92rdWTv3MmQZvdsR1TNSD/fAIMGQXagszhru6MTWClffkOpynGB1aCPqz\r\nBOePSeIggmjZpLzm413+qdXopiq8CVKp8iw/b2YrrPL0CPIAGhoKmc79Zhyj\r\nOueiekMS5VR1atScRATJd11QMwqU1nnwto3BC2vMBqy+OOK73jiLV4CRCPzi\r\ndpkcHIbdgxbntyf0lBR2KqL+h150qn5sak4QvRIa5OZbTqT5vuEa56x6/c91\r\nhEucnJOGC8iXtmy8ULkHMbTooayOX06dyNGjudCe+dAPtPPWWymmKriPBiwV\r\nhGT3gLIH3Je8ygaCR+FbkTt3arspVX50Y6QjsVE/yOVH2CmgCSORfgMxPIrY\r\nAbi0fMJl0udo7WpUdQulIdXSJnBJ9HX3HddN38cjOn+O2atH7xhJ9xjZtYol\r\nEkTWipJ3h09468D8Kp1VISH1vbV09cWOhqY=\r\n=gHfG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "c80b476c37644e5420e81a01433c00ae0d9ca4ee", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.1_1673967429051_0.5208000526416932", + "host": "s3://npm-registry-packages" + } + }, + "6.1.2": { + "name": "minimatch", + "version": "6.1.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "f09f2db04a72f7a57a3bc42a7d1a22c8c89270da", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.2.tgz", + "fileCount": 14, + "integrity": "sha512-5sS5vZsmC5o2bfPV1n2mpmYuOvrfVVY45fi0z+rfKPwx2aXrZF1XeCbSbWWENAi90YDK7bM3TRo74BB9h2zBgQ==", + "signatures": [ + { + "sig": "MEUCICz/4BNxYohwVLqwd0w2DvpUcMEFkdqftoK5iTGLNhKaAiEA1QymwUWEznkJZSE9AH4FLhyymoH/cMBJY7xrUdw1N4g=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 151910, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxriNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpEzhAAmk1pKI2NmBz0Doon2ARMxh35IYXxcuOb67ZY1f+ED70v6OBv\r\nMEd7iMzmtzNsmTHSe7STnTymMwfKHFKRBRfjvpM63ddKL01TNqzDohk9jF+D\r\n2hakXTV0qQzFAE9cpORGwRNKahGxlgm6En86dqcWS6wV6aGkK+99kyVLABjW\r\n+qRL9j9UOi/1m5kdL0Bc5xene4iD8lRZX8/U3nzsiqMepwKzO2H1b7vsRJG8\r\nZEQlPE3C6rrsDNQHOlHH2jcEvcjq5Hfpfze/uHaJeW993X5l/DUjOELUODcO\r\nZ4CIW6ctRmUcSOjlkq+FkQescyyuTvRWV/6cPgkVrjcGqggGkoF7I8znJyPP\r\nVSmj2qQDSFvRlPzPEufIufCpZ6Kig1MedhLyHEE4rSKeU0CED2VfxDzTwiAn\r\nwvLDR1qViMB5rFFF2dGjDkq9zNFPqM2MeHaxP0s/GvGScHTBeXjbyqlqjCES\r\nNPPc1wmZgTOfZlK2J5rUhfx0Wl6PC9d1TLg4x7X8lUcnejlUMeC4Lv9dyHem\r\now89UbfWVyZfm0PuNirDDZ3LmD729B0DvR6me1HKCvyOr5LwIRGQnsDa1oLF\r\nKX+7rA631gCDFV+b9hOf7o92uiX5Rr6UT7ZMLUc3ZZi4n4wlaOSVGnrAWozP\r\ntKFl6rWNNE0KLXoe4I3rKx95AK5GenQitcI=\r\n=u4eC\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "58c673594a360ff686732f032aa1211a4c09962a", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.2_1673967756909_0.3468366850312836", + "host": "s3://npm-registry-packages" + } + }, + "5.1.5": { + "name": "minimatch", + "version": "5.1.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "cabd894be2c2091e01fd09211326dfd996ee022d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.5.tgz", + "fileCount": 5, + "integrity": "sha512-CI8wwdrll4ehjPAqs8TL8lBPyNnpZlQI02Wn8C1weNz/QbUbjh3OMxgMKSnvqfKFdLlks3EzHB9tO0BqGc3phQ==", + "signatures": [ + { + "sig": "MEUCIQCHJSQL0WRrIdK5sNSq44O+RZFHnK4Rf8QSNlnK0ZTUDQIgZCbuh3utfERZ0JGU1hLTzs2D+5tTlK7XU25UZZCz/Ck=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37912, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxrjrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZvxAAnWbr1r/+nLZEAoJpnyEWSVwqhxlORxKU7dLDqu+K91VqgGpx\r\nJUPgn0m0ko6yWGdbr9vYF8vHmB2ICl+Fa7yqFJzzoT2i5vYAFDCw48/BMm6G\r\n3NsWxMSlwr1KhhkyMvee/ERNmlOcZ8hV15UIuHGtEiA9JzfwHO38Gi2/fhXJ\r\nnbjlY9u5d6AOXvbWLfnXjmvlB7tg3jVuGfpup150pmMGVN2qXyFiyC5H/FzW\r\nKbLSGas2qvwoMQ7oQN9dwSsNoWZmryXd+LugCtkaj5uCVIZk3c2HxkNQkhLh\r\noSFnYheIOtjDuc+SE8sJHUrqghc6BF6M5EJG5tHAwUwZFxZV37/xnwHlhTru\r\nept2uDjmRo6Vec+UB/eNkiuWKJy3p12ZjNZwbHN5oFA6TCST0ktrWmJHXdGk\r\n1aq/77K2yHpKX0ei2dQgads0UP/Kzi67swDF2q8hJyHMBJ13uzHh9rp0L6AL\r\nxZCtemHAX4CLpMe7XY+OFLeXKTTQ4iDFhicm9+Tg5X63PY3++K9ZmlfbKHjm\r\n9GgQ98vAoYLwWwvnTOQCcQUJltpHXkGTKfWAe+EyOABjPzp4xoWg1UQAj5wc\r\nwAd1CO+eh9L9sYeTPUBLVOTCNei2lpuKOej0cDrKV5WFn8lqGxk9iteGMHB7\r\nSnAftyn8PkuYL3nVA3WrE0l5ZShsp7id67o=\r\n=Ddjw\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes in patterns\nwill always be interpreted as escape characters, not path separators.\n\nNote that `\\` or `/` _will_ be interpreted as path separators in paths on\nWindows, and will match against `/` in glob expressions.\n\nSo just always use `/` in patterns.\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true})\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### windowsPathsNoEscape\n\nUse `\\\\` as a path separator _only_, and _never_ as an escape\ncharacter. If set, all `\\\\` characters are replaced with `/` in\nthe pattern. Note that this makes it **impossible** to match\nagainst paths containing literal glob pattern characters, but\nallows matching with patterns constructed using `path.join()` and\n`path.resolve()` on Windows platforms, mimicking the (buggy!)\nbehavior of earlier versions on Windows. Please use with\ncaution, and be mindful of [the caveat about Windows\npaths](#windows).\n\nFor legacy reasons, this is also set if\n`options.allowWindowsEscape` is set to the exact value `false`.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\nNote that `fnmatch(3)` in libc is an extremely naive string comparison\nmatcher, which does not do anything special for slashes. This library is\ndesigned to be used in glob searching and file walkers, and so it does do\nspecial things with `/`. Thus, `foo*` will not match `foo/bar` in this\nlibrary, even though it would in `fnmatch(3)`.\n", + "engines": { + "node": ">=10" + }, + "gitHead": "9556826e34e25112efab082ccf7db62de9343f5f", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "publishConfig": { + "tag": "legacy-v5" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^16.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.5_1673967850924_0.4526126725098829", + "host": "s3://npm-registry-packages" + } + }, + "4.2.2": { + "name": "minimatch", + "version": "4.2.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.2.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "2d2c05fd94ee370ed49275dcbb9a3d050c342795", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.2.tgz", + "fileCount": 4, + "integrity": "sha512-irqDyJjDrUjbx9QWe5giqW3tltdpUk263Qiw4BVMLv+uzQR0/udYN5h08kI14npUPRXIpbSWXFC9p2Z7K9ZlXw==", + "signatures": [ + { + "sig": "MEUCIQCZwm/SZ8C2ZxyIhupuBSh6nyEJF8UFSErBysix7METXwIgedaWR7We3yhpe0wA56mz5Dw7Eg5ywhdI4C1vZg2u0NU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36157, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxroaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8Hw//Xr2EAx8sfk2Av9cn0daiNWIHwn4buFmXjAx2eFTkmaUtaPjf\r\nkpCKUc8qnu+sOfwkMzuX/EhfYSuYSeUAok40z6QksJa7ASPj+e4o8H95IR0o\r\nj6vMFILqmJYchPdmXkxSJhfqqyyHTgokp0ZNyDIsC8YHyKvkVUVP4pDT6FgA\r\n9fO53FW+3NXPeQHhBYSXsIXp/ZSFkuFYoCcH9SMFfzRM3lw/e/4a0X77iu8R\r\n6InrQTgH8rmXQ5xHwDZiFyrk7yhaRCCcvJYJDAeJx3QCZR5t/KPxATGJV7Kw\r\neGKllhIHAuJaYgceKvKqmhhI1ZdIvGrIaU2QMzh3/5C0sQS81dzvpIwMRWE1\r\n0nF5Iwe8dukX5EbwNBKtdLKV04MNy/z0g/UgiZKZ97Tz1T9gQZ7LND5DqMry\r\nDnMOcHYx3QVhCumXtEsFPLRdO7W3jWCPxCzY9shpQhA1QPwajOB415N60mEs\r\nVsX9Qqn44YRJCFiu2ktGnpK64/sWodWNAnRv6ldW8ACjh+JeUydPM6SaI7BT\r\nl0SOEL2AELg4QF1VPez3Z/B6McN7e9DplTkGI6FLDYOveQvroQo3QfebEhkm\r\nATxOcRcK0kmu5F9H6Xqqh8bq7gKDmkb6t/cqd3f2R2bzIjz7EdF6cNwQod7o\r\nadS+pI5EEtV5O464W+a1YD/9ETW0J1677Yo=\r\n=dr+J\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### allowWindowsEscape\n\nWindows path separator `\\` is by default converted to `/`, which\nprohibits the usage of `\\` as a escape character. This flag skips that\nbehavior and allows using the escape character.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": ">=10" + }, + "gitHead": "465c25e349a3b85bf376e6241bf478a7742ca486", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "legacy-v4" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.2.2_1673968154122_0.06961205614674726", + "host": "s3://npm-registry-packages" + } + }, + "6.1.3": { + "name": "minimatch", + "version": "6.1.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "edfdcf136a4a495a31cf427e5344505b3640a5d7", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.3.tgz", + "fileCount": 14, + "integrity": "sha512-hTKbHAihZdzpD4K9mhG0dqv+j+D7kAHlPfEb7BQA712xP9afhS3x5pyoYrGqZYJd5PpawOp5V20rkFki5jDZKQ==", + "signatures": [ + { + "sig": "MEUCIQDp3EbVAWBab1gESRE7RPYCWmhqfHI8T3KdcGo9nC3GLAIgEgQBsSOzex9I76UNXdQG/iNv3McnbQomWDRVqwDM+M8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 155932, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxtm7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrwURAAnhoGOalHjR6LhwnfsY3Hh5Ov+y724l5aUxfIfpHKQA4oi5hQ\r\nTX5MxgAcl5s4mg5Kr/cdUee4j21Auq8ltYGBBiCXHvrHwTAdh+Uws7wewKb2\r\nof4jrl9652qY19jH+BSbsWIVYh8tBiilR88dDdJwGwsn8onQ3hwK6sQGfIdT\r\n/CYODedLiD+Nws7hrzljAMQGZ6wjWmX/IPbkuUx6Fib03tsql19nzoinq8FL\r\n0ZJrSZLyUTzXvBuGREjIc6UPVXRqggks+QvvrQctXyc9qR+jIrZvmfQqp4nG\r\nYrqrJ7OW9fE/xf/F8WM1XDoVx8C4MlN2pLTXnSlA5cC5pD+POiKfx4AQj0y6\r\nd2WvHO36WzJhV1jtxDFnnOcQGnUuCOJOEL0yuFaSQRMdf3xgL0gHEsY3YY0I\r\nArIdfj1aQ6Jrz9xMA0dKU0TLA3r5xZTRRXEJPdDrFO9w6xWFPSlNaRMAHvIc\r\nZgE4CLqInU9BYuwCIFyU+ztbs7R2tc0jufnTm7+dTCfdd+0pWJ0irPqAhKvw\r\n8dzroIpNap36pcAK7eDbNYZC/uDugfxm1vx8U/PKtUwcufA4ms1Y5lv17Utx\r\noWn0GGyz0ddOzoX0gEBQEi73TXARXXHPo3HBPHbnwX1xmgSb7GBDuHxE0wcM\r\n+HhpbNpW0ZfAY9+eJ4VXh20FJ/R7+JC1Y6I=\r\n=V7fJ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "9ddf1df5d987988378a9e557a26f96011d673b8a", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.3_1673976251473_0.37049608623819186", + "host": "s3://npm-registry-packages" + } + }, + "6.1.4": { + "name": "minimatch", + "version": "6.1.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "f34f10bd5f67d7b1aa0032931f2dac64adb51c81", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.4.tgz", + "fileCount": 14, + "integrity": "sha512-NsDTCCf9qKxjUUxSfhnF2AbYR9xSpWvJx/HL/4E+KbqhKqdHMXjn81So56Hga/lpyhXL98aLPZLdPmUUEyIrWA==", + "signatures": [ + { + "sig": "MEYCIQCoXOQhXdg22yl6MUy1SDfAIZ4++tWZrMPvVXi1LTzDzgIhANF1OWvdLO9oZWtUKipqg+5APRpxZ/7WOlMdwXUoApjw", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 156178, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxt73ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqY2Q//ROArySs+MYltfaP6gImJz8eiXkJC+tqvaajL+V+1AoCrpikD\r\nh2Ms09mkista7cNZNrwAP8vBTOzwNJTMEzUanjnXB0MHilkNFtY0lP9GH7GQ\r\nA0DJlPSexcR7jyfCfjOX4oO7uzVN7e6X9AW9o2/52o/kK5ngKOh4z8RFKiOQ\r\nJMStP3O3boh7CLsZ1DisbvgIiaBGp03OKwum1bkUMKKqjRoCUMhWyo+4oQzD\r\nOJ/BXv7k1vACWQgJP2KyTUf64ggzAxqbLB8aZZiI3XxplnnvB4CaeLtkhOhd\r\nzskE3jP07cKz11R3Yv5lIWNx5e26X9FmiJUYlVASEKGcAGJXwJQfQzftEmjz\r\nBgR9iTHVlUl+xnTuAC7xodeC3fkEKb9pqVCT9jl248lUUEuIdXoQ4fgpp0zX\r\nbXOjXBg9qj6Nf+LDQ0vBYZDqw3H1yGYfqvS25STQXKhJUB2skR1zpd1rV68w\r\njIWWacKuDBVk4z6/dRsZR3VEH5vom4TIhxLzvBZXrZaWzMT0KD3MOg//twjj\r\nY0F2rFAvsx2Oo/S413UZ+1SpxL6qUyOxsmhOwlx8QmDjUeRDCvyulWEp4US9\r\n8/ws3l2OK52jgF4wr/Gcab93YU99YR3vpgEQFA7Hpv2jn3vBAvOjWzPdANhu\r\nWCOlVNI5nCESczX7v56dgV6Xqs8YF2BOyJc=\r\n=oFmP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "040cd419177aac1c50b962e828cd967bad8a178f", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.4_1673977591461_0.14965598486836384", + "host": "s3://npm-registry-packages" + } + }, + "5.1.6": { + "name": "minimatch", + "version": "5.1.6", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@5.1.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "1cfcb8cf5522ea69952cd2af95ae09477f122a96", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "fileCount": 5, + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "signatures": [ + { + "sig": "MEYCIQDiMjtuM8wCBI1A20eMmJjguXdJs9emsSfkyNrP9HfX9gIhAJiQHdN0U5+b5hYdykGXicc/CoiJu7mYZLpfjuHt3xel", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 38919, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxvsdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqlgQ/9ELWjZ+57ildeZ1IQyYJ/WYaaGCjqth+pGej5n40f/2GrBNH5\r\nEl3IbiTHuihdfb2NsxzZySieGNor7vFSL4sZEah6h3atWMvbkKYdYTEhpopi\r\nREkRpqOMcbLfrhYOwplT51iNaOutqLm7enUF53OrAf6/VgiQE6dBChJc3KDn\r\nXDtsdQiKUY9IpEpZR47VB8HSupYrH2e4p+fQKbwF2k9xuFGmWdf16V6sGFNh\r\nBqNTSYVzjSoQWF+k+9P3qlJEuAlmj3OmC/lsBrvpvmwMn6bH3dCTltt4REwo\r\nqlROVwV3gYXzPv/8FOOJK8jEWG49SxgGvgzNxu+WxGT7fJL3YyzYIQZpNzzR\r\nwFwO/zRCW4fLK52RrJ8fNelXavCcssrB7TmoqT2e0Yk3BIGkUNdSBEnFQItJ\r\nBBtA+T06Rp2u9XSUj6IObvU9tAz4s2qSSmXNv7//otXn2Cg1NESAz7lIxBA4\r\nm175qE3D1hLqobf65uXAngwVuleD896/m7ncclPQf6HRbWf9k7fA5WgRQIMT\r\nRZsJpTrxqHadZuvFItWe9hscXDuwbXZVahV3wwTgUmfXFS4hh2Eq/UK/0NTY\r\npHvQcJi024PAq+LLgI89J9k7i+TIT8YI1Vk33+hUODBAmXUSiVSSyzRyzX1h\r\n+7SmY0CxASDdlYg4YmNaInkbqQ4M40MkBG8=\r\n=Z9Zl\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes in patterns\nwill always be interpreted as escape characters, not path separators.\n\nNote that `\\` or `/` _will_ be interpreted as path separators in paths on\nWindows, and will match against `/` in glob expressions.\n\nSo just always use `/` in patterns.\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true})\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### windowsPathsNoEscape\n\nUse `\\\\` as a path separator _only_, and _never_ as an escape\ncharacter. If set, all `\\\\` characters are replaced with `/` in\nthe pattern. Note that this makes it **impossible** to match\nagainst paths containing literal glob pattern characters, but\nallows matching with patterns constructed using `path.join()` and\n`path.resolve()` on Windows platforms, mimicking the (buggy!)\nbehavior of earlier versions on Windows. Please use with\ncaution, and be mindful of [the caveat about Windows\npaths](#windows).\n\nFor legacy reasons, this is also set if\n`options.allowWindowsEscape` is set to the exact value `false`.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\nNote that `fnmatch(3)` in libc is an extremely naive string comparison\nmatcher, which does not do anything special for slashes. This library is\ndesigned to be used in glob searching and file walkers, and so it does do\nspecial things with `/`. Thus, `foo*` will not match `foo/bar` in this\nlibrary, even though it would in `fnmatch(3)`.\n", + "engines": { + "node": ">=10" + }, + "gitHead": "3e216b9cf09528b8cbb90c5ecc01d054326d8f85", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "publishConfig": { + "tag": "legacy-v5" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^16.3.2" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_5.1.6_1673984797276_0.0929935685939185", + "host": "s3://npm-registry-packages" + } + }, + "4.2.3": { + "name": "minimatch", + "version": "4.2.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@4.2.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dist": { + "shasum": "b4dcece1d674dee104bb0fb833ebb85a78cbbca6", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz", + "fileCount": 4, + "integrity": "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==", + "signatures": [ + { + "sig": "MEUCIEOmujqloN0Tft0Nw57LOOuQOr0AhWETXoIiT0vqh5Z0AiEAippOmoNyvYkpXoKFwE+/q9psUsBXAmb2jm4LrBS5Z4E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37164, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxvs4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqphhAAkWCMSsfK0hfQHjBLB+yU3pNpSdeVuhtNTQLm7boyAv+x47GS\r\n65ybRsVb7n6yuua0tRIU6p2xueVBQOFkTpykLk+qzP2wNfW4GhdzjlILWnlx\r\nvJUWpHGbTlAluyFnh2flhlLgwSLPZsCADoNvc4VWdbN1SsGYzrpt3wYGsc8h\r\nBuhSMjuNX5SENUYvUNlCwUPrd0AHynC0IU5ijlAgMeChuxBSk2sNqanjO/uu\r\nT1R07zkR+kUWtlOgwSlqEk6+YIwvuYh4S4j1DRX5AioOVyyCjPsR1Z8kXOQr\r\n8Z4jKeDFs5tZfITveurXqejM0+VcoP5OzW8w2NBi62cnDBQMvz/JKdXGh7a8\r\n52gciU3T+IvZSPmMJFAgJEhq1m3GMFIHw4iDr5zb11HgyHBAQTLDb+u4hfIv\r\nUdzcUYkytjPe1dQCy6jlktD+epKJSPT5XDfcLVNcInLjflTKvhXMw61f5p5E\r\n5thc7zwhmPS5c7fwNawGmYJ93dku/yIAqyKzjhxck8+qIWXprrJssXbxz/AK\r\nzvURUtKuhlyJcnSd2B2y+zVC/yZDY7AcK129n4wpqVeCGoHrxn/G0HObRGGw\r\nriM7Xv1D+OZVynHOlxgx3qe7ngea5TAZIFaNiv3KhmRMGDv9Jlb4AG/+P9Tl\r\ngMcaS9KIVw+LUHsgxzWRhRJW9ai9Zyv7sfw=\r\n=6XsP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "minimatch.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://travis-ci.org/isaacs/minimatch.svg?branch=master)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### allowWindowsEscape\n\nWindows path separator `\\` is by default converted to `/`, which\nprohibits the usage of `\\` as a escape character. This flag skips that\nbehavior and allows using the escape character.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", + "engines": { + "node": ">=10" + }, + "gitHead": "b1f802285460e88460bf8e71c0707298a56c48ac", + "scripts": { + "snap": "tap", + "test": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "publishConfig": { + "tag": "legacy-v4" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "tap": "^15.1.6" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_4.2.3_1673984824631_0.433523385660598", + "host": "s3://npm-registry-packages" + } + }, + "6.1.5": { + "name": "minimatch", + "version": "6.1.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "61adaa90e59b29022fd8e326364f0336e4f9282d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.5.tgz", + "fileCount": 14, + "integrity": "sha512-2/WxnHMkH7qFS+pG8ibLN5GZdx5Y0aLlgFSghaKRUpkeEmC85wZRb/xDvj9jv601KdNOS2G/nNqj2h6k42yxBQ==", + "signatures": [ + { + "sig": "MEUCIQCZIJGjUut0GzgsdWp6O8N1K9w4KaaYba6YdpedpqCtWgIgbIbV9RpKppcVttyECnQGACedMQh5b7gUqjse1gxphtQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 156178, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxx59ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3yA//Q+auWKpDwXCEZDvAQ20Q+cMjrtbL1HMfPdXVS+CuudgNTLBl\r\nGGJsVYN+PhftSQ6Q/Iy6rMWQzIstAMHmprAaAODCaeLUfSgJMlO1gg8ek3dA\r\nT1YcN+9rfRTtkO4redTGLek+5Do134JvsKb4OLKUIM3+nNFXhvtAcy/b8XuM\r\nhgYxoILPbd4NXDOOryLpcY892A0btha1lT66uJz+CPEJss7b8m8dtywxasR8\r\nq2oEJ0aP9HwgC8neiX6dJ69/vfkrVuZOdauWXTgy8dVrXRN9HkizY3mqqR4d\r\ng+avk29soJ+TWxRJrgBNvFkVcJC4YUiu380ZQq/v8p/KjAEvLx+AX1SUYP99\r\nl2/B+V4LbCJnUq8Bg24X6LbzhAkyxI61HHkGopR+ENw7zhhcaudM6OB6qpra\r\nNLggZbEM8S/aQpY/kcIIHEp4TZOFUw7lPNdq79TO5/AQ9GxTABy9JyXgAy5F\r\nQd6FZdm2uQ+8r9aMBT6ga5depkCscQov+yM9No2swC0pN/c09csgvS3B4LwG\r\n9pIc22U43zte/snIbxs2YlqaT7ZdANkDD+W2XXU0zvVbWiplS7p4ACsz3ydr\r\n47YSJiteuQRKUSUu5tzBaZqonvVGOrwytj2e4W6SSYp4Kkd39MmGHE7MpIeI\r\n6VeoCdKmIEs3A2jdbyyo/cx3ssUieMYrLak=\r\n=SY7B\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "04ab899ab7c13051c2a86ff15ce6543c5e723290", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.5_1673993852906_0.7226141523595293", + "host": "s3://npm-registry-packages" + } + }, + "6.1.6": { + "name": "minimatch", + "version": "6.1.6", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "5384bb324be5b5dae12a567c03d22908febd0ddd", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.6.tgz", + "fileCount": 20, + "integrity": "sha512-6bR3UIeh/DF8+p6A9Spyuy67ShOq42rOkHWi7eUe3Ua99Zo5lZfGC6lJJWkeoK4k9jQFT3Pl7czhTXimG2XheA==", + "signatures": [ + { + "sig": "MEQCIAU7+bQt5y/4dzl5JX8eUidYEAP2TbmIJLLV80NTqDPPAiAn/4whptPpB/YTtjDkdWVdfrtu+UoY6uuel36sTzo6tw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 158548, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzXfGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrX1A/+I7lBYgXrP6tMY9848ZT/Osbq6gMy2fsbPaFqehBQQEHfQ6O0\r\nQcMBVVkja1KhslvOXdR/V2j1FysDsvM6QwlJ1aNiVgG052wQQVJM8dxU3bZS\r\n0tm0+t16xjgx6dPp111dy2FdtQs4glX3ymd9qydRnmmg+K2HL7j36GjQAGTP\r\n4Yxauc7yl5U2gJzzIvK1Gspg3xT/CcGHMvQb17I36SHCpgxv9FKDXj5ecEJD\r\n8ihdrrX9BE0rbZsxRt1sKv1aNcJiTgcQujcDzkRwd71i4X7g77GuV7G0iseh\r\n8INxu4EMD02KIvAEQ1xAYQFFIoUWvQm+UkUyh3SsHhVeAUcp45nXBjS1283I\r\ndVycGYTm46ZKhSEC6kJABqQmH5PwLi7JOPE0Yteqfh4qAOqZj3xk6ZQ/7cGk\r\n11mjm5JAKpJnvRc7veNhv7jRos16XZPu8QrLXtMT9nLTCY4pbBrpyG+2GauY\r\npLcluMCqwWcJ+mQdgPteDn+WI59CExJlcajHLZrhQ8qK14R9yl8VFz6SLPXh\r\npZT6lsCmfM/J0GjzQBEPTU1o50mxATyH/nHu7pJse/HVNvAcYfDBVSlTleZO\r\nn3+YQWHqeJNC96Xed6O7qQDX7SoZ3fDGEpUOHmwyNQsOl3FEVBQqOw81TAVi\r\nSIudRtmVl66KU+B1i32iF7QutFaiC3xBXks=\r\n=yuY6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "aec47a5a869e3eafe55826ea0322ff5fd5338f99", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "19.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.6_1674409926159_0.6215933488106167", + "host": "s3://npm-registry-packages" + } + }, + "6.1.7": { + "name": "minimatch", + "version": "6.1.7", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.7", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "42f838160e09c0d72d385d8ae36b4419a77f4284", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.7.tgz", + "fileCount": 20, + "integrity": "sha512-n2nxgpaqchIzQ5VdaL58aAwncIaSJBB8Bn8rbfnuCGm6qy20iZUiN6uqS07/e0SFexS6mDHvz1kewu86OdciYQ==", + "signatures": [ + { + "sig": "MEUCIQDuBNqwhqjOvI5id6lOn3H1rBO316REPCtTqHAARqbpzwIgbOjaEXLFTGGbtI2534LSHnkWLgUzOuMTAmyCmqeCZK4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 170986, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5/ubACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBsw//Uo6sZTOTgJ+TXGlQ3gYszVTZc0cOT8QIbarIgBilZxgdWJoH\r\nvbN9BzJqnrbKKXJ7GW+mawernPR1WAsqcHCgyk1b075BY+TxWXLZR9sUW+0y\r\nr1YiCUxwuya5Q+Yn9SADLunldgsmrw27QWFBAZ8nQ6UbDR0xjGR4OJI1UBvG\r\nl5WV+7nl5GWK1E4W2Up4GNWvUvgZCfzaLqA5eAaQLYeky3TJmRcR+nVus4DE\r\nyobiLicOAIxH2LtAYab8uH9sqIf03OCKUvA3l6lWcz56cIgdFGAZeCAm985o\r\nOiueYoxvEhu+Io9iFhj9GdL7SQMQtmze04T/1wuw6xlEEgBZLLUxwp9hfO1S\r\nzX/ssM5h7ChqHQqMCuwQxqAgIzb5eUu35v19bnfJoXqTcELrp3V85V+SXuL2\r\nmilw4WvpwaWbLJ7bWLEW8O43IFzHkcxq3xyu4WJGtjfFC9smLGgcLmOzy/T2\r\nQSimBSr7rodOHbe6J1MJfAG0kKMa9fPAnRcbalBEWSYnCpC35K80uV+FQHqY\r\nQmUz5ivIB+wOmR3dNDvn1c38hjsHLHXonFVr4RRXVeVWh8mpLHgKUE1RHHsq\r\n1uDdTAnS9wu0YuC2WRCyYT+T1R7HrosZx8y48NAYp0J9tjbqfe4f8wUQD0Z3\r\njz6DgGuQRjG4NntXEXVZc1jwPPsAdQ07ntg=\r\n=Ftl5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "61df471534e225f70ac14781190c9ce3eb9114b1", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.7_1676147611212_0.02873018235140057", + "host": "s3://npm-registry-packages" + } + }, + "6.1.8": { + "name": "minimatch", + "version": "6.1.8", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.8", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "5a0ea694ca41342e14561bbec62802b59509f7e4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.8.tgz", + "fileCount": 14, + "integrity": "sha512-sTvS8Q4mIZiSnMo9192lZMxfeaGCslH5CC7B62hd9DlbifUVrc02ABTeRJINPosxKnvZlrmAaNSo8f4PZqDDdw==", + "signatures": [ + { + "sig": "MEYCIQCGwVhcwBJFuIcqBySxI3Njwh4tM5vJqw+REnf7Co8SkAIhAKzkvk/ewdiaQEH/rqKW+AmakFJ90TLb40m46AJEQXhm", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 175392, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6AQrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpFsw/9EXr2leur2zJt/OP2aO8knrsOscJc2d6nRLfr7tdIuYsE39aA\r\nMP2Gp5AXpvcpfM+MeIJcSPQbR1y38Q5CtSY82oysxP9nfx0daFx4ULh2GrDu\r\nQEoh4KHzzA0n3VxDkUGYhZShHSgbuHjhiDITPAlOfhC5bvxSA96qHhtmQqvI\r\nyJ8HZYrPCynhjV7CRa87W0dCyqy1nitk9T6plllHw9xDTZoznUUDmEN4yegA\r\nCuZIas2+sSXKhtiGqx8qSJmcU438Z8zcvnjV+kZnGrxL63kV8ZD+1d+lqpoS\r\n2Ad816tGkzfc/UOHd0HU93wlAhIu+0r7aw52v+pFSAcx1um8F9ixsCgfSZ2z\r\ngCbivoxGZpy7MdlMqQ4pq6DXlKtgwaOnaOMm5faVzFe7vQS+nOhFQFkSkF7l\r\nKDQ2cWHw9Xofxmus1Wvga9kfyEMZ9Nke4QixrwPqPiNiU1uXnHMmQsGSJl84\r\n5fAGerOpMuiIDdo3Nx+Bn5GkLkr/sMBhEgIkeNZyNnUg6Y3eEZxgDyCch4mE\r\nAyCwHE7VD764rlchJYo7ap1m6KnWMOOm3+ZsFHQMafcEn7y6b4zhdXmBMEb0\r\nJklpMBSTBB0Gi/R9+fGRHNYyGkizFtEsH4tLwAQ7xnU1W1BWBOtEWbvk+c+t\r\n7zGucf8gqzOiU+rkCBRFV2i1VVceF9fivt0=\r\n=U3C6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "ee4861b752dc5f7f4a7e5c21b90c3f66354838c6", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.3.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.8_1676149803315_0.4070319014417969", + "host": "s3://npm-registry-packages" + } + }, + "6.1.9": { + "name": "minimatch", + "version": "6.1.9", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.9", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "b4035a25d7175e3801e1d75e1f3f4d65c9e537ec", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.9.tgz", + "fileCount": 14, + "integrity": "sha512-6Vjiyqqav1xqJqQzMFOS/tHZi3vn0bGsKykLvK36uUj9FtZdq6XpIdHXBjoln/q+i3mTTGFeBGzhZ44wLtFQyw==", + "signatures": [ + { + "sig": "MEUCIDHKqBnwKEgKP6azkUKCaS+h51Vih3slzE2WlovKOdJfAiEA1DY6OkrU4OrLmMzpNXB/WxAjiUtXWzGuNccnDP95dV4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 176798, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6d6MACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/nQ//cHxnY6kbSauxTC3HzX9SQbeD4PUDgSn7mEECi12kzxgIJOQd\r\n12pj7BALE4yt4ap4wAdXJ7iiVhjSbi/o1I7/j3JGoxg5JXimIqlohYvp1Di4\r\nf9Zql0wTz8bD9RAocPqJiLRqy8ky4dgyCUrqx4newI3cdyb6SugqXvhvKa4l\r\n85S9KMIkuog859jpcW0b6EKyxYobUmQK92JDc5XQEHR/vMC97DeU12GEtIby\r\nRFHfv36arO+Q/Kwn2mqxd1jMq38TNwThu01GQhS+34GULnOYZUbiYcsEDrr8\r\nBQel0QRoegye1SI3LLZsTAa/pTDg5K+yXmWjWduDm6I7XFXuHbgwopaIJ5QX\r\nMgWzx3tmJ1KgmQ2iFCi08FeLsDFH0Ax0lgxA4Gqr6k745JQq8zok+Qkh4DNr\r\nuwDUpiD6Anb91zunVMnL7aIYileLhnPBJF+bgj8B0HZgDWxlstL+P0VKO/jy\r\nIoUhEbeRoao0rSvZjTFlZVyaZcEpcanblQ3E9DbgKpIUafBvMri48dMazjTO\r\n0NvquwQsfy7cqk8n5lIVYiSqHLZwuw/078CNYEGJ9xcZm3mUwt/309ogT0en\r\nZpIOoHOzPAsr0ANpjFhi+Lvfmh3eT9xUNR0+2raa+as6f6ved/GT/8NmHX5L\r\nULnL1E07FkjNmHSk7Q7dygHpY6nStEnZPFE=\r\n=h38E\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "a26fe302d59afdc0af340617383352f780b8fa33", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.9_1676271244101_0.701385115615359", + "host": "s3://npm-registry-packages" + } + }, + "6.1.10": { + "name": "minimatch", + "version": "6.1.10", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.1.10", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "36762bb7c69cd5830b432627c9a4f7cb91ce4e80", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.10.tgz", + "fileCount": 14, + "integrity": "sha512-+zx+2Cp+C4Ar8yNvGtxbLr7AjblzdF16P8CeyZEEGVAIhTLHM51wchc6+JKQkxdznmQtHn/dWQgzt5SiU3+leg==", + "signatures": [ + { + "sig": "MEUCIGhx86MK/L1dFB9L2TT2Q6PrzxHaQSev0f0STVmpyKrmAiEApRMSbbbjZGE1BKRGRJaeTV33d9QM/k85POpzozjsnF4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 177339, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6fLWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogIw/+PvbaCQYr3juLder+JCMv1Nn+5mpvVzqQIhJxCBLwb5NvOdbE\r\nu09VqqXs/YcOl3Sn3IuOS+knrf8zJW6guTlALsUJJkEEw+0IVXwEB42/6Va8\r\ny9RnUBkXpjwRPejtTWXgtJawyr9cyYxA5y0SQCenZGpt3XcqcAziugOXqnHd\r\n+H3VkncH4rwX+awqV2K5wCDe4qSuO1tHYXL5QLLb5vZ0i6kgaSK/s75myEBz\r\neoXsUeRBIdaioTVbYBNz8GLzGIwBxBPEm7Rn1UTSvIP7BbVIcXEhHH1j7yoy\r\npFlMmUIOJqcwGWLYMqB0JS8QK67G06RYPSDDfhkq3+q8Qqofoue7i/jHX1PD\r\ns3UEtE/kD//9mnERMgvdIlEUJMA1Ikz38E72r+EX/FfwZjF6Ux4mzpSPvhpI\r\nT+ImoEnCX1w+wFHOMoy8+YAXp9eAJogi2hI5Hcr1rAn7N80k2RDhhKk8IM1C\r\n1iWHY/1tBGlaJDnZkkn0eiPCNysbP8P1dwc3eCpj1ED0ofv9dleRvS5RWfOk\r\nFA8cliJYcoluQQOinNlVGEqGY3IR66fbEF8W791cN7ZWXHT5+yfBCPSPsFnq\r\nKxYa5WO29LfTut1d0lI9/1ZLbRidUVndZ0LFyP7IfL8/lN0BBcdnLBq04bvH\r\n9JM4AMPZP1ZNayCE4/lVRCr+QivMYua6QbM=\r\n=qXHh\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "6b9f9b0d4db3e214835279deeb355a989887b440", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.1.10_1676276438746_0.8149328117530705", + "host": "s3://npm-registry-packages" + } + }, + "6.2.0": { + "name": "minimatch", + "version": "6.2.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@6.2.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "2b70fd13294178c69c04dfc05aebdb97a4e79e42", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.2.0.tgz", + "fileCount": 14, + "integrity": "sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==", + "signatures": [ + { + "sig": "MEUCIQCj7ndcLmGKNsQra+zikyJrfz5NMVIZiuCivhTT+X7cFwIgBUl7dw/fiW/dOJXPQf7xauVd68RKd9lFKF+g3f6YqRE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 177844, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6fuuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdBRAAi972eq79CjYf6G2cj2AkphjrdUXFiHUK+/QODOv2sPbfswWs\r\nh2iAFkmbyGwflSdOWQ3TQ/RP1RO1Op2FeVU4uQkkiELuJrc6XQFnnwLmq2/o\r\nD6JZ3gEGCrAVPu7TJCW6iG2WN8uxt+TgcghoSBxy8T4jZ8j2F+Kw6H784U11\r\nJNR/BefC6eRVRXfi0qHB5eMq3/TfrJIzxUxa6JjfpFUGH0JnjhcZVU54g5i9\r\nGW5sW8SmDJosoV28FDDzmoZUHrA5abL1Ix3O3sdyPGwgAhXpU+2bic9PDPtK\r\nZZXULG+SaknZbS7KOHR3VGD9676HdN9PpP1nryyP8FYln2JmB3S/zvde0qjV\r\ni9a5IDUBTadRU0YfsGzpbDTBZf+ZABL3TU3eDzFIHgTw0eyrFJGEEeoOvuSh\r\nEQ8h/HAeuY4hMxSLFsQuU1+l+f07rZi6BLurIo+Xm6rsTHnZG1s2BrDtObnE\r\nFXCbkr8Brub0wLjh1yLpYZaoR7Z00P9EkNy4FeGEDgCVvJNXn1nUKbz5Y2pl\r\ngR7PiPl08xpX2FHBydGcRMV5xb9DhMphKG2eGzu3CyqyRaalYz5BXzSX5sOk\r\nmGEoWcma3jNmrm0nUbeV9LBXEaqkc99/bFLFkRPk3JmxdeNZLiWAt3qHU88n\r\nk7chQT4hISltYduNR/YQAljTjkwUTqjE2wg=\r\n=EtI9\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "01ec3c0a48e25263a759f870fdb825c97445bbfb", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_6.2.0_1676278702175_0.4844215714962743", + "host": "s3://npm-registry-packages" + } + }, + "7.0.0": { + "name": "minimatch", + "version": "7.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "20a8df098715e228c918b2bd81f34d9543767a75", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.0.0.tgz", + "fileCount": 14, + "integrity": "sha512-Wog4y1P2q/0sF+0vw+6dWgqVmo/XPJg+2OtVmR6IVvNGDhcfAPjFacjZCUlGCoU/tbzH6EOeSt2P3llRAqRNiA==", + "signatures": [ + { + "sig": "MEUCIQCJ9HBS8Cvyw+Wik3oxdbVVrVp56Ye3s+5jMtA9kqpHUgIgamWqJZ8hzkqOOl7TvsNaxHGB0lTORUCaVQUXx+nLHys=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 196112, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8sLBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp5xQ/+NJUMhfq1aIIwpRq6279jC0Q5ofcpXL7qMTQ4MOozqS5jqB4C\r\ncWwr/vXHPlgoMgTJaQ3TI2e38AKvVOsqTZoUJrSdM9mkMh2RAA0e2b+TcJYS\r\nedi7ylnS4iI+oa0gxu27BrCQ/WsY5pGWWzoxMmvgpLbenUsdjwfvHnrOmqDM\r\nC0VBpGjx9ovpmKT1MdZR+vAkOdiY5h1CosHyfq4vbI0dnnToIQK7xJw9BX0/\r\nguXcfh/ouIFu2wKReNFsa3rCQFL1KhSMRg7swFrLgmH9W3gtqt6LxbXcVxaf\r\n67erd1ht2O09UPZPQBy4/p2WB6SoG9cMRqktewdyNVPnkGB9alusi5c2NsOP\r\n7sT7SL+dq5caZZcIxmrlFImS0MfFl5UCWTBpXLuGMJ+kn1WrJUI8fZ4+Ro7R\r\nrXfJhWb731+csv8RZZ1UC0CMJBifpTCcpp44hfYWbmSfQnoP2Wg44tvElXxB\r\n1RpeTfybMTX8NMrWSuwK7Adtv8lhSROFWzgtaylgutNZR0HLOsiaLAtECzoT\r\n9CDx50wbchXYxque4TTtkVIoh1bbqqJKDR0AH6eJQUu1FIC60cncGS13c5jw\r\nJPhZjzioByA3/mFxPkRY5JPMBGHnQq+9T25uI2tXlgQu7zvgqCIRNl7OM84H\r\n3HHKExJEyGXzFXeTkDv9KU8i76OVDmD/D70=\r\n=zrtZ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "ce9e6a4b42eb8a4c39eff1258affa9d37c66101b", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.0.0_1676853953384_0.5407872951362818", + "host": "s3://npm-registry-packages" + } + }, + "7.0.1": { + "name": "minimatch", + "version": "7.0.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.0.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "346583590577d192cab9b88514f1832b9509d737", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.0.1.tgz", + "fileCount": 20, + "integrity": "sha512-C4CrOG1kAnaIxQPTAoiAmZCR2up1yjDdseGpr8UCUw5UqBUao5E1q2bOv0cAX0+y8MUxcyrvkTsoj5DvGRnvdQ==", + "signatures": [ + { + "sig": "MEQCIA9KvkotgHfdmcJ4FLvOlyk2dTR1QKpMny16f8fBlShxAiAm3gx12+iw/BDEYMNGkH/XmH6uXW+lUMQjdUvtBiagtQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 309370, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9XeTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvGg//ZkHirZWiBU927LrRDUmSafeRP+f/oNUjQUUU9rQYuf2ktm8L\r\n/V9EMB9oMSIHTj8O9lPSUciQOel4iF0WaiugzcGsNwn8D9TfI7hai1v9JiyU\r\nuAqRwkKIaL8aHBi63YG4P93JnMFaPiSTDk2hcTgBawx5GUgWEuSyKQtGu/Sv\r\nAWdcB6ASfYL83WP6RbW6UfYJJLM/RKFqTJ0XCbASPEIaQG8H11FZ42ODRcEc\r\nSltg2geIsW8e+j9DTIYLg2rix0ENPAlMdWkrtcUaE55i7MFpFXGKcCI38QDU\r\nmkdmi1lewCOqqgsptji23pKkNRPnw1SA7j9zu9GOP9wZ+WrPrq6TYkUarCN/\r\nt4M/dmucE1fr7L/bXxyrz9mYC4Jsxh3nZGmlFQvBtn4RaZngvdg64Lvic41d\r\nH8DEBtwVvArKyOuBizT1lIVWZ7P2xnNUyq/agN+v5NXGaBLEVhWI+Ul76QtE\r\nfMF7hb/TsiWybozQA/rv8cq0U6nm5BAzHSNhPEzQR94RYHE8TGRs/+wTluBG\r\n1Hv3/7+QmHJV2L4oIxFwiIlFYHrYNRCE2S4UvlXBqiu0/M/C7L/stJaohDSL\r\nDX/+kLvGCgMyZFo09AwmHq3iACAsIicuFr0B6fwpZe1OgPd+3+N2NVwR8oqO\r\n4pBk8syCvuCQbP4SRfnJ+Edsu2HfMj3adqc=\r\n=9qOT\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "9130c1880391b9416630b050f31f4c0d114e228a", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.0.1_1677031314799_0.19671083509081821", + "host": "s3://npm-registry-packages" + } + }, + "7.1.0": { + "name": "minimatch", + "version": "7.1.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.1.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "8d3b0a361b02b4420c89fb2b8295621429c340ea", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.0.tgz", + "fileCount": 14, + "integrity": "sha512-ZRvZsrVXiuB/QDlJx7WPymFyOHQUntQOEH3vFIwCzs/fDnH/siHZQAmI6Zamx1J9u9S66ucgKXU0CnqHfi8Z4g==", + "signatures": [ + { + "sig": "MEQCIGfgH0GcF8fNnjxBtF+y83QIq1beuGXvmDIO1f37QpFiAiA7TqTayBOXDjhXA3aaD6advgmCI9z3O1ZwmpzixZjpxg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 212850, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9qkaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFOg/+NBU49pzRSFr6Wqd/wGE5Qfz5+iO6EFJNK2DLfkFcApY4veXX\r\nOKvd/rgWfyJ87ykZfq7crKUcqNooAfd8QXHKC4Dn8vypBR3PDJSwilQZiRmX\r\nvp8Z6glwOyxUNubZajX+SdLPjiwFkSC3yyLyvN8W9AUyMF+I1XlRjQtFt9x5\r\nn7mgbJaRG/A7Twq0uidfUMlWtoCKZ8qQIe/s8x6jRlvZRTM8FMbLqVUHtvG0\r\nQD4vtVdKOL1v2Gi24LbS8cUyAqx1FNKTcrad7qa6PccmlPJxEFnkJ/hJHeba\r\nqsydGoqjvWA1yZaI5b4YRegcA0mhIxC7yGdaYzkUEUVVNZubhgNYV4qHTE78\r\nOqaxnTpLd4aIaip7A6LRhNFg1bsYtVddtGpMlJH0QySAL4jxDf/h2IpMgOR1\r\nnTMiBeEMuuYiQykKD04Rpii760suGjAX4ghfXD+EZJKX2E6eHR+7pyRHAJMj\r\nEY9s/xu1KhSiZmVYvO9bNnuCB3c8SVl4aZ8Dy5SJH3ZC5fJR0lG2SvRvVsNw\r\nSb0mf7amXyLPpYznhgor04b0uyYiSX8g23M7yJeZ2IfsM0JRVj3O6ziQKnPl\r\ndhel/HNLFdFS+Wq76T/XvjfMh7/i4CqfIfV2Wy7L8Fbh5kypRnaK3cpcRzbx\r\nSzXGVXHndaF8jNgvm24mKelKz9calwYalzA=\r\n=PNgG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "40ddf3bc75487c4622ec6b42d15b6d38a9ea8613", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.1.0_1677109529777_0.09648821795068452", + "host": "s3://npm-registry-packages" + } + }, + "7.1.1": { + "name": "minimatch", + "version": "7.1.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.1.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "aeb8f7b0fef16531de96e56944b744860976d34a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.1.tgz", + "fileCount": 14, + "integrity": "sha512-jjK46CRPxSRHTwHYtg+7LJ4pmfg01JuCjYr24+PUi1zHtZ8rOABPA0cMHKBF4QNeKn1xYy4hiBOm57p56ClCjw==", + "signatures": [ + { + "sig": "MEQCIDs/TlPbKrqrS2iNcbsc4SldPwwXBy+0nkzcrrYlLyECAiAPrnGzw0gKOE9uAtR/oOEmHw943YdTh39rNJmnZO/EXA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 214386, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+AaIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5nQ/+Jl299beqbIgBQgWTMRg4ePdGZe9yYWmWz65JnDrKC9y2KBi7\r\n6RkfnqAEVn+4eWh4IwggJ+mki3GfuVdVqoyU1aBgOAY6A3QOxT2Op/PIHDgY\r\n/OA0gWLwoN94t+EVqwMdIUhnIdhSj4r/ybF3FaQBhPsH2RmjbpYJ3Vzg+3/7\r\nEszbQ6+QoxQiy6Fys5tw4HDn3EaZUqTS8Ze1RcvMQeKa2CTvPIkdRe0bzFH0\r\nZEhDVd6nzxSJ/KGVeEyFCl6b7sIYyO4RfDOLGJnee7rco1+HlBO6sQTIN9bt\r\nxNzOb2L0XkA8/DAlYrBihftsfQ8KL7difel3jfKqph8pHhrxIwNEw0HHjorA\r\n8Dp1Tnji1ZI2WTzR+MzpTFwHr2qFP5tDkZk/UqJyQ8+MB8/m9c66SmV2/kHX\r\n486EDUvNCHpr+OWcwhlxUf1G9onqpOM997cdf9AztbCxmWMTWmOXq4y1arKD\r\n9iKRQpvnErM2VK0Yq01rJ2EElWPR0OfYYiC22zC5CLmxMXKz0PPwUbSFDdRB\r\nQq5YOt4yYoV8Dk5+uV+syNrjp1xojnBdlOP8H3EXSZaVK7bJqF7h/cUaL7K5\r\nLIuiIqKLrq7Bx3RgyFuQiUqaXzlmcYpzyBx/mukKMW10qrLj92rqqEfz9FnA\r\nDHj4wpBULJgfzz6KXSoQaOVsUVsarVbYlZM=\r\n=BxD9\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "5f3438d346f0c4506a5be77d561626a754ce2ef9", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.4.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.1.1_1677198984595_0.5882418832347809", + "host": "s3://npm-registry-packages" + } + }, + "7.1.2": { + "name": "minimatch", + "version": "7.1.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.1.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "806a43e4366dbfebdcd63a9c59ce9987343a86f8", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.2.tgz", + "fileCount": 14, + "integrity": "sha512-pPjQK2t2CsPTwXy+uNJxAajN2qMK1T0np9aHx2d5DTzpW/75J2fpHDm1p16OQDhu4AI8NfCH1FdtgyZGWMxy3g==", + "signatures": [ + { + "sig": "MEUCIQCWB/oweztjhW23wwrtbows6+q3N8G6hpEoEIcmgA5rmQIgauWzsVQ5qqjpFgzPHClmLCgZsdEbVDqAJ9baCEYUSKo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 215636, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+UC6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnEw/7BvMhs8PBmsLTPfUDSOxhAbmrCyC1pzJ4WwEI7SaDpwzVCDXE\r\nsFIAAAfhDHG1i+atManziOcAYdQs9brJciesJONpfm4pBmFTEzywthrZpnub\r\nVLUf5vkZ2cgrhNSuK9rduebtwKuMkewDOvS4evKXUJ+hfdTizzG+V9f4SZvs\r\nxLwknlmwDggrghetWlfNyMr2mRQGs4wjDyaynSNPq6pCAntUXCOz1uBZ5jVI\r\nm74sBXLLsaDv6Xf+qh1ZazRG4CDZ/gu6FY41rW6SkUKY4/+Z0T3Si1t1agz5\r\neMQIhybpTYjPNwk88poCNDiVe7PvoRTWKMK7rBEC0EpD/Mmcp3K+w3HSWm9R\r\n05DUVvDgXFpfYpY+0C4db0v2wck+TU4rpUI4Hs8zK6MpxqrmRfPf2kXHESph\r\nKEzcyJq31coIamufiaJCuUWEzEpJGPW2qkuPy+zkL5x6XxG6w8APCq8PJxXh\r\nAChZB8cWl/aTg/Z3Nnzf36W2Y3nKuDaGtgzzLIKF5eLrhoVroyLhkdb0UN3r\r\nPOkqtAv9WfloGYNeHTojRuxD5S6zcHZVMytIUZy+cnal0Lk6YHgqFiSFSz/i\r\nTsd0DibLhEL6142Q2d8+nkzgBOIL9smC432XN4Zb3M7RsVgNs6HTn5PGD3mQ\r\n2P3vIdedN3U/P9cNcMrymaN9ju1nMwrCaOc=\r\n=e8HQ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index-cjs.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "36c50b76a16f79b6862ecaf2e73b0eaa0ed30701", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.1.2_1677279418017_0.7591099986781089", + "host": "s3://npm-registry-packages" + } + }, + "7.1.3": { + "name": "minimatch", + "version": "7.1.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.1.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "1e1f1af99d47b48b7133a641b0748ba039719d5e", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.3.tgz", + "fileCount": 14, + "integrity": "sha512-kpcwpcyeYtgSzpOvUf+9RiaPgrqtR2NwuqejBV2VkWxR+KC8jMWTb76zSlVJXy6ypbY39u66Un4gTk0ryiXm2g==", + "signatures": [ + { + "sig": "MEYCIQDLazKC6r+HWPMmG/fdT4V8QIUWBTEiDRQYyNF1W+5cFwIhAMudHByKav6+G3o1hsFf957ybdVIBkSA+Tf3oP48/PP9", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 215632, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+W1yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmquAA//dn/cBh8whXoFVdjvSLccIFudh6V5lhNWz+JXKoz4X7p7hu/q\r\nczIxBE4edtqTU9Q6MfqG/MoQ7I+FzFlBXjpWDju97Pc/tYmPo3T75BFUe24h\r\n7VXGb+vxXk3ePGqusABJ2UX7jYvEC/AIDt0fgLdYmTaGeiD4knuHOs7bTkIo\r\nlSHJNLJNVc6LHtiI8mYFEE41oJy+mQZpWrcFBohUoN38SaUhO0NmlnK7CMFy\r\nBsHP5cFODUpFdFffVXtr4VaGBCl4ubuczvsz3Mbpo3qiNCbior5eE/i39k0w\r\nNzH1JSprkMiICbChXNH6dXFL190e3bN7tVK+IjnsoZalwjbfxAMts+SOZf6N\r\ncrldp0pt+QA1fhwKQtSVLa4nHZnJLiKsxe1qDbJqABJzdSF9T8YHjKUCwh1l\r\nhLTfe63bSPIcLPIG1TEBX+E/mhYJ1sjaFzLXgNFXCejnPnzLhFOvctn2nHze\r\nl1QQvU+p5Mme+4KsbyhY72G9VJR26viHYfADeKu9aqBngV6kqqXUl77fucIC\r\ntdqCaomN4lrFIREGtHKOfGvHNKLpKwg5a7cyy6cgfyiYidBHL6R23G/Y+k7c\r\nf35pPSk7y75wbatgHDIywkbZH9uxzaDjWxxbm83On/CgRlcuQZhMIcdd/Ucl\r\nKM+MSAlkI20lm0OWtnHEpcHZNEn7ATsPFhA=\r\n=iHdS\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "77e1438de2a585ffd84389c268d79cf8876c1c37", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.1.3_1677290865878_0.3198414786779613", + "host": "s3://npm-registry-packages" + } + }, + "7.1.4": { + "name": "minimatch", + "version": "7.1.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.1.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "5b252ebef9931e082549370815afdec3caed0319", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.4.tgz", + "fileCount": 14, + "integrity": "sha512-dZdn8jDUB4Y3eu7hABT6IgLTMQ9cVf+vhhXjLAkuN40wRkweVxEpvnGYLYZUhNB0P+BbTOZDzo+1rCitOQWc3g==", + "signatures": [ + { + "sig": "MEYCIQC+UhSTZFAATPep8XMTDGxZTdwjuRKbxEOggdq24T8cQgIhAMUvMna9JU7lL8LWE+d4C7v1YN+7/qVA+uZgDmLGGFBj", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 216408, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+q/LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpMSg//d26hIJsUgJoM5xDhin3y70TkN0CUno/EVbG4Kr19+Lo5M+s5\r\n44QBAgrF/K+eTpOMYc6bo7FD2/I3eEiHsN5vVxSXkQnTPR8vnqSjFQ05Ed00\r\nUcjw4G8XWuodm4b009qdCN6CnwZXSYH8kZjJdEAs3wLkqEsS81rgykUkNcTm\r\nCqaI5ORebliUQk67CyK9P1L4TEijbiotr3cBJRqsEN6Cyxa4OSrS+qHg6wtO\r\nGPLOissOskXi850oDL1dCFGLWR1viNQNw0pI2j/u/7ztaoCRHhIdbsHEISuK\r\nA0IkWKtC7IbxUSEkkEypjM1mS63goe6YpHvJ8PYsxmKZ6rN38NJ/4yoiWUL/\r\n1LlF7h2LcXpxFn4yOplKaAnd6T4ECtTEj2ISP+FbkgYSD9p3CYhNcWnNdtoF\r\nHPdt0eG6hOoyGpnMfE51LPQJAd905o4HJh4GD6GzPPJT/myS2w9HybjIL1lj\r\npGd+eoDq7MFRe8hDFgRMXUyIIadauy2XKREqO2w2EAqMsDAYqvFZFRhE0nPE\r\nxr6fqtV8KeAW1G5evwXJnR5wz2fyOfGxKvGRgS2sG8IpqWQAa30nr7i5hBVF\r\nFI77JOklPAXIliufNPTPLpPI9zSiuPQSrClxne8sWoesmdw9vpAtCdauWmI4\r\ngp4nVFjJ/eGY4iBQwQkYmJmctOsJVOLlJXc=\r\n=czf+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "f050a221047e2c73f18dacc3c5069a1966ed436f", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.1.4_1677373387282_0.835285345087917", + "host": "s3://npm-registry-packages" + } + }, + "7.2.0": { + "name": "minimatch", + "version": "7.2.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.2.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "741ff59370007ebb8faff0a9b20cdb44357803e4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.2.0.tgz", + "fileCount": 14, + "integrity": "sha512-rMRHmwySzopAQjmWW6TkAKCEDKNaY/HuV/c2YkWWuWnfkTwApt0V4hnYzzPnZ/5Gcd2+8MPncSyuOGPl3xPvcg==", + "signatures": [ + { + "sig": "MEUCIFoPGBOrdeXfsKjNV24kzx8NFr8/1WRBKP8w9YLrZdFuAiEAvjLfHuaTInor4acFMjvfs+pxVDSR4V3HznmJu2ji+/M=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 221068, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+yLIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLZg//avYLkGKsdvTVvLKL/tiO7AYxZuTusPdbqqeouko8M1O85LV7\r\n7KfqBex+mCowO5bVjkeWzVc/BKFnJyFYCAlVOXuXl6MnqZFVO67+F3hloXzu\r\nEhzNllFH4/HdNPcoL6sytNwp0eLujXqZePXqbmLrvSLjmEBsHYQK+qdIZGWw\r\nEdoaM2d3LMrsJvZEKI9jhb7N3C8OtNckVB01qpGTyumoIdb0HpPDFCzKOeDw\r\nxiZckYiv70lItqoNGfQg3GFXBraOLMqm9lAhWOyw6k84et9z2LextcFsh7m+\r\nqM81EX+3XtAB38Dv0b6Cci4uLnZ3iWvFbo+iZwBDmMO1hNdVNL5PDsaWpzLY\r\nS7Mrnk/Dw1cY9UyUkB9Co8LkPDlq4fy6XYlZLQ6SQj99cgDNQYw3nSzONSmZ\r\njuAB94pIWJ7IoCLbYj+j4kVWPLtblcCMTpUzqEQnkDOCrfqc8RZZx+1q2+ky\r\nsXpKfW4G/JAAk+VFSCoat8vahQteKQ0bFlVGvfBJdGU2ONoB0YOTLuMQTT/1\r\n75Qa55kP3rElr4XQR8Vjw1mzy9AOl/NfOUbk9CA8rFElyG11epLw2AYZVpyl\r\nEVXQ3fKOhOqTAd8HWit9xMwIYC8ze72HJha/u/Ek3F/sef6UEdImX+GohAF8\r\nqH3Ooyu287os99xxa4Szgo911wXTfvxu9PI=\r\n=7DD5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "be2394fd50c4c44bb82b2123bf362c2787ed7cf2", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.2.0_1677402824667_0.5725682723980614", + "host": "s3://npm-registry-packages" + } + }, + "7.3.0": { + "name": "minimatch", + "version": "7.3.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.3.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "cfb7337e7460308e7147c58250fa0dee3da7929c", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.3.0.tgz", + "fileCount": 20, + "integrity": "sha512-WaMDuhKa7a6zKiwplR1AOz+zGvJba24k5VU1Cy6NhEguavT2YRlHxuINUgTas4wiS6fwBpYq4TcA1XIECSntyw==", + "signatures": [ + { + "sig": "MEUCIQDCrWtLvwwv4e7HKOXnmYnIJ9sT9QfVjGEe64pBv0rLAwIgclMnu8M+u17QKKPinUwEn1MKIo+dI7ZwJfz4EWdbauk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 230092, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/QtUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoxJBAAicPSOEOMrwLpI16vSOLm2/pwa9AsDbSlzoiZQapEz0kSLFOB\r\nxaWkEH+A/eA5aNtya2mEqX4EqmW2OIHaWQWrlij7Vrjskm3A8aEIplFl2VC8\r\nX9UXjdx4H803IIWaXoGJQsmvANOgrVsLvpwDt8DGsDxTkNsdgXA0n1zDgmxo\r\niV7KjGrNj9oHIw2b1PKpFXa3/8wV/5mSys5cab9BPzMQEsEG9qg8jnt8qAuG\r\ndBqcAtPZDjCo3295KuadlqucV9QVRTXWzurS3CKMe0DY3QGrvPat8yUjKr5M\r\nuGfiT/vxj4pQEhFlkddHrxG6mj1T3Fc7oOgG4M8jGoG4TB34h7/CaV+Bqz0K\r\nZ8PXnruUZkYUyZXLB4srG9fFtA4ZA2Aa++jJ+OzwWj+jxJq3k0NqKurz59yR\r\niYIyQITWiAOILszvHwhhRRBwsBvRYpgdJgCu4CmqD8SYv76j4qpwL1ri4gF2\r\napLYMb6/jj17gN30EGhggH6kYSKs6FTsrpC9DeseqQTt3F+SiWDKTUX7Z1wa\r\n7NrQ2IUR0TL8SZxky4nTEDPKIWNa1MVJGpo3crSAhxBIBz0N/57dV3PkbX1a\r\nAKsbCoX3L3s1TwVI35u6JEGiuiLaSQMzLzqWjhitgS1Yn/leaEA8MbBlhO4t\r\nM//UVBrunRXvOMRWUoewKxIB8hQ8aDLu2Ak=\r\n=2Ozi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "75a8b846391512fcfae9822da12054e1bc2496f4", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.3.0_1677527892438_0.09427200950168779", + "host": "s3://npm-registry-packages" + } + }, + "7.4.0": { + "name": "minimatch", + "version": "7.4.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "d43ecc64c434fc9622d3fe447db71c7caed8e1a5", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.0.tgz", + "fileCount": 32, + "integrity": "sha512-Co6cQqQPyou/311vxtcfit/RKf+MbRN6qa5K3Zfh2Fo9+Pvfg8C1LeaAXcoRfwhxfZIe8sBc/kLXdkR88xJGBg==", + "signatures": [ + { + "sig": "MEUCIQCRH5WkhNVuUGjXPL/e/On2Vu9wnCr5FqBt0W7qvoiYwQIgWbnMiow2+BeZBjLgBqX1IFr7sS5Nstne/IekGBc8T/U=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 247996, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/vfJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2vhAAhDz+wG+TZ4NHKmHtPvYaB0QuCDhUmbgIVItoLev+VcAHAihM\r\n8bQIPRJ1fDgbntJ7FOphF86vuDhiZM2w3cF+EU8c6wWGQDniGkhiN4DyzJ8M\r\nKhZ1qcsYY/+DpNsdzKwKEwVyVS7ERkmChSbcaorREQ7+tG7wetwAQ7Ba0KlJ\r\nQzuYqtvV7cjLOh0tW9iul8+mpNCpGe2hVS+hLT/El4H4yDMOcoKA9WJXUhJw\r\n0n/hXNLUcEcNiIpb3pSCTK0Fjiv0REIpFnYQjbkmdipaG5qkcMJNj6HSrMES\r\ne7Y7dknjS2VCRG/yZ6cafQs/h5NEFhdPey3PLy4qJSiAG6QWkcuZ8P3koOnN\r\n03nxQE1YN3k3/AUYukieBdrTdBZ6KnCebxYjM0y8j+aiYUSD+FDIyWJR5n9v\r\neSpPhmun6msMd/aYRiOuz/3WEPodDLuLzrTdn/EL+zSsPYPnfbp1oBXl7Sw8\r\n4jL9ln4imGak1uRV1gmccO3l9BGOZWdZOPXZFMxdLrRDN1l1dVV3WrgYisoM\r\ntwn1fJweSJgACAZUfGHZchtqougmwHXev2yXQz37l5wXPdsDMU1lQP/QBXg8\r\ng/DrEMmZxNu6TEx2SY+pC4hncVNi1BtmCQkkKde4LD+zt7Iq2l/bYQ1WQqFz\r\nHLTRD5Tz7TXH2BsPpreiqc0GTELCy8wDpf4=\r\n=ZK9H\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "f19f6ab371448d0e819129d40b66745a7b6ba7c8", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.0_1677653961727_0.2915757555774323", + "host": "s3://npm-registry-packages" + } + }, + "7.4.1": { + "name": "minimatch", + "version": "7.4.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "166705f9417985ba5149f2dbf2fa50c29832913b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.1.tgz", + "fileCount": 32, + "integrity": "sha512-Oz1iPEP+MGl7KS3SciLsLLcuZ7VsBfb7Qrz/jYt/s/sYAv272P26HSLz2f77Y6hzTKXiBi6g765fqpEDNc5fJw==", + "signatures": [ + { + "sig": "MEQCIEEsPRkEsrNLWyCYXaNaCKct+EgfY9FnIYFs8dnoJnl+AiAd8MkdQ86w4UfXPjrBUDEh4MjUWSr2KAAhq5XbvoBqig==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 248000, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/wX7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmotAxAAhPjx1UClIVM5w0p8QlWhM0O4NPsPpY8118k2cA5SJSo4BxXD\r\nQGPqTAL7X9LKx4sH+Xqu8NGmpej0HNhdOBATUNjcnadC1pvGYqs/vR//BaPf\r\ndhypM1X+PG9FK/YkAGJfKTcucEn4zcXgvOKeHEnvj8KZOOCRzhIEJo0Dog20\r\nUqfmQbo7xiXUhVvZGeulTEvPDoVfuQVv0SOZIdgul6MfiZLjD+FP/TiBYIUj\r\nZK4PtIM6mrjrg7hdgQaa+YiGVA5A2IfIw2brF7rNThAMUtFgk7sYzDRXTjYk\r\n5nRGe2u7LclBsYnohnN8Z5o73YEOna9C8AmX51hG4v3K0Rtz9LKCm5pHrQnQ\r\nrWZXp8phL7Ogz1spfrsqN4FHv3xUve0VB7O7kKmtM+qr1iZvNi9nmZjWsf4R\r\nkJ8lxjDXCJK6BqOhsjHcrplgubHzjRir6gM7ibPnJkh3gbwc4lpQ5Qi6U5Vh\r\nrGST/LfMoR2Cc3YcYKVCP7oyTgu6dI2CCUCqufbRPqPWruYknQ77SH1hHMlY\r\nV1CHI/ZvgdsFEfDUAocTEt0/83G8XU1eldu/SdafA4eeWwZOHs8kZ7XHQcY+\r\n6bWKWN2vXXtl/Xszh/6D0+3yJ8pJwNJqna6mCzN77UZZiP9SuXpcpWq5ogG1\r\npX55a7ujlrYSnU0YYmaLsA96xemdw/xvVf0=\r\n=6+fU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "7a45545fffd5955b972aee97b9c33c2cfdf18889", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.1_1677657594911_0.31622000129147465", + "host": "s3://npm-registry-packages" + } + }, + "7.4.2": { + "name": "minimatch", + "version": "7.4.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "157e847d79ca671054253b840656720cb733f10f", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.2.tgz", + "fileCount": 41, + "integrity": "sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==", + "signatures": [ + { + "sig": "MEQCICFkuIchZYoUyaGcY/6BnNTkIffS/nFdzY8fPMJcvCCQAiAJNY8m3vhfG1Robh/iBE7njO1L8wHlbhMY1otFlVTchw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 256291, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/7H+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpowA/+NYwxaE+ssVwpQNRas0/CLcAwLNV4b4Wr8+ZM0Xy0hx+LOMhB\r\nVR5OFHR5wrBK+axuJNOeHqlfriR0Cr9sA10JZqyNbqyC9FT+VbUAW/v8qp2F\r\nrwgWlbr9SV1+HI3jh4J0MVoLoN5+0xAUgEekAjqnk5K+up9v5YUvUQwh8l+2\r\nvSo2V4JlVDVXD1TtNZI9y8QQG7bxiflGUgphmP+/srf8Mqt05xvv3j/A7kaN\r\nz238N9SKL3vtpPPZyoMyKnfFwz7JAhD2ZWGf4VeOByo7xtPLMUgt8/wW3770\r\n6SJRsvQyk70JZBQbx/hpB3qchVPb2JUzYfEW80GhQTA2qNJerpxjF3kQADIp\r\niqe6J4SREZj9tWEfrofinOxVdttfODaglYOjoGbjkDOdTJVtvk9tFCEVfeEu\r\nVusF/Rf9XqVaBSX7yq1IVR+kA6QbVfMwosGiREr+xyrIFl+tlLpcp+zsc9Ab\r\neyoPCpQWjALbbCmQnkjdlTaBAcy84/h1dudXxcN8TQScs1fE/g1uI2xtNvrN\r\nn3ksaKWVhHGrfcSQsssF1iAMktCMQWz1r5vr3Td2bqUyuocvRHC46UqJLMnw\r\noXiY4DiNRU290s85nekgl5Nw8k4KLLtRCgtiwUNxAeb+Jjtkd8qVXWJkT/lK\r\n9sZQFqYVnObZ039JylHlf3MZfnmJtkuBeaM=\r\n=v7UZ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d545ad6dd83f9001f5c52756dd43708cfd2837a4", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.2_1677701630364_0.45483190781715677", + "host": "s3://npm-registry-packages" + } + }, + "7.4.3": { + "name": "minimatch", + "version": "7.4.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "012cbf110a65134bb354ae9773b55256cdb045a2", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.3.tgz", + "fileCount": 73, + "integrity": "sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==", + "signatures": [ + { + "sig": "MEUCIERWfNmuYFfkHSFD5K99YTkw0XMrKBVS7YI40GpulNThAiEAxStQcZuErjQMmEowOm2RbmGUhXw8RbUaw+VR38cT6JE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 553776, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkG05bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcZQ/8CCAYc7CP3ECn96RGzOn3REXugCDXeb481N/65tYGyo3UsvoX\r\nuwze3VjybBdwmwSYwqJ78YxNFpXdUi1WW/R9aPU48ZffK45midCJ1Kziyc3w\r\n+3UaK1sLGjBYoK558MrLdYJHUZlSd3K0wPAFGNGnnMrGaJZCEmrJwkEQ2y6e\r\n4bc9raVd5/keNir4YqVIHwEULC1TkEuMsDh4YBC5+cp+1frAIuUbw5BL7Fwf\r\nKQh4n6kAbXE7cNGRrOk2aI5o2mbC1aM9O48WpeGLPgAHL7Zzfd9OIt2i7OVL\r\n3sNCj5VanZuDVR/eduEeKLqjmm0M1YYxkiA47eR9FbF8hEWEtQ0+u/+Lw0zk\r\nJxQgeIyumBhNPc1YgzDk0w40Q0t6wDiNbqCZ2mipKz6QASWbhsdpSeO2CaO+\r\n5iCtI4MAxaPbBHLZ15pdP80Cmpknlnkvs2WAis7naPECJPrt6n6/Q8V4fX9+\r\nfWd+knw66ypJA/UQHyZmUfGL2sOOtMVvYPrekvAkZiMF4V3XfyNuzRts4nGa\r\nu7arPh/svxHRw2i68cNzIrULODfhTmGPWkKUKOfb8xU0LF8SNXslWPdLwYjx\r\nORbM4nXl2kGHTV39lE+qzBc5i9c126dldVMkOC/27EHHDBeGvWWRxGVK0Ki2\r\nSiw7SuOFaezaUWJTzpRI02/BJ7IujV8yBVQ=\r\n=VIlD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "5139e19188b9fea0cbd9064a17b40551d6ddc23d", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.3_1679511131037_0.05843171699737226", + "host": "s3://npm-registry-packages" + } + }, + "7.4.4": { + "name": "minimatch", + "version": "7.4.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e15a8ab56cc5469eca75a26a1319e5c00900824a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.4.tgz", + "fileCount": 65, + "integrity": "sha512-T+8B3kNrLP7jDb5eaC4rUIp6DKoeTSb6f9SwF2phcY2gxJUA0GEf1i29/FHxBMEfx0ppWlr434/D0P+6jb8bOQ==", + "signatures": [ + { + "sig": "MEQCIEbwQOz316VNjXNCeC+4egFi4c9H9cqbTjIz4+CBfN6YAiB62Pl5eCYXM0vreuIasHI81qiCgBs/oofXC7qGFnef5g==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 436285, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKMHIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNaBAAgbKaYm9aJa871c2rsLMNHUDR190v1eZk/tgQGrrBmkKN/CQB\r\nH2+FvffwhVUFlAvEcvd3lTaK3Z7UPkXms5z1a26E6fvQBDEH4k+8EerdXHmH\r\nZikeTnJQHgsfhT89tuwUmzwN+xmCLekj6TMqmOX0PrbG8QX7tG0ivsrZDC+1\r\nQWTm5CDvQrDgimbG3YoCdZ3Lcw6vAdPRKM6gqjomHaRko2ZV/DiPDUs/iGut\r\nFAn8WcHv9EbwybHACGWld6ZfmcTQY24k3O3lDgcxKaLwj56K0+YWYUGLATd3\r\nyGpr8Cc7BwNYvaoRw/4F/Hfusmodhe0anJjVnoGJxWMaqgb5SjW42tgsrtEO\r\nnwhJW9FL3y4xh4NHLt42NcBXKNisto00txvILo/keK3x/7n989zAHm1lMam3\r\ns4oR32BVVpxnBawQeTU4w0X1osn+6PxTzdJLMoYhHkv81Jt9czmdeVNWSojm\r\nFygxJCXTlRcVU1suZvTXO/fgaB3UsuDQfwosilHqp+DEWDR1i6dptfJDO1Pp\r\n/1LyA+p/WNX1b29ycHpHM0sowxEC/xzrF+FpVdTwJXZdE2LzZWHc8D7cce+G\r\nMlWv342BqDBVhocoy7h3SWTGA0WqJwm1VfvPEyctViHGQ23vFonnKBCeO5vO\r\nnYeOpBBUVRzeDdTRSx16S0vg5p3e+EMcIlM=\r\n=rqMp\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "32bad341e9a3d876fc103a680e5f30cbe80318f4", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.4_1680392648739_0.5017720729272948", + "host": "s3://npm-registry-packages" + } + }, + "8.0.0": { + "name": "minimatch", + "version": "8.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@8.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "807427d41e90f1e071aa06083e13edbd95479f73", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.0.tgz", + "fileCount": 73, + "integrity": "sha512-Nlub10O3zlSIkHHVVmhEvpXoBQV+rD1gTSax2w2bklGU5y0zg1MD/biD/elp2+Mw+8/6F8MzEU0WYwmStMDZ6A==", + "signatures": [ + { + "sig": "MEYCIQCUumX0+S1QZa0r3Bno/+B1UcopXOFMBGf6aZq2ZHaK1AIhAJRBptw2FTPQICG1jAFitDagP9Qa3PHiSImeDungnQkq", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 497750, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPegACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpM+w/7BLNsY7YSCVQLtY2sPjSudXbwVAHirUOKxP/IogoGfR8ha1md\r\n2t8i37+Y2kOBjC15pVbQfkPhygSOuLUe4up+h5RKRT08hJ1py+jnoK0zg6KE\r\nxfkJlhkT8tA4AqH5fPneD5xjTtsTICdm3k6RJoDOak9io9Iu6jaCW4sTWpUl\r\nzL6YU4+NvEd7nSsVBsdHldYP59g8Bn8X9pS5hml+LxGy5srv9StW1J/ZuQOv\r\ndQGALJCrnQvKmEzThO5gHRV8Z/+EThEMQr59px4OmzPx5J8PxdK7aiuRet2a\r\nMBvUjrorAz02yIjMVsLNB2xznFwfngN9r87BgOALeQP9k57mvhTD8BhGMIoY\r\nKGlXwnzXazM08s7uLq82UtM4hgU5XJ+Iiw96rpO/KwFVH703UixISqEvcHQp\r\nGZBB++3FUdifOD66YQOBw/jCfmYxi+BX3sdgrTIeg1Y9CRtOMxPYaEMMR9Y+\r\nq23E21Qx3Bnvj5yJbYBF/rAAdFUqChdizC+e0eoeby4VDqJY8tJp8jb+EZGQ\r\n961RNxhJBiMdT2UROZirGvDVvN+Btdf5YzjoLiHyWY3ILwxOtL3KAdTd7Sie\r\nHRXKQapPnDQ2/s8EEtps4k0ETWZ7B/wdKJaFazsR+arSPDJ3bTNAc7X6XqET\r\nUvBSPrkCFEPBq8GWAPlutqYtihAImNHzqJc=\r\n=AUEg\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "5d20578d5749f53f3413b7ca413e5658d6ab0d05", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_8.0.0_1680406431981_0.8508828183835893", + "host": "s3://npm-registry-packages" + } + }, + "8.0.1": { + "name": "minimatch", + "version": "8.0.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@8.0.1", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "1ed443e0df99ef3692e8f2c8fab8ec9f25433a6d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.1.tgz", + "fileCount": 73, + "integrity": "sha512-Azl0R5ZMbhrL031Jfu/xeeS4tTMnjXHiyVIbzutzq6g0b0iRWmC9recCfbo98+uReJYoNLqSDiaMhu3Lf0YWzQ==", + "signatures": [ + { + "sig": "MEUCIQDM1GEfeZt3TadUCoIhmEc6bwku+w9b+/aHEhHL+68vEwIgMRPl7+glOxOkEHWCGJYALztu/ailrsW/4Z5zPl9sbyk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 497768, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPjcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHZw/7B10WfQVhx384jPvwU0UBfCwMnMdsJ3IHqP3gMyWlmZqilKlg\r\nCbT9woEooSpKWxmh+DaCZvu8Dd8CsXA7yLbC+sy7NUsdFoxemIfQGvvVrDqG\r\niuo3MY/AqDuvr4CXrxK46Y+w9yvEfh5Vgdbymf9SC+RCrfGl2IV0IwsVkRQR\r\nrMIwIbcUBhSUxJ4HwPWZDcub+RU1fhTxWzSaf/luRpop57KIF0cWcOd4q9In\r\nsT+D+vlk0SoWmoSPBFUalgUqhUofM2e8ay/kLs8xHh49ikDVgOdKDSYWdDOB\r\n3Jod60JYYDGExMqv7I4iAq7q8XEBl6Q76/uTBAJ0NJn+3HiQmZ/jEUkRC2l1\r\nZmt+O2nKlNJ2wNtCAo3bQvdvVxx/gCefVloPObhDVmoj31dUHBrvgV6Wh27t\r\nvRLvhNZTtzC1HKjCY6Cn9SU/d1UIcdxpl/Jr52WE7SFX1lQu95HAsQd1dhAR\r\nE5qSC0q8sp6cjZ45lq+7qTQ4DFY+IBTzElWSMoZIAwJCEZgpgs8JxeS/z0MZ\r\nqr2fTgHDCklExujPeEBQVC2e6poV2pvpgnhcIYpz+OxGUdzaUt8/a6X88EwE\r\nPtMK+RSxcmJjmNMqFBKxIQPeGi9DcmOMvSRGged/Ov9IihjnBSNYIaYjH19n\r\n3ILhrcN687J126rKZHCUATY5KifWS8FZ01g=\r\n=IMYP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "bdddb1d5ae8401c46d1ed8310dc42e8891f1d3d6", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_8.0.1_1680406748552_0.023994818503613402", + "host": "s3://npm-registry-packages" + } + }, + "8.0.2": { + "name": "minimatch", + "version": "8.0.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@8.0.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "ba35f8afeb255a4cbad4b6677b46132f3278c469", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.2.tgz", + "fileCount": 73, + "integrity": "sha512-ikHGF67ODxj7vS5NKU2wvTsFLbExee+KXVCnBWh8Cg2hVJfBMQIrlo50qru/09E0EifjnU8dZhJ/iHhyXJM6Mw==", + "signatures": [ + { + "sig": "MEUCIBx4LM+4f2Yx3WhCzE8v4+3kreQrNfO16OUvEsc0a9lMAiEAjKwYP6CxQ4oSXJgYFfNKrgnJ3roH6wRtl32l2ZG59uY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 497831, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPlXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1Fw//TT6QWYrgD7Q16p5xvhekDi94ezjzEiZJaSXXaIrqaLIoH+NF\r\nxCecvBeWGhGVmG5wOmZXAdsrVS2oBWBFhHoCbeiZw5k8IE4YbyktatdAQ42U\r\nG/5POc6cO5cevvEWltmyJ7R1+j7MA/nt4P/drJQJzgBhClSnnyD3DbXQLSkR\r\nMgI2rTbK11Wy1QSoy9RmqHgKk+UalsexqawcoS+KdkPLKAAx+98Hchc2izxC\r\nSnfEUVPgjbPlZANdLeUy22VujerdyEKaU2HThsu4CamruEfUdYIpkIYo8FKS\r\naIiRbE/ZnCGfd/5bnVe9JEhWW5uulsnR7fw+ZW/fQ51ismo2odT5pMUV0BfK\r\ntmo29/o4lgRJ9frqScrNEivCqSpl3INpquMw31h8aDobp6gthRLu3j7YAFQ9\r\npWWzP+z+i5bGsmvcB3HSYX0Cp/hVvL+HaMU1PTEGzNFq70LKqV1jbYYvidPa\r\nnEtCjMi+9JHvVp0vekZaPAC6tU4Ult1k5UjkFNmSoxLkjFukfpTnxtU59DcD\r\nCzjXKyi9HjffTfUJjI0CdIMNPgfgWIPSq4r3ze6M9jdh/hCUdH1j+772MrNj\r\nJWRXHZCwSePdI+mNuuShrehCBNLYREjRdb65CHy+KH/SIp0v/sYVq3SpEH3t\r\nQlzMz7lODB0FQhm+kyFxTn3X3UlbvGZUPGk=\r\n=1l5i\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "cb1b69080ca4f972ce913e2a7ea6720a14b96e39", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_8.0.2_1680406871445_0.8086971078380669", + "host": "s3://npm-registry-packages" + } + }, + "7.4.5": { + "name": "minimatch", + "version": "7.4.5", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.5", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "e721f2a6faba6846f3b891ccff9966dcf728813e", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.5.tgz", + "fileCount": 41, + "integrity": "sha512-OzOamaOmNBJZUv2qqY1OSWa+++4YPpOkLgkc0w30Oov5ufKlWWXnFUl0l4dgmSv5Shq/zRVkEOXAe2NaqO4l5Q==", + "signatures": [ + { + "sig": "MEYCIQC7JyHfA9Msy43OOtpIAAATiwFSXadEKzmdlty5pMZDIQIhAOtmPe3iArGO0WklyJdxL9iNe47jTs2kLuN9Y+x1+Zwh", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 368159, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKwO2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqj8Q//d9I0fvoMnpNYy9vV/KQoRRk1jT6x1DnqWdNZVU4S0+P2z/Vo\r\nopszFZUfPzw/tYJJT2CeK39eiArkEXk2MVaNvgvELJZAF2XmwHqNcCDVvEFl\r\nHk9KwCyhokWSNudHMXnS51jE53uIjwvLk1aPjlc5HZl+zf1YF8oY5v57qm0w\r\n2SFTCNCCFIjyrpgdz7kOsBt3eJu+B3+O1TT2f8D1UGiBjf1F06BmCuh+BfrT\r\nJrae2RoxM6Nsg23FpaxCYzKf0cJ3s8B1I5hzJa4lYDOiHdzIBkPonqye00uY\r\nEUOsnfwhCYASwqccMu/dzuWzRXpnuu8tez8D0Ycx7o5a/JCnhUiSd6EuZJcG\r\nEOSEiiXjOk1pmF+U8owrzNOS8XiV8A7IFLGI1+uXR/9f8kyApqtwIOfej9N6\r\n941D5uXvk3qR/ONKdtNqsQYOAlj/dxab08OC7MsMlBcJi7WHFrPdIucBHbhD\r\n1i2l/Nyv72T+u8LAc2jzsY8uuvSZMn2ARFK61UpYAyAZkZUhb57FrEwUdQ9t\r\nLDFSRYLTpiqadrXOz+KzGaHE4pzFyjWhJmLTEpV2S68kwkjKK+xDe71SAkfr\r\nFHdUlvAWP1bLw5eimNwwMOa+ClGh4MYUmBKLeOJ50w8xomsEXJErr0/JD9s3\r\nt46UEEzztT0YaS3OPTAU0WIZZon1bQDAGds=\r\n=30U/\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```js\n// hybrid module, load with require() or import\nimport { minimatch } from 'minimatch'\n// or:\nconst { minimatch } = require('minimatch')\n\n// default export also works\nimport minimatch from 'minimatch'\n// or:\nconst minimatch = require('minimatch')\n\nminimatch('bar.foo', '*.foo') // true!\nminimatch('bar.foo', '*.bar') // false!\nminimatch('bar.foo', '*.+(bar|foo)', { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n- Brace Expansion\n- Extended glob matching\n- \"Globstar\" `**` matching\n- [Posix character\n classes](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html),\n like `[[:alpha:]]`, supporting the full range of Unicode\n characters. For example, `[[:alpha:]]` will match against\n `'é'`, though `[a-zA-Z]` will not. Collating symbol and set\n matching is not supported, so `[[=e=]]` will _not_ match `'é'`\n and `[[.ch.]]` will not match `'ch'` in locales where `ch` is\n considered a single character.\n\nSee:\n\n- `man sh`\n- `man bash` [Pattern\n Matching](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html)\n- `man 3 fnmatch`\n- `man 5 gitignore`\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes in patterns\nwill always be interpreted as escape characters, not path separators.\n\nNote that `\\` or `/` _will_ be interpreted as path separators in paths on\nWindows, and will match against `/` in glob expressions.\n\nSo just always use `/` in patterns.\n\n### UNC Paths\n\nOn Windows, UNC paths like `//?/c:/...` or\n`//ComputerName/Share/...` are handled specially.\n\n- Patterns starting with a double-slash followed by some\n non-slash characters will preserve their double-slash. As a\n result, a pattern like `//*` will match `//x`, but not `/x`.\n- Patterns staring with `//?/:` will _not_ treat\n the `?` as a wildcard character. Instead, it will be treated\n as a normal string.\n- Patterns starting with `//?/:/...` will match\n file paths starting with `:/...`, and vice versa,\n as if the `//?/` was not present. This behavior only is\n present when the drive letters are a case-insensitive match to\n one another. The remaining portions of the path/pattern are\n compared case sensitively, unless `nocase:true` is set.\n\nNote that specifying a UNC path using `\\` characters as path\nseparators is always allowed in the file path argument, but only\nallowed in the pattern argument when `windowsPathsNoEscape: true`\nis set in the options.\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require('minimatch').Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n- `pattern` The original pattern the minimatch object represents.\n- `options` The options supplied to the constructor.\n- `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n- `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n- `negate` True if the pattern is negated.\n- `comment` True if the pattern is a comment.\n- `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n- `makeRe()` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n- `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n- `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n- `hasMagic()` Returns true if the parsed pattern contains any\n magic characters. Returns false if all comparator parts are\n string literals. If the `magicalBraces` option is set on the\n constructor, then it will consider brace expansions which are\n not otherwise magical to be magic. If not set, then a pattern\n like `a{b,c}d` will return `false`, because neither `abd` nor\n `acd` contain any special glob characters.\n\n This does **not** mean that the pattern string can be used as a\n literal filename, as it may contain magic glob characters that\n are escaped. For example, the pattern `\\\\*` or `[*]` would not\n be considered to have magic, as the matching portion parses to\n the literal string `'*'` and would match a path named `'*'`,\n not `'\\\\*'` or `'[*]'`. The `minimatch.unescape()` method may\n be used to remove escape characters.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, '*.js', { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter('*.js', { matchBase: true }))\n```\n\n### minimatch.escape(pattern, options = {})\n\nEscape all magic characters in a glob pattern, so that it will\nonly ever match literal strings\n\nIf the `windowsPathsNoEscape` option is used, then characters are\nescaped by wrapping in `[]`, because a magic character wrapped in\na character class can only be satisfied by that exact character.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n### minimatch.unescape(pattern, options = {})\n\nUn-escape a glob string that may contain some escaped characters.\n\nIf the `windowsPathsNoEscape` option is used, then square-brace\nescapes are removed, but not backslash escapes. For example, it\nwill turn the string `'[*]'` into `*`, but it will not turn\n`'\\\\*'` into `'*'`, because `\\` is a path separator in\n`windowsPathsNoEscape` mode.\n\nWhen `windowsPathsNoEscape` is not set, then both brace escapes\nand backslash escapes are removed.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, '*.js', { matchBase: true })\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nocaseMagicOnly\n\nWhen used with `{nocase: true}`, create regular expressions that\nare case-insensitive, but leave string match portions untouched.\nHas no effect when used without `{nocase: true}`\n\nUseful when some other form of case-insensitive matching is used,\nor if the original string representation is useful in some other\nway.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### magicalBraces\n\nThis only affects the results of the `Minimatch.hasMagic` method.\n\nIf the pattern contains brace expansions, such as `a{b,c}d`, but\nno other magic characters, then the `Minipass.hasMagic()` method\nwill return `false` by default. When this option set, it will\nreturn `true` for brace expansion as well as other magic glob\ncharacters.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### windowsPathsNoEscape\n\nUse `\\\\` as a path separator _only_, and _never_ as an escape\ncharacter. If set, all `\\\\` characters are replaced with `/` in\nthe pattern. Note that this makes it **impossible** to match\nagainst paths containing literal glob pattern characters, but\nallows matching with patterns constructed using `path.join()` and\n`path.resolve()` on Windows platforms, mimicking the (buggy!)\nbehavior of earlier versions on Windows. Please use with\ncaution, and be mindful of [the caveat about Windows\npaths](#windows).\n\nFor legacy reasons, this is also set if\n`options.allowWindowsEscape` is set to the exact value `false`.\n\n### windowsNoMagicRoot\n\nWhen a pattern starts with a UNC path or drive letter, and in\n`nocase:true` mode, do not convert the root portions of the\npattern into a case-insensitive regular expression, and instead\nleave them as strings.\n\nThis is the default when the platform is `win32` and\n`nocase:true` is set.\n\n### preserveMultipleSlashes\n\nBy default, multiple `/` characters (other than the leading `//`\nin a UNC path, see \"UNC Paths\" above) are treated as a single\n`/`.\n\nThat is, a pattern like `a///b` will match the file path `a/b`.\n\nSet `preserveMultipleSlashes: true` to suppress this behavior.\n\n### optimizationLevel\n\nA number indicating the level of optimization that should be done\nto the pattern prior to parsing and using it for matches.\n\nGlobstar parts `**` are always converted to `*` when `noglobstar`\nis set, and multiple adjascent `**` parts are converted into a\nsingle `**` (ie, `a/**/**/b` will be treated as `a/**/b`, as this\nis equivalent in all cases).\n\n- `0` - Make no further changes. In this mode, `.` and `..` are\n maintained in the pattern, meaning that they must also appear\n in the same position in the test path string. Eg, a pattern\n like `a/*/../c` will match the string `a/b/../c` but not the\n string `a/c`.\n- `1` - (default) Remove cases where a double-dot `..` follows a\n pattern portion that is not `**`, `.`, `..`, or empty `''`. For\n example, the pattern `./a/b/../*` is converted to `./a/*`, and\n so it will match the path string `./a/c`, but not the path\n string `./a/b/../c`. Dots and empty path portions in the\n pattern are preserved.\n- `2` (or higher) - Much more aggressive optimizations, suitable\n for use with file-walking cases:\n\n - Remove cases where a double-dot `..` follows a pattern\n portion that is not `**`, `.`, or empty `''`. Remove empty\n and `.` portions of the pattern, where safe to do so (ie,\n anywhere other than the last position, the first position, or\n the second position in a pattern starting with `/`, as this\n may indicate a UNC path on Windows).\n - Convert patterns containing `
/**/../

/` into the\n equivalent `

/{..,**}/

/`, where `

` is a\n a pattern portion other than `.`, `..`, `**`, or empty\n `''`.\n - Dedupe patterns where a `**` portion is present in one and\n omitted in another, and it is not the final path portion, and\n they are otherwise equivalent. So `{a/**/b,a/b}` becomes\n `a/**/b`, because `**` matches against an empty path portion.\n - Dedupe patterns where a `*` portion is present in one, and a\n non-dot pattern other than `**`, `.`, `..`, or `''` is in the\n same position in the other. So `a/{*,x}/b` becomes `a/*/b`,\n because `*` can match against `x`.\n\n While these optimizations improve the performance of\n file-walking use cases such as [glob](http://npm.im/glob) (ie,\n the reason this module exists), there are cases where it will\n fail to match a literal string that would have been matched in\n optimization level 1 or 0.\n\n Specifically, while the `Minimatch.match()` method will\n optimize the file path string in the same ways, resulting in\n the same matches, it will fail when tested with the regular\n expression provided by `Minimatch.makeRe()`, unless the path\n string is first processed with\n `minimatch.levelTwoFileOptimize()` or similar.\n\n### platform\n\nWhen set to `win32`, this will trigger all windows-specific\nbehaviors (special handling for UNC paths, and treating `\\` as\nseparators in file paths for comparison.)\n\nDefaults to the value of `process.platform`.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a\nworthwhile goal, some discrepancies exist between minimatch and\nother implementations. Some are intentional, and some are\nunavoidable.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\nNegated extglob patterns are handled as closely as possible to\nBash semantics, but there are some cases with negative extglobs\nwhich are exceedingly difficult to express in a JavaScript\nregular expression. In particular the negated pattern\n`!(*|)*` will in bash match anything that does\nnot start with ``. However,\n`!(*)*` _will_ match paths starting with\n``, because the empty string can match against\nthe negated portion. In this library, `!(*|)*`\nwill _not_ match any pattern starting with ``, due to a\ndifference in precisely which patterns are considered \"greedy\" in\nRegular Expressions vs bash path expansion. This may be fixable,\nbut not without incurring some complexity and performance costs,\nand the trade-off seems to not be worth pursuing.\n\nNote that `fnmatch(3)` in libc is an extremely naive string comparison\nmatcher, which does not do anything special for slashes. This library is\ndesigned to be used in glob searching and file walkers, and so it does do\nspecial things with `/`. Thus, `foo*` will not match `foo/bar` in this\nlibrary, even though it would in `fnmatch(3)`.\n", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "d6c09b749eaba19bca643522d95fc316b3aa65c2", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "publishConfig": { + "tag": "legacy-v7" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.5_1680540598253_0.29439372305106004", + "host": "s3://npm-registry-packages" + } + }, + "8.0.3": { + "name": "minimatch", + "version": "8.0.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@8.0.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "0415cb9bb0c1d8ac758c8a673eb1d288e13f5e75", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.3.tgz", + "fileCount": 57, + "integrity": "sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==", + "signatures": [ + { + "sig": "MEUCIAwzomo7Rei+sG4Yc/wBVQAjCCUNeVaZgfhaI113igptAiEAiCGgoOcyy9hqeDDyM08BjfA0PTvJSouqZjez06Vxkyc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 432697, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKwQOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKuBAAolCz/guOu2/a54E9T/7t1cQH53R/YUdne+MoOhHihimOvcBs\r\nE3Vj7BoGxlL85qiZRp43ySwRl0RytRPq6ya03DFpeSiCbTuBFlWJjcNQPzuM\r\nKyiqkY6evfR0GLt9I08N/M+olcYOr6yCEAl51AskNDxgzKy0EsK91WHPLPRe\r\ni082Mn+40/ZqA1oq96IWI3xFI7PTjBB6/dGqTbSaO4WX3cOwyEnpL7uS0Bh/\r\nH7BsNW6EJJ9cVWsLBFEI/UtXG1QmJ0eVBSGMQtCJ6bPdMekpNMJYlU+kQEfx\r\n+aLdpos57QFmVoKvlwRplwaFIwqVEMIFA/e2xpcOE4lDE/1iwm7ndkyK/jXk\r\n4PDdIh82i1nh+YIAGcC68dZVhlK0wzY0Tq/QSjSfbLeqnldAdKNj2Qoq98eK\r\n12WLxhlXs7Ar9ARECfB6wEWkNdgyHLIUF1NaojWFSTSx2FvLyj2mHKlUmhY2\r\nk6J0KcWIKJp0F0oVLcGBCHOpdBqgpsGM82RZPSdUNRhxf41FsgBcqeyazFSj\r\n+vwX7JmWQefam230oi8TcyQ585BI+GzMQ9tFESNYBXZwS4ypqLhuQvo8NcxF\r\ns3qey8SPklB2QDNrnaeMwlq4COecboxugUH+wRfKiaVm/Tasr27fswq8a6iR\r\n6KtIdjxL6KCvoNu9MYhbw21oZI8sj4VoYnA=\r\n=fRv6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "1c0a3cd1e64504e39e3e3ed67f162b4d8a5b3555", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_8.0.3_1680540686491_0.22076753848167918", + "host": "s3://npm-registry-packages" + } + }, + "8.0.4": { + "name": "minimatch", + "version": "8.0.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@8.0.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "847c1b25c014d4e9a7f68aaf63dedd668a626229", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", + "fileCount": 57, + "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", + "signatures": [ + { + "sig": "MEUCID+azTFTdI5oP/8gpzzMAVPJF+AyKUR2wNjrqypoqHb9AiEAwGfxwFWZ5bSILuAj/uFBOQ5eFjdw2dE4HoMFGDU7fw8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 432605, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMx1pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4nw//YywOsipnggjuKIcF2oJkzBzq+dak/JXOOlnCJ4FWgbvIVzQC\r\n5Q3qC840LhjcGEbBOJ1IHYNo6PQdQZh782CLD/H7wfwc9YAQkqSj9skPkaz4\r\n00mVWt7Ac7Vuwo7YVh4f76lNwkJHIbPMc4/fZUj8fKqasuF/wPI5iAhottt9\r\nryor6vzxmTGzRrvYLXUt80wHnV0SsKkgFdGAP8od0U/1jryyjtusvmDrSeVv\r\nTCy6uJAcuqIOWo8LBV4zWyXvALOQGWqCTT2Sy5uDPYP5K3oyTUdVpArfAUrf\r\nzNCW+Zkn3T6LzPtmf7uNP3RF1xKUOKu5tni8gJdpDHUz0VZSkvlNghqc8cxn\r\no1XyaCIsSuUq2Cw2N/mbXLDi0SNh3kCIVb5A6SE4w6id8MdtNX/qDUSzwNeM\r\nxSCCHVAJ8nfu1EBW3DhaAv2cggn7aDSVZat1QzNRhFb/ARyMPzVv04C5klIS\r\nslfh4K42WzMGWhEn+AOfRCymO5naRW3x4OdYMWSTKYa7qdIhV/3yzyyvNmUj\r\nzGDQT3TSIG+vR275QTQOD59OKQWK4llske+d6yrHk160MduYkQpv5daXyhqu\r\nDWS1PydYw4luHLkiV6O4vZyxKuh5eVVmc5oXYHJztHvzGQX+9fmoelEq9yJh\r\nlXQp1Zgkf13+Bk/rXEfHzyWj+SE46tq5VqQ=\r\n=MX/2\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "3093d33a615e2fcf7900fa1ca6916d5151a96072", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_8.0.4_1681071465130_0.1362650847977107", + "host": "s3://npm-registry-packages" + } + }, + "7.4.6": { + "name": "minimatch", + "version": "7.4.6", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@7.4.6", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "845d6f254d8f4a5e4fd6baf44d5f10c8448365fb", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "fileCount": 41, + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", + "signatures": [ + { + "sig": "MEYCIQDv9VHpC6irXMiLiB8/yzdE0BA7nFF2tBh7WXs2+fXJ6gIhAJNEMYwzBam/YGM7hPbX9lhJ6S7XgAAXM6KbyCX3hqQ3", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 368067, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMx2kACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDaw/+KXTGkugSppF/Omhp5sYRSH9GqPAKxQCxA2Y21h4EfnC2HTLo\r\nVjStZWPZwC76RTg/6gFmbKGlN+7+fYvV/f4SRNcjBqw2BTNUzIMHk7M9x5to\r\n4j5li0BhEVNCsZNbSjvMVU2712e0FAwbYihUlWpGXpGpMXC7h1Viz8nIlSIb\r\nsnOo3V48BKjvIppmVANzI2pRPAgf+Tr/u4XRDSXkl4416u5YYCUGsEidBBkC\r\ntwE87+82qwgLZ56uRJGL+fUSggpgyl6B/lyWZwlWR8q+EXsUBQZg/U/GMBg4\r\nyzKih04lFqcD1xWC8JWTIlPXRc17jHFxSH/JaCcGqikFL+OdXqdGgptF1jg+\r\nQQGHQp9KQEQGFgkbTeXPfJKNKUAUICLZIrpJHE/J2IicGsuwKV7daTjlurK2\r\nRF+M2GVlYEnpch2nxwez/4Whx+QaRlKgqI6lvPszWxLxcUg8fz3KvJ+LLyFn\r\nKSvgbsWAINgd3ET+Z5QBIebkIzg10XWcaOWxn/tERLuRsH1ZjHJN9JNglw8A\r\nQFR+9fGoK6gYA/K8Cqq+JQSTnRG/C2GfrphXe8WiDA3MmhY00RiL0ORMbK11\r\nAD9/i8Bb1Q1IV6FmtKwz9AoCfaIrL4obniD5ewSk1kkObjQw1KsfUGLFSH7/\r\nHb+kOq3GMxhYe/rLD0GPcE8QNOI56xhp2ww=\r\n=o3Tu\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index-cjs.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "readme": "# minimatch\n\nA minimal matching utility.\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```js\n// hybrid module, load with require() or import\nimport { minimatch } from 'minimatch'\n// or:\nconst { minimatch } = require('minimatch')\n\n// default export also works\nimport minimatch from 'minimatch'\n// or:\nconst minimatch = require('minimatch')\n\nminimatch('bar.foo', '*.foo') // true!\nminimatch('bar.foo', '*.bar') // false!\nminimatch('bar.foo', '*.+(bar|foo)', { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n- Brace Expansion\n- Extended glob matching\n- \"Globstar\" `**` matching\n- [Posix character\n classes](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html),\n like `[[:alpha:]]`, supporting the full range of Unicode\n characters. For example, `[[:alpha:]]` will match against\n `'é'`, though `[a-zA-Z]` will not. Collating symbol and set\n matching is not supported, so `[[=e=]]` will _not_ match `'é'`\n and `[[.ch.]]` will not match `'ch'` in locales where `ch` is\n considered a single character.\n\nSee:\n\n- `man sh`\n- `man bash` [Pattern\n Matching](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html)\n- `man 3 fnmatch`\n- `man 5 gitignore`\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes in patterns\nwill always be interpreted as escape characters, not path separators.\n\nNote that `\\` or `/` _will_ be interpreted as path separators in paths on\nWindows, and will match against `/` in glob expressions.\n\nSo just always use `/` in patterns.\n\n### UNC Paths\n\nOn Windows, UNC paths like `//?/c:/...` or\n`//ComputerName/Share/...` are handled specially.\n\n- Patterns starting with a double-slash followed by some\n non-slash characters will preserve their double-slash. As a\n result, a pattern like `//*` will match `//x`, but not `/x`.\n- Patterns staring with `//?/:` will _not_ treat\n the `?` as a wildcard character. Instead, it will be treated\n as a normal string.\n- Patterns starting with `//?/:/...` will match\n file paths starting with `:/...`, and vice versa,\n as if the `//?/` was not present. This behavior only is\n present when the drive letters are a case-insensitive match to\n one another. The remaining portions of the path/pattern are\n compared case sensitively, unless `nocase:true` is set.\n\nNote that specifying a UNC path using `\\` characters as path\nseparators is always allowed in the file path argument, but only\nallowed in the pattern argument when `windowsPathsNoEscape: true`\nis set in the options.\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require('minimatch').Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n- `pattern` The original pattern the minimatch object represents.\n- `options` The options supplied to the constructor.\n- `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n- `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n- `negate` True if the pattern is negated.\n- `comment` True if the pattern is a comment.\n- `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n- `makeRe()` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n- `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n- `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n- `hasMagic()` Returns true if the parsed pattern contains any\n magic characters. Returns false if all comparator parts are\n string literals. If the `magicalBraces` option is set on the\n constructor, then it will consider brace expansions which are\n not otherwise magical to be magic. If not set, then a pattern\n like `a{b,c}d` will return `false`, because neither `abd` nor\n `acd` contain any special glob characters.\n\n This does **not** mean that the pattern string can be used as a\n literal filename, as it may contain magic glob characters that\n are escaped. For example, the pattern `\\\\*` or `[*]` would not\n be considered to have magic, as the matching portion parses to\n the literal string `'*'` and would match a path named `'*'`,\n not `'\\\\*'` or `'[*]'`. The `minimatch.unescape()` method may\n be used to remove escape characters.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, '*.js', { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter('*.js', { matchBase: true }))\n```\n\n### minimatch.escape(pattern, options = {})\n\nEscape all magic characters in a glob pattern, so that it will\nonly ever match literal strings\n\nIf the `windowsPathsNoEscape` option is used, then characters are\nescaped by wrapping in `[]`, because a magic character wrapped in\na character class can only be satisfied by that exact character.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n### minimatch.unescape(pattern, options = {})\n\nUn-escape a glob string that may contain some escaped characters.\n\nIf the `windowsPathsNoEscape` option is used, then square-brace\nescapes are removed, but not backslash escapes. For example, it\nwill turn the string `'[*]'` into `*`, but it will not turn\n`'\\\\*'` into `'*'`, because `\\` is a path separator in\n`windowsPathsNoEscape` mode.\n\nWhen `windowsPathsNoEscape` is not set, then both brace escapes\nand backslash escapes are removed.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, '*.js', { matchBase: true })\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nocaseMagicOnly\n\nWhen used with `{nocase: true}`, create regular expressions that\nare case-insensitive, but leave string match portions untouched.\nHas no effect when used without `{nocase: true}`\n\nUseful when some other form of case-insensitive matching is used,\nor if the original string representation is useful in some other\nway.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### magicalBraces\n\nThis only affects the results of the `Minimatch.hasMagic` method.\n\nIf the pattern contains brace expansions, such as `a{b,c}d`, but\nno other magic characters, then the `Minipass.hasMagic()` method\nwill return `false` by default. When this option set, it will\nreturn `true` for brace expansion as well as other magic glob\ncharacters.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### windowsPathsNoEscape\n\nUse `\\\\` as a path separator _only_, and _never_ as an escape\ncharacter. If set, all `\\\\` characters are replaced with `/` in\nthe pattern. Note that this makes it **impossible** to match\nagainst paths containing literal glob pattern characters, but\nallows matching with patterns constructed using `path.join()` and\n`path.resolve()` on Windows platforms, mimicking the (buggy!)\nbehavior of earlier versions on Windows. Please use with\ncaution, and be mindful of [the caveat about Windows\npaths](#windows).\n\nFor legacy reasons, this is also set if\n`options.allowWindowsEscape` is set to the exact value `false`.\n\n### windowsNoMagicRoot\n\nWhen a pattern starts with a UNC path or drive letter, and in\n`nocase:true` mode, do not convert the root portions of the\npattern into a case-insensitive regular expression, and instead\nleave them as strings.\n\nThis is the default when the platform is `win32` and\n`nocase:true` is set.\n\n### preserveMultipleSlashes\n\nBy default, multiple `/` characters (other than the leading `//`\nin a UNC path, see \"UNC Paths\" above) are treated as a single\n`/`.\n\nThat is, a pattern like `a///b` will match the file path `a/b`.\n\nSet `preserveMultipleSlashes: true` to suppress this behavior.\n\n### optimizationLevel\n\nA number indicating the level of optimization that should be done\nto the pattern prior to parsing and using it for matches.\n\nGlobstar parts `**` are always converted to `*` when `noglobstar`\nis set, and multiple adjascent `**` parts are converted into a\nsingle `**` (ie, `a/**/**/b` will be treated as `a/**/b`, as this\nis equivalent in all cases).\n\n- `0` - Make no further changes. In this mode, `.` and `..` are\n maintained in the pattern, meaning that they must also appear\n in the same position in the test path string. Eg, a pattern\n like `a/*/../c` will match the string `a/b/../c` but not the\n string `a/c`.\n- `1` - (default) Remove cases where a double-dot `..` follows a\n pattern portion that is not `**`, `.`, `..`, or empty `''`. For\n example, the pattern `./a/b/../*` is converted to `./a/*`, and\n so it will match the path string `./a/c`, but not the path\n string `./a/b/../c`. Dots and empty path portions in the\n pattern are preserved.\n- `2` (or higher) - Much more aggressive optimizations, suitable\n for use with file-walking cases:\n\n - Remove cases where a double-dot `..` follows a pattern\n portion that is not `**`, `.`, or empty `''`. Remove empty\n and `.` portions of the pattern, where safe to do so (ie,\n anywhere other than the last position, the first position, or\n the second position in a pattern starting with `/`, as this\n may indicate a UNC path on Windows).\n - Convert patterns containing `

/**/../

/` into the\n equivalent `

/{..,**}/

/`, where `

` is a\n a pattern portion other than `.`, `..`, `**`, or empty\n `''`.\n - Dedupe patterns where a `**` portion is present in one and\n omitted in another, and it is not the final path portion, and\n they are otherwise equivalent. So `{a/**/b,a/b}` becomes\n `a/**/b`, because `**` matches against an empty path portion.\n - Dedupe patterns where a `*` portion is present in one, and a\n non-dot pattern other than `**`, `.`, `..`, or `''` is in the\n same position in the other. So `a/{*,x}/b` becomes `a/*/b`,\n because `*` can match against `x`.\n\n While these optimizations improve the performance of\n file-walking use cases such as [glob](http://npm.im/glob) (ie,\n the reason this module exists), there are cases where it will\n fail to match a literal string that would have been matched in\n optimization level 1 or 0.\n\n Specifically, while the `Minimatch.match()` method will\n optimize the file path string in the same ways, resulting in\n the same matches, it will fail when tested with the regular\n expression provided by `Minimatch.makeRe()`, unless the path\n string is first processed with\n `minimatch.levelTwoFileOptimize()` or similar.\n\n### platform\n\nWhen set to `win32`, this will trigger all windows-specific\nbehaviors (special handling for UNC paths, and treating `\\` as\nseparators in file paths for comparison.)\n\nDefaults to the value of `process.platform`.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a\nworthwhile goal, some discrepancies exist between minimatch and\nother implementations. Some are intentional, and some are\nunavoidable.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\nNegated extglob patterns are handled as closely as possible to\nBash semantics, but there are some cases with negative extglobs\nwhich are exceedingly difficult to express in a JavaScript\nregular expression. In particular the negated pattern\n`!(*|)*` will in bash match anything that does\nnot start with ``. However,\n`!(*)*` _will_ match paths starting with\n``, because the empty string can match against\nthe negated portion. In this library, `!(*|)*`\nwill _not_ match any pattern starting with ``, due to a\ndifference in precisely which patterns are considered \"greedy\" in\nRegular Expressions vs bash path expansion. This may be fixable,\nbut not without incurring some complexity and performance costs,\nand the trade-off seems to not be worth pursuing.\n\nNote that `fnmatch(3)` in libc is an extremely naive string comparison\nmatcher, which does not do anything special for slashes. This library is\ndesigned to be used in glob searching and file walkers, and so it does do\nspecial things with `/`. Thus, `foo*` will not match `foo/bar` in this\nlibrary, even though it would in `fnmatch(3)`.\n", + "engines": { + "node": ">=10" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index-cjs.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "7fb6a36a2d33ffa8266148cc5b5b4ac9a62ee7cd", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "publishConfig": { + "tag": "legacy-v7" + }, + "_hasShrinkwrap": false, + "readmeFilename": "README.md", + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_7.4.6_1681071524029_0.12020245940117014", + "host": "s3://npm-registry-packages" + } + }, + "9.0.0": { + "name": "minimatch", + "version": "9.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "license": "ISC", + "_id": "minimatch@9.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] + }, + "dist": { + "shasum": "bfc8e88a1c40ffd40c172ddac3decb8451503b56", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", + "fileCount": 53, + "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "signatures": [ + { + "sig": "MEQCIElefaysQGa8Nr3MLv58NzXmSjfdYR3wWizfsMCgX24aAiBSZrwhZZh7ZcwK6uHf5X2o8zKsD61fihIeNZWeL7f3yA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 428034, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMzjrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpTJw//dW+PAibru2az/UByduc47XvZ19uVQGTntL0J7xL1w53O26MV\r\nFNXOdOvAgU25/0WADEAzpn+VwzqeZnoblnD5CpF38N0IhGICT8LuZZmVZZ9e\r\nSVdqv6kqbq2sWrAQOvci2eQs3P+WfakKhhKBpE7QT9J0q+BqR2NWiwUzut9r\r\ndFTjucQI3YRfTciHCchCNowfbW/YK9HIhCConuIc5MF5OF5/eP7HCAPN929h\r\nYrNmXouFoJP2odTyirmdhCuDfjNLzS+L+/+xC/0/kjr7GRsujJ2zIjeuCf3u\r\nyH8Cvztb+FkGqh/qcf+QWPNjUbg9RUzuhAG5VLcD7C0sLY3VuWMWzvoa5bgy\r\nSd4RXUJRMkv2lqAm5yoeAEnb6hKTgHQTGQu3kY5QLj0V76yGyipuRn/5RYGK\r\noDXYfCISM5fWI3lTI/rIg1ANy8SQertDtP+U8yHcYx69K67iF6KBKSCbnMeW\r\nC4sOlA0Ia0Ijl3IiilKEMjBtEU1p7AqV+4EtqA8u88G8jaX/mcXKMfh8lhut\r\nlJPL41ecQO1qJlxxwjzH85tdQyEOU5pFtr2+/5O1RITxMeUgvJvhYKhzs7Bq\r\nmPU67HwXuRiQ5ra7XRUYemreEHbc6OwHGkT96hGP2H0SnrHwKfvR1lIpeb6V\r\ndoNQ+xclWtKpmB0vikRw+V4oonu6xwt/+Yk=\r\n=KymT\r\n-----END PGP SIGNATURE-----\r\n" + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "b95cb1e4404ce374e447b3b1bfde837e74f139bd", + "scripts": { + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.6.3", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.14.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_9.0.0_1681078507424_0.33681436676552456", + "host": "s3://npm-registry-packages" + } + }, + "9.0.1": { + "name": "minimatch", + "version": "9.0.1", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, + "license": "ISC", + "_id": "minimatch@9.0.1", "maintainers": [ { "name": "isaacs", "email": "i@izs.me" } ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "2.0.10": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "2.0.10", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] }, - "main": "minimatch.js", + "dist": { + "shasum": "8a555f541cf976c622daf078bb28f29fb927c253", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", + "fileCount": 53, + "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==", + "signatures": [ + { + "sig": "MEQCIALzqgmZjKE3691Y/WQKusEAyMjnFykDfyyIrlrNGyRGAiAY91n9vj7MzXlwH/sFYqtD9OmOZ7ZE2OGGOXGOIZAKhA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 428478 + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } + } + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "f1b11e7906818f0ae455a82fe7c1bfcf655c786d", "scripts": { - "posttest": "standard minimatch.js test/*.js", - "test": "tap test/*.js", - "prepublish": "browserify -o browser.js -e minimatch.js -s minimatch --bare" + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "9.6.5", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.16.0", "dependencies": { - "brace-expansion": "^1.0.0" + "brace-expansion": "^2.0.1" }, + "_hasShrinkwrap": false, "devDependencies": { - "browserify": "^9.0.3", - "standard": "^3.7.2", - "tap": "^1.2.0" + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_9.0.1_1684616039844_0.6499629025752791", + "host": "s3://npm-registry-packages" + } + }, + "9.0.2": { + "name": "minimatch", + "version": "9.0.2", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "files": [ - "minimatch.js", - "browser.js" + "_id": "minimatch@9.0.2", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "6afb85f0c324b321f76a38df81891e562693e257", + "homepage": "https://github.com/isaacs/minimatch#readme", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@2.0.10", - "_shasum": "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7", - "_from": ".", - "_npmVersion": "3.1.0", - "_nodeVersion": "2.2.1", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] }, "dist": { - "shasum": "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" + "shasum": "397e387fff22f6795844d00badc903a3d5de7057", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "fileCount": 53, + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "signatures": [ + { + "sig": "MEUCIQCClDIYBp4y7cbhQbhk3rlDIYUJswjBJRndD+upNcEhLQIgdjZX6Z9JQDRbzPabt1WqfbB4/YVRvoFKp7X4GhrGmjM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 433704 + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } } - ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "3.0.0": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "3.0.0", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "funding": { + "url": "https://github.com/sponsors/isaacs" }, - "main": "minimatch.js", + "gitHead": "b7bd6d6db0b2521c12f654895971cf81790a5257", "scripts": { - "posttest": "standard minimatch.js test/*.js", - "test": "tap test/*.js" + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" }, + "_npmVersion": "9.5.1", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.16.0", "dependencies": { - "brace-expansion": "^1.0.0" + "brace-expansion": "^2.0.1" }, + "_hasShrinkwrap": false, "devDependencies": { - "standard": "^3.7.2", - "tap": "^1.2.0" + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_9.0.2_1687554743457_0.763619162681844", + "host": "s3://npm-registry-packages" + } + }, + "9.0.3": { + "name": "minimatch", + "version": "9.0.3", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "files": [ - "minimatch.js" + "_id": "minimatch@9.0.3", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "270dbea567f0af6918cb18103e98c612aa717a20", + "homepage": "https://github.com/isaacs/minimatch#readme", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@3.0.0", - "_shasum": "5236157a51e4f004c177fb3c527ff7dd78f0ef83", - "_from": ".", - "_npmVersion": "3.3.2", - "_nodeVersion": "4.0.0", - "_npmUser": { - "name": "isaacs", - "email": "isaacs@npmjs.com" + "tap": { + "ts": false, + "coverage": false, + "node-arg": [ + "--no-warnings", + "--loader", + "ts-node/esm" + ] }, "dist": { - "shasum": "5236157a51e4f004c177fb3c527ff7dd78f0ef83", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz" - }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" + "shasum": "a6e00c3de44c3a542bfaae70abfc22420a6da825", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "fileCount": 53, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "signatures": [ + { + "sig": "MEYCIQCamyK0PER6ghY490MnmvqR9yobciGJrpbT+cf0/tstiwIhANKmkVC3BveaqUJrdGHzs/OW3ygmshF5Tod3RkppHuDA", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 433705 + }, + "main": "./dist/cjs/index.js", + "types": "./dist/cjs/index.d.ts", + "module": "./dist/mjs/index.js", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/mjs/index.d.ts", + "default": "./dist/mjs/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.ts", + "default": "./dist/cjs/index.js" + } } - ], - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "directories": {} - }, - "3.0.2": { - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "3.0.2", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "funding": { + "url": "https://github.com/sponsors/isaacs" }, - "main": "minimatch.js", + "gitHead": "f8b46a317a7695c342402cde52c8b0f7a47add17", "scripts": { - "posttest": "standard minimatch.js test/*.js", - "test": "tap test/*.js" + "snap": "c8 tap", + "test": "c8 tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preprepare": "rm -rf dist", + "preversion": "npm test", + "postprepare": "bash fixup.sh", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" }, - "engines": { - "node": "*" + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true + }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "9.7.2", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "18.16.0", "dependencies": { - "brace-expansion": "^1.0.0" + "brace-expansion": "^2.0.1" }, + "_hasShrinkwrap": false, "devDependencies": { - "standard": "^3.7.2", - "tap": "^5.6.0" + "c8": "^7.12.0", + "tap": "^16.3.7", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.8", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_9.0.3_1688663147247_0.36720562387508116", + "host": "s3://npm-registry-packages" + } + }, + "9.0.4": { + "name": "minimatch", + "version": "9.0.4", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "files": [ - "minimatch.js" + "_id": "minimatch@9.0.4", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "81edb7c763abd31ba981c87ec5e835f178786be0", + "homepage": "https://github.com/isaacs/minimatch#readme", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@3.0.2", - "_shasum": "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a", - "_from": ".", - "_npmVersion": "3.9.1", - "_nodeVersion": "4.4.4", + "dist": { + "shasum": "8e49c731d1749cbec05050ee5145147b32496a51", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "fileCount": 53, + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "signatures": [ + { + "sig": "MEQCIEHx6wDga4HI7ZIwQJ5815qkSydqrccn45jiUWd+XGywAiAlO83AcJHK9yJ7o2ApIF8drPKD2Ln00MXM9eb/4zSfEQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 434900 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "cb4be48a55d64b3a40a745d4a8eb4d1b06507277", + "scripts": { + "snap": "tap", + "test": "tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "dist": { - "shasum": "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz" + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "_npmOperationalInternal": { - "host": "packages-16-east.internal.npmjs.com", - "tmp": "tmp/minimatch-3.0.2.tgz_1466194379770_0.11417287751100957" + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "10.5.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "20.11.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.8", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" }, - "directories": {} + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_9.0.4_1711654976118_0.11283678243962436", + "host": "s3://npm-registry-packages" + } }, - "3.0.3": { + "9.0.5": { + "name": "minimatch", + "version": "9.0.5", "author": { + "url": "http://blog.izs.me", "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" + "email": "i@izs.me" }, - "name": "minimatch", - "description": "a glob matcher in javascript", - "version": "3.0.3", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/minimatch.git" + "license": "ISC", + "_id": "minimatch@9.0.5", + "homepage": "https://github.com/isaacs/minimatch#readme", + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, - "main": "minimatch.js", - "scripts": { - "posttest": "standard minimatch.js test/*.js", - "test": "tap test/*.js" + "dist": { + "shasum": "d74f9dd6b57d83d8e98cfb82133b03978bc929e5", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "fileCount": 53, + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "signatures": [ + { + "sig": "MEYCIQC8i1XVlxHUOKd0etL7moPA7FuIE5d+E6J4fd1YQj0btgIhAMtyRwTteIb7e0oR/SIFP0LK/JFECg7Aj3KbraAX9pih", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 435003 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "0de7f45232cad5e3e49e4eb7cd9b6e124ed04b84", + "scripts": { + "snap": "tap", + "test": "tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true }, + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "20.13.1", "dependencies": { - "brace-expansion": "^1.0.0" + "brace-expansion": "^2.0.1" }, + "_hasShrinkwrap": false, "devDependencies": { - "standard": "^3.7.2", - "tap": "^5.6.0" + "tap": "^18.7.2", + "tshy": "^1.12.0", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.8", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_9.0.5_1719355262600_0.4346187038816942", + "host": "s3://npm-registry-packages" + } + }, + "10.0.0": { + "name": "minimatch", + "version": "10.0.0", + "author": { + "url": "http://blog.izs.me", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" }, "license": "ISC", - "files": [ - "minimatch.js" + "_id": "minimatch@10.0.0", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } ], - "gitHead": "eed89491bd4a4e6bc463aac0dfb5c29ef0d1dc13", + "homepage": "https://github.com/isaacs/minimatch#readme", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, - "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@3.0.3", - "_shasum": "2a4e4090b96b2db06a9d7df01055a62a77c9b774", - "_from": ".", - "_npmVersion": "3.10.6", - "_nodeVersion": "4.4.4", + "dist": { + "shasum": "bf7b5028e151f3a8db2970a1d36523b6f610868b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.0.tgz", + "fileCount": 53, + "integrity": "sha512-S4phymWe5NHWbTV8sAlyNQfkmdhvaoHX43x4yLtJBjw2zJtEuzkihDjV5uKq+D/EoMkjbG6msw3ubbSd1pGkyg==", + "signatures": [ + { + "sig": "MEQCIAw8dNW+YvM6CrTFZ/M8aoSL/a1fuF6jycL3Bsnm8sgOAiAxp0R2h4KMBh198Ou752Sl5aHI5GIALZE/XTvv3NavJA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 438775 + }, + "main": "./dist/commonjs/index.js", + "tshy": { + "exports": { + ".": "./src/index.ts", + "./package.json": "./package.json" + } + }, + "type": "module", + "types": "./dist/commonjs/index.d.ts", + "module": "./dist/esm/index.js", + "engines": { + "node": "20 || >=22" + }, + "exports": { + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + }, + "./package.json": "./package.json" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "gitHead": "346685ced5203464bb10fd3d4dfa6964f6102ede", + "scripts": { + "snap": "tap", + "test": "tap", + "format": "prettier --write . --loglevel warn", + "prepare": "tshy", + "presnap": "npm run prepare", + "pretest": "npm run prepare", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts", + "benchmark": "node benchmark/index.js", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags" + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "dist": { - "shasum": "2a4e4090b96b2db06a9d7df01055a62a77c9b774", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz" + "prettier": { + "semi": false, + "useTabs": false, + "tabWidth": 2, + "endOfLine": "lf", + "printWidth": 80, + "arrowParens": "avoid", + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], - "_npmOperationalInternal": { - "host": "packages-12-west.internal.npmjs.com", - "tmp": "tmp/minimatch-3.0.3.tgz_1470678322731_0.1892083385027945" + "repository": { + "url": "git://github.com/isaacs/minimatch.git", + "type": "git" + }, + "_npmVersion": "10.7.0", + "description": "a glob matcher in javascript", + "directories": {}, + "_nodeVersion": "20.13.1", + "dependencies": { + "brace-expansion": "^4.0.0" + }, + "_hasShrinkwrap": false, + "devDependencies": { + "tap": "^20.0.3", + "tshy": "^2.0.1", + "mkdirp": "^3.0.1", + "typedoc": "^0.26.3", + "prettier": "^3.3.2", + "typescript": "^5.5.3", + "@types/node": "^20.14.10", + "@types/brace-expansion": "^1.1.2" }, - "directories": {} + "_npmOperationalInternal": { + "tmp": "tmp/minimatch_10.0.0_1720475591563_0.1362400401155739", + "host": "s3://npm-registry-packages" + } }, - "3.0.4": { + "10.0.1": { "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -2257,48 +9853,104 @@ }, "name": "minimatch", "description": "a glob matcher in javascript", - "version": "3.0.4", + "version": "10.0.1", "repository": { "type": "git", "url": "git://github.com/isaacs/minimatch.git" }, - "main": "minimatch.js", + "main": "./dist/commonjs/index.js", + "types": "./dist/commonjs/index.d.ts", + "exports": { + "./package.json": "./package.json", + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/commonjs/index.d.ts", + "default": "./dist/commonjs/index.js" + } + } + }, "scripts": { - "test": "tap test/*.js --cov", "preversion": "npm test", "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" + "prepublishOnly": "git push origin --follow-tags", + "prepare": "tshy", + "pretest": "npm run prepare", + "presnap": "npm run prepare", + "test": "tap", + "snap": "tap", + "format": "prettier --write . --loglevel warn", + "benchmark": "node benchmark/index.js", + "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts" + }, + "prettier": { + "semi": false, + "printWidth": 80, + "tabWidth": 2, + "useTabs": false, + "singleQuote": true, + "jsxSingleQuote": false, + "bracketSameLine": true, + "arrowParens": "avoid", + "endOfLine": "lf" }, "engines": { - "node": "*" + "node": "20 || >=22" }, "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "devDependencies": { - "tap": "^10.3.2" + "@types/brace-expansion": "^1.1.2", + "@types/node": "^20.14.10", + "mkdirp": "^3.0.1", + "prettier": "^3.3.2", + "tap": "^20.0.3", + "tshy": "^2.0.1", + "typedoc": "^0.26.3", + "typescript": "^5.5.3" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" }, "license": "ISC", - "files": [ - "minimatch.js" - ], - "gitHead": "e46989a323d5f0aa4781eff5e2e6e7aafa223321", + "tshy": { + "exports": { + "./package.json": "./package.json", + ".": "./src/index.ts" + } + }, + "type": "module", + "module": "./dist/esm/index.js", + "_id": "minimatch@10.0.1", + "gitHead": "0569cd3373408f9d701d3aab187b3f43a24a0db7", "bugs": { "url": "https://github.com/isaacs/minimatch/issues" }, "homepage": "https://github.com/isaacs/minimatch#readme", - "_id": "minimatch@3.0.4", - "_npmVersion": "5.0.0-beta.43", - "_nodeVersion": "8.0.0-pre", + "_nodeVersion": "20.13.1", + "_npmVersion": "10.7.0", + "dist": { + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "shasum": "ce0521856b453c86e25f2c4c0d03e6ff7ddc440b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "fileCount": 53, + "unpackedSize": 438775, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCAYhDBiow3JZoo/Wjad4/ocXc9Ijsec0bAReaf4pYqYQIgMDAifdJ7f0bom8/4uSrttUwr4NUIdWu9FMYhcy9wvZY=" + } + ] + }, "_npmUser": { "name": "isaacs", "email": "i@izs.me" }, - "dist": { - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "shasum": "5166e286457f03306064be5497e8dbb0c3d32083", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" - }, + "directories": {}, "maintainers": [ { "name": "isaacs", @@ -2306,21 +9958,15 @@ } ], "_npmOperationalInternal": { - "host": "packages-18-east.internal.npmjs.com", - "tmp": "tmp/minimatch-3.0.4.tgz_1494180669024_0.22628829116001725" + "host": "s3://npm-registry-packages", + "tmp": "tmp/minimatch_10.0.1_1720479745386_0.5053831268283802" }, - "directories": {} + "_hasShrinkwrap": false } }, - "maintainers": [ - { - "name": "isaacs", - "email": "i@izs.me" - } - ], "time": { - "modified": "2019-04-15T06:36:45.906Z", "created": "2011-07-16T08:52:46.242Z", + "modified": "2024-07-08T23:02:25.713Z", "0.0.1": "2011-07-16T08:52:46.751Z", "0.0.2": "2011-07-16T17:57:12.490Z", "0.0.4": "2011-07-29T19:13:01.148Z", @@ -2361,123 +10007,198 @@ "3.0.0": "2015-09-27T18:18:59.997Z", "3.0.2": "2016-06-17T20:13:02.079Z", "3.0.3": "2016-08-08T17:45:22.959Z", - "3.0.4": "2017-05-07T18:11:10.900Z" + "3.0.4": "2017-05-07T18:11:10.900Z", + "3.0.5": "2022-02-06T20:28:04.652Z", + "3.0.6": "2022-02-12T23:58:17.727Z", + "4.0.0": "2022-02-13T00:37:33.892Z", + "4.1.0": "2022-02-13T00:58:48.018Z", + "3.1.0": "2022-02-13T01:03:22.958Z", + "3.1.1": "2022-02-13T04:01:44.444Z", + "3.0.7": "2022-02-13T04:03:33.143Z", + "4.1.1": "2022-02-13T04:22:13.854Z", + "4.2.0": "2022-02-15T16:03:28.444Z", + "4.2.1": "2022-02-15T16:35:28.146Z", + "5.0.0": "2022-02-15T16:50:03.151Z", + "3.1.2": "2022-02-15T20:32:43.510Z", + "3.0.8": "2022-02-15T20:33:33.732Z", + "5.0.1": "2022-02-24T17:58:20.816Z", + "5.1.0": "2022-05-16T16:13:11.979Z", + "5.1.1": "2022-11-29T20:33:52.832Z", + "5.1.2": "2022-12-20T15:12:13.918Z", + "5.1.3": "2023-01-14T18:54:23.367Z", + "5.1.4": "2023-01-14T19:09:39.409Z", + "6.0.0": "2023-01-14T21:07:02.827Z", + "6.0.1": "2023-01-15T17:37:41.372Z", + "6.0.2": "2023-01-15T21:26:11.666Z", + "6.0.3": "2023-01-15T23:08:02.448Z", + "6.0.4": "2023-01-16T01:55:01.750Z", + "6.1.0": "2023-01-17T07:11:06.269Z", + "6.1.1": "2023-01-17T14:57:09.235Z", + "6.1.2": "2023-01-17T15:02:37.126Z", + "5.1.5": "2023-01-17T15:04:11.073Z", + "4.2.2": "2023-01-17T15:09:14.295Z", + "6.1.3": "2023-01-17T17:24:11.735Z", + "6.1.4": "2023-01-17T17:46:31.707Z", + "5.1.6": "2023-01-17T19:46:37.483Z", + "4.2.3": "2023-01-17T19:47:04.835Z", + "6.1.5": "2023-01-17T22:17:33.109Z", + "6.1.6": "2023-01-22T17:52:06.355Z", + "6.1.7": "2023-02-11T20:33:31.384Z", + "6.1.8": "2023-02-11T21:10:03.494Z", + "6.1.9": "2023-02-13T06:54:04.311Z", + "6.1.10": "2023-02-13T08:20:38.903Z", + "6.2.0": "2023-02-13T08:58:22.378Z", + "7.0.0": "2023-02-20T00:45:53.556Z", + "7.0.1": "2023-02-22T02:01:55.015Z", + "7.1.0": "2023-02-22T23:45:29.974Z", + "7.1.1": "2023-02-24T00:36:24.751Z", + "7.1.2": "2023-02-24T22:56:58.174Z", + "7.1.3": "2023-02-25T02:07:45.997Z", + "7.1.4": "2023-02-26T01:03:07.458Z", + "7.2.0": "2023-02-26T09:13:44.871Z", + "7.3.0": "2023-02-27T19:58:12.599Z", + "7.4.0": "2023-03-01T06:59:21.929Z", + "7.4.1": "2023-03-01T07:59:55.185Z", + "7.4.2": "2023-03-01T20:13:50.508Z", + "7.4.3": "2023-03-22T18:52:11.270Z", + "7.4.4": "2023-04-01T23:44:08.895Z", + "8.0.0": "2023-04-02T03:33:52.141Z", + "8.0.1": "2023-04-02T03:39:08.726Z", + "8.0.2": "2023-04-02T03:41:11.591Z", + "7.4.5": "2023-04-03T16:49:58.486Z", + "8.0.3": "2023-04-03T16:51:26.689Z", + "8.0.4": "2023-04-09T20:17:45.328Z", + "7.4.6": "2023-04-09T20:18:44.178Z", + "9.0.0": "2023-04-09T22:15:07.639Z", + "9.0.1": "2023-05-20T20:53:59.996Z", + "9.0.2": "2023-06-23T21:12:23.706Z", + "9.0.3": "2023-07-06T17:05:47.404Z", + "9.0.4": "2024-03-28T19:42:56.374Z", + "9.0.5": "2024-06-25T22:41:02.824Z", + "10.0.0": "2024-07-08T21:53:11.825Z", + "10.0.1": "2024-07-08T23:02:25.545Z" + }, + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" }, "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", "url": "http://blog.izs.me" }, + "license": "ISC", + "homepage": "https://github.com/isaacs/minimatch#readme", "repository": { "type": "git", "url": "git://github.com/isaacs/minimatch.git" }, + "description": "a glob matcher in javascript", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "readme": "# minimatch\n\nA minimal matching utility.\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```js\n// hybrid module, load with require() or import\nimport { minimatch } from 'minimatch'\n// or:\nconst { minimatch } = require('minimatch')\n\nminimatch('bar.foo', '*.foo') // true!\nminimatch('bar.foo', '*.bar') // false!\nminimatch('bar.foo', '*.+(bar|foo)', { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n- Brace Expansion\n- Extended glob matching\n- \"Globstar\" `**` matching\n- [Posix character\n classes](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html),\n like `[[:alpha:]]`, supporting the full range of Unicode\n characters. For example, `[[:alpha:]]` will match against\n `'é'`, though `[a-zA-Z]` will not. Collating symbol and set\n matching is not supported, so `[[=e=]]` will _not_ match `'é'`\n and `[[.ch.]]` will not match `'ch'` in locales where `ch` is\n considered a single character.\n\nSee:\n\n- `man sh`\n- `man bash` [Pattern\n Matching](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html)\n- `man 3 fnmatch`\n- `man 5 gitignore`\n\n## Windows\n\n**Please only use forward-slashes in glob expressions.**\n\nThough windows uses either `/` or `\\` as its path separator, only `/`\ncharacters are used by this glob implementation. You must use\nforward-slashes **only** in glob expressions. Back-slashes in patterns\nwill always be interpreted as escape characters, not path separators.\n\nNote that `\\` or `/` _will_ be interpreted as path separators in paths on\nWindows, and will match against `/` in glob expressions.\n\nSo just always use `/` in patterns.\n\n### UNC Paths\n\nOn Windows, UNC paths like `//?/c:/...` or\n`//ComputerName/Share/...` are handled specially.\n\n- Patterns starting with a double-slash followed by some\n non-slash characters will preserve their double-slash. As a\n result, a pattern like `//*` will match `//x`, but not `/x`.\n- Patterns staring with `//?/:` will _not_ treat\n the `?` as a wildcard character. Instead, it will be treated\n as a normal string.\n- Patterns starting with `//?/:/...` will match\n file paths starting with `:/...`, and vice versa,\n as if the `//?/` was not present. This behavior only is\n present when the drive letters are a case-insensitive match to\n one another. The remaining portions of the path/pattern are\n compared case sensitively, unless `nocase:true` is set.\n\nNote that specifying a UNC path using `\\` characters as path\nseparators is always allowed in the file path argument, but only\nallowed in the pattern argument when `windowsPathsNoEscape: true`\nis set in the options.\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require('minimatch').Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n- `pattern` The original pattern the minimatch object represents.\n- `options` The options supplied to the constructor.\n- `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n- `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n- `negate` True if the pattern is negated.\n- `comment` True if the pattern is a comment.\n- `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n- `makeRe()` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n- `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n- `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n- `hasMagic()` Returns true if the parsed pattern contains any\n magic characters. Returns false if all comparator parts are\n string literals. If the `magicalBraces` option is set on the\n constructor, then it will consider brace expansions which are\n not otherwise magical to be magic. If not set, then a pattern\n like `a{b,c}d` will return `false`, because neither `abd` nor\n `acd` contain any special glob characters.\n\n This does **not** mean that the pattern string can be used as a\n literal filename, as it may contain magic glob characters that\n are escaped. For example, the pattern `\\\\*` or `[*]` would not\n be considered to have magic, as the matching portion parses to\n the literal string `'*'` and would match a path named `'*'`,\n not `'\\\\*'` or `'[*]'`. The `minimatch.unescape()` method may\n be used to remove escape characters.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, '*.js', { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter('*.js', { matchBase: true }))\n```\n\n### minimatch.escape(pattern, options = {})\n\nEscape all magic characters in a glob pattern, so that it will\nonly ever match literal strings\n\nIf the `windowsPathsNoEscape` option is used, then characters are\nescaped by wrapping in `[]`, because a magic character wrapped in\na character class can only be satisfied by that exact character.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n### minimatch.unescape(pattern, options = {})\n\nUn-escape a glob string that may contain some escaped characters.\n\nIf the `windowsPathsNoEscape` option is used, then square-brace\nescapes are removed, but not backslash escapes. For example, it\nwill turn the string `'[*]'` into `*`, but it will not turn\n`'\\\\*'` into `'*'`, because `\\` is a path separator in\n`windowsPathsNoEscape` mode.\n\nWhen `windowsPathsNoEscape` is not set, then both brace escapes\nand backslash escapes are removed.\n\nSlashes (and backslashes in `windowsPathsNoEscape` mode) cannot\nbe escaped or unescaped.\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, '*.js', { matchBase: true })\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nocaseMagicOnly\n\nWhen used with `{nocase: true}`, create regular expressions that\nare case-insensitive, but leave string match portions untouched.\nHas no effect when used without `{nocase: true}`\n\nUseful when some other form of case-insensitive matching is used,\nor if the original string representation is useful in some other\nway.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### magicalBraces\n\nThis only affects the results of the `Minimatch.hasMagic` method.\n\nIf the pattern contains brace expansions, such as `a{b,c}d`, but\nno other magic characters, then the `Minimatch.hasMagic()` method\nwill return `false` by default. When this option set, it will\nreturn `true` for brace expansion as well as other magic glob\ncharacters.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n### partial\n\nCompare a partial path to a pattern. As long as the parts of the path that\nare present are not contradicted by the pattern, it will be treated as a\nmatch. This is useful in applications where you're walking through a\nfolder structure, and don't yet have the full path, but want to ensure that\nyou do not walk down paths that can never be a match.\n\nFor example,\n\n```js\nminimatch('/a/b', '/a/*/c/d', { partial: true }) // true, might be /a/b/c/d\nminimatch('/a/b', '/**/d', { partial: true }) // true, might be /a/b/.../d\nminimatch('/x/y/z', '/a/**/z', { partial: true }) // false, because x !== a\n```\n\n### windowsPathsNoEscape\n\nUse `\\\\` as a path separator _only_, and _never_ as an escape\ncharacter. If set, all `\\\\` characters are replaced with `/` in\nthe pattern. Note that this makes it **impossible** to match\nagainst paths containing literal glob pattern characters, but\nallows matching with patterns constructed using `path.join()` and\n`path.resolve()` on Windows platforms, mimicking the (buggy!)\nbehavior of earlier versions on Windows. Please use with\ncaution, and be mindful of [the caveat about Windows\npaths](#windows).\n\nFor legacy reasons, this is also set if\n`options.allowWindowsEscape` is set to the exact value `false`.\n\n### windowsNoMagicRoot\n\nWhen a pattern starts with a UNC path or drive letter, and in\n`nocase:true` mode, do not convert the root portions of the\npattern into a case-insensitive regular expression, and instead\nleave them as strings.\n\nThis is the default when the platform is `win32` and\n`nocase:true` is set.\n\n### preserveMultipleSlashes\n\nBy default, multiple `/` characters (other than the leading `//`\nin a UNC path, see \"UNC Paths\" above) are treated as a single\n`/`.\n\nThat is, a pattern like `a///b` will match the file path `a/b`.\n\nSet `preserveMultipleSlashes: true` to suppress this behavior.\n\n### optimizationLevel\n\nA number indicating the level of optimization that should be done\nto the pattern prior to parsing and using it for matches.\n\nGlobstar parts `**` are always converted to `*` when `noglobstar`\nis set, and multiple adjacent `**` parts are converted into a\nsingle `**` (ie, `a/**/**/b` will be treated as `a/**/b`, as this\nis equivalent in all cases).\n\n- `0` - Make no further changes. In this mode, `.` and `..` are\n maintained in the pattern, meaning that they must also appear\n in the same position in the test path string. Eg, a pattern\n like `a/*/../c` will match the string `a/b/../c` but not the\n string `a/c`.\n- `1` - (default) Remove cases where a double-dot `..` follows a\n pattern portion that is not `**`, `.`, `..`, or empty `''`. For\n example, the pattern `./a/b/../*` is converted to `./a/*`, and\n so it will match the path string `./a/c`, but not the path\n string `./a/b/../c`. Dots and empty path portions in the\n pattern are preserved.\n- `2` (or higher) - Much more aggressive optimizations, suitable\n for use with file-walking cases:\n\n - Remove cases where a double-dot `..` follows a pattern\n portion that is not `**`, `.`, or empty `''`. Remove empty\n and `.` portions of the pattern, where safe to do so (ie,\n anywhere other than the last position, the first position, or\n the second position in a pattern starting with `/`, as this\n may indicate a UNC path on Windows).\n - Convert patterns containing `

/**/../

/` into the\n equivalent `

/{..,**}/

/`, where `

` is a\n a pattern portion other than `.`, `..`, `**`, or empty\n `''`.\n - Dedupe patterns where a `**` portion is present in one and\n omitted in another, and it is not the final path portion, and\n they are otherwise equivalent. So `{a/**/b,a/b}` becomes\n `a/**/b`, because `**` matches against an empty path portion.\n - Dedupe patterns where a `*` portion is present in one, and a\n non-dot pattern other than `**`, `.`, `..`, or `''` is in the\n same position in the other. So `a/{*,x}/b` becomes `a/*/b`,\n because `*` can match against `x`.\n\n While these optimizations improve the performance of\n file-walking use cases such as [glob](http://npm.im/glob) (ie,\n the reason this module exists), there are cases where it will\n fail to match a literal string that would have been matched in\n optimization level 1 or 0.\n\n Specifically, while the `Minimatch.match()` method will\n optimize the file path string in the same ways, resulting in\n the same matches, it will fail when tested with the regular\n expression provided by `Minimatch.makeRe()`, unless the path\n string is first processed with\n `minimatch.levelTwoFileOptimize()` or similar.\n\n### platform\n\nWhen set to `win32`, this will trigger all windows-specific\nbehaviors (special handling for UNC paths, and treating `\\` as\nseparators in file paths for comparison.)\n\nDefaults to the value of `process.platform`.\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a\nworthwhile goal, some discrepancies exist between minimatch and\nother implementations. Some are intentional, and some are\nunavoidable.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n\nNegated extglob patterns are handled as closely as possible to\nBash semantics, but there are some cases with negative extglobs\nwhich are exceedingly difficult to express in a JavaScript\nregular expression. In particular the negated pattern\n`!(*|)*` will in bash match anything that does\nnot start with ``. However,\n`!(*)*` _will_ match paths starting with\n``, because the empty string can match against\nthe negated portion. In this library, `!(*|)*`\nwill _not_ match any pattern starting with ``, due to a\ndifference in precisely which patterns are considered \"greedy\" in\nRegular Expressions vs bash path expansion. This may be fixable,\nbut not without incurring some complexity and performance costs,\nand the trade-off seems to not be worth pursuing.\n\nNote that `fnmatch(3)` in libc is an extremely naive string comparison\nmatcher, which does not do anything special for slashes. This library is\ndesigned to be used in glob searching and file walkers, and so it does do\nspecial things with `/`. Thus, `foo*` will not match `foo/bar` in this\nlibrary, even though it would in `fnmatch(3)`.\n", + "readmeFilename": "README.md", "users": { "326060588": true, - "tjholowaychuk": true, - "thlorenz": true, - "fgribreau": true, - "jswartwood": true, - "shama": true, - "charmander": true, - "jpoehls": true, "pid": true, - "brianloveswords": true, - "darosh": true, - "esundahl": true, - "jifeng": true, - "slang800": true, - "mulchkin": true, - "tunnckocore": true, - "jimnox": true, - "kahboom": true, - "overra": true, - "nickleefly": true, - "ajohnstone": true, - "coderaiser": true, - "zhangyaochun": true, + "pwn": true, "n370": true, - "subchen": true, - "phoenix-xsy": true, - "yashprit": true, - "mysticatea": true, - "mjurincic": true, - "skenqbx": true, - "slang": true, - "boom11235": true, + "tpkn": true, "vwal": true, - "nicholaslp": true, - "draganhr": true, - "klap-webdevelopment": true, - "javascript": true, - "chrisyipw": true, + "bengi": true, + "shama": true, + "slang": true, + "akarem": true, + "d-band": true, + "darosh": true, "h0ward": true, - "ziflex": true, - "monsterkodi": true, - "kappuccino": true, - "deepakvishwakarma": true, - "xgheaven": true, + "jifeng": true, + "jimnox": true, + "kagawa": true, + "knoja4": true, "monjer": true, - "xieranmaya": true, - "kruemelo": true, - "shaner": true, + "mrzmmr": true, "n1ru4l": true, - "jian263994241": true, - "steel1990": true, - "yinyongcom666": true, - "pwn": true, - "morogasper": true, - "loridale": true, - "akarem": true, + "nuwaio": true, + "overra": true, + "pandao": true, + "shaner": true, + "wickie": true, "yoking": true, - "i-erokhin": true, - "kagawa": true, - "ghostcode521": true, - "scottfreecode": true, - "montyanderson": true, + "ziflex": true, + "abetomo": true, + "asaupup": true, + "jpoehls": true, + "kahboom": true, "lixulun": true, - "knoja4": true, - "danielbankhead": true, - "mojaray2k": true, - "roman-io": true, - "wickie": true, "shavyg2": true, - "bapinney": true, - "shangsinian": true, + "skenqbx": true, + "subchen": true, + "takonyc": true, "timwzou": true, - "philje": true, - "shaomingquan": true, - "bengi": true, - "fengmiaosen": true, - "davidjsalazarmoreno": true, - "shuoshubao": true, - "abetomo": true, - "larrychen": true, - "asaupup": true, + "bagpommy": true, + "bapinney": true, + "draganhr": true, + "esundahl": true, + "kruemelo": true, + "loridale": true, + "losymear": true, + "mulchkin": true, "pddivine": true, - "langri-sha": true, - "supersha": true, - "d-band": true, - "dpjayasekara": true, - "nuwaio": true, "schacker": true, - "tpkn": true, + "slang800": true, + "supersha": true, + "thlorenz": true, + "xgheaven": true, + "yashprit": true, + "zuojiang": true, + "boom11235": true, + "chrisyipw": true, + "fgribreau": true, + "i-erokhin": true, + "larrychen": true, + "mjurincic": true, + "mojaray2k": true, + "steel1990": true, + "sternelee": true, "webnicola": true, - "bagpommy": true, - "mrzmmr": true, - "pandao": true, "xiechao06": true, + "ajohnstone": true, + "charmander": true, + "coderaiser": true, + "javascript": true, + "jswartwood": true, + "kappuccino": true, + "langri-sha": true, "mehmetkose": true, - "sternelee": true, - "losymear": true, - "takonyc": true, - "zuojiang": true - }, - "readme": "# minimatch\n\nA minimal matching utility.\n\n[![Build Status](https://secure.travis-ci.org/isaacs/minimatch.svg)](http://travis-ci.org/isaacs/minimatch)\n\n\nThis is the matching library used internally by npm.\n\nIt works by converting glob expressions into JavaScript `RegExp`\nobjects.\n\n## Usage\n\n```javascript\nvar minimatch = require(\"minimatch\")\n\nminimatch(\"bar.foo\", \"*.foo\") // true!\nminimatch(\"bar.foo\", \"*.bar\") // false!\nminimatch(\"bar.foo\", \"*.+(bar|foo)\", { debug: true }) // true, and noisy!\n```\n\n## Features\n\nSupports these glob features:\n\n* Brace Expansion\n* Extended glob matching\n* \"Globstar\" `**` matching\n\nSee:\n\n* `man sh`\n* `man bash`\n* `man 3 fnmatch`\n* `man 5 gitignore`\n\n## Minimatch Class\n\nCreate a minimatch object by instantiating the `minimatch.Minimatch` class.\n\n```javascript\nvar Minimatch = require(\"minimatch\").Minimatch\nvar mm = new Minimatch(pattern, options)\n```\n\n### Properties\n\n* `pattern` The original pattern the minimatch object represents.\n* `options` The options supplied to the constructor.\n* `set` A 2-dimensional array of regexp or string expressions.\n Each row in the\n array corresponds to a brace-expanded pattern. Each item in the row\n corresponds to a single path-part. For example, the pattern\n `{a,b/c}/d` would expand to a set of patterns like:\n\n [ [ a, d ]\n , [ b, c, d ] ]\n\n If a portion of the pattern doesn't have any \"magic\" in it\n (that is, it's something like `\"foo\"` rather than `fo*o?`), then it\n will be left as a string rather than converted to a regular\n expression.\n\n* `regexp` Created by the `makeRe` method. A single regular expression\n expressing the entire pattern. This is useful in cases where you wish\n to use the pattern somewhat like `fnmatch(3)` with `FNM_PATH` enabled.\n* `negate` True if the pattern is negated.\n* `comment` True if the pattern is a comment.\n* `empty` True if the pattern is `\"\"`.\n\n### Methods\n\n* `makeRe` Generate the `regexp` member if necessary, and return it.\n Will return `false` if the pattern is invalid.\n* `match(fname)` Return true if the filename matches the pattern, or\n false otherwise.\n* `matchOne(fileArray, patternArray, partial)` Take a `/`-split\n filename, and match it against a single row in the `regExpSet`. This\n method is mainly for internal use, but is exposed so that it can be\n used by a glob-walker that needs to avoid excessive filesystem calls.\n\nAll other methods are internal, and will be called as necessary.\n\n### minimatch(path, pattern, options)\n\nMain export. Tests a path against the pattern using the options.\n\n```javascript\nvar isJS = minimatch(file, \"*.js\", { matchBase: true })\n```\n\n### minimatch.filter(pattern, options)\n\nReturns a function that tests its\nsupplied argument, suitable for use with `Array.filter`. Example:\n\n```javascript\nvar javascripts = fileList.filter(minimatch.filter(\"*.js\", {matchBase: true}))\n```\n\n### minimatch.match(list, pattern, options)\n\nMatch against the list of\nfiles, in the style of fnmatch or glob. If nothing is matched, and\noptions.nonull is set, then return a list containing the pattern itself.\n\n```javascript\nvar javascripts = minimatch.match(fileList, \"*.js\", {matchBase: true}))\n```\n\n### minimatch.makeRe(pattern, options)\n\nMake a regular expression object from the pattern.\n\n## Options\n\nAll options are `false` by default.\n\n### debug\n\nDump a ton of stuff to stderr.\n\n### nobrace\n\nDo not expand `{a,b}` and `{1..3}` brace sets.\n\n### noglobstar\n\nDisable `**` matching against multiple folder names.\n\n### dot\n\nAllow patterns to match filenames starting with a period, even if\nthe pattern does not explicitly have a period in that spot.\n\nNote that by default, `a/**/b` will **not** match `a/.d/b`, unless `dot`\nis set.\n\n### noext\n\nDisable \"extglob\" style patterns like `+(a|b)`.\n\n### nocase\n\nPerform a case-insensitive match.\n\n### nonull\n\nWhen a match is not found by `minimatch.match`, return a list containing\nthe pattern itself if this option is set. When not set, an empty list\nis returned if there are no matches.\n\n### matchBase\n\nIf set, then patterns without slashes will be matched\nagainst the basename of the path if it contains slashes. For example,\n`a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`.\n\n### nocomment\n\nSuppress the behavior of treating `#` at the start of a pattern as a\ncomment.\n\n### nonegate\n\nSuppress the behavior of treating a leading `!` character as negation.\n\n### flipNegate\n\nReturns from negate expressions the same as if they were not negated.\n(Ie, true on a hit, false on a miss.)\n\n\n## Comparisons to other fnmatch/glob implementations\n\nWhile strict compliance with the existing standards is a worthwhile\ngoal, some discrepancies exist between minimatch and other\nimplementations, and are intentional.\n\nIf the pattern starts with a `!` character, then it is negated. Set the\n`nonegate` flag to suppress this behavior, and treat leading `!`\ncharacters normally. This is perhaps relevant if you wish to start the\npattern with a negative extglob pattern like `!(a|B)`. Multiple `!`\ncharacters at the start of a pattern will negate the pattern multiple\ntimes.\n\nIf a pattern starts with `#`, then it is treated as a comment, and\nwill not match anything. Use `\\#` to match a literal `#` at the\nstart of a line, or set the `nocomment` flag to suppress this behavior.\n\nThe double-star character `**` is supported by default, unless the\n`noglobstar` flag is set. This is supported in the manner of bsdglob\nand bash 4.1, where `**` only has special significance if it is the only\nthing in a path part. That is, `a/**/b` will match `a/x/y/b`, but\n`a/**b` will not.\n\nIf an escaped pattern has no matches, and the `nonull` flag is set,\nthen minimatch.match returns the pattern as-provided, rather than\ninterpreting the character escapes. For example,\n`minimatch.match([], \"\\\\*a\\\\?\")` will return `\"\\\\*a\\\\?\"` rather than\n`\"*a?\"`. This is akin to setting the `nullglob` option in bash, except\nthat it does not resolve escaped pattern characters.\n\nIf brace expansion is not disabled, then it is performed before any\nother interpretation of the glob pattern. Thus, a pattern like\n`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded\n**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are\nchecked for validity. Since those two are valid, matching proceeds.\n", - "homepage": "https://github.com/isaacs/minimatch#readme", - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "license": "ISC", - "readmeFilename": "README.md" -} + "morogasper": true, + "mysticatea": true, + "nicholaslp": true, + "nickleefly": true, + "shuoshubao": true, + "xieranmaya": true, + "fengmiaosen": true, + "flumpus-dev": true, + "monsterkodi": true, + "phoenix-xsy": true, + "shangsinian": true, + "tunnckocore": true, + "dpjayasekara": true, + "ghostcode521": true, + "shaomingquan": true, + "zhangyaochun": true, + "jian263994241": true, + "montyanderson": true, + "scottfreecode": true, + "tjholowaychuk": true, + "yinyongcom666": true, + "danielbankhead": true, + "brianloveswords": true, + "deepakvishwakarma": true, + "davidjsalazarmoreno": true, + "klap-webdevelopment": true + } +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.min.json index 8e4388ffd5389..e407823ef5fbc 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch.min.json @@ -1,7 +1,12 @@ { "name": "minimatch", "dist-tags": { - "latest": "3.0.4" + "v3-legacy": "3.1.2", + "v3.0-legacy": "3.0.8", + "legacy-v5": "5.1.6", + "legacy-v4": "4.2.3", + "legacy-v7": "7.4.6", + "latest": "10.0.1" }, "versions": { "0.0.1": { @@ -15,7 +20,14 @@ }, "dist": { "shasum": "33b549784ce98eceb7a86329c11a1cd02cd00ce9", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.1.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.1.tgz", + "integrity": "sha512-O58AgKiuTUy9T9n8hHfzyd3G5edzELFW4FshSlo+CdhW8h32M99YSntYrSahkmGi2iRijW3fpjXQNZH5xI++1Q==", + "signatures": [ + { + "sig": "MEQCIB2FfKAEfxLj4yUj6YXfvAV3eviEWFY6FFaPqqdCSqBmAiBZ5tSdnDDeuG7nB+UmG3PR0+FZ+5VAUjIXCU28VflewQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -36,7 +48,14 @@ ], "dist": { "shasum": "582b28fed87d3bbe9f9afc8c9490f4eb3b08ba91", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.2.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.2.tgz", + "integrity": "sha512-4JQR+18teufKm0qPXZLcppB1aHHYZfMroj42h3dvPVrEH2v/GVYTSgFdbSHyX9jcSk7g9R4zRRkRFTzxxYLHqQ==", + "signatures": [ + { + "sig": "MEYCIQC/Zz08HG5MV1s+RJNvFMqS/HiqMj66dygMFBZa0aNNhQIhANwMPqiKTPzYN/oxsj6cji2Fa1TFd3tyQIuBh00ZPyLs", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -57,7 +76,14 @@ ], "dist": { "shasum": "791b9e5e6572b789cfda6f60e095614cbb7504b6", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.4.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.4.tgz", + "integrity": "sha512-vkUtv3vFj5nLzMHi2kksBn9f8Glfpl/kCe6DNmK5PuLGKOgeGyRL39HSQmYxBu2HOp6luKAPDVHVZf6Ey8fSSQ==", + "signatures": [ + { + "sig": "MEYCIQDqFwvn/fN2h9A+In45gIdbSrILj4c9mOqwYHSkk7U2awIhALHOUf2j8XiMRb7DGJH3xQnMWJK/W1HL6SUkv9jSmEtM", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -75,7 +101,14 @@ }, "dist": { "shasum": "96bb490bbd3ba6836bbfac111adf75301b1584de", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz", + "integrity": "sha512-+uV1GoFd1Qme/Evj0R3kXX2sZvLFPPKv3FPBE+Q33Xx+ME1G4i3V1x9q68j6nHfZWsl74fdCfX4SIxjbuKtKXA==", + "signatures": [ + { + "sig": "MEUCID6VcGPzlCjk1mWPnyH/wYpvRWIO4OWUXbCUJZuG1NLWAiEArhqlScMY5SvEf5zqeRVWAnAHxEQ6LK18DesHk2ZtQ7c=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -93,7 +126,14 @@ }, "dist": { "shasum": "2bbeb75b5819a6a112ef5cf444efa32e006bb20d", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.1.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.1.tgz", + "integrity": "sha512-3P1PPnTQol15+tR2bCl4nLaB0RmTLI0+EoC3poub868Yf0JaMStkdm+Jsq2hPzga78XeqEHyC4VmpfDiXFOLDw==", + "signatures": [ + { + "sig": "MEYCIQCLSrJ26E7FKLKFPVxFPhsIZBZiu/3asp+VYd7TjHoNagIhAI/sPIXzDTiCAmrdk3T2dobUun4YWSLweAg1UeoGFiXs", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -111,7 +151,14 @@ }, "dist": { "shasum": "81ba8cfe095f0acd7d1f8afa93819099ef2177e9", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.2.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.2.tgz", + "integrity": "sha512-iHrfWyTxNiTYxOyxO5V//w7V1m2xfsLQehQje7R3hCf2VKIGIak8WC+hwe9ib/qnWY+3HMktO7pWjBQ/sSYq8A==", + "signatures": [ + { + "sig": "MEYCIQD9Eq7oVejaSfoNayffxkiLpaat/squtJztnNUcfNt2cgIhALK4V8o4qc2z6X10UOAJ80JsjgpZdErNE+X3U4hm/V69", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -129,7 +176,14 @@ }, "dist": { "shasum": "3811e5808181ee2d923614faf14e0b24543daf06", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.3.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.3.tgz", + "integrity": "sha512-4OSyt6WcgHyEKlqfdqrgYhTpDt1cDL1b/BPKeSPhinAW4zT+Ganc+5wwnDIpcL3LnkXLd3ScDGcSgza8+oVstQ==", + "signatures": [ + { + "sig": "MEQCIFsiTy+TrPzEfhnPBdPV0NASx6zMnUWn4LYPpFcpfiXxAiBLltTgmUPGUbEiDG2Zzj2IxaZ/rbQ9t32Hzlq2B7ouEQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -147,7 +201,14 @@ }, "dist": { "shasum": "5c5b370eebd3f729adc1f7740515ac3c70769ae4", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.4.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.4.tgz", + "integrity": "sha512-X76ZdMWYNglH32KwUuoCtcL3+ne9M+FVjuGI6RMwGf1l5wFF13KGb+cdWyp/WzcHnOT4dFzyQ8VBzX5zqvnAww==", + "signatures": [ + { + "sig": "MEYCIQC1H47SSlgoItEnSWA0C/8l1+HHvylAbZrJM6/tp7F0GwIhAKO3Ox1YMVR6AA5mcb9A2rMWk7frPp0bKnBIJUSysHKs", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -165,7 +226,14 @@ }, "dist": { "shasum": "b762f312066cbbfe50462a68360bfc9ca0ccb1b9", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz", + "integrity": "sha512-KFPxSmc7KgXLngf9Y6mZmg+uCySJ/rqeLkHbZK+ygcPtzQvN9XGBbgFMPO8pfFYEKFgOUAE0RmXFIQtoRc7VHg==", + "signatures": [ + { + "sig": "MEYCIQDyxK2OIQkFiINz2HGbghaCRujYdZZz6BBadDG9OE/CRwIhAMEU8wH41fJAoTzKqL17RqSQ7gRCorg8KQNOjOYZQS1d", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -183,7 +251,14 @@ }, "dist": { "shasum": "7fb18a99421493c520b508f00699cc8f5db86e2a", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.0.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.0.tgz", + "integrity": "sha512-b2FfTK0XrP05b+maK+WDBoZrkFPssZFghCUT4wWL3K1mR//P8ShntiMrQz/MPaNZQDZxeK4yq0AaySGugLLPyw==", + "signatures": [ + { + "sig": "MEQCIH+/+agcgWowvxzzpAv4SNTFM+lKYMdA7rJhkvxEclhKAiA2WqQZniylb0dZXclj9qQ16gl+ggEVaNpv25/u8SAyLw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -201,7 +276,14 @@ }, "dist": { "shasum": "209c214e81dd8d831122c56793c93d90d8e44b7d", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.2.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.2.tgz", + "integrity": "sha512-7MU7MvYmitfyHefoIpDPLpnHqt2mZDXm8AQY7Nfu61PI2j2nN7Gzh2WUGKdXJCg6U20QPyrN2Pt2mLdjlOduPQ==", + "signatures": [ + { + "sig": "MEUCID1PRROBwsaG6IubemhteD64uoY1WkRpU5g9S9s3lM2hAiEAy6+k+5gc0NH+d4U2XrWVcbmcLo8p8mz/OrQVljbqNLA=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -219,7 +301,14 @@ }, "dist": { "shasum": "625540b1be01b3e7fb5a04a01c847ae54e8f3a9f", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.3.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.3.tgz", + "integrity": "sha512-Wq0dfflKxiKUiEUhpAnmcrOajyQtOemEGuYsD8reIaeYxLGOd7TWAWFjN5//WP5PwJc0YfbLJFBrjMf03AzcHg==", + "signatures": [ + { + "sig": "MEYCIQCntasu8Eq6B8SLA5W57iSNWGrCCiGVmXTRn/EUjIMKEwIhAL+YIOTmFH39QSrbcCaCniGfqNhBIP0GT58Dqcc7sJ1I", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -237,7 +326,14 @@ }, "dist": { "shasum": "093b5cd06c40d460d37c50a8ce3fa1c0ef636baf", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.4.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.4.tgz", + "integrity": "sha512-Y0qPir8GQ447NQ//SF5omZFjFQlv5Zy9C1hOLTLeQCxX3PZ8LQCo/wkTIDEXmvFafcPrOu3dH3eu+W/EmGb98Q==", + "signatures": [ + { + "sig": "MEQCIAtyUyZM5JZeqcDKGrKB4NYEWHvwh05lW9YVckxRxSrpAiBnCHGuXtJ3HOK8vZTLNFVhn0ogruvAb9OwiYCBMfnMzA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -255,7 +351,14 @@ }, "dist": { "shasum": "a85048c04cc707538cdcb6fb798c421c3cbc7026", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.5.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.5.tgz", + "integrity": "sha512-YBgP/Fxaod9F9gtGsTEMUhlpWpI0oGmr+ZfPNtXKXHZSqAacQjfix3Jx9MokCngc3xG+7IySJJpIPiBFJs2ePg==", + "signatures": [ + { + "sig": "MEYCIQCn8VSi0K97GkVu3o4WppB2MHtiDu9u9VtU/9kdA276RgIhANmhqZF2B8axfEfMdQ2klNHN3YpOOwI37lWR8jHxU94G", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -273,7 +376,14 @@ }, "dist": { "shasum": "afc731fd9874c4c47496bc27938e5014134eaa57", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.6.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.6.tgz", + "integrity": "sha512-EvglFf563kuv5NZyrafElzdXmDS8aa0Ec+UWy6pFwDfjaqF2hMqEwVOH3ZoW/r/2yiK/1jslEQSn5liSNpr/zw==", + "signatures": [ + { + "sig": "MEQCICCF02s+mVZYpyNuL5jUyyckAzq2EThmbXNelALXJtxyAiA7KBEKGH0PF5MenOrml20V1iSif70pHlExOWI5NMl+/w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -291,7 +401,14 @@ }, "dist": { "shasum": "850e2708068bfb12b586c34491f2007cc0b52f67", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.7.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.7.tgz", + "integrity": "sha512-7bUwdPMeF9f10cs8IQviwU19NvvmnhgR+hD+raS6J1eA+e5gxE9alUMP2Rvhk3HzNRMALpR5UFYEA6iH46b1ww==", + "signatures": [ + { + "sig": "MEQCIF11HYRUfSZqDnQ0lSsTXdqWrekVth3xvduOSKJUdOrlAiBeWLaoSTfFMvJyeiJW06ZUEGBk/rly6FXH/RDmCIjJ1w==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -309,7 +426,14 @@ }, "dist": { "shasum": "1a983623de40ccda200c37192a28a58a640501c6", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.8.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.8.tgz", + "integrity": "sha512-P69iDaX+rSff7gi3eR0W5SgvDFLYULFEkHVrdu2mYFuILoOFlk9i/4Fj7jjyX5PzXMN5J8v8CqCfwm4c+3nvUQ==", + "signatures": [ + { + "sig": "MEYCIQCkFpGPDxYc4+mju6nUN7i/hFcDJrrUCAeI0FkOnWbHIAIhAL8I9W6xOmOkyDQ/WCrsBnA0mGe+Z7MA4UzDrAyuN5/v", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -320,15 +444,22 @@ "name": "minimatch", "version": "0.2.9", "dependencies": { - "lru-cache": "~2.0.0", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "b80af947e6a83a8c68f26e54c0d6125bac9f887f", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz", + "integrity": "sha512-rw/QYK0eczkp1dihfhMobD4kIObmAK/l6ET9ji8nFlB2MnmAAnqONDMZyALBz6sMdoWTHU+iqNx5GkT3Q30bcg==", + "signatures": [ + { + "sig": "MEUCIBAbPv3bG63kFvMIC38ZMWXr/dStyVeznvNyQaWlDfbyAiEAiDGlnTNTav3OWA4q6h9ys0CXVba35oNERdQjboKv13w=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -339,15 +470,22 @@ "name": "minimatch", "version": "0.2.10", "dependencies": { - "lru-cache": "~2.0.0", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "~2.0.0" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "4b1d35d316d09c78e31284d6acf6245b5ec8c455", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.10.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.10.tgz", + "integrity": "sha512-/tzON/XsyFGQt/ashgu1tyE79oPG1fUEUIOklXrRkiBUiVKCpQOkL1lQkdashrrsrdv096xisFHforsf41Qdng==", + "signatures": [ + { + "sig": "MEUCIBrxrZiNz45VayITP5zYpdejI9p4z9lZtwyQRK+NHFCZAiEA18Ua9Aa9o4uW00rn/CN0ZQvFzuxUle/ktP30MdTTT40=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -358,15 +496,22 @@ "name": "minimatch", "version": "0.2.11", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "a0ef5fa776aa6fbd3ce1ebb74efb8a48c6abf4db", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.11.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.11.tgz", + "integrity": "sha512-4W9kRInQoxhLpsYkjM65o8vWk6Lq6ZBQRWXGppeRWWxPSyUKxfDtlIVHlJnIbkEiBcp9bFzusqr0OKdV2l/Hvg==", + "signatures": [ + { + "sig": "MEQCIGsPGxG1Ky09Xkm25JpuIYUgD3gguIPo6ilhlf6soO1EAiBcwFE7rkfnW2TI/uXKZk6yAd++0R+i78+SaWnwNQy8mQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -377,15 +522,22 @@ "name": "minimatch", "version": "0.2.12", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "ea82a012ac662c7ddfaa144f1c147e6946f5dafb", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.12.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.12.tgz", + "integrity": "sha512-jeVdfKmlomLerf8ecetSr6gLS0OXnLRluhnv9Rf2yj70NsD8uVGqrpwTqJGKpIF8VTRR9fQAl62CZ1eNIEMk3A==", + "signatures": [ + { + "sig": "MEUCIEvWL7v2tyA5rpnALFyM7/aZlR2RuOD84q9UALJlBDMTAiEAqJyNwcsBg8J+RW+zKRtn5nNRsSpqDJ+FyVDukdvh9RM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -396,15 +548,22 @@ "name": "minimatch", "version": "0.2.13", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "dc58caf1eba5681e403163af3ed477bf69c8df69", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.13.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.13.tgz", + "integrity": "sha512-S7ivEqu7jMn+hfWyiknt5V581pAa6/ZEUVPLAXmaGQJxoYShcGNQeovOA7hqHDU01uAcyrZ1cQOUc1+I3UgN7A==", + "signatures": [ + { + "sig": "MEUCIQCtHn+NfB2tNjXvZt9U5eA+VjcPpJwLeBMGqCS/n8Vj4wIgWQoFMTXNOxBQtw2jYgQZTUu3pLe9v1Ek7CoZ50uGvdc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -415,15 +574,22 @@ "name": "minimatch", "version": "0.2.14", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "c74e780574f63c6f9a090e90efbe6ef53a6a756a", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha512-zZ+Jy8lVWlvqqeM8iZB7w7KmQkoJn8djM585z88rywrEbzoqawVa9FR5p2hwD+y74nfuKOjmNvi9gtWJNLqHvA==", + "signatures": [ + { + "sig": "MEUCIQDPftZ76eImQmDvh4OdfDpB5+8szm7Kyaw9SN6zx0igCAIgSwMQgovrkC5p5eR0w/njzevajwb5/z5rbZTjaUBuJaE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -434,15 +600,22 @@ "name": "minimatch", "version": "0.3.0", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "275d8edaac4f1bb3326472089e7949c8394699dd", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", + "integrity": "sha512-WFX1jI1AaxNTZVOHLBVazwTWKaQjoykSzCBNXB72vDTCzopQGtyP91tKdFK5cv1+qMwPyiTu1HqUriqplI8pcA==", + "signatures": [ + { + "sig": "MEQCIBnX4QzBRtFDjuk0kdzN/EuaHvrhSQaVtXsfEGk4PZCJAiBq6f4lhA9m1UfHBNbkXL0PAuOxU8hDg/NbdCYIlBqwzA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -453,15 +626,22 @@ "name": "minimatch", "version": "0.4.0", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.4.0.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-0.4.0.tgz", + "integrity": "sha512-yJKJL1g3to7f4C/9LzHXTzNh550xKGefiCls9RS+DDdsDpKpndY49UDZW5sj/3yeac3Hl2Px3w5bT8bM/dMrWQ==", + "signatures": [ + { + "sig": "MEYCIQC7MwfIMrN4v6S4YZ+Hw1kES2TDByMKlbWGLKtqOjjIQAIhALXu291op4MHzD7w2nCRaeBCK1S1RSQPIOMlZJPAHdcl", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -472,15 +652,22 @@ "name": "minimatch", "version": "1.0.0", "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" + "sigmund": "~1.0.0", + "lru-cache": "2" }, "devDependencies": { "tap": "" }, "dist": { "shasum": "e0dd2120b49e1b724ce8d714c520822a9438576d", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz", + "integrity": "sha512-Ejh5Odk/uFXAj5nf/NSXk0UamqcGAfOdHI7nY0zvCHyn4f3nKLFoUTp+lYxDxSih/40uW8lpwDplOWHdWkQXWA==", + "signatures": [ + { + "sig": "MEQCIGJqRub3TcTRXzbR471Yfk77/PPiCidXtH5Q3Z5L3kzzAiByxUDos3UBKaxZK7jttZnJBeSP0biKlzdE2JbDdiHayQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -494,12 +681,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" }, "dist": { "shasum": "c0625745200ebcf77451423f3d649821f8f0b6e1", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.0.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.0.tgz", + "integrity": "sha512-9d7FVak20oGJ9AnjCtB4Q6Jp6O4tUlIziqTjCwOb0zMDDNNb+QqDoUxCZ8ngUjO64ArIgYgDCR5IUoANeK2GKg==", + "signatures": [ + { + "sig": "MEYCIQDazU7dErYfGSwurlFahzEYfcweoH9noVrh9/BQ6ol1JAIhAK6ZzBZpzHz89qQxrh/yMo4r1sWCSJEe0+rCoO2TmcWq", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -513,12 +707,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" }, "dist": { "shasum": "6c3760b45f66ed1cd5803143ee8d372488f02c37", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.1.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.1.tgz", + "integrity": "sha512-5JPbQbWRyGKQ91/OwLqpOZTyl00WtHP8E+cRqSsa7IHRuxKr5o8bx7XUIA8GybJiL5iMbaup1YT1A3U1/OqTyw==", + "signatures": [ + { + "sig": "MEYCIQCJacyM0I//T3VvhijEevYvrEt8gNScCSNbcCCnc/K38gIhAOtPo3vjUGZ+nFn58ElchkUaSCKmprTHOXowazPmOt0c", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -532,12 +733,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" }, "dist": { "shasum": "9e0d08d40a713a8e1644bec3d88d1c11ee4167f8", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.2.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.2.tgz", + "integrity": "sha512-nUuOvve2VVdJ5CewD8EcEXrkDlj7Wcak1jAWl22KTz9qyxN1wXLVJ/VS0FFTCCIN49yIncmpHxN1ABHMrIyFtA==", + "signatures": [ + { + "sig": "MEQCIA4TcZ1MuoBKzwojU/NZVBl5qNFVqu13scHaJ2It2Vc0AiB/a/AFKRLLKhm4Ks93ZwwQpd/LI8Qgl/p3OdAGTwJdlQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -551,12 +759,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^6.3.3", - "tap": "" + "tap": "", + "browserify": "^6.3.3" }, "dist": { "shasum": "a265d8cd62b109ce85be49dd36932b8017f7df18", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.3.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.3.tgz", + "integrity": "sha512-9MfwEqccfN6JF8kjrzN7qHfMgc88TYoYrqAY5Sz2e2TzSNW30wrxTmyp7i1c23GsDjTcNRdCLu6o5+1HQ7JRKw==", + "signatures": [ + { + "sig": "MEQCICyMCdcjMnibrnzHPqx3FdoVF8wttT52h2IdsAx4owlYAiBHQQMdVI3uD0C847SvC+z9vZv0oaUeAgu9+LrdIzTUCQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -570,12 +785,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", - "tap": "" + "tap": "", + "browserify": "^9.0.3" }, "dist": { "shasum": "83bea115803e7a097a78022427287edb762fafed", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.4.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.4.tgz", + "integrity": "sha512-S5wkq7sXohYqV86rbXQQZ8jay9Lnw1zMWlurkMsHOfX44ziIBxXUxf4mjMiqIaU/JkG3eu/W+uA4BTwQNQGN4g==", + "signatures": [ + { + "sig": "MEUCIQCuUZXY+D7fk+FWkn3hH+EoNhp87ANm8qJyh6hPsBaLrgIgKuNI1h/LiJaRQb7edMuL5xTCWdeXA9Vojg7IVHJk7L0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -589,12 +811,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", - "tap": "" + "tap": "", + "browserify": "^9.0.3" }, "dist": { "shasum": "a5c79dfcbb3ad0f84a27132d28f3fcb16ffeef73", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.5.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.5.tgz", + "integrity": "sha512-ypM9yhrVq5GlAE5GXQFn8fpbkW6BCqKIst51+xpAhIuMbgBy+o/j6gtamnruXkcdPLWGSi0bpt+sj42QBso9kw==", + "signatures": [ + { + "sig": "MEUCIQDhoTSUaXUI5TnOO4FYZIduxkSinaaJcxjcq0jbsunM8gIgQxudYjlqqKOq139edT1xpFeesJsF0oVTvT3bKlNkP/k=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -608,13 +837,20 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "", "standard": "^3.7.2", - "tap": "" + "browserify": "^9.0.3" }, "dist": { "shasum": "21df8ea63e67b5848d09d67e57432a5dcb8cecf3", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.6.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.6.tgz", + "integrity": "sha512-F8O6X6fCXCGysUsI43Fv4FZ7ZSl21L+is3NCdej5XW1G/9ydCVKIbJCOMKW5f/RDSBH7dX3GRqiS0W3njNtm0g==", + "signatures": [ + { + "sig": "MEQCIGdW8MCaqKqOB4Wvjqi4d/sqCwW7DyGRa9LVk2/VKtFyAiBVEblTwnXk3g+jOVX5IDCyCT8E/ZeLckGf7+6jNKcIWg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -628,13 +864,20 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "", "standard": "^3.7.2", - "tap": "" + "browserify": "^9.0.3" }, "dist": { "shasum": "d23652ab10e663e7d914602e920e21f9f66492be", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.7.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.7.tgz", + "integrity": "sha512-ISURyo2Kd+8HslnBTx41UcZAhT66AQgn9Xm0HbJQHHjw0FL1+t5h7/SlIOsiFQ23NFUjulJ35vPi81jZnCnL+A==", + "signatures": [ + { + "sig": "MEYCIQCLOVMvBeum5Vpd2emnSHRNRwmZj5ZRsKssxHFycImb3QIhAKocJvrLKelHsYUKRrfSzDeU2INz+0G6Y4VOhjerdga/", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -648,13 +891,20 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "", "standard": "^3.7.2", - "tap": "" + "browserify": "^9.0.3" }, "dist": { "shasum": "0bc20f6bf3570a698ef0ddff902063c6cabda6bf", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.8.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.8.tgz", + "integrity": "sha512-Y6T1De6r48DnKfyUmQ6RcB88IulNk2rfqEkSyqj+8HSoJ+qV6wsV5xmXsqMIaSMDhDs0EDLETlVWOsJs4P/rWQ==", + "signatures": [ + { + "sig": "MEYCIQD8YnMVuoK/2tWF4HZC3nLg34a4dkMeEEao4McEaDlkBAIhAOE6P25u7JbnvH1GLihzyCSPfHLx1Jb38X6Hfx0rQK/w", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -668,13 +918,20 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "^1.2.0", "standard": "^3.7.2", - "tap": "^1.2.0" + "browserify": "^9.0.3" }, "dist": { "shasum": "4dbebef26f62a35976db0737ea3389641baf9b46", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.9.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.9.tgz", + "integrity": "sha512-mSfGkf61166JDC9TjQ3XUgAS+/szGgTUkCEba9DIMnvgpWsLt4/OPG5MAmV3U0C/bIVZHgyBkDlK6Hbxr/Bjsg==", + "signatures": [ + { + "sig": "MEQCIDdN9ggmh6MdKz/qpy6lQpW4cYrmgTunvLALcvFOsYyhAiByTfPdxFxd8R/4/2JKndFq2N3LAE6R4jgr4yk5ShNfgw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -688,13 +945,20 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "browserify": "^9.0.3", + "tap": "^1.2.0", "standard": "^3.7.2", - "tap": "^1.2.0" + "browserify": "^9.0.3" }, "dist": { "shasum": "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha512-jQo6o1qSVLEWaw3l+bwYA2X0uLuK2KjNh2wjgO7Q/9UJnXr1Q3yQKR8BI0/Bt/rPg75e6SMW4hW/6cBHVTZUjA==", + "signatures": [ + { + "sig": "MEUCIQCsexMy5sD8Si9k/MRZEAFsWFz796LnRJfSRigactTHMwIgHzBR3+DIS8ork+XH7ytkl4WRTCSHMKsfvLjb34vYVZk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -708,12 +972,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "standard": "^3.7.2", - "tap": "^1.2.0" + "tap": "^1.2.0", + "standard": "^3.7.2" }, "dist": { "shasum": "5236157a51e4f004c177fb3c527ff7dd78f0ef83", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "integrity": "sha512-ekKdP/98gMbw+JdQaHZlS5/irFw63ktA3FXHaal7TXkvdaUJ9M6BewwNyEujYzRsTirZGmEVDho+Gh8bfcpVxw==", + "signatures": [ + { + "sig": "MEUCIAW2o7uG32p42nbfkoAHcvfMdoanQiRmJ8yDDODn26czAiEAx2Nr6XBfbh1GL2xkBh/wpKGnHcnDXhsYUstsVq0ULCE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -727,12 +998,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "standard": "^3.7.2", - "tap": "^5.6.0" + "tap": "^5.6.0", + "standard": "^3.7.2" }, "dist": { "shasum": "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz", + "integrity": "sha512-itcYJNfVYt/6nrpMDiFA6FY9msZ9G7jEfB896PrgYCakHrW0mOPmzBVvfI2b9yoy6kUKNde1Rvw4ah0f1E25tA==", + "signatures": [ + { + "sig": "MEUCIH5X2lyGbETJYcKsyHB4ZtvC6kY2LwJjoZJ+RBktPpVLAiEAgd64s6LF89VjmvK2xvVXhOZ1yled2KdDjxyCmcHfIoE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -745,12 +1023,19 @@ "brace-expansion": "^1.0.0" }, "devDependencies": { - "standard": "^3.7.2", - "tap": "^5.6.0" + "tap": "^5.6.0", + "standard": "^3.7.2" }, "dist": { "shasum": "2a4e4090b96b2db06a9d7df01055a62a77c9b774", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-NyXjqu1IwcqH6nv5vmMtaG3iw7kdV3g6MwlUBZkc3Vn5b5AMIWYKfptvzipoyFfhlfOgBQ9zoTxQMravF1QTnw==", + "signatures": [ + { + "sig": "MEYCIQDVnGy7m1NDW9pZ1TN5IebjzwyNAMeIlAw0MV1QJ0AEUgIhAIxuC0mxKvBPKaJxJgVpZZ0qn66Z+8YaVp7/+Mv2zfIv", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] }, "engines": { "node": "*" @@ -766,14 +1051,2468 @@ "tap": "^10.3.2" }, "dist": { - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "shasum": "5166e286457f03306064be5497e8dbb0c3d32083", - "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "signatures": [ + { + "sig": "MEQCIAQgj/vGRw4GsiGymCgvYIs89TYe/cCTDwvKfvFqzMpvAiAx74WMvfHgunlixpGmmaWBrGVcUp23wUCuSTGh29lWvQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ] + }, + "engines": { + "node": "*" + } + }, + "3.0.5": { + "name": "minimatch", + "version": "3.0.5", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "4da8f1290ee0f0f8e83d60ca69f8f134068604a3", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", + "fileCount": 4, + "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "signatures": [ + { + "sig": "MEUCIFmtbk7KzRs+Pds5cLUrMTOO3Oua1zioZzquHkkGhg0qAiEAl5NiTtpRVzxDa78DmM1EcNK/GrmoVXoHZxmmbit+g2o=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34000, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAC9UCRA9TVsSAnZWagAAYcMP/jf6QiKU3WOvktJPGGKz\neX03vLSIUkMMgxksl/2rwq1msHw6m+SLNvu5NetVgngXK5bwOVam4ZGJ0Z96\nmPdeuVzouEDg8Hzlz+kvdK32k8DXcfxfuP/gjuafUiaU+7l1CJ/zTjsuHU23\nUXuxgXjRS85Qv3aNygMXwM2/RSEbUsuEJFDcjHIarxlYeDHF93Xr4aevmJxA\n/BVtrT3JtZ5lu1x/jzZhAIKWhZwvuqoC7IYhogSs/4yE3jnxMi3rKYGiS2wA\nOZVZSj2EepM95yOB2mZtCChp7dvdboKCxvptnchamu0MP/7G6j30G7TjsutC\nimhtyTi95CXPwqzqBBhsZu8uo+fiOLw+zA/znBL/2hRU+/6xkz05mzsUUyYE\ntaFR8ivlyWneNg2RGX2d+6Ec7gXkY7w9jhBPbGi+JpiCfpoTpchXc5ZWimZh\nLeymiguK0bddXREaVPL2cye/5bwvrC32oBy9XJ5C43kMe+Awiq6DQajPMCCS\nTkW1glOQZ2qNvOhvP9WYktWnh+PKTtriejaVsE00nYWr2uAHjNhk76WaB1Uu\nyhCXcmqDrrRa5FyUmqkuc97CXx925T6phqzrZuR7DhoBgF02g+gGe9cn5Jyc\nodiLzYt2Lsxq+o3cIxaiV5ybvaA4QLuoJ6N1LKVIXj0GIdN7BHiwGrR0SHkb\n0ItT\r\n=gKVD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + } + }, + "3.0.6": { + "name": "minimatch", + "version": "3.0.6", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "4a2cab247c5f4cc03b85813ebbde7ae23a6406a2", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.6.tgz", + "fileCount": 4, + "integrity": "sha512-dpxq1Q5/wIfWZjlpjEZMpHWLDIEGKAzfxdWG/vDJs6sX2mtpm0vuysXd9bD/XnMrGc/O14D116bYXsSDBJK2lQ==", + "signatures": [ + { + "sig": "MEUCIQC01/8AbsaQSS08Yw0pjwKNDZ5ekgrQ5Kshn/Q6CludNAIgSiKQwzDsy0Kr12+yQxXl12AEnkKgSBYPHyOo9ahSlN0=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34677, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCEmZCRA9TVsSAnZWagAApU4QAJ8Et5xhO/5xOaxqD3OU\npZpSaqGKTrhOwPH2KKBEm/ecZSkT7HtaGNStNKFJSxw5QWZ5jUYHjiD3GyaB\nfYZJN4/IGXM4iFzmr0t5oJ7E/1a7Mg5HsaDPd53QQMU1pGZFui+XbG1afdGF\nyD1j8X7UOUxkk1c8IinuUxFOgLR3Re6p6X3Z+xPEsl3Q54yNkaI9fuPtKsaT\nuZHTW5mW7ha7bCER7T+AKpGn8fEfLU1eqGFZr83+zoMe116MHbH1qqRkIDmY\n0JfLR4txqX7uPgmHv8Jfp8/LAzzQrwdJQAFeGLJpVOTZhHRJb2TbMkAvqgDI\ngL2WhXh3eO8dsIRZ/G6uKO0zNsMAqqpr84jMxW2cOzSQeDX6f1pwmPL4b5Bv\nYtigt4aEZIKoXNFnrc/r07uezwbcS0KmfYysQYw8BPme18MA72sbCnwXmZkO\nwYJLDS3ceNQuqQkubXdvhLIHOLmZeso+d1gh8WYwTYNUIVx16PZmfMMFBRUO\nugrMhNk+sKxNWuUXM1Hhcaxdc9dgmOXMYtsZVsQlIiWujU30WqDv7s9qnXdM\n6pUfDwW/F99MoqV8/G6K9GNxcdtJ4bxbwR+jvngGFoprU/gJowKwWHFIs9KS\n/mNVJPXqcPHLwwlyVESCwOwTXCdXQzK+SacvLRFavEaXf97SSfC3TXpqwQY8\nD8F+\r\n=7VkV\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + } + }, + "4.0.0": { + "name": "minimatch", + "version": "4.0.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "befe49964c07e98a5eb7c5191be997b2aaffacc8", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.0.0.tgz", + "fileCount": 4, + "integrity": "sha512-nUXi6viDR8DREKfJTnzZLh1amprrt6Hepx/WUngirNdiNEDmfkW2DLfiTeXWcMkMY0bRkuQ8eyCSbG3W4D0Qcg==", + "signatures": [ + { + "sig": "MEUCIQDd71LmyBvRR0Lqo4F3o10PgK7Jgk7EulaQzsh8aUFE4QIgcr9pn7Tpe3gNKK/lto3Jr+J/ofVmWPPrzHoB1EBoEoQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34684, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCFLNCRA9TVsSAnZWagAALRcP/1HqDx9jpAnruCjxh80O\nkeOPftFHEuSKKzhTd90Y4ZNwzKfb0xjl0QXZ3iGN9kx4GHoHn7D564l+z3Y+\ncKoxy9kGeX9y/tw7nKtosyraVKTrC3gbKTtA3FH2nPRm9KvABJ8OT776YJT9\nu2aSfk6mdF6hqqrSTubYnfQBNdcaO61kt+AJJUmWfUM5Iz6BAP2ljznViMwY\nzZF2/uQkh6AMtKeqR3q/4sEEPSxShI1qgNaDXuB1TWH6Lr9coa6OxJ72+K0s\nL3mrVxFbt5sGA0zi4G2sXc192HxJgX7oN6mjevOZex2z11x/6e7IichFw96b\n8PAyxQxDvLGpgt1efUu13g9/1N2xQQGZ2Ta+T9bbGOaqKFoXIJ6xW96icmW3\n0iWIQM17z509rKOcRpXB7bPpXMbU19QhU6EBVJNUdgqGozJuY4llpLg7g5bq\nIGcuYH2YZW0IRTWG9qgqO/BLuWZeWslr6gTlZUSTmeW/hIXCLZRj4v6IaZVu\n8ZuIGmyFDy7imL+ZeHf4iVhyLWcasJXXcW1g4lmasv04xKgz+MdHQs8isqXk\n6spOIYgxHcPZ1d26RwK3F/w97WcvsMvdesKTx52BN9yUqKLBknvJ0dBo/pGW\nQSqooaxUXBnaTh6p4H8C2tLumOtNUYxcBKBbKRzn9Gxl2NobDOPlPJd/x7Tr\nYU9/\r\n=052M\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "4.1.0": { + "name": "minimatch", + "version": "4.1.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "6cf9879294e33a259536492d905e31be8420800b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.1.0.tgz", + "fileCount": 4, + "integrity": "sha512-CRDd39hmjy31EqKRNlvKSIblWVXjoB9v1+qwqsxVDlnXXEHrC/63ilDd/iZFnmDLUT/FZxHc4+4t9JbG1ZoeYg==", + "signatures": [ + { + "sig": "MEYCIQDI+Dt6aoY6d7ckeIEl5se7FXagkVrNJbxuFguOA9I/mwIhAMMZVS3kSgQc7yqIVST298wqJPq2uH1Pj0L+6MWra9lD", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34911, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCFfICRA9TVsSAnZWagAAV34P/2ETQvagtBgwR4vHSNM3\nWFlEHKLPRWJx0cywMYYG7tXfmMzLYsufG8r3f8HVCEoi0WdCXTK/cooIGdn7\nPElLUudr4sBcLBSnDwxEW4T+T2USavd/VeIvcw/mJjXngKn5/jKzyqM1fvqw\n8ogCnyQqX7dV2hCrxqnmLrkKeClV4ZAwrvvWlAYc8v77KUv+iQwwPqtimCWt\nY6H8wfQaRUYK99Eu67Ya/sVt0g81d/bGfs8SD/UkN8gPNglgzGx1/3+F4F+p\nX5/rHkGFNSv0yuO8E7QSA0ldy4es4E9uYR6Zw8WSO8qcapScN9Xj6byhZtnM\nJ9tQjAd633qEYoHI/2j0qobZNUtuneTbKwui1RwfQEORKdDTBXUxOibcEWac\nhs9sOPjfRzGcPPibGft78DZP00Xk8jWALaXzZx5+6jvfrf2FZVUeMd5bsarH\n+fUXXs1PrW/8j4xeT6bB1EkJ3MZ9yZIk/47g7bx5vf7IiFt9tPDdr1MbqT3A\nMQBe5gNa7VdOlBZuHnt2ydBcFTtbjmf82JHSG8hj95SfMoXuhNfAz1WE06DG\nMKr2lS9MJBZNAdVerHzUrKB8Klpu/I7VyXECe5cP7GXMA57+LwclDVH46ful\n3pj0V7JD4511uyZkD1yq99U6LcbLy/ggt3FhTI92VmfJ2N2ICun8PbGDRGvJ\ntv3d\r\n=kLsy\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "3.1.0": { + "name": "minimatch", + "version": "3.1.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "f59168d5cba6b6fde15f6a88f557fe7eaf31d8ea", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.0.tgz", + "fileCount": 4, + "integrity": "sha512-vgmUyWyt2qidcJXdF6e+kf4DgJha4vzf3ctWJ0uGjfvqEgoX2V4GXQt0eZwM2FJWKANfS8VmzpvPKbWYibkHZA==", + "signatures": [ + { + "sig": "MEUCIQC5kVDVKTBEBi9F6R9/4/cxVqtfBgNL+AdNfDgyfat2KQIgOhMT7XtbAyCNjmt8O+Qesdrs+3juuPyaIxsS/jb2wto=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCFjaCRA9TVsSAnZWagAAF8IP/2+P7gq6aNTC1ubmkTcB\njZlPYLsPh78eRpCUjR0x8SGyH14/0wogEGPYq48r5J80qEnUUEOSGLq93es/\nWoJoixNjgk1PdOM9qZSXcxzek2VoCszRrRMntYJ4b8r2iMX7phBnyzt0IF4Q\nP1LkjF+5sspxfSo5jBTGbnItZ0Y3NIEXf1ZnjH18fDwm8rl6j7xXKQxLtK0y\n1/dIg5cHaXsWV253tboTDBy2LirDCggjmY38kMbwUqGmvEMg0eiJjXPNp8Nj\nAP7ffljigF5DQFaPA0fY3prxfa50sdl+ofVS5XbFd6J0CLHeVzdvIWuBgr3o\nZQ7eD/ENON21+Kw3AEcWqZHEFYuwFNHZe8znQNXuhXiPcnyCYYxIuTVa4R8M\n8e6New9MaP4JlVMibOxUdZw4nCRHHEZqXtlIN3QsT/jhY9UJatXwtYPVOhHx\nQ19cfJuhnFlrKj6BVfFdXlLAS0waBzWhjL3EcOdyTzDu/lK7e6zFiFbeeHFD\naz2V/+ubml/QwIU/RewwjF9Gj8vSSl1ZLobVTMvbQCf2Et9TLoFkt5KNUQSx\nbsuRoHnP54eyFtwY4YcOdqMmw1PBT4bwc/te04CUFFDbVHm36ufHEa3XMu/b\nELjJyc7oQaZNaB0f1g50ECuaclGD7FSA0Ld0xyt5X12412d7eg3Qwg1i0GYI\neYFM\r\n=99c7\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + } + }, + "3.1.1": { + "name": "minimatch", + "version": "3.1.1", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "879ad447200773912898b46cd516a7abbb5e50b0", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz", + "fileCount": 4, + "integrity": "sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==", + "signatures": [ + { + "sig": "MEQCIDRHuxeUYfTOfuSKaniiGo7d6PLEPoxHSr7sQAMZzATvAiA+D2sFhBAk3Zhs8gjxf6VORhQuAwuLvcJjXBEsFzBddQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34874, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCIKoCRA9TVsSAnZWagAARqkP/jBV1JMkqDfVVhDH140k\nvRFNcYgYRhvSHX1R1fp+I+iVPF7WqlL9i+C87L7f37+OGC3z9gR3lQKBWbfo\n0tOGuFXJDM7oyKZz6KgjmDCHc/ABF6vISGg/MrDWb1TpG+0Qvcc8WjE92014\nETCfjjLqC3jqmyfKUkPnMFwcHePs4DI3whlQ7+aNqhAgUzbiBGCkSfgy7JFx\nRK+y+jdKSLJI1rAF9nV54FsRObFJeFh8/AccpRYL4KZWQORSjjGG+bGK6p5V\nD7Zxj6iVg3mH7Q/SHoPx/mVmL9wfrR4VzdqiASd5IzDd+y+UoZrkSAKDwYgV\nwB6Q+L5MIWn2GRLbkQzf5DSb1n0gH1pfwwYncNVjKCCWvYsgStpdZF/ll3w+\nGd1rD1tCizBpnhM1My9Za5w95dDgaZq7N4kOJwGvWRygwBORS8K3DROE7arE\nsRM93t4zwQWjCXWjsnAb9+ZvKBTTjS2a0OTm+waZ6wKy7olROD779oDGz/Ft\nePjGWRDL9VdtWkR4Tk37rScf3cjfR0NzHjLpxRcttojLX7L/g6Yn/Tqh6hok\nymNrKvJyF49L/Tjzt+v3dmzF1F6Wd8J8w8q5y67gFKbPqpmBcBbjB2k7xeQk\n6duKpPR0uEaINjTdfz3j7UdfPh6C9i99Lb+z8YIT68UE/IT17wDxuOWh5ieA\n3sdy\r\n=IqsG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + } + }, + "3.0.7": { + "name": "minimatch", + "version": "3.0.7", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "e78aeb8dceccb0d12b57a75872da43bc68e7d7ca", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.7.tgz", + "fileCount": 4, + "integrity": "sha512-pYjbG0o9W2Wb3KVBuV6s7R/bzS/iS3HPiHcFcDee5GGiN1M5MErXqgS4jGn8pwVwTZAoy7B8bYb/+AqQU0NhZA==", + "signatures": [ + { + "sig": "MEQCIGl6hMac7Um2//TeRhJiO2strVBXSo/nBaz90WzMI9yeAiBlgoXIiLBPQZOc8qXd0hfu93M/sFfl0poFjfdcMZFH4Q==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34636, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCIMVCRA9TVsSAnZWagAAva4P/i0HkM5RG+FjQxZkMtH9\nSamKiqKt0g4O7tbn5oi22cqihGjbYL75AYC6TCBQ6BRAwtOjmmU5yQrF03sz\nORNdI4wNz3/+ZW5qyZCR/fQZzsfgu5hProcdMra4H8resSwgIPxuPCfdbK4d\n4o1rsi+vl2nhZEaazNH9jTaVHqHsInyXJUJURskh0QWFLAd7zEohb2OM+0av\n0VWcAwWCDXlPV6/ZCFb2+Kh4ZcI2/3Jx4jiKZ0fvrFjZjB8FMHRk5t92gRA8\nHD6VwGP9O5ZzXGvxUqliBNl+fIy7x+aSX4QSrdSJl2INILErTrzqBPLygFHI\nIAPwUEfQisaSDMXHeFMk2DW9mnknL7r3VKnuFV4UfDy0fscj/pWyak6rETbH\n9CXagq6kPELsBrkvZYHZ0492neAcg+Xhca1woRZ4GX8NzDAO0/BUaoKcAvX/\nCYiUxUABil/xMOtZ8F4PdTIrEMgWZoRD/gaUStY7ubA+34UkSXD5u9tjmc7l\n0ex7OTcEAbreQSHri3lG9LcpmIj1ASOaOicMzPIQtsBbx9VVLbMztnIjHYDP\n5cOKahVjoqdUpGxbHqeb+hzzGIn1MbZyqIqbx8yt/fCmNi6SXQREQd5TXQtf\n+saogj1GdD9ux5IwspEwdCP2QWTLGdxUyCkHnVbSV4Lmxu8gmmRhbeSZyzEW\nctv5\r\n=yweF\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + } + }, + "4.1.1": { + "name": "minimatch", + "version": "4.1.1", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "88d8172f2e1babcc3e249538b1a46970dfea1300", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.1.1.tgz", + "fileCount": 4, + "integrity": "sha512-9ObkVPP8aM2KWHw1RMAaOoEzHjcqzE1dmEQHAOq9ySRhvVMru1VKqniUs/g6Us4KSwXKk0+uLko6caynDcWEWQ==", + "signatures": [ + { + "sig": "MEUCIFEr2UJz37yniW1AhGJ2LAlTNfefyTW+rwyzkDDgN7OAAiEA8wleh5ZLOyR+xSaC72yCBP1svcw7DTgf+nmgnlNEM2I=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34851, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCId1CRA9TVsSAnZWagAAoaMP/3D/9KQl03yq6n24Lnf3\ny4OqbqM9YIkBHbQCXeI6X3sr05q8DCw1OK72C6pAkgr1VPC0U8lWY4fRMDrh\neobrJ/Vi3X1gjoMRE5d6v3kHAx89Msn3I32zf3YfU13Sr5SIoR9TdSLX+izk\n6ZZbYSY4byxHAOSsxC3rklIYLu90N9521tq6ZHm/5xfcmZkGcPqzN94ebr+f\n+ly5xAWc08fkEAghnYoBoplTYtrUl+VIXdib3JCw91dhEY5tb5w8VASZDV0o\nXIbnUwUZcITTphmjCxEab1ki1IsqDzMD8xnkJqIgCy1o1QAlqHBNxTcI9mkS\nfetsJUs1rDo6wwsp43jlhZH4JxPhMeTeErATWEWS+17kwkLUxR0MfzSyQVUW\ngJR74RtLWYuIYiA0rzyJoqz//KtGSDAJha/XTFeBHBtWLSO/zeUnjyz9+shc\nId3wYiGZ7c2shnb7iurFTygctjqA34gfN/1yRHgNLjRusK9W2MdU8ISOJWEH\nrYNGRiwylJj6P1KD+LrP5rSGPRxixeSorq7CPfo0JNjiDhCqBTQG+YkBPCBo\nC2McFwoJRUyFq89PBgSu+VPP6TEOulXoKRMpurESJ6HeSzQx1wE2QDTPpDZb\nhFOAHK7MorzbomXZ6UgtTfS1YAZFZtR6NcWeotZ7V3XWsMNds3g8O6aTqlzG\nFBhj\r\n=mce5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "4.2.0": { + "name": "minimatch", + "version": "4.2.0", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "3575202103e58aa0065edbe85cbe5354c77135b6", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.0.tgz", + "fileCount": 4, + "integrity": "sha512-ZeCGOh91BdmL6q8aHpnLax/3UXJA+g41DbtDXt7MQ+rNUV7mlpdjxZJGtl5JQ4EYXl1ajRt+rd3p6r234BhZ0w==", + "signatures": [ + { + "sig": "MEYCIQC5WfiXFxwuf8OAuUmISZnDHzTY4yyEkBta7UjixVA3tQIhANB0UzVyTEqAo0tAA9yvXD3FkBSWATmUHahxDZvTPxPN", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36005, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC87QCRA9TVsSAnZWagAAzbkP/24NCnbmfkh8lbfEAYFe\np8ejYtf0Mo3HPexrbTEHLs2EJw1vFEXu+LXabUfIvIQiyKS4k7PnDxgv7GLx\ngbNAAn+8PdB8jOfBMZoI/r7iP9Xx0gUuIlrH5yvg0YjIOl4oJDSh1555TkVj\nKvyKhdbdp+JKZ4PIit5uCnFrSeJ0TlNr2O9v4IdiXb2AUUQ9Lg7DIdlNiSBQ\nBryoDgs/OGPsiDYRtAH0I6grsw//LlkotaKSyFxchuZI6rYozMmUD7912//V\nklNtIOgcNT24Ydq2bkE140NNuReu3BGJsXj0dYqv35Z6vBtvz6kfWeHLUDff\nu+w+ZK0Nh1aR1Z2xaUGFRmrOy0o1xLtQw6d6o1dL5Yfe+AaMj5ZfyFpCbTgq\nLlu6bGoCPCBjJetrl2vdeDvvTjG1g8qjI3T/NZhXBWYZST8oD5wiDqtIF4xo\nZDfixAhPjVwp+a8/KjQ5YfKOJAj4RsQHf7I1ogJldB4XrHlFyE3yn0FLDzHG\n5nv32MD3VJCA0DdopazAT8VJMPvnHlwVLC6P/cvrvB4mixfwQ2oqeHUgpzXj\nP5MpJNy2uWcAbFsbrAB27nIAGkdD6JuADNSXwuR6raLux+BDjlyWf17DKhDw\nGMd1M1O8fI25m1kZ6uqPsAIaZPoSDGR/fDOlhn2iIDWXmH5ywv4J1vVwXfH0\nXthG\r\n=4ZLI\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "4.2.1": { + "name": "minimatch", + "version": "4.2.1", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "40d9d511a46bdc4e563c22c3080cde9c0d8299b4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", + "fileCount": 4, + "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "signatures": [ + { + "sig": "MEQCIBcXgrJSwR08WmGmb/kVg1JILZGlZW2UQe97P1XKgZTrAiA4qXi0RZir+hOB/oKYW01sOyyEr9b+Br1NicZ219nuJA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC9ZQCRA9TVsSAnZWagAA+kMQAIzfV71ZAcbVTxbirxVb\n9GDNdvISRrXgstza8d/wj6ZdGm08UbR3TLxE3L2ZCFiwnLacx+CaM7zbb+NX\nSKs8gtR3VgJEDuD20l7ktXSf1GDsrjacOdrlHrDga0AEiiVU8IPXIwOK90s6\nIQOU6iIxIRGRXO9mKr6cuE0kFOGCisZSkDc7cc+fZ5aTb9vLYtz+EnhVlBsP\njbAS2KS9ugBmRdqxVnV7gEH6koXq83M0NEkM5m5oXjgl/RXc5iNE622qbjux\nDsI3IrNdrflUCEweCZ7qBxOyPjQDb/SZYDXEzoKDMETA+c+/LclmEFFTp/4B\nlu7wUaOIAOlUzh7XSAIpi2qmDAemPJZMoqfXwwlhTrx2ZiBzKxbM5JmroXvg\ne0c0B2bbbK5Pn0AAHLNZNdSSV9V/qApJrjpCTwe1BsS3bswqg5PibnCqYNZk\nucCBQZr7eMvhugSr5ikEnRA1p2fgp6jkQgTETZFIi6WrAGOZnP7kFsz6eaIy\n1HNm7rE/2bH0vv1p2+avZKM+ZjhUCII3c+yW/WibiQYUB+pcMlqWoTruyYLc\nGhrANPIt3GNeQ74EeN9QWIgoJGjXfBDG02kY2VA4sdpEmrO5rZNZ5WHKS/dr\nDIEvx5PrnLE4HE9bS+OHrtMB4bL/Fx5FzzERwRWBDLCCC7t0MryBZRpx0muN\nHjKT\r\n=ciRQ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "5.0.0": { + "name": "minimatch", + "version": "5.0.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "281d8402aaaeed18a9e8406ad99c46a19206c6ef", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.0.tgz", + "fileCount": 4, + "integrity": "sha512-EU+GCVjXD00yOUf1TwAHVP7v3fBD3A8RkkPYsWWKGWesxM/572sL53wJQnHxquHlRhYUV36wHkqrN8cdikKc2g==", + "signatures": [ + { + "sig": "MEYCIQDkrrgNBShM0Xmqk86Zrr2CGq/7XjoE9IGikS4/OXCuFAIhAMStBAdzov0lbKSDWvf7+JJ/uHaRrD+ENhNue8Zltzs2", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36178, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC9m7CRA9TVsSAnZWagAAyyoP/RAf4SslmulJ4xXo1e/T\nYJT0+LL6OAoBrm7haqnW7NjTV0StqC+A5NIohzvSdRe46/i88YtFzgNppD3h\nOa8boghiBN3GdZ3i4wbwR6I/8l1cZe9KT5yuqZkAALbwEUOO3UPMxqdFaEfA\nSVMhugIMdxcBdR4nHpyDuqTdWgRFjanaMUluaBlq3VbxtT1iTodQHQmHNDML\ng7hW1tQ+G5tzb9cbP639fkZvIkBH4I/iVJqswbFNXfPUi+I/aXN9MShPi07j\nW9couHlVEhZJFYarl7cV1OW5u6P5QttB+c7WsL5/e7FJr8riQgoctIyDVRA5\nfYWtsWfC3WF8BQX3VNH4YK3/L8+m2+hfESRQKSgsAw5vRwZhqSIuvBIvpbRY\nyXC47ld+wS/CderXz3yUJGF8hxfWX9Nz/lgpHfgHQ/d0v1J1cVPzy+s0cZAf\n/C+a2oh9AXWIBKpt8ilPhngIkr17fX7bYS5L4KosFAJ8gua/+UswX1h4kUR4\nWgujKRdXHQmvsNyqLU8JYNlptMNODj92SXvRuoiVt7geQrO0j+AWSN931ikq\nx5VQt1LOQRAKLT6nmsSYo39CR8IqaFivi8nkbASjjxKC+yjzCBfcjZqgt/lm\npBk9kh1Wx8+dqkWmFXHxeKNmPCo7fAH838O5cJGif2x0Ai3/+wsxdVA7TTq8\nFlIv\r\n=2J8l\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "3.1.2": { + "name": "minimatch", + "version": "3.1.2", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "19cd194bfd3e428f049a70817c038d89ab4be35b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "fileCount": 4, + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "signatures": [ + { + "sig": "MEUCIQCjRUIUS0JXXl/vaCoh294tvrp6lut12ZaWVv4bh7mmWAIgDLzDZgvoXeXzGPeAuSItCyQASG/Nnk+X7NCGfbFFR9M=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34902, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDA3rCRA9TVsSAnZWagAAiV8P/iCEUNUKlBcB1VfJNYRv\noTlTsav1Jmjk2+W5Asvl+fMwzWDOf4irHs1SS8vArxogUEvM6UBeCZedmtcE\n8y/XYYf1f4rMIODe906e30Xv4bcfDqQOMhKrxQSI7d7LqUS2EHnk9tYL2ROL\nxiqzxL0a2Ujpc34YD9hqV9WyhHJaq5IprVqi01Vg0NggZvVYj59BsvadIGDE\nb5HYaQVPpmhLy1ykt7dAXUmRFWco1uCfwmMhyX8204ZjJS7keRwkuhHqAVp/\nSfWyXaQzKoEQNWVuWf7wp+u8DWctHAAza69bdzIMDZoa0wOukve5eScDw2ud\nXvs/3kHPy5Li862zjU/kQdZW3WmN3AM0vId8pvWEzt6uaMxYOB+ce+ZR/2c6\n0pWfwwxg65qn6FYUx7mU3aHjharqHNUoPuPUJCAdmjsSRwNUl9hvFhbWr1W9\nCXQBpo+dZd8Iw8nVLmFMVmAJrDOb/1aQcEHmiriYIcSY7wLY+XZuxtZwxnvm\nuYDEFCuSmASf4M7f+RY/okzxwsGk7gD5PL5bKb+kANYctCrke6wDLzDNCxJJ\nnQR37/YjSJUxExmJETSuAkRR0brKi9qeKMMX6tw+0ZkdixRElncpETz3MkrL\ng3F78+eu8oZcSIr4s9CwE6wlXnMl3zQgyYaVyeXnZ9OC4aQ+vWU05n8mQgH7\n6u+o\r\n=0kEM\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": "*" + } + }, + "3.0.8": { + "name": "minimatch", + "version": "3.0.8", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "fileCount": 4, + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "signatures": [ + { + "sig": "MEYCIQD9j916UDkpsBvOBuzz39QTDMU4OHnlfybNOqUJydinsAIhALl8i6QHw6K97fGn2+cHLbLOmssW4OQu7pSGA5UBbWNP", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 34664, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDA4dCRA9TVsSAnZWagAAeioP/0HV719lTdfog4/rZpwJ\n5Pmi0W8eU2JRS+fvakOJs6rmqc/nalWIK4MXDrwTZici8lSdxm+N43fBP6Lw\nF9wTN9EQCoOwSzEPqRjjq/xlwCSIQazGeay3b/WmvS6mZ6xRLfcyZkv0kv5b\n/xz/6qIuPFIiZExdLGnWZv20a6i9rOxuA3x4Yc1OPZPo1vdc0X9syNEdRZOQ\nvKEh943p9N2Py+3kUUCuBvsuK3deGyScYaM7sT2/nUgQXt9wKpBTiop+xm4d\nR1ND8SZUVE18QTlvUbkIZ73ZtySLd1WI6tGBgk2PJf7U0iu0l+xga6ON4bEt\n4y3VYLddmPk0HHCBQslnEULb02JMv9O4hZ+2IJJbCIcxy2jxtqHbuE+cL5vz\nqbY6W+NuOJJ+kxhCv44p3+CCNK+Mx2ZZNAIBk0y4gMJVUDHnjLR0YkD2at/m\nm5NaLYo+WCtlxuHgrHtKT7tP/g2bO/09JjK6vpl7/Tf9zGc8iVQEQf9NrEWU\n84kQresJlMG5DSX8A3QFIQceifsL32XxrJm/vq1n5hEO91h5YmkDAY1aN+JC\nTuknw7LPEFf6dyx/5Ou3Jn6WQYgFAIdpJz5dmEWvEcQHfY2fYwnwhjmhAqJY\nlCrvCJa/7WcZ5EfRMwQYYCLh5G1Ec4tBzN8roA3z6m0nb/uS99fsEP7LdJIf\nc2mB\r\n=1I1l\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": "*" } + }, + "5.0.1": { + "name": "minimatch", + "version": "5.0.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "fb9022f7528125187c92bd9e9b6366be1cf3415b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "fileCount": 5, + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "signatures": [ + { + "sig": "MEUCIE78pBtDY1bp9T5HHzwqUppgLnMNx6dairfX/YajzeuIAiEAkMOeOdbQGcAU3c3zKplJrAD63SISphtLaN0uV9Pefpc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36629, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiF8c8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqRw/9G4cX4DFDDrPuwP+A6vTrjRIlur6L2EzI6odrdM1DFAwVXk8R\r\n3617gRLK923cZdU7oKKlPBepkb3TBj7OPp1NKspBQJnNHfiREkGy8EOCzQRa\r\nJzpynnTrYRhemYav3lDutWCnQqHVjB59CDljmSN2nUgr8i/DI6xeYAipFEwH\r\nvYYU8swj+Xmqkir8kMQAF7q+AxZ6JVOa1O3ydZSlnsdbqw0XiQhGVnY+sWOm\r\nNdSb6pOkqHgmoMOHaVb61cpvU8C7+AmSThGpjuRg4QbOtcdVBiAO8bw8mCva\r\nXV+a3tggCCT6ImtJWgR2dEHZL6Ld9LsGKrQQ4nuN/z1b0Ti0jj6z9kS2jycT\r\noiFi7QzFX1fbPlZp3aPjiI+LSMNGrww5/C1Hbgg3Jd3VjelEf6v+pSjf1ski\r\nLlVJDn/22x6TmBlxTDezk2sXmkD2Kcn0CqZUzDyMXiXumrj7CeN8nNzepIxZ\r\nNikX9qIQlAtKoEFT62ZaY32usvvcb637oNxp8ucXi/lwWDCCOe8Tq1l8np6V\r\nj/CA+mN/EopGXvwebSn2eQHEUZHsCn3W9BKlR5YPRwaDedeZ9UR6tuP/Ag3B\r\ngNVJj/akzxAhgLRLnXvO+gT5gfmcUb2FBsJ+mjk31dpAetWF0U7q2ZkOYapc\r\npP7JaRxCS3GSOktJkKLTe02cJQo2c7g9CKk=\r\n=izgi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "5.1.0": { + "name": "minimatch", + "version": "5.1.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "1717b464f4971b144f6aabe8f2d0b8e4511e09c7", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "fileCount": 5, + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "signatures": [ + { + "sig": "MEYCIQCtEjMkg2cM5mBWKX+XLT8M+6vOTh2EvuCdLm3jykxhTAIhAKsTKSqNIOYklL56ap6FMJg3zm4/9gCHcmEOtzuB2AIA", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37474, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigngYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpp+w//f9ljiJNtvG+7F9qrWhwsYVagbeVJv2yZMn+/vAUN7S/f4k2e\r\nbPhboYu8F5PZxVC0cfLUihwEWMXNdWJBTNnBf76Qiu0Ody6d8PRm7HvdufI6\r\ndK7UbIm+fG+ksNYgTzzqwdD0oE6WqH1Cblv4t48MalNbwTKBLWtG/ZXsJEko\r\niffSzk1/QSbcfq/gt/uWS3iSKbxvWy5xQZLxAEfXWbLZKxlwIWtfoQ3Cu9Z4\r\nQoeq4zxHWSSMiAzD/0y8g57+5wOjC/FZkimdZqVJdMvcj1vXEAEHL8aTdhVp\r\naP2RZ9GssHIsJ8KcLMGP/LGa3sMLfAfzPvXMnSKkgE8d9qIzB3BtpoG9jaKU\r\nkkdhBkhH+5/d3LAZ2ymlUr5GqEq6XXhMEDP/6GgRWIo2BCEiOlpipLyKfOCW\r\nvA4YihgqBlO10xPARVY8ho7aW+IyOxGY3i9423cdXJIQdBViHxgmt0yUP5gx\r\nnObtuzsdm5G/qU2T2A4FGihFYm1WqSKZw/dEFGn/LkVS/WmOsAtjDuSbKEZ1\r\nKXZwEURd+AC9bY5CMKFQDuGMcAKdAaZ6T525uO0hD3feTVOVSkn11wHALA6j\r\n7exPJsd7pzTXt9EOlGB72kkgI7yXKwadV4DiFXvR4MBomU7ULVAy7ThH69fG\r\nM9Ywv58oz12RSA5BMLXQWeKOVl3Fb4dtV/E=\r\n=fBM9\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "5.1.1": { + "name": "minimatch", + "version": "5.1.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^16.3.2" + }, + "dist": { + "shasum": "6c9dffcf9927ff2a31e74b5af11adf8b9604b022", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz", + "fileCount": 5, + "integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==", + "signatures": [ + { + "sig": "MEUCIQCiQSitNr/7uI1kFENWZX0vcKe9UDUBoC+DVUbD2yu/yQIgV/AO6JaHWOn0hQn0Lk/Gxa4gy7PHShmOA4oeIuLoBFo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37478, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhmywACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPtQ/+LM+Kr1W84r9tv5SH0DziKuKHUYBoeJVs2f6qTuDoXcX8udLu\r\nP+DudiKurMPX8lvz008MEE+LzXlMWn+BjLVyiJU1LY9bJxiQGZfro2NDwIpD\r\nJ8facuYIn+I2/Gdf3y/AsT7hQOqE4Hing3uJ/PtSxuhI2zVsEGMV+AIYBXGi\r\nR3ygNF+Vo1kI8ZJVobReECn69zK4+RymFV4bKz0vv0hLvtsFPBx1JnniD2v3\r\npL3WsAdSyZSb3+frr+rSpWBshRX0Xh2PdH8Mt2RpF6cbA7S7bRqZaiz/LOab\r\nNuIWdGgPKqZG9a23s4U+5QNDCtvM1rgxyxa0hvEZbwl2piV9QL1QpGyIVH7K\r\nYizwIMtwFvH8nW3hhTD/75qMJhHrv4crm/769QGqtM9n07qLqOuhetF/NL9b\r\nC15zCMpjju4vXyFwOsx9bBpKQ3zuJ7lWWGF66wD3XWAm0SqkJGN7DB6bgqGr\r\nTqsCUdXDAHjdT2hG7XtYhQEI9Vw/if3HKkjJKkaRmjDVMiFLOnnThXFsrb4K\r\nG8uTUggazR8Nwjik/Gom5jq3Cd6iCEbFkXS2d9rK/xPhB0O82xrXHyojEnAx\r\nlWsTRbZ2BEfbguZ6LKgFwX+tMWWwG+KA6SwKStRysiZZrBDRVTWmg7XajKzs\r\nB5bg1ZkzlxuM2XPyurpxespGH0RN7CpANws=\r\n=C0Ma\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "5.1.2": { + "name": "minimatch", + "version": "5.1.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^16.3.2" + }, + "dist": { + "shasum": "0939d7d6f0898acbd1508abe534d1929368a8fff", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.2.tgz", + "fileCount": 5, + "integrity": "sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==", + "signatures": [ + { + "sig": "MEUCIQD3Ec9ljPRKPyC3kiypGbZBKui8o9w3B5Xct1ois/RzfgIgLILSPW00ASWsayyp/dhi8hZ3chuSZFtbrfo4FSRz/0Y=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37608, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjodDNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnWRAAlD7Vpt007BzI12H1M0EdWh+AvfIRI47HcFuniBcoFOvc2BMr\r\necqJTYbGGOH6Qtt7s+fQ3j3njIWdl84OWqJjaYb3eyTuWdPv7u4sDkqgzoH8\r\n0fdWW7MsTf6Kk8c77DjaPMWJnsGIWBHd6KrNp9utVtm0Aa+uYUAEEhVWcEE0\r\nMkTSmfWxEdEyf1QpwRKVvfV/qQJ6MGs45iivtVydVDH4cgoCuHPnjEoLgcYK\r\nszAW3hOG543FnWjzbfn0uiTA9P10Y6f8R1klQChO7MtQ9pXy/vfE2d/izXvH\r\naeZo1svYWAxlCmG/ObYpMib8v68hm2XqETRPDtJqoXYtc21wA9YHUn9nm345\r\nR/r4LvHgECAH/hejIEwmqITlVnJDpVxlfbejyiwsKXoHqCOy1c0OwpWOQHUG\r\nWWL+aRd9DSmUymICjlQhaWqUKc24GSO1V198MNJgnKbfGKedIo80bs7vXuMQ\r\nGynWc9bbSKLJdjGwzoTOgH4KtvL2puh461OsqzEhIV0agrpMI2HfDrwoaoIA\r\n4js5+k/u9q8t/HJitgWZLwQVqXInI8NFQc6znutfjob20oiPO6xt63ekUDhI\r\nS0xRChCSwoLf/nLRjYkyK+AXuKZch7IaCmdBDQy+PZdSO4g1F2iOreW18pzI\r\nHTPwoRttMK1W33b65bY/DDtferpEtTrew78=\r\n=GQJt\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "5.1.3": { + "name": "minimatch", + "version": "5.1.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^16.3.2" + }, + "dist": { + "shasum": "10ae385b8cb023b634156a145fb365331b9aee5d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.3.tgz", + "fileCount": 5, + "integrity": "sha512-yR0LpRkZBFmItN6as1GnWLpkKQNb8bbOWqb1ndXXnCtk97W/DM+GWc25WmTmOaP6/Mk4L4pI082ukXkYwOrmUA==", + "signatures": [ + { + "sig": "MEQCIHgT5p1IrGDLkUH4BPinPmiQPMGWNZLww4FNKv8OOEHvAiAxyHgikMe0gltNmuQhmHk+XtX/rOPh0MLz1MIWXMlYJw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37617, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwvpfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDkg//RR66RECu+rUasyKZv7pN4Q/Y5MLcjZOHH7/BcS/CxCX0+Tuv\r\nvgK/z8MwfvyY+WKMcw00tx8cpOg14u3E/JaytAmrHY2l7XvtEWz62c4FdzMr\r\nCyUZL8LvB5bR09Xd/ZcQw3P42qBbJ/yejHDNzImtkddcXbDdVyRvznKojTqh\r\nmlXl8SPoQ12r6QDaRzXbICko7XnOq4XR8t+cgL0tTaaS2/6iqqmKDddc8c8x\r\nOFVBSYmLxF/9mGuKOpbrkfvZ6XBRCnMTRkbW25edqYaYcB/TRS+Lii+Krrdw\r\nyUNLGmX3e685fI30PFeJ4BTeK5Qd7zGRkhh7yCJHVBmwBoizfUavT7xhesWV\r\nj6hN0SDnftTKjci5klcABA3djhAol2Msx99W0HQX8xaJarXC2G/ekQt5VM9x\r\nUFJYRZBqA287x+HYuIQLLvpRKgCw4m6OEaanoxTpIpFeBovHeU0CmSWBsBDA\r\np1oHIuYdkPwqxeIf+EkAQQhqRIaEiUTMcX4T43dYZQhKUN4bjCKzYAKduuTY\r\nt4jwrl9xe19hV6XVWrf4cuqOrpcM1JkSOGNiZc69I9mec4S1ALzVzcah4uTH\r\no7zG6Gvrc9Xr4mNizSsFn+qEw++LM6MVzFD6+gjAtU4DTCm48kRri4DRc1/D\r\nRgvKU/OI+AXtqLu48r5agWJI0DRKzfhpqUs=\r\n=kJw5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "5.1.4": { + "name": "minimatch", + "version": "5.1.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^16.3.2" + }, + "dist": { + "shasum": "4e2d39d872684e97b309a9104251c3f1aa4e9d1c", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.4.tgz", + "fileCount": 5, + "integrity": "sha512-U0iNYXt9wALljzfnGkhFSy5sAC6/SCR3JrHrlsdJz4kF8MvhTRQNiC59iUi1iqsitV7abrNAJWElVL9pdnoUgw==", + "signatures": [ + { + "sig": "MEYCIQCwZf4A13X7thWAHPVz25pR3cf5wjShqg867g4qvNM3SQIhAPEPDwv5bWn86QENNjx3Lr65NRAX0woIq0ux2vXE/cfP", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37788, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwv3zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqebRAAhEzcJKI4XZgJZ8hdLjc2lxGfI2Cp2reEgrWRHtjATJz6tBe/\r\nk32t1pAdBxI2vqbgYb3ob9Z8bIJpkUJOjh1ekSpjrQiRwdb0Uq4r14VOj+M3\r\nA+nLsNsOFpTz9q+SEoVW5DAoufiNr5FatshK6NVNekzYWRqxbavNenwxsVsA\r\ndkgaFSO9q26klW5GftJ2zcqfaXY7vS/riWKiNrmknRtKU1CXupTmkz+ia9NZ\r\n5rYv7HYjL5g0HUgK7zcBznsWPflIWB0v6o1j2krBRtZwF1oXMXVou+TLL+7t\r\n0zYTIzGvZQ/4IriFEgG3PF5QnLN0LK3v+FGqRVai8hDtOO1QAxvr/XqccfLL\r\nRzOiqL7hOPCYL3dpuIvfzumAAZt81NqUSlaRwE8i2mnkNBk2oEaBqBbHL+/h\r\n0SEoWXz0KOnq+qeDa6zYzzjkLnrXNpXiCLiQEclHYNFoNhJrwecZBEHDNBQc\r\nyeCmbeYeENi6MHNdTP7Z5enA1SX7TJjCwzbYw/XudZ2EJDgGYWZnuMcytwZ2\r\n9x0d9TVt2sih37/dWDUAtqQtMgql6MRTppwvPgo4j0kge6Tg+V8nzMfSoKPL\r\n0bW3KwDb0ooCW2ciP+fvlGYyjIwJKkANJqkxGXozlkBBMpup+eUp8B+0l3lY\r\nVrCjPweX+iI3EP1oIgLqF0NR3tlKbVNw09k=\r\n=YU4r\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "6.0.0": { + "name": "minimatch", + "version": "6.0.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "e00d2875b7ae572f9e699e674fdfdab587aa1fdd", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.0.tgz", + "fileCount": 11, + "integrity": "sha512-6c/YhQ/ZnMCtAGMJTuPQlk1Q6ig41qn1laC1H/AU6dIIgurKxxfh0OEALh9V4+vPcy2VC670D46TOGc8dirt6w==", + "signatures": [ + { + "sig": "MEUCICizfJvXoYBDSMcGaGVUS2CefsaWcjwin+MGPZ8p0KpDAiEA2NMxIgaaR+pFi39mGy08ERwtXGPkTJeVYPlpjU0AHGY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 136820, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwxl2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp9Bw/7BYke0jpMhqRwEgRerjU7xGDvDTG1s/29AIImToQBhX20uP0o\r\nVERg2A953FA+Fi/SG76ngG2fAEL7f3n1SU27M3mG6ofv0pBwPz+AksFBEFCx\r\nejZI7/ozekxuyq4CcLSkLLVJ0izRWxsDoM3FXo9sbZVo/euEmx+CFa77HdtT\r\nQuMxekC3avkWE6f8DWsUdO7ffQrtfir4rbbQjB62hXju+FoqMksSJUpGjD6a\r\ntDrLkQB/KyVBPhEwFMFcyyLPTO/xFfXEZhIXbaCiKe76y5RR8Rz+bCP6LIJR\r\nosZFQDuXHaRu2BsB7J3k23OcRmElbnEsNG0eztuHg53yrF1TXFxxRCCv3LJv\r\n4EB2CtZYPU0XD4/kwmerBd1H0r83VTdonz4wTvOjxIopxv9/jIP9IhtqOxIa\r\nJrNJMwWEEAR3FmzgDL52X0bMMZ8Yz7FParj9oIw6lMzzHJ4cVKXyEE982lLn\r\n91W+MfMNg4RL1N1gUMpYvXZgMItra2+jOp1miD6D4EU19tiurypKE7sDjG5E\r\n20h6pMu7pbueUH3c+muOeFY28k1Um+brvuVvj0mt/MczrQt2O+vFM8spaHdd\r\np/FBQP9lUUb0fPK3YPhW6upDpDtbOx+tHe8BGM62PcH64AM22lO+r/HGnk5m\r\nxYs/RyYPVtDf/uWpE/6K3v2255dpvGs1uXc=\r\n=dONy\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.0.1": { + "name": "minimatch", + "version": "6.0.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "3b098e1b2e152b325d00be05080a3a4a31b2a53b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.1.tgz", + "fileCount": 11, + "integrity": "sha512-xmOf/NJae19NcLRIC3LQYGtEuHhbmLFTL/B6fmpD3+mkB3fmAt4NmiqBMVzq6ffycJqazfitJ5bQan3yzUDLCw==", + "signatures": [ + { + "sig": "MEUCIQDu3pAG4MKa9OOKo488YJv9qNK63MroUqK0OpfpexcjdQIgM0yu2doQ5jZcskB8Ns8qFgZYTYVI9APF8QE/46p3yxM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 136820, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxDnlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXyRAAiaggNUc375auQkBNsBdh/pN6HXU3g+9Menfw4fNsMchJeIjm\r\n6lw0VcLxEs14PCwG5BFlvu0L7y1d5iPRrbbgM3uUhd3qOImGAGc07HVazBov\r\nR2kJfV44z1adxIJW2xeCu9nNmKGh63ZqrqHAvd7FgNiRs7Cq4n7SupIsOvgv\r\nEYpibICS5Uv8vJPn2k7UUnXLZc6UkMjt6uxHZAaRgrYcIzBXcsi2I2Sd6zsG\r\n4mwFb6b4WLAiWyYYaK+8Uts0UE0r89I0JJXQ21V1Mq+nRSYcc1ZxH+eQRqXP\r\nbQz3OVhnOqw0+3N8jmARpJhWXV9wR2511pDc1FzrywunGyZerrR4531BllRf\r\n3UG38laaGwqBwkXBim0jAR7nXNZMe3qnLlfrC+ogphCJBK3k5eqRo3PpR6cz\r\n8M0jAZsxtVSJhthxWzEnspP2tu9O7E5h6hzgAlEGwDWDM6lwK4WQEU8nVL3v\r\neODcfU3cacV6+NMJPdqFy1/SAaomtJgXdpVoadjA8Qrnxlxxuc43+hF9dclo\r\nS4n+kcQN+etrT4xFWXygd3+w2BkSsRk0nDGpKRr9YolI/QkEspBmaVTI4jSw\r\ndZfEdCGz2DC8eUxSROhczyFCQJ29G/mEuXdHeU8tcWpCf6WVQt0DxWJGKUxz\r\nFW42HlOI8qdUYnwfERVs7AlsWRkoZgIzPzU=\r\n=1qEI\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.0.2": { + "name": "minimatch", + "version": "6.0.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "769d72a5988f266b201676d8c47eb65b76b92ca1", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.2.tgz", + "fileCount": 11, + "integrity": "sha512-grITTAm/pe4x0n/9/KKLhIWuMb+zqdK7QkFWa4/E2Xp98yyCOmYqm+CP/3dnd5v9Km1s2OYeSvsjSUPN2/oS7g==", + "signatures": [ + { + "sig": "MEQCIHIk+HE35dRvOkpb+bWBouilXuou4Y1uZ26c95toOiIvAiBIz5irQpA6at/Boh5NKB0kDrEUVrKkEHtpXb9djZu1rA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 136922, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxG9zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9zRAAlZrFUWowg+PCpQIh7ROh8dHcK9f/WjubPghn817F4NAMCzud\r\noH6VRFOCs5Svtfi/zLuoAVHqJYYinM92usetG5uLF1luAp39zQiO5p5q+q0G\r\n7bk1WyIK06H8Wlrrkw768Zk6KD8pWMlj6ElJdSlwjyZ0kzCFqQkvRWhz53y3\r\nxwdGKDsJaNdM4ba4251oDLdYYaj5CqKsbaJ2+BiVGpUb5aGgkI506+Met+YS\r\n6veGvVE5e+TKbnVItyOX01NNRD8TJRnezHELMc/rHglL+98HPg7Lccb0fzDV\r\nexFapQ2UOatuqT8NixTPca0PoWxN5KvqyuFTS7n3mZ6sOQREJJ4+2gYoXSqL\r\nh3JWCbusVXggtjeIcjrSW7NMCHVOIzE8ol7l+xtWKzAGUYuuBOSk4TFPj+/7\r\nAFCVxPldgxU/jCrNLl0Z3KHV5HS2ljQgaEYOlGtzranr7G+0z8VCdXHSzgpk\r\nHr32tH76IY/np5a7ocoEaOivKfz8hKZAqeVjl+SwmKEOhIVWw+eatCuxof/m\r\n6pl/qcRoyBZCpEaWFp5g+JPOuEIqwRUEFpRWnFSTi2RRzzaS/ldLXkirIwAi\r\nbFpXS7kAq6+6sIg70Lmge1SEn5mx6qgGs9gucFnO3eGyr5INw/jSPyZT32uX\r\nQ+rFfQV7wgb4P02DjYZfNBfWrcxOhK+8FhY=\r\n=QBTe\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.0.3": { + "name": "minimatch", + "version": "6.0.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "9859768163dde0e998635f3a89068e96144a51bd", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.3.tgz", + "fileCount": 11, + "integrity": "sha512-MEMLwGVOlRN2AT3u2YEuC101XLzw8kxrYe3sfGLeSoNe0rK3gQAchxsMxlVqFhmkIX/lwFiQSnANfydPOWCR5g==", + "signatures": [ + { + "sig": "MEQCIHHHlLXvNWoiEJS9z4LFmxnbNjlzTkSoGXJ89Ot1W9j0AiATKjQKSSnun6zi/nvXr+iJ6jUvn1Uj7WGnucbwGBzxUA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 137184, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxIdSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpgUQ/+MvcPBbBp2D8aRoMNV1KF7zwUZWu79HV4Q0PrHHIQMJIkLc8n\r\nYshNms/3jPTg9dm+uX2VGlm4x6CrzQz0u9qPkdG1hKaTWxbhtGv2DkNVS2nM\r\ntcUq7UsSE3SOLWpBBnVs7dF0eMs4dBJyjhaXx6AEsnAbXgjD6JLbMUdrATau\r\nr+GGsCvAdKDdJlB+VhgIp1eq9Zwc/6r1QwDRXagRU88QuLLu3DZXHOo6clrS\r\nGBu2rSRES7htPsaDt8paeGNy/nXcB+l6srvfMjqqCRZtr7gSzoG5bP2Aw8XN\r\nlbynWg+J3TlNyHgMmlDNLHCaaUOE2xHtHpxPq0BSUaaffPK9kjxxQsQvLS9K\r\nLew1A4uCDVhLLIIGEV01DKQIp+n9h/F5XIO7BcNP8mqfT+C0nbLFgUZ0WEQ3\r\n2sekZQi0OttVnP8Q263EmfGQh6rfkCOIP+NpjLIpsGbGmwmVFrgxchjpBPDG\r\nVb51Z1TFzA3vF+WhyzdxKaLT9dh56cUWAagmQUgLg6vVyUIwabYMknspLe6H\r\nOHt6s30ru6tfYDa3ksNj8U6mfNdWKadHzE4eVrndCfK1YoO3nMN0NZu83GkI\r\nNMRYIiujN6/2ADOv7PFKoCD2U1yhYQyKHoJ2ZPJYx7n4wu3czaJs0vIO7Q0n\r\npMzRai/3QU09GpDgfubbMDtS90a08bryvQ0=\r\n=zJ+0\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.0.4": { + "name": "minimatch", + "version": "6.0.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "cbada37326e86dc19434874a04e29df0ba64cb17", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.0.4.tgz", + "fileCount": 11, + "integrity": "sha512-9SQupyyavjdAc1VFjJS/5kdtFtlLAhKSWt7HocG0h/npy626jYrGegSslcM7Xxet5z0U9GOx9YbcpyIjBzn7tA==", + "signatures": [ + { + "sig": "MEUCIQDKzu5Lm1nkp2AJgpi3eTJcxXeSu2QDM7vdW6GFjMsCmAIgTtz+CVC1a+821YJqPppqHXN/EYUjMNfjzEDJtITAWQs=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 137410, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxK51ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpychAAn5DaALi0JryCkSUNfF+aqMJvd7C5UYh4pMNth3iWISpkAaoA\r\nCwpI4ubdUYtEFaBguy6ytnOPNJ4A6RQBBQ+oekARawraeMg9FcdGVe1ZCaBi\r\nLyfM9KWBf6MlyzYfpN87hNqiI86wndImf0l6SJWnNKgr6nrfy3dDzCWvk32T\r\n8hCUBOn0MifiSMrAtZfQ4lqpkaDY9MEXUvl5nXNBW+QFhUjV6QijVmSEnuny\r\ngZLqiD0wfnggtKX95beKidu7LBWS6FJNSwmRvTPF+SK9egK3Vj4ok4vcS5/5\r\n7U560+GJYhZ9zINMKllOGSPpI5R66W3Yf4moCeBtYnboN2rUA4+Swvr+4cmZ\r\nju/QSY7+VJLpq1ypE1mChfmR43KsTSAGjEvHGg1uP1Eqfah5wIHqwXrb4xLk\r\nXsaM2SgeLZ7kSPPVJqxDuezPn40gFSPhGezeZpGWn4QOXd6TOavcPoy/3/s1\r\nLPXuRHIAqdYITXkF+YoK0jGkSkp8Sv0FZnyVFNjvZxYUOfMkb38RUAdjK+mT\r\nvbz1uNSjMscsOZbhD1I1sfEEeAGLqXQBb/ppu6oS2nQQMxaehO43H0g/B7wx\r\nWryduV/+AJEahYelOLiJdz7OD4ICadz7X9ZkrttrLZSgtxSCW9fAOHEp48DV\r\nR3TbgTx1jzWL/b5zkgR6ScBORHGRSW8tJTY=\r\n=LHCi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.0": { + "name": "minimatch", + "version": "6.1.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "e0eafd0a19977f5accebd4b3909a34f6611d4288", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.0.tgz", + "fileCount": 11, + "integrity": "sha512-eqe4xaKs1/JmNylXNFY2f41n3jNZAZTZlmOitWd71YazZlvvXMtzL+gK67jRKhrTQmHfrCbErYWV8z9Nz4aNuQ==", + "signatures": [ + { + "sig": "MEQCIAtc0m94ajC5hFAjl1GOKxfsj38ljN/0RLF5btlDV+bgAiAgW2vnJzI/KbEcWfcY+lGC3VQiexMa4DJEZePFXutPZg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 148388, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxkoKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqwRxAAm1qIzgH86Wy7CK5uHrQVO7qdrvIJjykGCpUfTWA3SHiE/+Ud\r\nHD8vBe9DVYHmecE+RkYYqZ5/ms7n7yKLIbf2QemchIvUoepBWeFiJIaPpN/O\r\n6x/PVsDOMReu7y0CgrByqLyl2Ua7BuPnFkd3o+W4YfBD/9lZVeGv9mb9HWl6\r\nkYownTP9vT9LDBoetmyfMXvGR1Y7Wh68Eb18L2qzxQRTp12Lo66ustnZ6h3+\r\nMJ5vH8QE9w8nw47q5ibP16YwifLM+TjYnhT7NbTZSNjS6ginK1VcpocJgNNu\r\nN+VSX37xMV+6ZC/kiWQk3j+BmEr/DCo1vMNCdxjoAKuOqElfqUjg/YB6fLBL\r\nSLCxrT7PPfEHJHKoW9fDEH8m15X2QwLFpQXVa8wtx2Dpyjc2/QqwYarXToew\r\n12maQN17I4sSzG5/QbIqKcQSkCJzjBKfsJKiXniQ3Msi99xxhkUz57xZaIGs\r\nD2n0WVhJwrewQiS9jVHvw+gRfozW5q5qcJrH2WILE/WVDCQ6QNdw3x3UMNyG\r\ncFpUIp4NNYL1zRlWxNVDeUvHQKAHDDteVphgkZvzFZCsMNXboLt3oXwuRc97\r\nx5/5MNGwFQLkNhuiJhxTuxFC8pbT3kCM3zaAjnAY+FgsrsETYgEnBU+3BMAN\r\nzsh+O2k3s9qgziA2qpn2TZPRgRAqcrCSm0g=\r\n=ouF5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.1": { + "name": "minimatch", + "version": "6.1.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "79b77e6296ea6fefa1c83d86c7e667d2d4bb3cb2", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.1.tgz", + "fileCount": 11, + "integrity": "sha512-cNBGP54dXiAnbZWHrEh9nSHXNX5vvX+E3N9sF6F8vLYujV8TiCjDv0qSStGUlZEJEyaclfVh0qxok5PQFx+kTA==", + "signatures": [ + { + "sig": "MEYCIQCe/wY30MutOwgoEMhwz4HsQiAXAOr8BkEiLkBuwLWMMQIhANfZpzeQjisHvDzS+hKZqQluSqdjE+5+V0Om0uMfks26", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 148692, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxrdFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmovEA//b1nPvbSCrfGn5TJj+mHGQmxN54/75HJddGvNVgrLKSkg/ym8\r\nk/yb2uKyc4tQF31fHt2elDvoPnwfZ+p/zSB3moI+8ID/qlHszOct2fhCJb7L\r\nVN3byvM1Ia2PN41AtVf/ftJdbP0H0CfxuIS06iB5oMMUalJEyUjDRejCJGBb\r\ncs61ZBlrWttblKydXwV8s4MWc69oHk8b0dBtA/JlXg7nhGB6iPc9LtLnB5uC\r\nV6B92rdWTv3MmQZvdsR1TNSD/fAIMGQXagszhru6MTWClffkOpynGB1aCPqz\r\nBOePSeIggmjZpLzm413+qdXopiq8CVKp8iw/b2YrrPL0CPIAGhoKmc79Zhyj\r\nOueiekMS5VR1atScRATJd11QMwqU1nnwto3BC2vMBqy+OOK73jiLV4CRCPzi\r\ndpkcHIbdgxbntyf0lBR2KqL+h150qn5sak4QvRIa5OZbTqT5vuEa56x6/c91\r\nhEucnJOGC8iXtmy8ULkHMbTooayOX06dyNGjudCe+dAPtPPWWymmKriPBiwV\r\nhGT3gLIH3Je8ygaCR+FbkTt3arspVX50Y6QjsVE/yOVH2CmgCSORfgMxPIrY\r\nAbi0fMJl0udo7WpUdQulIdXSJnBJ9HX3HddN38cjOn+O2atH7xhJ9xjZtYol\r\nEkTWipJ3h09468D8Kp1VISH1vbV09cWOhqY=\r\n=gHfG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.2": { + "name": "minimatch", + "version": "6.1.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "f09f2db04a72f7a57a3bc42a7d1a22c8c89270da", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.2.tgz", + "fileCount": 14, + "integrity": "sha512-5sS5vZsmC5o2bfPV1n2mpmYuOvrfVVY45fi0z+rfKPwx2aXrZF1XeCbSbWWENAi90YDK7bM3TRo74BB9h2zBgQ==", + "signatures": [ + { + "sig": "MEUCICz/4BNxYohwVLqwd0w2DvpUcMEFkdqftoK5iTGLNhKaAiEA1QymwUWEznkJZSE9AH4FLhyymoH/cMBJY7xrUdw1N4g=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 151910, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxriNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpEzhAAmk1pKI2NmBz0Doon2ARMxh35IYXxcuOb67ZY1f+ED70v6OBv\r\nMEd7iMzmtzNsmTHSe7STnTymMwfKHFKRBRfjvpM63ddKL01TNqzDohk9jF+D\r\n2hakXTV0qQzFAE9cpORGwRNKahGxlgm6En86dqcWS6wV6aGkK+99kyVLABjW\r\n+qRL9j9UOi/1m5kdL0Bc5xene4iD8lRZX8/U3nzsiqMepwKzO2H1b7vsRJG8\r\nZEQlPE3C6rrsDNQHOlHH2jcEvcjq5Hfpfze/uHaJeW993X5l/DUjOELUODcO\r\nZ4CIW6ctRmUcSOjlkq+FkQescyyuTvRWV/6cPgkVrjcGqggGkoF7I8znJyPP\r\nVSmj2qQDSFvRlPzPEufIufCpZ6Kig1MedhLyHEE4rSKeU0CED2VfxDzTwiAn\r\nwvLDR1qViMB5rFFF2dGjDkq9zNFPqM2MeHaxP0s/GvGScHTBeXjbyqlqjCES\r\nNPPc1wmZgTOfZlK2J5rUhfx0Wl6PC9d1TLg4x7X8lUcnejlUMeC4Lv9dyHem\r\now89UbfWVyZfm0PuNirDDZ3LmD729B0DvR6me1HKCvyOr5LwIRGQnsDa1oLF\r\nKX+7rA631gCDFV+b9hOf7o92uiX5Rr6UT7ZMLUc3ZZi4n4wlaOSVGnrAWozP\r\ntKFl6rWNNE0KLXoe4I3rKx95AK5GenQitcI=\r\n=u4eC\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "5.1.5": { + "name": "minimatch", + "version": "5.1.5", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^16.3.2" + }, + "dist": { + "shasum": "cabd894be2c2091e01fd09211326dfd996ee022d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.5.tgz", + "fileCount": 5, + "integrity": "sha512-CI8wwdrll4ehjPAqs8TL8lBPyNnpZlQI02Wn8C1weNz/QbUbjh3OMxgMKSnvqfKFdLlks3EzHB9tO0BqGc3phQ==", + "signatures": [ + { + "sig": "MEUCIQCHJSQL0WRrIdK5sNSq44O+RZFHnK4Rf8QSNlnK0ZTUDQIgZCbuh3utfERZ0JGU1hLTzs2D+5tTlK7XU25UZZCz/Ck=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37912, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxrjrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZvxAAnWbr1r/+nLZEAoJpnyEWSVwqhxlORxKU7dLDqu+K91VqgGpx\r\nJUPgn0m0ko6yWGdbr9vYF8vHmB2ICl+Fa7yqFJzzoT2i5vYAFDCw48/BMm6G\r\n3NsWxMSlwr1KhhkyMvee/ERNmlOcZ8hV15UIuHGtEiA9JzfwHO38Gi2/fhXJ\r\nnbjlY9u5d6AOXvbWLfnXjmvlB7tg3jVuGfpup150pmMGVN2qXyFiyC5H/FzW\r\nKbLSGas2qvwoMQ7oQN9dwSsNoWZmryXd+LugCtkaj5uCVIZk3c2HxkNQkhLh\r\noSFnYheIOtjDuc+SE8sJHUrqghc6BF6M5EJG5tHAwUwZFxZV37/xnwHlhTru\r\nept2uDjmRo6Vec+UB/eNkiuWKJy3p12ZjNZwbHN5oFA6TCST0ktrWmJHXdGk\r\n1aq/77K2yHpKX0ei2dQgads0UP/Kzi67swDF2q8hJyHMBJ13uzHh9rp0L6AL\r\nxZCtemHAX4CLpMe7XY+OFLeXKTTQ4iDFhicm9+Tg5X63PY3++K9ZmlfbKHjm\r\n9GgQ98vAoYLwWwvnTOQCcQUJltpHXkGTKfWAe+EyOABjPzp4xoWg1UQAj5wc\r\nwAd1CO+eh9L9sYeTPUBLVOTCNei2lpuKOej0cDrKV5WFn8lqGxk9iteGMHB7\r\nSnAftyn8PkuYL3nVA3WrE0l5ZShsp7id67o=\r\n=Ddjw\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "4.2.2": { + "name": "minimatch", + "version": "4.2.2", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "2d2c05fd94ee370ed49275dcbb9a3d050c342795", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.2.tgz", + "fileCount": 4, + "integrity": "sha512-irqDyJjDrUjbx9QWe5giqW3tltdpUk263Qiw4BVMLv+uzQR0/udYN5h08kI14npUPRXIpbSWXFC9p2Z7K9ZlXw==", + "signatures": [ + { + "sig": "MEUCIQCZwm/SZ8C2ZxyIhupuBSh6nyEJF8UFSErBysix7METXwIgedaWR7We3yhpe0wA56mz5Dw7Eg5ywhdI4C1vZg2u0NU=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 36157, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxroaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8Hw//Xr2EAx8sfk2Av9cn0daiNWIHwn4buFmXjAx2eFTkmaUtaPjf\r\nkpCKUc8qnu+sOfwkMzuX/EhfYSuYSeUAok40z6QksJa7ASPj+e4o8H95IR0o\r\nj6vMFILqmJYchPdmXkxSJhfqqyyHTgokp0ZNyDIsC8YHyKvkVUVP4pDT6FgA\r\n9fO53FW+3NXPeQHhBYSXsIXp/ZSFkuFYoCcH9SMFfzRM3lw/e/4a0X77iu8R\r\n6InrQTgH8rmXQ5xHwDZiFyrk7yhaRCCcvJYJDAeJx3QCZR5t/KPxATGJV7Kw\r\neGKllhIHAuJaYgceKvKqmhhI1ZdIvGrIaU2QMzh3/5C0sQS81dzvpIwMRWE1\r\n0nF5Iwe8dukX5EbwNBKtdLKV04MNy/z0g/UgiZKZ97Tz1T9gQZ7LND5DqMry\r\nDnMOcHYx3QVhCumXtEsFPLRdO7W3jWCPxCzY9shpQhA1QPwajOB415N60mEs\r\nVsX9Qqn44YRJCFiu2ktGnpK64/sWodWNAnRv6ldW8ACjh+JeUydPM6SaI7BT\r\nl0SOEL2AELg4QF1VPez3Z/B6McN7e9DplTkGI6FLDYOveQvroQo3QfebEhkm\r\nATxOcRcK0kmu5F9H6Xqqh8bq7gKDmkb6t/cqd3f2R2bzIjz7EdF6cNwQod7o\r\nadS+pI5EEtV5O464W+a1YD/9ETW0J1677Yo=\r\n=dr+J\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "6.1.3": { + "name": "minimatch", + "version": "6.1.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "edfdcf136a4a495a31cf427e5344505b3640a5d7", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.3.tgz", + "fileCount": 14, + "integrity": "sha512-hTKbHAihZdzpD4K9mhG0dqv+j+D7kAHlPfEb7BQA712xP9afhS3x5pyoYrGqZYJd5PpawOp5V20rkFki5jDZKQ==", + "signatures": [ + { + "sig": "MEUCIQDp3EbVAWBab1gESRE7RPYCWmhqfHI8T3KdcGo9nC3GLAIgEgQBsSOzex9I76UNXdQG/iNv3McnbQomWDRVqwDM+M8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 155932, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxtm7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrwURAAnhoGOalHjR6LhwnfsY3Hh5Ov+y724l5aUxfIfpHKQA4oi5hQ\r\nTX5MxgAcl5s4mg5Kr/cdUee4j21Auq8ltYGBBiCXHvrHwTAdh+Uws7wewKb2\r\nof4jrl9652qY19jH+BSbsWIVYh8tBiilR88dDdJwGwsn8onQ3hwK6sQGfIdT\r\n/CYODedLiD+Nws7hrzljAMQGZ6wjWmX/IPbkuUx6Fib03tsql19nzoinq8FL\r\n0ZJrSZLyUTzXvBuGREjIc6UPVXRqggks+QvvrQctXyc9qR+jIrZvmfQqp4nG\r\nYrqrJ7OW9fE/xf/F8WM1XDoVx8C4MlN2pLTXnSlA5cC5pD+POiKfx4AQj0y6\r\nd2WvHO36WzJhV1jtxDFnnOcQGnUuCOJOEL0yuFaSQRMdf3xgL0gHEsY3YY0I\r\nArIdfj1aQ6Jrz9xMA0dKU0TLA3r5xZTRRXEJPdDrFO9w6xWFPSlNaRMAHvIc\r\nZgE4CLqInU9BYuwCIFyU+ztbs7R2tc0jufnTm7+dTCfdd+0pWJ0irPqAhKvw\r\n8dzroIpNap36pcAK7eDbNYZC/uDugfxm1vx8U/PKtUwcufA4ms1Y5lv17Utx\r\noWn0GGyz0ddOzoX0gEBQEi73TXARXXHPo3HBPHbnwX1xmgSb7GBDuHxE0wcM\r\n+HhpbNpW0ZfAY9+eJ4VXh20FJ/R7+JC1Y6I=\r\n=V7fJ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.4": { + "name": "minimatch", + "version": "6.1.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "f34f10bd5f67d7b1aa0032931f2dac64adb51c81", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.4.tgz", + "fileCount": 14, + "integrity": "sha512-NsDTCCf9qKxjUUxSfhnF2AbYR9xSpWvJx/HL/4E+KbqhKqdHMXjn81So56Hga/lpyhXL98aLPZLdPmUUEyIrWA==", + "signatures": [ + { + "sig": "MEYCIQCoXOQhXdg22yl6MUy1SDfAIZ4++tWZrMPvVXi1LTzDzgIhANF1OWvdLO9oZWtUKipqg+5APRpxZ/7WOlMdwXUoApjw", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 156178, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxt73ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqY2Q//ROArySs+MYltfaP6gImJz8eiXkJC+tqvaajL+V+1AoCrpikD\r\nh2Ms09mkista7cNZNrwAP8vBTOzwNJTMEzUanjnXB0MHilkNFtY0lP9GH7GQ\r\nA0DJlPSexcR7jyfCfjOX4oO7uzVN7e6X9AW9o2/52o/kK5ngKOh4z8RFKiOQ\r\nJMStP3O3boh7CLsZ1DisbvgIiaBGp03OKwum1bkUMKKqjRoCUMhWyo+4oQzD\r\nOJ/BXv7k1vACWQgJP2KyTUf64ggzAxqbLB8aZZiI3XxplnnvB4CaeLtkhOhd\r\nzskE3jP07cKz11R3Yv5lIWNx5e26X9FmiJUYlVASEKGcAGJXwJQfQzftEmjz\r\nBgR9iTHVlUl+xnTuAC7xodeC3fkEKb9pqVCT9jl248lUUEuIdXoQ4fgpp0zX\r\nbXOjXBg9qj6Nf+LDQ0vBYZDqw3H1yGYfqvS25STQXKhJUB2skR1zpd1rV68w\r\njIWWacKuDBVk4z6/dRsZR3VEH5vom4TIhxLzvBZXrZaWzMT0KD3MOg//twjj\r\nY0F2rFAvsx2Oo/S413UZ+1SpxL6qUyOxsmhOwlx8QmDjUeRDCvyulWEp4US9\r\n8/ws3l2OK52jgF4wr/Gcab93YU99YR3vpgEQFA7Hpv2jn3vBAvOjWzPdANhu\r\nWCOlVNI5nCESczX7v56dgV6Xqs8YF2BOyJc=\r\n=oFmP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "5.1.6": { + "name": "minimatch", + "version": "5.1.6", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^16.3.2" + }, + "dist": { + "shasum": "1cfcb8cf5522ea69952cd2af95ae09477f122a96", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "fileCount": 5, + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "signatures": [ + { + "sig": "MEYCIQDiMjtuM8wCBI1A20eMmJjguXdJs9emsSfkyNrP9HfX9gIhAJiQHdN0U5+b5hYdykGXicc/CoiJu7mYZLpfjuHt3xel", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 38919, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxvsdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqlgQ/9ELWjZ+57ildeZ1IQyYJ/WYaaGCjqth+pGej5n40f/2GrBNH5\r\nEl3IbiTHuihdfb2NsxzZySieGNor7vFSL4sZEah6h3atWMvbkKYdYTEhpopi\r\nREkRpqOMcbLfrhYOwplT51iNaOutqLm7enUF53OrAf6/VgiQE6dBChJc3KDn\r\nXDtsdQiKUY9IpEpZR47VB8HSupYrH2e4p+fQKbwF2k9xuFGmWdf16V6sGFNh\r\nBqNTSYVzjSoQWF+k+9P3qlJEuAlmj3OmC/lsBrvpvmwMn6bH3dCTltt4REwo\r\nqlROVwV3gYXzPv/8FOOJK8jEWG49SxgGvgzNxu+WxGT7fJL3YyzYIQZpNzzR\r\nwFwO/zRCW4fLK52RrJ8fNelXavCcssrB7TmoqT2e0Yk3BIGkUNdSBEnFQItJ\r\nBBtA+T06Rp2u9XSUj6IObvU9tAz4s2qSSmXNv7//otXn2Cg1NESAz7lIxBA4\r\nm175qE3D1hLqobf65uXAngwVuleD896/m7ncclPQf6HRbWf9k7fA5WgRQIMT\r\nRZsJpTrxqHadZuvFItWe9hscXDuwbXZVahV3wwTgUmfXFS4hh2Eq/UK/0NTY\r\npHvQcJi024PAq+LLgI89J9k7i+TIT8YI1Vk33+hUODBAmXUSiVSSyzRyzX1h\r\n+7SmY0CxASDdlYg4YmNaInkbqQ4M40MkBG8=\r\n=Z9Zl\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "4.2.3": { + "name": "minimatch", + "version": "4.2.3", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^15.1.6" + }, + "dist": { + "shasum": "b4dcece1d674dee104bb0fb833ebb85a78cbbca6", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz", + "fileCount": 4, + "integrity": "sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==", + "signatures": [ + { + "sig": "MEUCIEOmujqloN0Tft0Nw57LOOuQOr0AhWETXoIiT0vqh5Z0AiEAippOmoNyvYkpXoKFwE+/q9psUsBXAmb2jm4LrBS5Z4E=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 37164, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxvs4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqphhAAkWCMSsfK0hfQHjBLB+yU3pNpSdeVuhtNTQLm7boyAv+x47GS\r\n65ybRsVb7n6yuua0tRIU6p2xueVBQOFkTpykLk+qzP2wNfW4GhdzjlILWnlx\r\nvJUWpHGbTlAluyFnh2flhlLgwSLPZsCADoNvc4VWdbN1SsGYzrpt3wYGsc8h\r\nBuhSMjuNX5SENUYvUNlCwUPrd0AHynC0IU5ijlAgMeChuxBSk2sNqanjO/uu\r\nT1R07zkR+kUWtlOgwSlqEk6+YIwvuYh4S4j1DRX5AioOVyyCjPsR1Z8kXOQr\r\n8Z4jKeDFs5tZfITveurXqejM0+VcoP5OzW8w2NBi62cnDBQMvz/JKdXGh7a8\r\n52gciU3T+IvZSPmMJFAgJEhq1m3GMFIHw4iDr5zb11HgyHBAQTLDb+u4hfIv\r\nUdzcUYkytjPe1dQCy6jlktD+epKJSPT5XDfcLVNcInLjflTKvhXMw61f5p5E\r\n5thc7zwhmPS5c7fwNawGmYJ93dku/yIAqyKzjhxck8+qIWXprrJssXbxz/AK\r\nzvURUtKuhlyJcnSd2B2y+zVC/yZDY7AcK129n4wpqVeCGoHrxn/G0HObRGGw\r\nriM7Xv1D+OZVynHOlxgx3qe7ngea5TAZIFaNiv3KhmRMGDv9Jlb4AG/+P9Tl\r\ngMcaS9KIVw+LUHsgxzWRhRJW9ai9Zyv7sfw=\r\n=6XsP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + } + }, + "6.1.5": { + "name": "minimatch", + "version": "6.1.5", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "61adaa90e59b29022fd8e326364f0336e4f9282d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.5.tgz", + "fileCount": 14, + "integrity": "sha512-2/WxnHMkH7qFS+pG8ibLN5GZdx5Y0aLlgFSghaKRUpkeEmC85wZRb/xDvj9jv601KdNOS2G/nNqj2h6k42yxBQ==", + "signatures": [ + { + "sig": "MEUCIQCZIJGjUut0GzgsdWp6O8N1K9w4KaaYba6YdpedpqCtWgIgbIbV9RpKppcVttyECnQGACedMQh5b7gUqjse1gxphtQ=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 156178, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxx59ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3yA//Q+auWKpDwXCEZDvAQ20Q+cMjrtbL1HMfPdXVS+CuudgNTLBl\r\nGGJsVYN+PhftSQ6Q/Iy6rMWQzIstAMHmprAaAODCaeLUfSgJMlO1gg8ek3dA\r\nT1YcN+9rfRTtkO4redTGLek+5Do134JvsKb4OLKUIM3+nNFXhvtAcy/b8XuM\r\nhgYxoILPbd4NXDOOryLpcY892A0btha1lT66uJz+CPEJss7b8m8dtywxasR8\r\nq2oEJ0aP9HwgC8neiX6dJ69/vfkrVuZOdauWXTgy8dVrXRN9HkizY3mqqR4d\r\ng+avk29soJ+TWxRJrgBNvFkVcJC4YUiu380ZQq/v8p/KjAEvLx+AX1SUYP99\r\nl2/B+V4LbCJnUq8Bg24X6LbzhAkyxI61HHkGopR+ENw7zhhcaudM6OB6qpra\r\nNLggZbEM8S/aQpY/kcIIHEp4TZOFUw7lPNdq79TO5/AQ9GxTABy9JyXgAy5F\r\nQd6FZdm2uQ+8r9aMBT6ga5depkCscQov+yM9No2swC0pN/c09csgvS3B4LwG\r\n9pIc22U43zte/snIbxs2YlqaT7ZdANkDD+W2XXU0zvVbWiplS7p4ACsz3ydr\r\n47YSJiteuQRKUSUu5tzBaZqonvVGOrwytj2e4W6SSYp4Kkd39MmGHE7MpIeI\r\n6VeoCdKmIEs3A2jdbyyo/cx3ssUieMYrLak=\r\n=SY7B\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.6": { + "name": "minimatch", + "version": "6.1.6", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "5384bb324be5b5dae12a567c03d22908febd0ddd", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.6.tgz", + "fileCount": 20, + "integrity": "sha512-6bR3UIeh/DF8+p6A9Spyuy67ShOq42rOkHWi7eUe3Ua99Zo5lZfGC6lJJWkeoK4k9jQFT3Pl7czhTXimG2XheA==", + "signatures": [ + { + "sig": "MEQCIAU7+bQt5y/4dzl5JX8eUidYEAP2TbmIJLLV80NTqDPPAiAn/4whptPpB/YTtjDkdWVdfrtu+UoY6uuel36sTzo6tw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 158548, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzXfGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrX1A/+I7lBYgXrP6tMY9848ZT/Osbq6gMy2fsbPaFqehBQQEHfQ6O0\r\nQcMBVVkja1KhslvOXdR/V2j1FysDsvM6QwlJ1aNiVgG052wQQVJM8dxU3bZS\r\n0tm0+t16xjgx6dPp111dy2FdtQs4glX3ymd9qydRnmmg+K2HL7j36GjQAGTP\r\n4Yxauc7yl5U2gJzzIvK1Gspg3xT/CcGHMvQb17I36SHCpgxv9FKDXj5ecEJD\r\n8ihdrrX9BE0rbZsxRt1sKv1aNcJiTgcQujcDzkRwd71i4X7g77GuV7G0iseh\r\n8INxu4EMD02KIvAEQ1xAYQFFIoUWvQm+UkUyh3SsHhVeAUcp45nXBjS1283I\r\ndVycGYTm46ZKhSEC6kJABqQmH5PwLi7JOPE0Yteqfh4qAOqZj3xk6ZQ/7cGk\r\n11mjm5JAKpJnvRc7veNhv7jRos16XZPu8QrLXtMT9nLTCY4pbBrpyG+2GauY\r\npLcluMCqwWcJ+mQdgPteDn+WI59CExJlcajHLZrhQ8qK14R9yl8VFz6SLPXh\r\npZT6lsCmfM/J0GjzQBEPTU1o50mxATyH/nHu7pJse/HVNvAcYfDBVSlTleZO\r\nn3+YQWHqeJNC96Xed6O7qQDX7SoZ3fDGEpUOHmwyNQsOl3FEVBQqOw81TAVi\r\nSIudRtmVl66KU+B1i32iF7QutFaiC3xBXks=\r\n=yuY6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.7": { + "name": "minimatch", + "version": "6.1.7", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "42f838160e09c0d72d385d8ae36b4419a77f4284", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.7.tgz", + "fileCount": 20, + "integrity": "sha512-n2nxgpaqchIzQ5VdaL58aAwncIaSJBB8Bn8rbfnuCGm6qy20iZUiN6uqS07/e0SFexS6mDHvz1kewu86OdciYQ==", + "signatures": [ + { + "sig": "MEUCIQDuBNqwhqjOvI5id6lOn3H1rBO316REPCtTqHAARqbpzwIgbOjaEXLFTGGbtI2534LSHnkWLgUzOuMTAmyCmqeCZK4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 170986, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5/ubACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBsw//Uo6sZTOTgJ+TXGlQ3gYszVTZc0cOT8QIbarIgBilZxgdWJoH\r\nvbN9BzJqnrbKKXJ7GW+mawernPR1WAsqcHCgyk1b075BY+TxWXLZR9sUW+0y\r\nr1YiCUxwuya5Q+Yn9SADLunldgsmrw27QWFBAZ8nQ6UbDR0xjGR4OJI1UBvG\r\nl5WV+7nl5GWK1E4W2Up4GNWvUvgZCfzaLqA5eAaQLYeky3TJmRcR+nVus4DE\r\nyobiLicOAIxH2LtAYab8uH9sqIf03OCKUvA3l6lWcz56cIgdFGAZeCAm985o\r\nOiueYoxvEhu+Io9iFhj9GdL7SQMQtmze04T/1wuw6xlEEgBZLLUxwp9hfO1S\r\nzX/ssM5h7ChqHQqMCuwQxqAgIzb5eUu35v19bnfJoXqTcELrp3V85V+SXuL2\r\nmilw4WvpwaWbLJ7bWLEW8O43IFzHkcxq3xyu4WJGtjfFC9smLGgcLmOzy/T2\r\nQSimBSr7rodOHbe6J1MJfAG0kKMa9fPAnRcbalBEWSYnCpC35K80uV+FQHqY\r\nQmUz5ivIB+wOmR3dNDvn1c38hjsHLHXonFVr4RRXVeVWh8mpLHgKUE1RHHsq\r\n1uDdTAnS9wu0YuC2WRCyYT+T1R7HrosZx8y48NAYp0J9tjbqfe4f8wUQD0Z3\r\njz6DgGuQRjG4NntXEXVZc1jwPPsAdQ07ntg=\r\n=Ftl5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.8": { + "name": "minimatch", + "version": "6.1.8", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "5a0ea694ca41342e14561bbec62802b59509f7e4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.8.tgz", + "fileCount": 14, + "integrity": "sha512-sTvS8Q4mIZiSnMo9192lZMxfeaGCslH5CC7B62hd9DlbifUVrc02ABTeRJINPosxKnvZlrmAaNSo8f4PZqDDdw==", + "signatures": [ + { + "sig": "MEYCIQCGwVhcwBJFuIcqBySxI3Njwh4tM5vJqw+REnf7Co8SkAIhAKzkvk/ewdiaQEH/rqKW+AmakFJ90TLb40m46AJEQXhm", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 175392, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6AQrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpFsw/9EXr2leur2zJt/OP2aO8knrsOscJc2d6nRLfr7tdIuYsE39aA\r\nMP2Gp5AXpvcpfM+MeIJcSPQbR1y38Q5CtSY82oysxP9nfx0daFx4ULh2GrDu\r\nQEoh4KHzzA0n3VxDkUGYhZShHSgbuHjhiDITPAlOfhC5bvxSA96qHhtmQqvI\r\nyJ8HZYrPCynhjV7CRa87W0dCyqy1nitk9T6plllHw9xDTZoznUUDmEN4yegA\r\nCuZIas2+sSXKhtiGqx8qSJmcU438Z8zcvnjV+kZnGrxL63kV8ZD+1d+lqpoS\r\n2Ad816tGkzfc/UOHd0HU93wlAhIu+0r7aw52v+pFSAcx1um8F9ixsCgfSZ2z\r\ngCbivoxGZpy7MdlMqQ4pq6DXlKtgwaOnaOMm5faVzFe7vQS+nOhFQFkSkF7l\r\nKDQ2cWHw9Xofxmus1Wvga9kfyEMZ9Nke4QixrwPqPiNiU1uXnHMmQsGSJl84\r\n5fAGerOpMuiIDdo3Nx+Bn5GkLkr/sMBhEgIkeNZyNnUg6Y3eEZxgDyCch4mE\r\nAyCwHE7VD764rlchJYo7ap1m6KnWMOOm3+ZsFHQMafcEn7y6b4zhdXmBMEb0\r\nJklpMBSTBB0Gi/R9+fGRHNYyGkizFtEsH4tLwAQ7xnU1W1BWBOtEWbvk+c+t\r\n7zGucf8gqzOiU+rkCBRFV2i1VVceF9fivt0=\r\n=U3C6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.9": { + "name": "minimatch", + "version": "6.1.9", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "b4035a25d7175e3801e1d75e1f3f4d65c9e537ec", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.9.tgz", + "fileCount": 14, + "integrity": "sha512-6Vjiyqqav1xqJqQzMFOS/tHZi3vn0bGsKykLvK36uUj9FtZdq6XpIdHXBjoln/q+i3mTTGFeBGzhZ44wLtFQyw==", + "signatures": [ + { + "sig": "MEUCIDHKqBnwKEgKP6azkUKCaS+h51Vih3slzE2WlovKOdJfAiEA1DY6OkrU4OrLmMzpNXB/WxAjiUtXWzGuNccnDP95dV4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 176798, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6d6MACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/nQ//cHxnY6kbSauxTC3HzX9SQbeD4PUDgSn7mEECi12kzxgIJOQd\r\n12pj7BALE4yt4ap4wAdXJ7iiVhjSbi/o1I7/j3JGoxg5JXimIqlohYvp1Di4\r\nf9Zql0wTz8bD9RAocPqJiLRqy8ky4dgyCUrqx4newI3cdyb6SugqXvhvKa4l\r\n85S9KMIkuog859jpcW0b6EKyxYobUmQK92JDc5XQEHR/vMC97DeU12GEtIby\r\nRFHfv36arO+Q/Kwn2mqxd1jMq38TNwThu01GQhS+34GULnOYZUbiYcsEDrr8\r\nBQel0QRoegye1SI3LLZsTAa/pTDg5K+yXmWjWduDm6I7XFXuHbgwopaIJ5QX\r\nMgWzx3tmJ1KgmQ2iFCi08FeLsDFH0Ax0lgxA4Gqr6k745JQq8zok+Qkh4DNr\r\nuwDUpiD6Anb91zunVMnL7aIYileLhnPBJF+bgj8B0HZgDWxlstL+P0VKO/jy\r\nIoUhEbeRoao0rSvZjTFlZVyaZcEpcanblQ3E9DbgKpIUafBvMri48dMazjTO\r\n0NvquwQsfy7cqk8n5lIVYiSqHLZwuw/078CNYEGJ9xcZm3mUwt/309ogT0en\r\nZpIOoHOzPAsr0ANpjFhi+Lvfmh3eT9xUNR0+2raa+as6f6ved/GT/8NmHX5L\r\nULnL1E07FkjNmHSk7Q7dygHpY6nStEnZPFE=\r\n=h38E\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.1.10": { + "name": "minimatch", + "version": "6.1.10", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "36762bb7c69cd5830b432627c9a4f7cb91ce4e80", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.1.10.tgz", + "fileCount": 14, + "integrity": "sha512-+zx+2Cp+C4Ar8yNvGtxbLr7AjblzdF16P8CeyZEEGVAIhTLHM51wchc6+JKQkxdznmQtHn/dWQgzt5SiU3+leg==", + "signatures": [ + { + "sig": "MEUCIGhx86MK/L1dFB9L2TT2Q6PrzxHaQSev0f0STVmpyKrmAiEApRMSbbbjZGE1BKRGRJaeTV33d9QM/k85POpzozjsnF4=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 177339, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6fLWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogIw/+PvbaCQYr3juLder+JCMv1Nn+5mpvVzqQIhJxCBLwb5NvOdbE\r\nu09VqqXs/YcOl3Sn3IuOS+knrf8zJW6guTlALsUJJkEEw+0IVXwEB42/6Va8\r\ny9RnUBkXpjwRPejtTWXgtJawyr9cyYxA5y0SQCenZGpt3XcqcAziugOXqnHd\r\n+H3VkncH4rwX+awqV2K5wCDe4qSuO1tHYXL5QLLb5vZ0i6kgaSK/s75myEBz\r\neoXsUeRBIdaioTVbYBNz8GLzGIwBxBPEm7Rn1UTSvIP7BbVIcXEhHH1j7yoy\r\npFlMmUIOJqcwGWLYMqB0JS8QK67G06RYPSDDfhkq3+q8Qqofoue7i/jHX1PD\r\ns3UEtE/kD//9mnERMgvdIlEUJMA1Ikz38E72r+EX/FfwZjF6Ux4mzpSPvhpI\r\nT+ImoEnCX1w+wFHOMoy8+YAXp9eAJogi2hI5Hcr1rAn7N80k2RDhhKk8IM1C\r\n1iWHY/1tBGlaJDnZkkn0eiPCNysbP8P1dwc3eCpj1ED0ofv9dleRvS5RWfOk\r\nFA8cliJYcoluQQOinNlVGEqGY3IR66fbEF8W791cN7ZWXHT5+yfBCPSPsFnq\r\nKxYa5WO29LfTut1d0lI9/1ZLbRidUVndZ0LFyP7IfL8/lN0BBcdnLBq04bvH\r\n9JM4AMPZP1ZNayCE4/lVRCr+QivMYua6QbM=\r\n=qXHh\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "6.2.0": { + "name": "minimatch", + "version": "6.2.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "2b70fd13294178c69c04dfc05aebdb97a4e79e42", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-6.2.0.tgz", + "fileCount": 14, + "integrity": "sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==", + "signatures": [ + { + "sig": "MEUCIQCj7ndcLmGKNsQra+zikyJrfz5NMVIZiuCivhTT+X7cFwIgBUl7dw/fiW/dOJXPQf7xauVd68RKd9lFKF+g3f6YqRE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 177844, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6fuuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdBRAAi972eq79CjYf6G2cj2AkphjrdUXFiHUK+/QODOv2sPbfswWs\r\nh2iAFkmbyGwflSdOWQ3TQ/RP1RO1Op2FeVU4uQkkiELuJrc6XQFnnwLmq2/o\r\nD6JZ3gEGCrAVPu7TJCW6iG2WN8uxt+TgcghoSBxy8T4jZ8j2F+Kw6H784U11\r\nJNR/BefC6eRVRXfi0qHB5eMq3/TfrJIzxUxa6JjfpFUGH0JnjhcZVU54g5i9\r\nGW5sW8SmDJosoV28FDDzmoZUHrA5abL1Ix3O3sdyPGwgAhXpU+2bic9PDPtK\r\nZZXULG+SaknZbS7KOHR3VGD9676HdN9PpP1nryyP8FYln2JmB3S/zvde0qjV\r\ni9a5IDUBTadRU0YfsGzpbDTBZf+ZABL3TU3eDzFIHgTw0eyrFJGEEeoOvuSh\r\nEQ8h/HAeuY4hMxSLFsQuU1+l+f07rZi6BLurIo+Xm6rsTHnZG1s2BrDtObnE\r\nFXCbkr8Brub0wLjh1yLpYZaoR7Z00P9EkNy4FeGEDgCVvJNXn1nUKbz5Y2pl\r\ngR7PiPl08xpX2FHBydGcRMV5xb9DhMphKG2eGzu3CyqyRaalYz5BXzSX5sOk\r\nmGEoWcma3jNmrm0nUbeV9LBXEaqkc99/bFLFkRPk3JmxdeNZLiWAt3qHU88n\r\nk7chQT4hISltYduNR/YQAljTjkwUTqjE2wg=\r\n=EtI9\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.0.0": { + "name": "minimatch", + "version": "7.0.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "20a8df098715e228c918b2bd81f34d9543767a75", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.0.0.tgz", + "fileCount": 14, + "integrity": "sha512-Wog4y1P2q/0sF+0vw+6dWgqVmo/XPJg+2OtVmR6IVvNGDhcfAPjFacjZCUlGCoU/tbzH6EOeSt2P3llRAqRNiA==", + "signatures": [ + { + "sig": "MEUCIQCJ9HBS8Cvyw+Wik3oxdbVVrVp56Ye3s+5jMtA9kqpHUgIgamWqJZ8hzkqOOl7TvsNaxHGB0lTORUCaVQUXx+nLHys=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 196112, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8sLBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp5xQ/+NJUMhfq1aIIwpRq6279jC0Q5ofcpXL7qMTQ4MOozqS5jqB4C\r\ncWwr/vXHPlgoMgTJaQ3TI2e38AKvVOsqTZoUJrSdM9mkMh2RAA0e2b+TcJYS\r\nedi7ylnS4iI+oa0gxu27BrCQ/WsY5pGWWzoxMmvgpLbenUsdjwfvHnrOmqDM\r\nC0VBpGjx9ovpmKT1MdZR+vAkOdiY5h1CosHyfq4vbI0dnnToIQK7xJw9BX0/\r\nguXcfh/ouIFu2wKReNFsa3rCQFL1KhSMRg7swFrLgmH9W3gtqt6LxbXcVxaf\r\n67erd1ht2O09UPZPQBy4/p2WB6SoG9cMRqktewdyNVPnkGB9alusi5c2NsOP\r\n7sT7SL+dq5caZZcIxmrlFImS0MfFl5UCWTBpXLuGMJ+kn1WrJUI8fZ4+Ro7R\r\nrXfJhWb731+csv8RZZ1UC0CMJBifpTCcpp44hfYWbmSfQnoP2Wg44tvElXxB\r\n1RpeTfybMTX8NMrWSuwK7Adtv8lhSROFWzgtaylgutNZR0HLOsiaLAtECzoT\r\n9CDx50wbchXYxque4TTtkVIoh1bbqqJKDR0AH6eJQUu1FIC60cncGS13c5jw\r\nJPhZjzioByA3/mFxPkRY5JPMBGHnQq+9T25uI2tXlgQu7zvgqCIRNl7OM84H\r\n3HHKExJEyGXzFXeTkDv9KU8i76OVDmD/D70=\r\n=zrtZ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.0.1": { + "name": "minimatch", + "version": "7.0.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "346583590577d192cab9b88514f1832b9509d737", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.0.1.tgz", + "fileCount": 20, + "integrity": "sha512-C4CrOG1kAnaIxQPTAoiAmZCR2up1yjDdseGpr8UCUw5UqBUao5E1q2bOv0cAX0+y8MUxcyrvkTsoj5DvGRnvdQ==", + "signatures": [ + { + "sig": "MEQCIA9KvkotgHfdmcJ4FLvOlyk2dTR1QKpMny16f8fBlShxAiAm3gx12+iw/BDEYMNGkH/XmH6uXW+lUMQjdUvtBiagtQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 309370, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9XeTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvGg//ZkHirZWiBU927LrRDUmSafeRP+f/oNUjQUUU9rQYuf2ktm8L\r\n/V9EMB9oMSIHTj8O9lPSUciQOel4iF0WaiugzcGsNwn8D9TfI7hai1v9JiyU\r\nuAqRwkKIaL8aHBi63YG4P93JnMFaPiSTDk2hcTgBawx5GUgWEuSyKQtGu/Sv\r\nAWdcB6ASfYL83WP6RbW6UfYJJLM/RKFqTJ0XCbASPEIaQG8H11FZ42ODRcEc\r\nSltg2geIsW8e+j9DTIYLg2rix0ENPAlMdWkrtcUaE55i7MFpFXGKcCI38QDU\r\nmkdmi1lewCOqqgsptji23pKkNRPnw1SA7j9zu9GOP9wZ+WrPrq6TYkUarCN/\r\nt4M/dmucE1fr7L/bXxyrz9mYC4Jsxh3nZGmlFQvBtn4RaZngvdg64Lvic41d\r\nH8DEBtwVvArKyOuBizT1lIVWZ7P2xnNUyq/agN+v5NXGaBLEVhWI+Ul76QtE\r\nfMF7hb/TsiWybozQA/rv8cq0U6nm5BAzHSNhPEzQR94RYHE8TGRs/+wTluBG\r\n1Hv3/7+QmHJV2L4oIxFwiIlFYHrYNRCE2S4UvlXBqiu0/M/C7L/stJaohDSL\r\nDX/+kLvGCgMyZFo09AwmHq3iACAsIicuFr0B6fwpZe1OgPd+3+N2NVwR8oqO\r\n4pBk8syCvuCQbP4SRfnJ+Edsu2HfMj3adqc=\r\n=9qOT\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.1.0": { + "name": "minimatch", + "version": "7.1.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "8d3b0a361b02b4420c89fb2b8295621429c340ea", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.0.tgz", + "fileCount": 14, + "integrity": "sha512-ZRvZsrVXiuB/QDlJx7WPymFyOHQUntQOEH3vFIwCzs/fDnH/siHZQAmI6Zamx1J9u9S66ucgKXU0CnqHfi8Z4g==", + "signatures": [ + { + "sig": "MEQCIGfgH0GcF8fNnjxBtF+y83QIq1beuGXvmDIO1f37QpFiAiA7TqTayBOXDjhXA3aaD6advgmCI9z3O1ZwmpzixZjpxg==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 212850, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9qkaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFOg/+NBU49pzRSFr6Wqd/wGE5Qfz5+iO6EFJNK2DLfkFcApY4veXX\r\nOKvd/rgWfyJ87ykZfq7crKUcqNooAfd8QXHKC4Dn8vypBR3PDJSwilQZiRmX\r\nvp8Z6glwOyxUNubZajX+SdLPjiwFkSC3yyLyvN8W9AUyMF+I1XlRjQtFt9x5\r\nn7mgbJaRG/A7Twq0uidfUMlWtoCKZ8qQIe/s8x6jRlvZRTM8FMbLqVUHtvG0\r\nQD4vtVdKOL1v2Gi24LbS8cUyAqx1FNKTcrad7qa6PccmlPJxEFnkJ/hJHeba\r\nqsydGoqjvWA1yZaI5b4YRegcA0mhIxC7yGdaYzkUEUVVNZubhgNYV4qHTE78\r\nOqaxnTpLd4aIaip7A6LRhNFg1bsYtVddtGpMlJH0QySAL4jxDf/h2IpMgOR1\r\nnTMiBeEMuuYiQykKD04Rpii760suGjAX4ghfXD+EZJKX2E6eHR+7pyRHAJMj\r\nEY9s/xu1KhSiZmVYvO9bNnuCB3c8SVl4aZ8Dy5SJH3ZC5fJR0lG2SvRvVsNw\r\nSb0mf7amXyLPpYznhgor04b0uyYiSX8g23M7yJeZ2IfsM0JRVj3O6ziQKnPl\r\ndhel/HNLFdFS+Wq76T/XvjfMh7/i4CqfIfV2Wy7L8Fbh5kypRnaK3cpcRzbx\r\nSzXGVXHndaF8jNgvm24mKelKz9calwYalzA=\r\n=PNgG\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.1.1": { + "name": "minimatch", + "version": "7.1.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "aeb8f7b0fef16531de96e56944b744860976d34a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.1.tgz", + "fileCount": 14, + "integrity": "sha512-jjK46CRPxSRHTwHYtg+7LJ4pmfg01JuCjYr24+PUi1zHtZ8rOABPA0cMHKBF4QNeKn1xYy4hiBOm57p56ClCjw==", + "signatures": [ + { + "sig": "MEQCIDs/TlPbKrqrS2iNcbsc4SldPwwXBy+0nkzcrrYlLyECAiAPrnGzw0gKOE9uAtR/oOEmHw943YdTh39rNJmnZO/EXA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 214386, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+AaIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5nQ/+Jl299beqbIgBQgWTMRg4ePdGZe9yYWmWz65JnDrKC9y2KBi7\r\n6RkfnqAEVn+4eWh4IwggJ+mki3GfuVdVqoyU1aBgOAY6A3QOxT2Op/PIHDgY\r\n/OA0gWLwoN94t+EVqwMdIUhnIdhSj4r/ybF3FaQBhPsH2RmjbpYJ3Vzg+3/7\r\nEszbQ6+QoxQiy6Fys5tw4HDn3EaZUqTS8Ze1RcvMQeKa2CTvPIkdRe0bzFH0\r\nZEhDVd6nzxSJ/KGVeEyFCl6b7sIYyO4RfDOLGJnee7rco1+HlBO6sQTIN9bt\r\nxNzOb2L0XkA8/DAlYrBihftsfQ8KL7difel3jfKqph8pHhrxIwNEw0HHjorA\r\n8Dp1Tnji1ZI2WTzR+MzpTFwHr2qFP5tDkZk/UqJyQ8+MB8/m9c66SmV2/kHX\r\n486EDUvNCHpr+OWcwhlxUf1G9onqpOM997cdf9AztbCxmWMTWmOXq4y1arKD\r\n9iKRQpvnErM2VK0Yq01rJ2EElWPR0OfYYiC22zC5CLmxMXKz0PPwUbSFDdRB\r\nQq5YOt4yYoV8Dk5+uV+syNrjp1xojnBdlOP8H3EXSZaVK7bJqF7h/cUaL7K5\r\nLIuiIqKLrq7Bx3RgyFuQiUqaXzlmcYpzyBx/mukKMW10qrLj92rqqEfz9FnA\r\nDHj4wpBULJgfzz6KXSoQaOVsUVsarVbYlZM=\r\n=BxD9\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.1.2": { + "name": "minimatch", + "version": "7.1.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "806a43e4366dbfebdcd63a9c59ce9987343a86f8", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.2.tgz", + "fileCount": 14, + "integrity": "sha512-pPjQK2t2CsPTwXy+uNJxAajN2qMK1T0np9aHx2d5DTzpW/75J2fpHDm1p16OQDhu4AI8NfCH1FdtgyZGWMxy3g==", + "signatures": [ + { + "sig": "MEUCIQCWB/oweztjhW23wwrtbows6+q3N8G6hpEoEIcmgA5rmQIgauWzsVQ5qqjpFgzPHClmLCgZsdEbVDqAJ9baCEYUSKo=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 215636, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+UC6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnEw/7BvMhs8PBmsLTPfUDSOxhAbmrCyC1pzJ4WwEI7SaDpwzVCDXE\r\nsFIAAAfhDHG1i+atManziOcAYdQs9brJciesJONpfm4pBmFTEzywthrZpnub\r\nVLUf5vkZ2cgrhNSuK9rduebtwKuMkewDOvS4evKXUJ+hfdTizzG+V9f4SZvs\r\nxLwknlmwDggrghetWlfNyMr2mRQGs4wjDyaynSNPq6pCAntUXCOz1uBZ5jVI\r\nm74sBXLLsaDv6Xf+qh1ZazRG4CDZ/gu6FY41rW6SkUKY4/+Z0T3Si1t1agz5\r\neMQIhybpTYjPNwk88poCNDiVe7PvoRTWKMK7rBEC0EpD/Mmcp3K+w3HSWm9R\r\n05DUVvDgXFpfYpY+0C4db0v2wck+TU4rpUI4Hs8zK6MpxqrmRfPf2kXHESph\r\nKEzcyJq31coIamufiaJCuUWEzEpJGPW2qkuPy+zkL5x6XxG6w8APCq8PJxXh\r\nAChZB8cWl/aTg/Z3Nnzf36W2Y3nKuDaGtgzzLIKF5eLrhoVroyLhkdb0UN3r\r\nPOkqtAv9WfloGYNeHTojRuxD5S6zcHZVMytIUZy+cnal0Lk6YHgqFiSFSz/i\r\nTsd0DibLhEL6142Q2d8+nkzgBOIL9smC432XN4Zb3M7RsVgNs6HTn5PGD3mQ\r\n2P3vIdedN3U/P9cNcMrymaN9ju1nMwrCaOc=\r\n=e8HQ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.1.3": { + "name": "minimatch", + "version": "7.1.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "1e1f1af99d47b48b7133a641b0748ba039719d5e", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.3.tgz", + "fileCount": 14, + "integrity": "sha512-kpcwpcyeYtgSzpOvUf+9RiaPgrqtR2NwuqejBV2VkWxR+KC8jMWTb76zSlVJXy6ypbY39u66Un4gTk0ryiXm2g==", + "signatures": [ + { + "sig": "MEYCIQDLazKC6r+HWPMmG/fdT4V8QIUWBTEiDRQYyNF1W+5cFwIhAMudHByKav6+G3o1hsFf957ybdVIBkSA+Tf3oP48/PP9", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 215632, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+W1yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmquAA//dn/cBh8whXoFVdjvSLccIFudh6V5lhNWz+JXKoz4X7p7hu/q\r\nczIxBE4edtqTU9Q6MfqG/MoQ7I+FzFlBXjpWDju97Pc/tYmPo3T75BFUe24h\r\n7VXGb+vxXk3ePGqusABJ2UX7jYvEC/AIDt0fgLdYmTaGeiD4knuHOs7bTkIo\r\nlSHJNLJNVc6LHtiI8mYFEE41oJy+mQZpWrcFBohUoN38SaUhO0NmlnK7CMFy\r\nBsHP5cFODUpFdFffVXtr4VaGBCl4ubuczvsz3Mbpo3qiNCbior5eE/i39k0w\r\nNzH1JSprkMiICbChXNH6dXFL190e3bN7tVK+IjnsoZalwjbfxAMts+SOZf6N\r\ncrldp0pt+QA1fhwKQtSVLa4nHZnJLiKsxe1qDbJqABJzdSF9T8YHjKUCwh1l\r\nhLTfe63bSPIcLPIG1TEBX+E/mhYJ1sjaFzLXgNFXCejnPnzLhFOvctn2nHze\r\nl1QQvU+p5Mme+4KsbyhY72G9VJR26viHYfADeKu9aqBngV6kqqXUl77fucIC\r\ntdqCaomN4lrFIREGtHKOfGvHNKLpKwg5a7cyy6cgfyiYidBHL6R23G/Y+k7c\r\nf35pPSk7y75wbatgHDIywkbZH9uxzaDjWxxbm83On/CgRlcuQZhMIcdd/Ucl\r\nKM+MSAlkI20lm0OWtnHEpcHZNEn7ATsPFhA=\r\n=iHdS\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.1.4": { + "name": "minimatch", + "version": "7.1.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "5b252ebef9931e082549370815afdec3caed0319", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.1.4.tgz", + "fileCount": 14, + "integrity": "sha512-dZdn8jDUB4Y3eu7hABT6IgLTMQ9cVf+vhhXjLAkuN40wRkweVxEpvnGYLYZUhNB0P+BbTOZDzo+1rCitOQWc3g==", + "signatures": [ + { + "sig": "MEYCIQC+UhSTZFAATPep8XMTDGxZTdwjuRKbxEOggdq24T8cQgIhAMUvMna9JU7lL8LWE+d4C7v1YN+7/qVA+uZgDmLGGFBj", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 216408, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+q/LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpMSg//d26hIJsUgJoM5xDhin3y70TkN0CUno/EVbG4Kr19+Lo5M+s5\r\n44QBAgrF/K+eTpOMYc6bo7FD2/I3eEiHsN5vVxSXkQnTPR8vnqSjFQ05Ed00\r\nUcjw4G8XWuodm4b009qdCN6CnwZXSYH8kZjJdEAs3wLkqEsS81rgykUkNcTm\r\nCqaI5ORebliUQk67CyK9P1L4TEijbiotr3cBJRqsEN6Cyxa4OSrS+qHg6wtO\r\nGPLOissOskXi850oDL1dCFGLWR1viNQNw0pI2j/u/7ztaoCRHhIdbsHEISuK\r\nA0IkWKtC7IbxUSEkkEypjM1mS63goe6YpHvJ8PYsxmKZ6rN38NJ/4yoiWUL/\r\n1LlF7h2LcXpxFn4yOplKaAnd6T4ECtTEj2ISP+FbkgYSD9p3CYhNcWnNdtoF\r\nHPdt0eG6hOoyGpnMfE51LPQJAd905o4HJh4GD6GzPPJT/myS2w9HybjIL1lj\r\npGd+eoDq7MFRe8hDFgRMXUyIIadauy2XKREqO2w2EAqMsDAYqvFZFRhE0nPE\r\nxr6fqtV8KeAW1G5evwXJnR5wz2fyOfGxKvGRgS2sG8IpqWQAa30nr7i5hBVF\r\nFI77JOklPAXIliufNPTPLpPI9zSiuPQSrClxne8sWoesmdw9vpAtCdauWmI4\r\ngp4nVFjJ/eGY4iBQwQkYmJmctOsJVOLlJXc=\r\n=czf+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.2.0": { + "name": "minimatch", + "version": "7.2.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "741ff59370007ebb8faff0a9b20cdb44357803e4", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.2.0.tgz", + "fileCount": 14, + "integrity": "sha512-rMRHmwySzopAQjmWW6TkAKCEDKNaY/HuV/c2YkWWuWnfkTwApt0V4hnYzzPnZ/5Gcd2+8MPncSyuOGPl3xPvcg==", + "signatures": [ + { + "sig": "MEUCIFoPGBOrdeXfsKjNV24kzx8NFr8/1WRBKP8w9YLrZdFuAiEAvjLfHuaTInor4acFMjvfs+pxVDSR4V3HznmJu2ji+/M=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 221068, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+yLIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLZg//avYLkGKsdvTVvLKL/tiO7AYxZuTusPdbqqeouko8M1O85LV7\r\n7KfqBex+mCowO5bVjkeWzVc/BKFnJyFYCAlVOXuXl6MnqZFVO67+F3hloXzu\r\nEhzNllFH4/HdNPcoL6sytNwp0eLujXqZePXqbmLrvSLjmEBsHYQK+qdIZGWw\r\nEdoaM2d3LMrsJvZEKI9jhb7N3C8OtNckVB01qpGTyumoIdb0HpPDFCzKOeDw\r\nxiZckYiv70lItqoNGfQg3GFXBraOLMqm9lAhWOyw6k84et9z2LextcFsh7m+\r\nqM81EX+3XtAB38Dv0b6Cci4uLnZ3iWvFbo+iZwBDmMO1hNdVNL5PDsaWpzLY\r\nS7Mrnk/Dw1cY9UyUkB9Co8LkPDlq4fy6XYlZLQ6SQj99cgDNQYw3nSzONSmZ\r\njuAB94pIWJ7IoCLbYj+j4kVWPLtblcCMTpUzqEQnkDOCrfqc8RZZx+1q2+ky\r\nsXpKfW4G/JAAk+VFSCoat8vahQteKQ0bFlVGvfBJdGU2ONoB0YOTLuMQTT/1\r\n75Qa55kP3rElr4XQR8Vjw1mzy9AOl/NfOUbk9CA8rFElyG11epLw2AYZVpyl\r\nEVXQ3fKOhOqTAd8HWit9xMwIYC8ze72HJha/u/Ek3F/sef6UEdImX+GohAF8\r\nqH3Ooyu287os99xxa4Szgo911wXTfvxu9PI=\r\n=7DD5\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.3.0": { + "name": "minimatch", + "version": "7.3.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "cfb7337e7460308e7147c58250fa0dee3da7929c", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.3.0.tgz", + "fileCount": 20, + "integrity": "sha512-WaMDuhKa7a6zKiwplR1AOz+zGvJba24k5VU1Cy6NhEguavT2YRlHxuINUgTas4wiS6fwBpYq4TcA1XIECSntyw==", + "signatures": [ + { + "sig": "MEUCIQDCrWtLvwwv4e7HKOXnmYnIJ9sT9QfVjGEe64pBv0rLAwIgclMnu8M+u17QKKPinUwEn1MKIo+dI7ZwJfz4EWdbauk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 230092, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/QtUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoxJBAAicPSOEOMrwLpI16vSOLm2/pwa9AsDbSlzoiZQapEz0kSLFOB\r\nxaWkEH+A/eA5aNtya2mEqX4EqmW2OIHaWQWrlij7Vrjskm3A8aEIplFl2VC8\r\nX9UXjdx4H803IIWaXoGJQsmvANOgrVsLvpwDt8DGsDxTkNsdgXA0n1zDgmxo\r\niV7KjGrNj9oHIw2b1PKpFXa3/8wV/5mSys5cab9BPzMQEsEG9qg8jnt8qAuG\r\ndBqcAtPZDjCo3295KuadlqucV9QVRTXWzurS3CKMe0DY3QGrvPat8yUjKr5M\r\nuGfiT/vxj4pQEhFlkddHrxG6mj1T3Fc7oOgG4M8jGoG4TB34h7/CaV+Bqz0K\r\nZ8PXnruUZkYUyZXLB4srG9fFtA4ZA2Aa++jJ+OzwWj+jxJq3k0NqKurz59yR\r\niYIyQITWiAOILszvHwhhRRBwsBvRYpgdJgCu4CmqD8SYv76j4qpwL1ri4gF2\r\napLYMb6/jj17gN30EGhggH6kYSKs6FTsrpC9DeseqQTt3F+SiWDKTUX7Z1wa\r\n7NrQ2IUR0TL8SZxky4nTEDPKIWNa1MVJGpo3crSAhxBIBz0N/57dV3PkbX1a\r\nAKsbCoX3L3s1TwVI35u6JEGiuiLaSQMzLzqWjhitgS1Yn/leaEA8MbBlhO4t\r\nM//UVBrunRXvOMRWUoewKxIB8hQ8aDLu2Ak=\r\n=2Ozi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.0": { + "name": "minimatch", + "version": "7.4.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "d43ecc64c434fc9622d3fe447db71c7caed8e1a5", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.0.tgz", + "fileCount": 32, + "integrity": "sha512-Co6cQqQPyou/311vxtcfit/RKf+MbRN6qa5K3Zfh2Fo9+Pvfg8C1LeaAXcoRfwhxfZIe8sBc/kLXdkR88xJGBg==", + "signatures": [ + { + "sig": "MEUCIQCRH5WkhNVuUGjXPL/e/On2Vu9wnCr5FqBt0W7qvoiYwQIgWbnMiow2+BeZBjLgBqX1IFr7sS5Nstne/IekGBc8T/U=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 247996, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/vfJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2vhAAhDz+wG+TZ4NHKmHtPvYaB0QuCDhUmbgIVItoLev+VcAHAihM\r\n8bQIPRJ1fDgbntJ7FOphF86vuDhiZM2w3cF+EU8c6wWGQDniGkhiN4DyzJ8M\r\nKhZ1qcsYY/+DpNsdzKwKEwVyVS7ERkmChSbcaorREQ7+tG7wetwAQ7Ba0KlJ\r\nQzuYqtvV7cjLOh0tW9iul8+mpNCpGe2hVS+hLT/El4H4yDMOcoKA9WJXUhJw\r\n0n/hXNLUcEcNiIpb3pSCTK0Fjiv0REIpFnYQjbkmdipaG5qkcMJNj6HSrMES\r\ne7Y7dknjS2VCRG/yZ6cafQs/h5NEFhdPey3PLy4qJSiAG6QWkcuZ8P3koOnN\r\n03nxQE1YN3k3/AUYukieBdrTdBZ6KnCebxYjM0y8j+aiYUSD+FDIyWJR5n9v\r\neSpPhmun6msMd/aYRiOuz/3WEPodDLuLzrTdn/EL+zSsPYPnfbp1oBXl7Sw8\r\n4jL9ln4imGak1uRV1gmccO3l9BGOZWdZOPXZFMxdLrRDN1l1dVV3WrgYisoM\r\ntwn1fJweSJgACAZUfGHZchtqougmwHXev2yXQz37l5wXPdsDMU1lQP/QBXg8\r\ng/DrEMmZxNu6TEx2SY+pC4hncVNi1BtmCQkkKde4LD+zt7Iq2l/bYQ1WQqFz\r\nHLTRD5Tz7TXH2BsPpreiqc0GTELCy8wDpf4=\r\n=ZK9H\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.1": { + "name": "minimatch", + "version": "7.4.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "166705f9417985ba5149f2dbf2fa50c29832913b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.1.tgz", + "fileCount": 32, + "integrity": "sha512-Oz1iPEP+MGl7KS3SciLsLLcuZ7VsBfb7Qrz/jYt/s/sYAv272P26HSLz2f77Y6hzTKXiBi6g765fqpEDNc5fJw==", + "signatures": [ + { + "sig": "MEQCIEEsPRkEsrNLWyCYXaNaCKct+EgfY9FnIYFs8dnoJnl+AiAd8MkdQ86w4UfXPjrBUDEh4MjUWSr2KAAhq5XbvoBqig==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 248000, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/wX7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmotAxAAhPjx1UClIVM5w0p8QlWhM0O4NPsPpY8118k2cA5SJSo4BxXD\r\nQGPqTAL7X9LKx4sH+Xqu8NGmpej0HNhdOBATUNjcnadC1pvGYqs/vR//BaPf\r\ndhypM1X+PG9FK/YkAGJfKTcucEn4zcXgvOKeHEnvj8KZOOCRzhIEJo0Dog20\r\nUqfmQbo7xiXUhVvZGeulTEvPDoVfuQVv0SOZIdgul6MfiZLjD+FP/TiBYIUj\r\nZK4PtIM6mrjrg7hdgQaa+YiGVA5A2IfIw2brF7rNThAMUtFgk7sYzDRXTjYk\r\n5nRGe2u7LclBsYnohnN8Z5o73YEOna9C8AmX51hG4v3K0Rtz9LKCm5pHrQnQ\r\nrWZXp8phL7Ogz1spfrsqN4FHv3xUve0VB7O7kKmtM+qr1iZvNi9nmZjWsf4R\r\nkJ8lxjDXCJK6BqOhsjHcrplgubHzjRir6gM7ibPnJkh3gbwc4lpQ5Qi6U5Vh\r\nrGST/LfMoR2Cc3YcYKVCP7oyTgu6dI2CCUCqufbRPqPWruYknQ77SH1hHMlY\r\nV1CHI/ZvgdsFEfDUAocTEt0/83G8XU1eldu/SdafA4eeWwZOHs8kZ7XHQcY+\r\n6bWKWN2vXXtl/Xszh/6D0+3yJ8pJwNJqna6mCzN77UZZiP9SuXpcpWq5ogG1\r\npX55a7ujlrYSnU0YYmaLsA96xemdw/xvVf0=\r\n=6+fU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.2": { + "name": "minimatch", + "version": "7.4.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "157e847d79ca671054253b840656720cb733f10f", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.2.tgz", + "fileCount": 41, + "integrity": "sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==", + "signatures": [ + { + "sig": "MEQCICFkuIchZYoUyaGcY/6BnNTkIffS/nFdzY8fPMJcvCCQAiAJNY8m3vhfG1Robh/iBE7njO1L8wHlbhMY1otFlVTchw==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 256291, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/7H+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpowA/+NYwxaE+ssVwpQNRas0/CLcAwLNV4b4Wr8+ZM0Xy0hx+LOMhB\r\nVR5OFHR5wrBK+axuJNOeHqlfriR0Cr9sA10JZqyNbqyC9FT+VbUAW/v8qp2F\r\nrwgWlbr9SV1+HI3jh4J0MVoLoN5+0xAUgEekAjqnk5K+up9v5YUvUQwh8l+2\r\nvSo2V4JlVDVXD1TtNZI9y8QQG7bxiflGUgphmP+/srf8Mqt05xvv3j/A7kaN\r\nz238N9SKL3vtpPPZyoMyKnfFwz7JAhD2ZWGf4VeOByo7xtPLMUgt8/wW3770\r\n6SJRsvQyk70JZBQbx/hpB3qchVPb2JUzYfEW80GhQTA2qNJerpxjF3kQADIp\r\niqe6J4SREZj9tWEfrofinOxVdttfODaglYOjoGbjkDOdTJVtvk9tFCEVfeEu\r\nVusF/Rf9XqVaBSX7yq1IVR+kA6QbVfMwosGiREr+xyrIFl+tlLpcp+zsc9Ab\r\neyoPCpQWjALbbCmQnkjdlTaBAcy84/h1dudXxcN8TQScs1fE/g1uI2xtNvrN\r\nn3ksaKWVhHGrfcSQsssF1iAMktCMQWz1r5vr3Td2bqUyuocvRHC46UqJLMnw\r\noXiY4DiNRU290s85nekgl5Nw8k4KLLtRCgtiwUNxAeb+Jjtkd8qVXWJkT/lK\r\n9sZQFqYVnObZ039JylHlf3MZfnmJtkuBeaM=\r\n=v7UZ\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.3": { + "name": "minimatch", + "version": "7.4.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "012cbf110a65134bb354ae9773b55256cdb045a2", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.3.tgz", + "fileCount": 73, + "integrity": "sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==", + "signatures": [ + { + "sig": "MEUCIERWfNmuYFfkHSFD5K99YTkw0XMrKBVS7YI40GpulNThAiEAxStQcZuErjQMmEowOm2RbmGUhXw8RbUaw+VR38cT6JE=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 553776, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkG05bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcZQ/8CCAYc7CP3ECn96RGzOn3REXugCDXeb481N/65tYGyo3UsvoX\r\nuwze3VjybBdwmwSYwqJ78YxNFpXdUi1WW/R9aPU48ZffK45midCJ1Kziyc3w\r\n+3UaK1sLGjBYoK558MrLdYJHUZlSd3K0wPAFGNGnnMrGaJZCEmrJwkEQ2y6e\r\n4bc9raVd5/keNir4YqVIHwEULC1TkEuMsDh4YBC5+cp+1frAIuUbw5BL7Fwf\r\nKQh4n6kAbXE7cNGRrOk2aI5o2mbC1aM9O48WpeGLPgAHL7Zzfd9OIt2i7OVL\r\n3sNCj5VanZuDVR/eduEeKLqjmm0M1YYxkiA47eR9FbF8hEWEtQ0+u/+Lw0zk\r\nJxQgeIyumBhNPc1YgzDk0w40Q0t6wDiNbqCZ2mipKz6QASWbhsdpSeO2CaO+\r\n5iCtI4MAxaPbBHLZ15pdP80Cmpknlnkvs2WAis7naPECJPrt6n6/Q8V4fX9+\r\nfWd+knw66ypJA/UQHyZmUfGL2sOOtMVvYPrekvAkZiMF4V3XfyNuzRts4nGa\r\nu7arPh/svxHRw2i68cNzIrULODfhTmGPWkKUKOfb8xU0LF8SNXslWPdLwYjx\r\nORbM4nXl2kGHTV39lE+qzBc5i9c126dldVMkOC/27EHHDBeGvWWRxGVK0Ki2\r\nSiw7SuOFaezaUWJTzpRI02/BJ7IujV8yBVQ=\r\n=VIlD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.4": { + "name": "minimatch", + "version": "7.4.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "e15a8ab56cc5469eca75a26a1319e5c00900824a", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.4.tgz", + "fileCount": 65, + "integrity": "sha512-T+8B3kNrLP7jDb5eaC4rUIp6DKoeTSb6f9SwF2phcY2gxJUA0GEf1i29/FHxBMEfx0ppWlr434/D0P+6jb8bOQ==", + "signatures": [ + { + "sig": "MEQCIEbwQOz316VNjXNCeC+4egFi4c9H9cqbTjIz4+CBfN6YAiB62Pl5eCYXM0vreuIasHI81qiCgBs/oofXC7qGFnef5g==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 436285, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKMHIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNaBAAgbKaYm9aJa871c2rsLMNHUDR190v1eZk/tgQGrrBmkKN/CQB\r\nH2+FvffwhVUFlAvEcvd3lTaK3Z7UPkXms5z1a26E6fvQBDEH4k+8EerdXHmH\r\nZikeTnJQHgsfhT89tuwUmzwN+xmCLekj6TMqmOX0PrbG8QX7tG0ivsrZDC+1\r\nQWTm5CDvQrDgimbG3YoCdZ3Lcw6vAdPRKM6gqjomHaRko2ZV/DiPDUs/iGut\r\nFAn8WcHv9EbwybHACGWld6ZfmcTQY24k3O3lDgcxKaLwj56K0+YWYUGLATd3\r\nyGpr8Cc7BwNYvaoRw/4F/Hfusmodhe0anJjVnoGJxWMaqgb5SjW42tgsrtEO\r\nnwhJW9FL3y4xh4NHLt42NcBXKNisto00txvILo/keK3x/7n989zAHm1lMam3\r\ns4oR32BVVpxnBawQeTU4w0X1osn+6PxTzdJLMoYhHkv81Jt9czmdeVNWSojm\r\nFygxJCXTlRcVU1suZvTXO/fgaB3UsuDQfwosilHqp+DEWDR1i6dptfJDO1Pp\r\n/1LyA+p/WNX1b29ycHpHM0sowxEC/xzrF+FpVdTwJXZdE2LzZWHc8D7cce+G\r\nMlWv342BqDBVhocoy7h3SWTGA0WqJwm1VfvPEyctViHGQ23vFonnKBCeO5vO\r\nnYeOpBBUVRzeDdTRSx16S0vg5p3e+EMcIlM=\r\n=rqMp\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.0": { + "name": "minimatch", + "version": "8.0.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "807427d41e90f1e071aa06083e13edbd95479f73", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.0.tgz", + "fileCount": 73, + "integrity": "sha512-Nlub10O3zlSIkHHVVmhEvpXoBQV+rD1gTSax2w2bklGU5y0zg1MD/biD/elp2+Mw+8/6F8MzEU0WYwmStMDZ6A==", + "signatures": [ + { + "sig": "MEYCIQCUumX0+S1QZa0r3Bno/+B1UcopXOFMBGf6aZq2ZHaK1AIhAJRBptw2FTPQICG1jAFitDagP9Qa3PHiSImeDungnQkq", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 497750, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPegACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpM+w/7BLNsY7YSCVQLtY2sPjSudXbwVAHirUOKxP/IogoGfR8ha1md\r\n2t8i37+Y2kOBjC15pVbQfkPhygSOuLUe4up+h5RKRT08hJ1py+jnoK0zg6KE\r\nxfkJlhkT8tA4AqH5fPneD5xjTtsTICdm3k6RJoDOak9io9Iu6jaCW4sTWpUl\r\nzL6YU4+NvEd7nSsVBsdHldYP59g8Bn8X9pS5hml+LxGy5srv9StW1J/ZuQOv\r\ndQGALJCrnQvKmEzThO5gHRV8Z/+EThEMQr59px4OmzPx5J8PxdK7aiuRet2a\r\nMBvUjrorAz02yIjMVsLNB2xznFwfngN9r87BgOALeQP9k57mvhTD8BhGMIoY\r\nKGlXwnzXazM08s7uLq82UtM4hgU5XJ+Iiw96rpO/KwFVH703UixISqEvcHQp\r\nGZBB++3FUdifOD66YQOBw/jCfmYxi+BX3sdgrTIeg1Y9CRtOMxPYaEMMR9Y+\r\nq23E21Qx3Bnvj5yJbYBF/rAAdFUqChdizC+e0eoeby4VDqJY8tJp8jb+EZGQ\r\n961RNxhJBiMdT2UROZirGvDVvN+Btdf5YzjoLiHyWY3ILwxOtL3KAdTd7Sie\r\nHRXKQapPnDQ2/s8EEtps4k0ETWZ7B/wdKJaFazsR+arSPDJ3bTNAc7X6XqET\r\nUvBSPrkCFEPBq8GWAPlutqYtihAImNHzqJc=\r\n=AUEg\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.1": { + "name": "minimatch", + "version": "8.0.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "1ed443e0df99ef3692e8f2c8fab8ec9f25433a6d", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.1.tgz", + "fileCount": 73, + "integrity": "sha512-Azl0R5ZMbhrL031Jfu/xeeS4tTMnjXHiyVIbzutzq6g0b0iRWmC9recCfbo98+uReJYoNLqSDiaMhu3Lf0YWzQ==", + "signatures": [ + { + "sig": "MEUCIQDM1GEfeZt3TadUCoIhmEc6bwku+w9b+/aHEhHL+68vEwIgMRPl7+glOxOkEHWCGJYALztu/ailrsW/4Z5zPl9sbyk=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 497768, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPjcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHZw/7B10WfQVhx384jPvwU0UBfCwMnMdsJ3IHqP3gMyWlmZqilKlg\r\nCbT9woEooSpKWxmh+DaCZvu8Dd8CsXA7yLbC+sy7NUsdFoxemIfQGvvVrDqG\r\niuo3MY/AqDuvr4CXrxK46Y+w9yvEfh5Vgdbymf9SC+RCrfGl2IV0IwsVkRQR\r\nrMIwIbcUBhSUxJ4HwPWZDcub+RU1fhTxWzSaf/luRpop57KIF0cWcOd4q9In\r\nsT+D+vlk0SoWmoSPBFUalgUqhUofM2e8ay/kLs8xHh49ikDVgOdKDSYWdDOB\r\n3Jod60JYYDGExMqv7I4iAq7q8XEBl6Q76/uTBAJ0NJn+3HiQmZ/jEUkRC2l1\r\nZmt+O2nKlNJ2wNtCAo3bQvdvVxx/gCefVloPObhDVmoj31dUHBrvgV6Wh27t\r\nvRLvhNZTtzC1HKjCY6Cn9SU/d1UIcdxpl/Jr52WE7SFX1lQu95HAsQd1dhAR\r\nE5qSC0q8sp6cjZ45lq+7qTQ4DFY+IBTzElWSMoZIAwJCEZgpgs8JxeS/z0MZ\r\nqr2fTgHDCklExujPeEBQVC2e6poV2pvpgnhcIYpz+OxGUdzaUt8/a6X88EwE\r\nPtMK+RSxcmJjmNMqFBKxIQPeGi9DcmOMvSRGged/Ov9IihjnBSNYIaYjH19n\r\n3ILhrcN687J126rKZHCUATY5KifWS8FZ01g=\r\n=IMYP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.2": { + "name": "minimatch", + "version": "8.0.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "ba35f8afeb255a4cbad4b6677b46132f3278c469", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.2.tgz", + "fileCount": 73, + "integrity": "sha512-ikHGF67ODxj7vS5NKU2wvTsFLbExee+KXVCnBWh8Cg2hVJfBMQIrlo50qru/09E0EifjnU8dZhJ/iHhyXJM6Mw==", + "signatures": [ + { + "sig": "MEUCIBx4LM+4f2Yx3WhCzE8v4+3kreQrNfO16OUvEsc0a9lMAiEAjKwYP6CxQ4oSXJgYFfNKrgnJ3roH6wRtl32l2ZG59uY=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 497831, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKPlXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1Fw//TT6QWYrgD7Q16p5xvhekDi94ezjzEiZJaSXXaIrqaLIoH+NF\r\nxCecvBeWGhGVmG5wOmZXAdsrVS2oBWBFhHoCbeiZw5k8IE4YbyktatdAQ42U\r\nG/5POc6cO5cevvEWltmyJ7R1+j7MA/nt4P/drJQJzgBhClSnnyD3DbXQLSkR\r\nMgI2rTbK11Wy1QSoy9RmqHgKk+UalsexqawcoS+KdkPLKAAx+98Hchc2izxC\r\nSnfEUVPgjbPlZANdLeUy22VujerdyEKaU2HThsu4CamruEfUdYIpkIYo8FKS\r\naIiRbE/ZnCGfd/5bnVe9JEhWW5uulsnR7fw+ZW/fQ51ismo2odT5pMUV0BfK\r\ntmo29/o4lgRJ9frqScrNEivCqSpl3INpquMw31h8aDobp6gthRLu3j7YAFQ9\r\npWWzP+z+i5bGsmvcB3HSYX0Cp/hVvL+HaMU1PTEGzNFq70LKqV1jbYYvidPa\r\nnEtCjMi+9JHvVp0vekZaPAC6tU4Ult1k5UjkFNmSoxLkjFukfpTnxtU59DcD\r\nCzjXKyi9HjffTfUJjI0CdIMNPgfgWIPSq4r3ze6M9jdh/hCUdH1j+772MrNj\r\nJWRXHZCwSePdI+mNuuShrehCBNLYREjRdb65CHy+KH/SIp0v/sYVq3SpEH3t\r\nQlzMz7lODB0FQhm+kyFxTn3X3UlbvGZUPGk=\r\n=1l5i\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.5": { + "name": "minimatch", + "version": "7.4.5", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "e721f2a6faba6846f3b891ccff9966dcf728813e", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.5.tgz", + "fileCount": 41, + "integrity": "sha512-OzOamaOmNBJZUv2qqY1OSWa+++4YPpOkLgkc0w30Oov5ufKlWWXnFUl0l4dgmSv5Shq/zRVkEOXAe2NaqO4l5Q==", + "signatures": [ + { + "sig": "MEYCIQC7JyHfA9Msy43OOtpIAAATiwFSXadEKzmdlty5pMZDIQIhAOtmPe3iArGO0WklyJdxL9iNe47jTs2kLuN9Y+x1+Zwh", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 368159, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKwO2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqj8Q//d9I0fvoMnpNYy9vV/KQoRRk1jT6x1DnqWdNZVU4S0+P2z/Vo\r\nopszFZUfPzw/tYJJT2CeK39eiArkEXk2MVaNvgvELJZAF2XmwHqNcCDVvEFl\r\nHk9KwCyhokWSNudHMXnS51jE53uIjwvLk1aPjlc5HZl+zf1YF8oY5v57qm0w\r\n2SFTCNCCFIjyrpgdz7kOsBt3eJu+B3+O1TT2f8D1UGiBjf1F06BmCuh+BfrT\r\nJrae2RoxM6Nsg23FpaxCYzKf0cJ3s8B1I5hzJa4lYDOiHdzIBkPonqye00uY\r\nEUOsnfwhCYASwqccMu/dzuWzRXpnuu8tez8D0Ycx7o5a/JCnhUiSd6EuZJcG\r\nEOSEiiXjOk1pmF+U8owrzNOS8XiV8A7IFLGI1+uXR/9f8kyApqtwIOfej9N6\r\n941D5uXvk3qR/ONKdtNqsQYOAlj/dxab08OC7MsMlBcJi7WHFrPdIucBHbhD\r\n1i2l/Nyv72T+u8LAc2jzsY8uuvSZMn2ARFK61UpYAyAZkZUhb57FrEwUdQ9t\r\nLDFSRYLTpiqadrXOz+KzGaHE4pzFyjWhJmLTEpV2S68kwkjKK+xDe71SAkfr\r\nFHdUlvAWP1bLw5eimNwwMOa+ClGh4MYUmBKLeOJ50w8xomsEXJErr0/JD9s3\r\nt46UEEzztT0YaS3OPTAU0WIZZon1bQDAGds=\r\n=30U/\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.3": { + "name": "minimatch", + "version": "8.0.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "0415cb9bb0c1d8ac758c8a673eb1d288e13f5e75", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.3.tgz", + "fileCount": 57, + "integrity": "sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==", + "signatures": [ + { + "sig": "MEUCIAwzomo7Rei+sG4Yc/wBVQAjCCUNeVaZgfhaI113igptAiEAiCGgoOcyy9hqeDDyM08BjfA0PTvJSouqZjez06Vxkyc=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 432697, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKwQOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKuBAAolCz/guOu2/a54E9T/7t1cQH53R/YUdne+MoOhHihimOvcBs\r\nE3Vj7BoGxlL85qiZRp43ySwRl0RytRPq6ya03DFpeSiCbTuBFlWJjcNQPzuM\r\nKyiqkY6evfR0GLt9I08N/M+olcYOr6yCEAl51AskNDxgzKy0EsK91WHPLPRe\r\ni082Mn+40/ZqA1oq96IWI3xFI7PTjBB6/dGqTbSaO4WX3cOwyEnpL7uS0Bh/\r\nH7BsNW6EJJ9cVWsLBFEI/UtXG1QmJ0eVBSGMQtCJ6bPdMekpNMJYlU+kQEfx\r\n+aLdpos57QFmVoKvlwRplwaFIwqVEMIFA/e2xpcOE4lDE/1iwm7ndkyK/jXk\r\n4PDdIh82i1nh+YIAGcC68dZVhlK0wzY0Tq/QSjSfbLeqnldAdKNj2Qoq98eK\r\n12WLxhlXs7Ar9ARECfB6wEWkNdgyHLIUF1NaojWFSTSx2FvLyj2mHKlUmhY2\r\nk6J0KcWIKJp0F0oVLcGBCHOpdBqgpsGM82RZPSdUNRhxf41FsgBcqeyazFSj\r\n+vwX7JmWQefam230oi8TcyQ585BI+GzMQ9tFESNYBXZwS4ypqLhuQvo8NcxF\r\ns3qey8SPklB2QDNrnaeMwlq4COecboxugUH+wRfKiaVm/Tasr27fswq8a6iR\r\n6KtIdjxL6KCvoNu9MYhbw21oZI8sj4VoYnA=\r\n=fRv6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "8.0.4": { + "name": "minimatch", + "version": "8.0.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "847c1b25c014d4e9a7f68aaf63dedd668a626229", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", + "fileCount": 57, + "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", + "signatures": [ + { + "sig": "MEUCID+azTFTdI5oP/8gpzzMAVPJF+AyKUR2wNjrqypoqHb9AiEAwGfxwFWZ5bSILuAj/uFBOQ5eFjdw2dE4HoMFGDU7fw8=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 432605, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMx1pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4nw//YywOsipnggjuKIcF2oJkzBzq+dak/JXOOlnCJ4FWgbvIVzQC\r\n5Q3qC840LhjcGEbBOJ1IHYNo6PQdQZh782CLD/H7wfwc9YAQkqSj9skPkaz4\r\n00mVWt7Ac7Vuwo7YVh4f76lNwkJHIbPMc4/fZUj8fKqasuF/wPI5iAhottt9\r\nryor6vzxmTGzRrvYLXUt80wHnV0SsKkgFdGAP8od0U/1jryyjtusvmDrSeVv\r\nTCy6uJAcuqIOWo8LBV4zWyXvALOQGWqCTT2Sy5uDPYP5K3oyTUdVpArfAUrf\r\nzNCW+Zkn3T6LzPtmf7uNP3RF1xKUOKu5tni8gJdpDHUz0VZSkvlNghqc8cxn\r\no1XyaCIsSuUq2Cw2N/mbXLDi0SNh3kCIVb5A6SE4w6id8MdtNX/qDUSzwNeM\r\nxSCCHVAJ8nfu1EBW3DhaAv2cggn7aDSVZat1QzNRhFb/ARyMPzVv04C5klIS\r\nslfh4K42WzMGWhEn+AOfRCymO5naRW3x4OdYMWSTKYa7qdIhV/3yzyyvNmUj\r\nzGDQT3TSIG+vR275QTQOD59OKQWK4llske+d6yrHk160MduYkQpv5daXyhqu\r\nDWS1PydYw4luHLkiV6O4vZyxKuh5eVVmc5oXYHJztHvzGQX+9fmoelEq9yJh\r\nlXQp1Zgkf13+Bk/rXEfHzyWj+SE46tq5VqQ=\r\n=MX/2\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "7.4.6": { + "name": "minimatch", + "version": "7.4.6", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.11.9", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "845d6f254d8f4a5e4fd6baf44d5f10c8448365fb", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", + "fileCount": 41, + "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", + "signatures": [ + { + "sig": "MEYCIQDv9VHpC6irXMiLiB8/yzdE0BA7nFF2tBh7WXs2+fXJ6gIhAJNEMYwzBam/YGM7hPbX9lhJ6S7XgAAXM6KbyCX3hqQ3", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 368067, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMx2kACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDaw/+KXTGkugSppF/Omhp5sYRSH9GqPAKxQCxA2Y21h4EfnC2HTLo\r\nVjStZWPZwC76RTg/6gFmbKGlN+7+fYvV/f4SRNcjBqw2BTNUzIMHk7M9x5to\r\n4j5li0BhEVNCsZNbSjvMVU2712e0FAwbYihUlWpGXpGpMXC7h1Viz8nIlSIb\r\nsnOo3V48BKjvIppmVANzI2pRPAgf+Tr/u4XRDSXkl4416u5YYCUGsEidBBkC\r\ntwE87+82qwgLZ56uRJGL+fUSggpgyl6B/lyWZwlWR8q+EXsUBQZg/U/GMBg4\r\nyzKih04lFqcD1xWC8JWTIlPXRc17jHFxSH/JaCcGqikFL+OdXqdGgptF1jg+\r\nQQGHQp9KQEQGFgkbTeXPfJKNKUAUICLZIrpJHE/J2IicGsuwKV7daTjlurK2\r\nRF+M2GVlYEnpch2nxwez/4Whx+QaRlKgqI6lvPszWxLxcUg8fz3KvJ+LLyFn\r\nKSvgbsWAINgd3ET+Z5QBIebkIzg10XWcaOWxn/tERLuRsH1ZjHJN9JNglw8A\r\nQFR+9fGoK6gYA/K8Cqq+JQSTnRG/C2GfrphXe8WiDA3MmhY00RiL0ORMbK11\r\nAD9/i8Bb1Q1IV6FmtKwz9AoCfaIrL4obniD5ewSk1kkObjQw1KsfUGLFSH7/\r\nHb+kOq3GMxhYe/rLD0GPcE8QNOI56xhp2ww=\r\n=o3Tu\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.0": { + "name": "minimatch", + "version": "9.0.0", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "bfc8e88a1c40ffd40c172ddac3decb8451503b56", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", + "fileCount": 53, + "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "signatures": [ + { + "sig": "MEQCIElefaysQGa8Nr3MLv58NzXmSjfdYR3wWizfsMCgX24aAiBSZrwhZZh7ZcwK6uHf5X2o8zKsD61fihIeNZWeL7f3yA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 428034, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMzjrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpTJw//dW+PAibru2az/UByduc47XvZ19uVQGTntL0J7xL1w53O26MV\r\nFNXOdOvAgU25/0WADEAzpn+VwzqeZnoblnD5CpF38N0IhGICT8LuZZmVZZ9e\r\nSVdqv6kqbq2sWrAQOvci2eQs3P+WfakKhhKBpE7QT9J0q+BqR2NWiwUzut9r\r\ndFTjucQI3YRfTciHCchCNowfbW/YK9HIhCConuIc5MF5OF5/eP7HCAPN929h\r\nYrNmXouFoJP2odTyirmdhCuDfjNLzS+L+/+xC/0/kjr7GRsujJ2zIjeuCf3u\r\nyH8Cvztb+FkGqh/qcf+QWPNjUbg9RUzuhAG5VLcD7C0sLY3VuWMWzvoa5bgy\r\nSd4RXUJRMkv2lqAm5yoeAEnb6hKTgHQTGQu3kY5QLj0V76yGyipuRn/5RYGK\r\noDXYfCISM5fWI3lTI/rIg1ANy8SQertDtP+U8yHcYx69K67iF6KBKSCbnMeW\r\nC4sOlA0Ia0Ijl3IiilKEMjBtEU1p7AqV+4EtqA8u88G8jaX/mcXKMfh8lhut\r\nlJPL41ecQO1qJlxxwjzH85tdQyEOU5pFtr2+/5O1RITxMeUgvJvhYKhzs7Bq\r\nmPU67HwXuRiQ5ra7XRUYemreEHbc6OwHGkT96hGP2H0SnrHwKfvR1lIpeb6V\r\ndoNQ+xclWtKpmB0vikRw+V4oonu6xwt/+Yk=\r\n=KymT\r\n-----END PGP SIGNATURE-----\r\n" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.1": { + "name": "minimatch", + "version": "9.0.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "8a555f541cf976c622daf078bb28f29fb927c253", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", + "fileCount": 53, + "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==", + "signatures": [ + { + "sig": "MEQCIALzqgmZjKE3691Y/WQKusEAyMjnFykDfyyIrlrNGyRGAiAY91n9vj7MzXlwH/sFYqtD9OmOZ7ZE2OGGOXGOIZAKhA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 428478 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.2": { + "name": "minimatch", + "version": "9.0.2", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.3", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.7", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "397e387fff22f6795844d00badc903a3d5de7057", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz", + "fileCount": 53, + "integrity": "sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==", + "signatures": [ + { + "sig": "MEUCIQCClDIYBp4y7cbhQbhk3rlDIYUJswjBJRndD+upNcEhLQIgdjZX6Z9JQDRbzPabt1WqfbB4/YVRvoFKp7X4GhrGmjM=", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 433704 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.3": { + "name": "minimatch", + "version": "9.0.3", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "c8": "^7.12.0", + "tap": "^16.3.7", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.8", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "a6e00c3de44c3a542bfaae70abfc22420a6da825", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "fileCount": 53, + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "signatures": [ + { + "sig": "MEYCIQCamyK0PER6ghY490MnmvqR9yobciGJrpbT+cf0/tstiwIhANKmkVC3BveaqUJrdGHzs/OW3ygmshF5Tod3RkppHuDA", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 433705 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.4": { + "name": "minimatch", + "version": "9.0.4", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.8", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "8e49c731d1749cbec05050ee5145147b32496a51", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "fileCount": 53, + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "signatures": [ + { + "sig": "MEQCIEHx6wDga4HI7ZIwQJ5815qkSydqrccn45jiUWd+XGywAiAlO83AcJHK9yJ7o2ApIF8drPKD2Ln00MXM9eb/4zSfEQ==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 434900 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "9.0.5": { + "name": "minimatch", + "version": "9.0.5", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "tap": "^18.7.2", + "tshy": "^1.12.0", + "mkdirp": "1", + "ts-node": "^10.9.1", + "typedoc": "^0.23.21", + "prettier": "^2.8.2", + "@types/tap": "^15.0.8", + "typescript": "^4.9.3", + "@types/node": "^18.15.11", + "@types/brace-expansion": "^1.1.0", + "eslint-config-prettier": "^8.6.0" + }, + "dist": { + "shasum": "d74f9dd6b57d83d8e98cfb82133b03978bc929e5", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "fileCount": 53, + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "signatures": [ + { + "sig": "MEYCIQC8i1XVlxHUOKd0etL7moPA7FuIE5d+E6J4fd1YQj0btgIhAMtyRwTteIb7e0oR/SIFP0LK/JFECg7Aj3KbraAX9pih", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 435003 + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.0.0": { + "name": "minimatch", + "version": "10.0.0", + "dependencies": { + "brace-expansion": "^4.0.0" + }, + "devDependencies": { + "tap": "^20.0.3", + "tshy": "^2.0.1", + "mkdirp": "^3.0.1", + "typedoc": "^0.26.3", + "prettier": "^3.3.2", + "typescript": "^5.5.3", + "@types/node": "^20.14.10", + "@types/brace-expansion": "^1.1.2" + }, + "dist": { + "shasum": "bf7b5028e151f3a8db2970a1d36523b6f610868b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.0.tgz", + "fileCount": 53, + "integrity": "sha512-S4phymWe5NHWbTV8sAlyNQfkmdhvaoHX43x4yLtJBjw2zJtEuzkihDjV5uKq+D/EoMkjbG6msw3ubbSd1pGkyg==", + "signatures": [ + { + "sig": "MEQCIAw8dNW+YvM6CrTFZ/M8aoSL/a1fuF6jycL3Bsnm8sgOAiAxp0R2h4KMBh198Ou752Sl5aHI5GIALZE/XTvv3NavJA==", + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" + } + ], + "unpackedSize": 438775 + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "10.0.1": { + "name": "minimatch", + "version": "10.0.1", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "devDependencies": { + "@types/brace-expansion": "^1.1.2", + "@types/node": "^20.14.10", + "mkdirp": "^3.0.1", + "prettier": "^3.3.2", + "tap": "^20.0.3", + "tshy": "^2.0.1", + "typedoc": "^0.26.3", + "typescript": "^5.5.3" + }, + "dist": { + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "shasum": "ce0521856b453c86e25f2c4c0d03e6ff7ddc440b", + "tarball": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "fileCount": 53, + "unpackedSize": 438775, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCAYhDBiow3JZoo/Wjad4/ocXc9Ijsec0bAReaf4pYqYQIgMDAifdJ7f0bom8/4uSrttUwr4NUIdWu9FMYhcy9wvZY=" + } + ] + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } } }, - "modified": "2019-04-15T06:36:45.906Z" -} + "modified": "2024-07-08T23:02:25.713Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch/-/minimatch-2.0.10.tgz b/workspaces/arborist/test/fixtures/registry-mocks/content/minimatch/-/minimatch-2.0.10.tgz new file mode 100644 index 0000000000000000000000000000000000000000..87708eb53f8b1ab1ac0761b44bfae13373ff5f48 GIT binary patch literal 13940 zcmZv@Q$&_tir<#D-ywKyi|8%t4F4Tu6v6l_!DFSq~Cv8E<<{3mn7@eMa7BG zjc_WNNcV~Alo#?Y8h;R(M>VYNYTJMB|j8*(A|0c?YV710Tz>orYw2BoMCaY zT|*@ugG4(#-IRwsnA?%5GUNIXE~IYQnv~P_jZKTOkLxbva`ee8Z3%MCe6T88DHmf$ z95-W@^o`JNPZj9(!|g{Ds>%13ux5rUb?+xLL0wSpRj+*oo6alJtV++Pp6|*Xb>QS! zQ);U>YGIP}a?nCvckiroBLtXA-sL*ZW=$|~?;vgR^OP`-l==?t|P>=q(dw;+VnIGT&bbo!!NyATW$MJ;G=Oq77 zl9@2cPIS*b%caZf$tD`;4b${zqqZHrF7l~C zA00IJo_dn2OAzk=9;w*IVUQ6NKXNlr9PwMgEy`K2;O<1;973ayiEZMdcWj+Xabmd?hX$J zD=6=zQ?v)&rH>!{<&${qG^^n6*Z8$y6J`$xrmz4d3_cH|<-}7yNc6NcVEh~!1zBkD zDB8D!^7r=1D-0d!KONnjIt3d>RM?Rr5c-H_k`C=4xrKebv4=#8%_aj1rVke~!TctGGI4nt9B6-d^VW@Wen1{Q9%(z;cY0Z zREAGN*AcI%e@sx8zJ;n4^TgeWumzyg``H5G0;D*i(2zq5jNOU*!CL6DoB(k199Hzw zgc}{xUZHI`kkTvzU5L9;r643R<4GVwzzoa)Q06}wMx)fJk0|I1FSP}zdt=3p2opHe zQWXk6M|@FSxc^y}`vU?Q0trQDr!^cRag#@*6R6cCa)f^84E_}fJP!mZ!~=OO!-~Y` z4LW-@vIA(0b1`5+%n1oTH+M*6mv%(;0@#+hTbSyR{R4YtqOA0)?un8@a0KMB7!)xr z?nqI(#gb?Zl<^~UI%mk3RA56z53b3z)qh{shCL(0gcD^)8}d+ys_6fH(AiKeWr#U} z=FEw|E52p8MXoJ>Abo~-2R<=Al*2F>tnZ}ofbEAn8Ei^SAgyrW!Af_Bp3-B% zLMMFs=8M%O1SO0=qj$tQqZqVESvikCR7BS;0W4Svb_8i1bK;2?WI8$~{`-k?rq9<& zsO!iG7D)1o41;u!5w{BX#fn))RHvmKUYH$iUzDb{F(4RCFsmR;By=6X83DUB#A}SC+>1;zuhyz;4C0HZ$HM0;yp+HYWlqL|E7pE8=?*-^G_jf%Z!_s3W zPG!JuM3K~Q0vUmllY0yutL>mxNP6j~5DaYsP8KdESpaGRTvS_kP)B_;!nI(bn)Yc% zd~{2Cl}IU;1rbS#RS$be_mIFPh{GF4BCttdp!XtB3WOW2(Kk4@uS3F-^T>>P6UXPJ z5>P_;R16@C7{SV@p$LV>m^`8(a3Q%GRH1$rJV=ni*!3JX=YR!Wj3Q#YPF&sX~pbwSnjsOBhQIpa1j`IFDkDW2(tv9KKC+q7ofFpiPPO@ zq$eu#5{f*O8sw*hmcM$W=*ua%hZOinP71|Q( z@>N2CTEv`j1*iVW{c`r2K4t}hfG&fY6wFJlfpXqY><5L?jDCXaf;28X>BS)M}0|+h(q2-Y#%7Zgq3husMg{wAX zfjF)_2HiTy^SN$b$ysfa%E>X_oEXbH6+hINf=3cdVqb)#^a*sV!;dG@Z=EzW9(~`# zp1gpuNxjiQIXPj_|5${7)=86PX0k4L07EXQscGUTOAq3&4?T2tA1rkUg3|R^`ixe< z_Z}cI8n;$(Ap{*H$QH5+Y6S&anxDGNt^l)H0L+ppm7*0GNl*L=8Yw7%HSC!Lm>ED3 zYKiBedL-*=p7ET7^bCRR)P$u>dQYZN!C?iCS$S8{0>+Ghu2{Zv>q4)A)V2lCxRVw! z(A@xk2gE2DI6EK_;HTpuQ|RS$xU~o)3+#6gz)Hf*aa!G>VJEuR^&46jy_$078{wP) zL)@ai{{|I9hV?;8MN`JEii0`)~Ck@9;Yh+&eP(sCdgIu7_DDsw!;gt&zckZh^I zM0`)*8VQSN9~4Do9Yt{H;edR8m+T7^5w8mE%YP@ro8!qM z(y;f9lXt*v4Ybj30*L*9Rp9J{iCGHseQW8gI>V0H zEe{Bnj4keKWd@mZQVsEru?9+H$=G}ppa4E(;zMviWh*8WiS10put@>Hz|-u0NLH3f z8%w&oDZB>PY8j^DmfGJUb(MV10yu_SEIR*wWdl+stYk9%XX7quyHLm>8pIqDj362L zeuWwV{+Q;)(Rj}lxtOAJ->49#w zN^ekBB#m@x_F5Q~qR}8<+%jybYKKD&S0W=K z;wt(YSa}W&#}3J{ql#uDO|Y)_VKH(|&8i@1#(068EPdGwu1JX@ubJlUM(Z6B*qUQV zTdIzu$wz>Vy^W?&pLNE~Bn5C6FHnze-e0UmU)Uc~)=$bZR+pM>5%r2y##jQBpHr3y;%vS!>B z3`jE&-bQ*!{AeX=*26e{NaV7j6tiy3W=&kBR(AQBfq7nTYjJb)O&I-G#URjUD6-5W z9o7v*o+dJu?vaSuIz2Mu2;Gs6p2fcz#;pJy{f5xgrSYp$4938~Do= zF;lzejqM9=9dQ89+!^AGf>tfs-HJ%Qt3 zmT2#_^C@BCWvaT)fOEM7{0<+_H{tkdS1*13qu{P1yARe6dFk7{cdl%`Q^`}+N-bW! z8OiWLDBoB$`#gY+Stp>Jm==+W!$d~}+VBMcv1UIe{f<*`2y6{(Yf+k}s2c@6f=Oak z;&FKLPB4>=r=jMPX86O5PPmuw^XloG8t4=RDLko;NavEvGra)J7jyvl!hIx5jW~)K zRq98MIEqwI8O#xGLa+T3-MWrG@2|&exy8B|_zwr?_x!KB*S(0bxyJ812;AWIAZVK( z9*?*85{0QfzAe-AUe z1N17^_J2cPycUDYXyNw%es+r2?)J}StN*=ulmAJ=_U&+UuJiK20S0hzpmhH=dOHxs z?GYkCm#cRl{_M_HzjYtp93-|o-{&8`58Yn<%Y6eZ@NW6~BnkMu#7^<|g#g<3_Xp8X z5bN34*!uugA7hKfDK{5uNI&s%%^%YU$}G;p@w-y;u3Gg}FK8C-ZWvbL@sSQr_7 z+nZ7+SSBCxfZUbo2f+#`U$lRJ`({yj0i*TDD$chPaMBE^$O6guW{45<{mbhsX5`+V ze8VvRx6MLem(-HKqmtdbeR#G4wg46r)?E7G*~&6nVK#NBJbK~;%{uwzzbi)0g@TdmyHbq@EeQ4_E3F zG1SWP@%uHdKEMgk)pB|CB*H6w%pAhCK9~}^!!!4&cEtMbfbk^lfEss?J~Qgnwr#=o zJ@W{az6WMVe>J8Z`!mFjzjycR=HT(TwKWtEZjUu!5Op7>9r3mL@A_@@$E7RMmqV8q z-chrXRYe8q+%dW{_yP@8hnqikZp8z&)`fc~;>VH!MrMX%zcG7KX}!ctQiDVui<*H) zOM`1mYiHVTcE~VCFHJprpXLGbtOf#rry2<~pGsmDF*28&Ge*d2& zQDG>klSBJ3ufnm1FblUVkrw5W-Dp!Zk5D^PeGM7U1f56+~eFxq@JJ87Cy} zc^9SYv*8~ay$fowC#vxaqe3arYO8{VFlV=f@KQ@N*Er>U8 zIp(-w)%M-s%dfl3$NTqueQhJTs7ZYJie+>{>LA)Oz-g=d(cV5#U7MFygp_81%EuUc zxSx;&t2I-Gf9mMJ7#&Mtw-6*am%cH5f7Rj+XF+J;Rb((sN=gZw53n{7I3{87$jT-S zB$N1lgrN<>k=s1$G&Tv95?$G|3#AY9_&9P6L{M0^de`>cZoijc&KguEek4EwSX)$~ zH$k)t^w~qId5-rwZBeO>F#$1}Js>jgR-%0~SYP)msxl-b5+TflJ$UtAXW{yTKtfyQ zr77%Jdru`_?^x4)53c=2omyP35?3?Xluzn56w?vow20LX1`Lm>z=Tjs`X1`5*`z&& zq(uA9Ong2eXWW%Xe17tjxRcR{eG1pZEeXMx!>`Oh7?D~z;T$$WAE&hdd#4S{zfCo1 zWaTLbbaZI8QnBxG_eVUsMKP{Pw0h$ptGrxxP!7XuL?R1@N($nvz`~hXS9uX@Lx59( zOfjvdyrkKxu;E_A`6bIMw`{&sW_aT51zl9q0Tf-xPRYJJ7$jq^@BwQGDp7$BI{dbG zWkDX*m)q2O8BII<*KKB+Wced=5Yp5-aNv=8w_-7Fh9Yo2S3z3H`ce{e0vrv5C+V9y zaM^e_JyX0a$!n+h9=7D^%^}{E#UCDqKiStxcBId?Beb@QbW1VCX&5e6-)Lju8b!&M z8_@ETnORniU?V!(SFD(C8}yP-br+uBOk!&Y8_ERd#8GU#3=LyrAGzfG;#~&#B4h?@ z4=F{J0DnTYomR&0RdwF}n4t`?ER2Ud9n%PWy)8v}*o0o?rBQa$9b}PXZW^YHt7H^S z9KWuWr=F&@RU}5s83eD*)4$nqW1dnSR*huxW+qS&r3_iQC#J}+=2NT^jLG9olghWC zY%mvr1CEE?>;tU&}@xu@Sr1SaLq7V{RjzU zuEa>paM}YjL!jd6E6hoCoQvZ0oFP|9<#gHjAvt0}ESyhB_-W-5!R13&K>^x)!t8RI z@W2{Azm>*o56E`8|BB;*MlvQ_!xTO~IBcSfqQq$SuNYgfTI`)^EC&!xOr4skQfJ|x z)_I~b-s2Op)QpNHO%iqsKJl6f;}!S-+vZJ}BuJ`<6A%U35?+B6Y4U~ZvD!roKwVk0 znj*x63&tan4S7HEisd^(BYRBrc(H}e)-Eb!9gM57;FrxNuj98QPklf$!I;PqQ@LeD zhQkRJoW^{Dz5wl)&G*w9xe+m}7s=hbbdGd>vQLTMqBvksCV580AY}JY_q?D+nJyoT zP65r~){tOy3F*_r_+pfe&0>Vz;8*^^NsWh0iHD9=RnXLw6`l)vnu$`X=ePzP z{T5r`&!~QZt_Ho#vjc)FVLn`6P$voTfZpW8{F3R?8t zLm7w^L@K3ksh&DK=Drt(TsKHm-=rDIUZ)JsCZQBOUiL}rW11(}yIw&|VFM6MDYM{uNW(LXz-ISX$b>lra|TL|G4 z<_5H^eu#8T%ZO={H6r3iGOXD`q9?$txjU7#WdK^+K?O+nC>}tJTud7_NK;#yEi`6IQyb?{A)KmM zSsWbGEf_#RAlu1bKy~;K^x3|D?2WLl{*_p=DtT`Ok+-;^!>V1lnzt<{66Cyw7HXyX zn1||V8XX#p)TuIsV@L7zeAhU*cT7v&mm5f8l8!tVSgbz!A8zqYlDc#bX#wi%&DXW|}<^)k|ezIy+$Fl8PRR^GX2J0aY)@&Qc zXRDo%T4;$ARVyoD2>5`vug!3Lz#D-@zC(i6*y^Ybk_X83<`tlD9z|*#St^jx2VTKM z5St49AyTKga6iEX+K!?5P@*fg*K|6}DE1rIye3ML{#K zEg3P(V45i}EwMRMXbhAXi&;w*2IVyyc6R6F74E~2XtEVA^F`h_;z#A#V+*dJ+pjnd zEjX{;2a5S)cTKpz?so6z1!=|A})Kc-WVGIX9+{-#B^#;bk@(1H~GM?nS*9CyM z%pM)X3y&|*)kA2lm%p1jk(!O3NwQGUJ_5q>hl43XlLJYwd{q+$2wWMMbX820e|mM_ zzi*Rwq}9gJ;}YLJO-A=V0Tm>N85t68WMyJRk`w=ck4Z>;nIsew&)4A>^I!$YMe^xH z&rC2;51)~JWR)y^E*2#Ul)^WVrfy;ic0M)AF0@4(?BqKqBz7Qw8dA2KG@d}644;&p z#k!tr$l(-^%r9dgT3nE=sZ;>jh-FnyIb2t8A=yj|N3tzWr$gPaSyvw0VDe5Hg}?3u zXyJ`pmxe8+$_%Pwg*zr_TdBB<5*B5uALr4+evfhtr^fY64VKBU1d5WR`nIE@egov9 z1KTSGi3)*7u!hedZ;yx4WYrZlqSzSRw>G-^or>~(45hoKt3=E<)aja4cen*M^_O?3 zhM0?6X~eW8T9o42vgAos1hQ<>Y%>-b zL_@B>g0uV*>-1Spe!nTpNsluDRi($B%jf+sQRt5QMblDj2CV{g!HhjMobzI7BeJwc zhZ;=4kKAW4>meL~(7=}qj^~;d(tqb5o=P!2EeRc}Zy9E+n7%oF5tgnz&bdWZ&LEp@ z%@Z2^4e{Lp=EkZaoyo%#S zjh02&;*`e@Epz;IBWJNGbWV1;*!$NwhJeh^V#g%mD|37Z?XpJcf*g57otgK)1C0hH z9A5#j>gfU~RKeK@bq%#e!>p3y2$3FP+LO}0I6tq|%3))uJ&F)s(gw%JEi4&JoF4-| zs5-M!KN)eCR8d;$spiPi)jQl-DYuQt!|mbNL2}z8@CY^fbsJbGNO1(>7lft-BGNhz zs7`+LQr(Vs=^6x|y5;2WV&iLK3_LZE@#4d>pX={*5Y~mjk}MFG#9X$Cq1mYF=aj~w zcki88^B^&`QYqinrfb>(S6X#GLG!0q9jV~Ad`vEx#<@t2fSlv!aO=lsX520>TXgem ztvn|v1sm%cH92RZJ63>&ln{3@f25lv=m;&L7l+nbq%S}^kK@}BOT)n&EAVt=7{ zU{F_QbAy@_<(@JRl#4m4dAKE%c<>FF%qH=)7+XfvR*Ty3)4G@)YdyIlRTp|V_K;N< zeN5$)WuX=26J4BO;RiSoiK^*3)}$x5eusD4P$Z&wd72vMd$#& z`8K4KQk~lH5vtyIv#Dk95sSwcou~tOfD>y_I-_-UWa$KhNKHe+r-oC)gb9JrLMcRL zb1@A+BfeEw&mtDYNzQN_l@nQ~r{kNy?o6EP2PL1@y*}4zjAM9^rf55D$k0Ky95?Nq zW#7J~C4pOd%wM;aQ2^34i~RZ!<}3kDT!fIVQeT;ri_b26h&i`7F84Y%iG}NmeQolk zeEcS4D1lLN1VLMr38cD1ht%rR7#n#`9RKuQ7RP0NrR%lw5u@wi{u=E5a zHJV(k3u#0g;cTQ28RvPtt2=c{C6qtGYrGoL;n!Im&d)s5on->K;I)VNxs}bEzD$$U zITXI4_=+Djx^ykUsLOg@sN$_THFyLVnZ5RQ`vfWob zIM&ir+zF7rUT9>)pwvdR%6fb$)$H%3qG}743|ZAKspKim)ayIijF`qQH-xD^)4nWI zSw>AzVT@=a{+X$J;m=eOPi1Pk#pVLq2V_?gg~o(HZWB&jhN^WUB#(mP@r{5hKYq$W z&uxCUiTF1yzp3`3WR+(8B2BFjET=lASXJuZH<9JeL$s`5%YE8_d{6-`%6e$R(#p6% zB=Pm%P#eG|&BLB5^0~u`SjWeYD(i}o@FBo?F)jC09+ip#>mx19 z3vrm&sbxE;wT42EeKS=3PV?*9+2`B415HmFX3~=zw`CF5^JO5R4B0p370{@w1~d7L z^AETXZNPI+>$i@$0F?yIqM)jVjaA*7M+VCV|G&?*`qm+?4MEf^%) zHNA|hG|?#Gwmqbnxs`-)mU6LXGaqA`>Ij>sL{==d%~3>iaZ&cEs7RP6LtcD8l;L6V zm)^*HvfoYaK>044b>5P!)=21-$0h$7tEXVbRd86KG62z2-Htp;bW!xhIBT0E9*HG) zv6?HX29eTPP%qo62QQMwgvzz#m|Z~SCfnQbC3vHfRW=T~p6UrXho1Tv;2!Oiz#>k% z8xU7wh&L@sX`ZOxmZ|f}zF%C-!`tT_#rF1c z6?+)^wb-Thb$pe_J?{ei6O>W{5O8mcx0OT|DF@fGCqe;V4&@%>nyg)lf%v4K2 zhNrAPnQgfULQH5|9wKop| z88DLO?H&eGTjHDBCu2!%TdPsG5Q^rKLY{An?Ioq{Qxxh=>ilgkyMf_VYFA_#K%N7~ z{A>zMrUw-zp|99nw_!y*K(Dz!#Kvw=beeioD27s$mT))+m$}C$)3-VR&IYP3VqnVs zT{Lu#&uMTlf&L8<=VJR%wK4r#EBL|@mdM4Vck6Vt5IUB+bj5fmO`tnlCfLhG1fy`X88<$Itynt<@QwxQB~8wfpO?frtMRje*908sTsAAo3J}~$J&yh z61FC=Hu(m&LJPd2at(C+kg2{__d-MD_m+i|TlZCLL1s1@INq#p>So>F0-NoW5*}~Q zOSUmkV-)Rv65LZ?^k7@vB~-USuz8>hn-u-_&05JahlSKwVgd*6TFsumh*wk6>bcUb zc!d$h0_=zq)dP!Pw^3oSL_yhDlZuwPjB!>}#STNX6ikun7=bEf zQ z+82GXID-n(jGE4zoE)hM2O0|J;6dyiJyeJZf`g}aHfZ!*nEcWOd)8O>lj1?FeCJ}& z{|7AXo1hSB3-mJJ)hB83)ucxk)LilOU|hZB!O}=SgY2X8n1Kb?)f^id@lM3}c4DOv zM;yPVcSMckgnA#>2( zjRM9aI;do_@yR*>kQ+ORs@1@p$<_>mAQ(QZC(|&7Uj}TKOh8)?EClV^c%B$G$!41+ zu%prP&c$X5Bod$D`9o%TZ#q_qOzOrM0Juef3CmnG(IuP-S_`bSb{MVcn8U5S?mbev zS<)!)%iNZPK{O_@4kUEP`US1*W?Ar4r+$+dxOEHmDLOuB%-@Uo%>!n+ZWy-PCmk;9 zZ}VaU{zGxiH-hw`Z&LW`4DzIfAvW!DIGKlTvMMgl1w|n|dCOK$W<(WN?mBCLzwqkw z-i~E{+pHC0h1DGMArXk?Z~M*Q8l(wxA;A+_GWalVI9Pmz6P*kd5_C1cID_JmZ%BKS<}!NOoaTUokS7a`h>_1NxZ z#pis`R&eO#2r!nDbaZ~nUN1rvx(+tCaImnfg5j= zx`WLa5H>@0K&=;9uE0UBNnL6*U#d-!pL=KwLwb9l)ZzPiC|C-Jb@x3 z_g+ocz;G?I4^pXb)tlCFrB4={ZtGHvfaNQpSYszH98=X4rwTa@`W_*_u0&I5=l6c5y-_!3bn%&4wd2wqkgx z^PZ()rj@x-%8MaFhGHUI5%BijAvR64zDJqxuhKc6p&gr+HM*prSBs}FOLgH?=rE{kEV;kI4%nwRBdPLCLu ztm)#o1g-gXg;W>C$ZaQ=>iKADGsm%_s#&YXh3%I^s#J|CRSC|aRNYxlqt{6MKU;H)%bo!P_TOBG;KwIs>TH|q4_~3u<|J|OI|+` zC=?oweWW|HoyNgq9Jb5gicl0#0Wma>P`Q3pDrsut0g3ha3O+5K>GpPVpp2_MCtG=1 z8ZJkP2v2nDu@Q-$YutP0P4!bYLpz2ddX3lVFP$!krHU9&6?+mgv-33_N90uLXm|g$v-Qe=3#z9GC02(vx_h64ZYCOez2PKd zJPOANof`C|R@VjvIw@ADs0!K0KHLw4Bwz*r&XfSrGsl09hhWep>F7WoIC*`$LsMp1 zDfFliQq-$;REJGr;C-&F^4p4`yN>(7- zi+Ta{k3!4BOhwp=tdC4&GL)XesXq&f;-*rnQL7r}}*WO`Vu(#N$S0Gr}SAxLCH?gq3BWT{qT!#v8eyc+|3+6KMAq-J;b`^UUF$mW z;pW}=v0J}QJ$AQMLgB|;q#${?zZ<;o4Hni~_Tndd{ro+8z8ns0SfWf0hJJo>!J+;4 ztD`HQ!*`1R4Y5B(XKTun6IU!*2b#H?<*<=mmy-5E3}a;;cPz`e^zwdX<=GoRHXZ5* zuaisrE%939RYb=z(wJopcQHxEIhme7Wo1FEC9#v<)dq1uMo-GtIN56<;jCUGZI(1fFh-siK=Ueub8H1UId_I5J-5(V)@Lka3ewh05NN+%;unF$!E_z$vQ_k)6IcxJx@peNfqtm z1ng%oet>uORW3P;!HGn-1ee(xC`*k{g!DmquwU&hFn<@}#W72<1q9uT@(&l}O;D>k zjFlUARx~uZ$wi*MWz-2eq$4V0S8z47bMd{;?xpw+;HQR!WQwsgG;~OTnMP9yb53eO zP>2#2vY>YB;Hz^n7D?eJ#_`zPugqeN&PhHLUcLi<84)g*J6oE3 zz0~YOKI9_mb;%BbYe^E==5$4RcuMPV?$@8Ce^W}UmJ1a0HH)cj^iQxxSuy~rbbh_g zyasd(i?quVG6ZIzgwt@x4bF;xfLo!(3TXa))bv1GMBiR5>HXRQqj3uEs|37(8Bs8HWMumULGCxzMwgLZjqR!bvfK6LLDuccFOhfg< zmkqvE`I@KUUyiI2TyL9IMisGA!XTVL{BX>^7uBYnN<(Rq)f0xyUUY5OOdy|?s+3h_ zm!W@FoYMN1Tv#1YylWV4AcncX88C%SnpV_Lm;xwv_J;2&;?51~+3|wxBYJo9-pj4J z_qPfW@#^xL#i8F=QUCF;h~*sgepN`ZT>(RHP`wXZ7P)Ls3gw9;>syesZ<(yDl<~xW zUkAvtdZs=Doh#cayOdC+Ogj;qwRY)nog~;x!keg0=E6PknIPu8K-p68zD#ZQQj9!6 zym6uCsNL6*BkKB9-J@e2H^FtgGDm_*1Sv=d z%2yiFeHh}!z}F+~$_>NmG#SzC{pQL>6xJP|Qr@(<8*ka*}vBIsW|Se_md`esthH7um4N%;b^C5N$}R*jp-_c){*0P-&QM{HlFMT=P0)2R5^L|EQi|r+oB!32y|G z3;|sg02>@jLNraQIqL8N;4Fc6dv@m8B1=Rk@G+vnGhK3YU6 zK;Bb*rle1lIlwa?v4y2P^I!vyi8@9*e_Sn=3BJyBRx`1J@F8Jpn>eYM;b|pXxQU}( zL3^|rRDn@PjK+sE4-)755YDk$!n`p|XLR<|YH`~C$LD`ZwMwSd+f$oi>-uj#|2O6TUyENx!+(gNGNG1m{kQ(I zxBt{DowffZ>Xqbb^}nL`pSb=0.10.0" @@ -26,7 +33,14 @@ }, "dist": { "shasum": "0eb570293ca87b272a0f3a62b50adb9a5f0a8f1a", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.1.1.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.1.1.tgz", + "integrity": "sha512-+j27a/+Pal2/Q2gdNvo/qtrQtASikOLmv3GmfrDRIyWjmm9z+ZbH+UOmYnUg8KmBwfE9NmPlhWtmSSSNcgfKJg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH2aKk+bbDDOXDqdy6OR65yxMafoBdIVbo4L2df0/opzAiEA0e/atA096Evpl2sGwgyrZM5kz67gVn9WCqCQtKOlk2Q=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -40,7 +54,14 @@ }, "dist": { "shasum": "036992f073aff7b2db83d06b3fb3155a5ccac37f", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.1.2.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.1.2.tgz", + "integrity": "sha512-tBiEbE5Yeu7sxExjNe2bceZsgGKJtrgUWtC2PqJsUdRAoPgrHRhd1R2pJ1Y/g3H1dxuaNqd6U6WV/vzS2wa14A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEf+rbzzNRIPcIkiP8TN/6STyd0972/UdkUHaTwL10RwAiA/lLG14cbpUecjGo3343T8W3m3jAElKV+CFrkwRvEjGQ==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -54,7 +75,14 @@ }, "dist": { "shasum": "ab5833b3c86fb5b286c91fedc772e7939fc7b30c", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.2.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.2.0.tgz", + "integrity": "sha512-cUklMd++52CmDhrrBPrWSgv8Qk21OP7fe34zEpnHPLAgx9lxbnUpejcSfQgkFE+zLz4RtqogezUabLzQfjKXFg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIC7mLjmZDfKSBLFa9hadc04GSkQ2yaTju2GCsZVj+oYwAiAzoF29VHYHiMCiKkNar48c2jclOEqI11/GC10XOynS7g==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -68,7 +96,14 @@ }, "dist": { "shasum": "bd4dd0bab7fa495408d9781e8a9a2180d2bdae52", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.2.1.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.2.1.tgz", + "integrity": "sha512-PgJQLmEIuEhyTHIGns0jYUGb9qDUTKYqfLOjSYte4zb6xzhYQ+VsluuAShEABkh2Xz2An79SGf4/ksxjfqa4lA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDTvKfscPD8tKhbz3hlsXhXSxnrdGJi9reJBcBJGnNSGwIgAJogJeJHDAGT8A9WmuEXAa9UnXFrTgw819p94/JtCb4=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -82,7 +117,14 @@ }, "dist": { "shasum": "e0a78bc56af9c092051167f6b8f23249e7dde1a6", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.2.2.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.2.2.tgz", + "integrity": "sha512-GBw66O/X6uqIpuonDvRD0mOCr54BalNuUxwrsyvbOeO+PxR3jAir1ETnJEgIwnGJjnrRjZtUeJd8NfyfnzfDaA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD30lcuIqTWdJcNEmyb/9OwZmfyedYSal5mAO+ibVe4vwIgA2fMSn1FVQy7o4q02iXKmz8a5IKCX+BhPPnYEDeF520=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -96,7 +138,14 @@ }, "dist": { "shasum": "22f8550b76bf86679efd2117c568081ab302ac4d", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.3.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.3.0.tgz", + "integrity": "sha512-uZGJfRFgToFrGGbFNryV2lenyGK11ffP8NgdxcFxqS0eXNIgwfMEPVxR2gRE1FZj9AXMvlwp9YkCuOhhtixJzQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCCEmiYoRrtDhEq4TKXlRDAHioMTeomPQU2rJRIsUR1RgIgT0Eu3IPiFDUwA+0Zn8UNR/LIUDO5jBXD7+EbJ7jgV5g=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -110,7 +159,14 @@ }, "dist": { "shasum": "060e2a2a27d7c0d77ec77b78f11aa47fd88008d2", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.3.1.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.3.1.tgz", + "integrity": "sha512-4gWmwoU6o9UImLLzq+8R+kzWT0ABYdKXuvSp08JpYzhibFvdUirMfE9nE5yYHcG1k9ClcVueR4TolZpRvwg5og==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFslubk15SfJM1L55QZjrh8+IBplY10elL8h/zAeoBOIAiBR/JlDtmone70dzMXYPP8Bogs5PO9o+i1FGiI834AnHQ==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -124,7 +180,14 @@ }, "dist": { "shasum": "e9ee69b52192780b4d062a3a86ac2fa2adc58951", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.4.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-0.4.0.tgz", + "integrity": "sha512-tIZc30wg3KE13fsd1vp6iyc4fzS+NM6TDxB3YaOOQBeiUqgjoS6mX5DyU0MRCPQVXVhEcqupOoD4TZGBkKXH3w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDXfctuwt/5c6Oz+u49uyfqvsdzxvEYgUPJuw2MA5FypgIgbMbHqzVagHuE8SiP9/Xykjz+lA2OzCNWqDGCTjgy6Ls=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -138,7 +201,14 @@ }, "dist": { "shasum": "e65dc8766d3b47b4b8307465c8311da030b070a6", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz", + "integrity": "sha512-LpUkixU1BUMQ6bwUHbOue4IGGbdRbxi+IEZw7zHniw78erlxrKGHbhfLbHIsI35LGbGqys6QOrjVmLnD2ie+1A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDBuO0C6dqYjAOz2bII4Em2f2aVwGM3C8vo3PfIqRfZHgIhAMsL3jj/zenm014zsBYuxSjYiqsboLloro35/mY2lZ8Z" + } + ] }, "engines": { "node": ">=0.10.0" @@ -152,7 +222,14 @@ }, "dist": { "shasum": "f8309b09083b01261ece3ef7373f2b57b8dd7042", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-2.0.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-2.0.0.tgz", + "integrity": "sha512-TTVfbeUpQoCNyoOddbCTlMYnK8LsIpLD72jtE6SjwYL2JRr7lskqbMghqdTFp9wHWrZAlDWYUJ1unzPnWWPWQA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD3rlhjIeZKrIMk88ZHUQVyZubeLCHQrrxI3eXbPM5IOQIhAIO8+33TKZMC1hjFc2AXTEa87YSW3YKVCHdSrT3prOFD" + } + ] }, "engines": { "node": ">=0.10.0" @@ -166,7 +243,14 @@ }, "dist": { "shasum": "9bedd5ca0897949bca47e7ff408062d549f587f2", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha512-jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD94E/hWr5qdRxtTI4BU98p4b21RmdtJd7Jer1VURsJQwIhAMAMGiXeXY81FFBbKv4JOed6//Ia2B9ki7GDVdnEd3+9" + } + ] }, "engines": { "node": ">=0.10.0" @@ -180,7 +264,14 @@ }, "dist": { "shasum": "43c36e5d569ff8e4816c4efa8be02d26967c18aa", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz", + "integrity": "sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBeYRIlcnvZjXN5YJkydgaGFumdUVQMB40esEKP0OU8vAiEAt12irKPoxwdYtyD1Dlr+QoqL1hwX16deO39LhB4peAQ=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -196,7 +287,14 @@ }, "dist": { "shasum": "1e876669ea263a6d4f37e9504dc859fefc7b4506", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.0.tgz", + "integrity": "sha512-Iejvk7ZL9eGjp6QU+Ep0deFdLnCJUKeMitmape/YRAYFNK3vI48uF3ckyWLbmHom4V7MOgPTH9lhubQYiC9D6w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHDNWKwM5ffWNRlOptRoCqSDzitIvqjwoF+UHzNQh36LAiAXmkf2c0OVLnJL+W1RUbd8Nkb/EUwaws0MCdAf3xKefQ==" + } + ] }, "engines": { "node": ">=0.10.0" @@ -213,7 +311,14 @@ }, "dist": { "shasum": "99504456c3598b5cad4fc59c26e8a9bb107fe0bd", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz", + "integrity": "sha512-c6legOHWepAbWnp3j5SRUMpxCXBKI4rD7A5Osn9IzZ8w4O/KccXdW0lqdkQKbpk0eHGjNgKihgzY6WuEq99Tfw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCtF2mzGk7iSB40J0hQYY7tqnnRcPqx9v/Nv2xK6i2hsgIgV8ZJdKb6C8S7Lir3GWQCjwGSOO70xBHBT2WWl1bvTd0=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -230,7 +335,14 @@ }, "dist": { "shasum": "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz", + "integrity": "sha512-Lbc7GfN7XFaK30bzUN3cDYLOkT0dH05S0ax1QikylHUD9+Z9PRF3G1iYwX3kcz+6AlzTFGkUgMxz6l3aUwbwTA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAdHzM+IBxnCrzJoK8aw+wyKouk+/vxiTwpv8zhyfA/aAiEA5DbQgAihrv724K9MtfFIxMZrmYwJRLF+r221JmqHYjc=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -247,12 +359,19 @@ }, "dist": { "shasum": "2109adc7965887cfc05cbbd442cac8bfbb360863", - "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + "tarball": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJxQuZmlAryzqc1NiNMWyTZ26Y+FO6f+HVICCm5oJBWgIgc1i0sdNz1TWpRbRY3fXQLpopoXsesTKr/RbLRT2QuqE=" + } + ] }, "engines": { "node": ">=0.10.0" } } }, - "modified": "2018-03-21T04:39:35.600Z" -} + "modified": "2023-06-16T22:41:16.375Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/object-assign/-/object-assign-2.1.1.tgz b/workspaces/arborist/test/fixtures/registry-mocks/content/object-assign/-/object-assign-2.1.1.tgz new file mode 100644 index 0000000000000000000000000000000000000000..b6b7c194f178e1a07f5cb3cee1f50aa73e71c972 GIT binary patch literal 1898 zcmV-w2bK6AiwFP!000001ML`VZ{s#{zec}eE-4VFRpdvq36N~|swB!rIL9_*r+W({ zKxB!wxRpeeq~cAtx&L#2<9^xAP=01#D6ZSyT|*cUIh;2+54s4WAHxZ&7uDB!t3>|n zHy({f<6wUu=zDnZ+6x7RpmK7ZC|?lqbRxc^%#^084W9ZFQ? zKjl*y1B>tf$arr7Z02FcHjiLajNY%%x$*}UOtL~Ku7$iOu;O_vnG!N7RsAE1gr!b| zL`>3nMd!YugT5g&sJO|pkf)Eiem^0o6Nzk&R!W1EXk8rD>#Mj13y~g-Y?e=W&eV!< z5gXwzPa00M;WU=0m0wm+HB*{UGZ7`>5)WNt7!E5e6wTgY@Daj|LHLo~Plb$Ea4M(F zbzkufY4}dFJf5!#DGDYvXG@2ugT*w;!b;0IBnf4Pr?sG7J-Lconyy2{`dTG?;nR^6 zQ^n-ckeJ<_vjVkadBj(pSa}3p^R01<^v%FuQU%;;+umZmI*Dc6Z%0YXBF*KUltHQwGiwl*FtYeO=d-wzR6v zL=nM`k+c-W5w&rQpBF~Og%m!QvZ2M0c82`s262hUVol;6)|{vX`tJC%X>}g|vjY89 z?%3z!zt!A3r1;-!HCl(*_#IOGV^VmE|KDQ_5(e0jLAyGCsNrJAvd%Xh8 zt;d2FA8)E&LhW$}g^YSkW?WGV30y(KBpcnsM25L$v5ohaF%VrSWiRLD9mHP3?L#NB0q>lWP&d=dBC(-m<`av&HjvH zbH@mYS(sWJ10*4!$&Nba0L9YOLJrs_fw6U|oxvg13v#HQxkwRY znqcNxvxF;5*KXi} z--lk%{lP!?&SBH-<9gGE*Z$zLdp!We2;9!#4RkNS?Yx1%`JHncyubGXuiuAmVEI?Q zw(lX#@0_)-&;8CTI7PZn7w@}|7af@nx=Kvmso(YoZ*1$rA9RT4 zMK=H!dTucA&#v2U0KMy=*X?^K{v6qM{LV#yQoJj#GjLEU!od3h7tp_S+ienMx!0(D zK>ER1xA!LSUtJF1vfDoQ5P0gLX6|X*t3;tuXKmNNvfoN zi69ECulwGDA)I?|8+qaJbk>f~dFtr@+sC~AOBTi%bF%m=$oNA2Z|ygz{_nT20eFrt z0IL6crj&jKT|O9p^7_98YyY*t@GryDlBY5BvBs6^rbd5`sH1va%kYk?-H1CvPU@fj zx5iO-lfRCzz(>hR7Ano;&aY>Jjl)Zzf0c%}kN#J>t(YON>2&I}!j$WKYBlPuMsvU3 zXg*RV(OJ6uFN(PKX7eLVaiAP46A=^S=QDT z_&MGg;&yv`s}k!Q$cqfiodLq`t_l%h%;r%F-N6>sglzRQ-CCqkgn87UsLsq7m7b%-PiPV>vnc2@r z(E1cx`kH;ie&I0%s6Uo>dXjunhM6@Nv&S-KJdsG?<)~hY)OakOieEBZO^g$l;H^dET%au|AnJ2=e8ocov~K)F6_4A zK8G7qtLK~g*uDd9T=i<`<_~yI=`t_xZz0(o7ud3koGGU=F<^7|S-UW#7*hp{V0ZmN zy$soc3A{K?CVocVp^4jnyv38rV=0.10.0" @@ -23,7 +30,14 @@ }, "dist": { "shasum": "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f", - "tarball": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGG8/PrDi1CnM1BTf+tIetYTz6QlYdNw06Fzr6TcBTg9AiEAyCc6F5oylqXtNFO3j0Qdrd6R467hz7U4Uotv/nyjv9M=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -41,7 +55,13 @@ "tarball": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-2.0.0.tgz", "fileCount": 4, "unpackedSize": 3699, - "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5BgZCRA9TVsSAnZWagAAjzEP/3lJ7zhj0TKOtNrPBVj8\n9Ypn5Ru29IWn/UTy6iv48fODPWvDH/gbzi+lb99wYBVOrEhwkXRRthQnyE6H\nOMfDamSFZ0M5N9g/2QafpbdIKIyAHmwNPLdY1BxlNE18CGUopx8wBxZcf725\nTmSa/6ld2gIhTbAaNklO7U6G1jFx5rZmbh2sQlz3/ezYY6ll69x4lNUG36Vv\nK3Qyo0zYKhXIZaDoD+ERcQWDVMjsCJ+7EJiSci1dg+Wn2ERebkRYYTNNvAjz\nCGw5QNW2vO5EvvCbHfts9VH1yPSrKrp/qCNByFVVkKV/FUVJqZshK6bSAb8p\nfr6i3y4dOKNYBnLScz2a+yDkhiNFpTSrCh7fPAuZECN3o1l3luseHIg44Dfp\nYph+YsGNJPEe/eq5h6KN18vtCMEs/1xTC0Pffo/pWv3AK5nCuZFzblsNIkLH\nO5McLriRI8BHc1VxRcPAWWRR7yNinqpQqZ3vp6qEWISqLeVKohYLixETiIz9\nZcnKsBKouejDx2AfeMakb1vLYj1B7dWQdcZZFQrqGjnMF+vdvOMI7VY9PJgV\nggQAcQyDcKOyTq1xW6rLy2X6906kU5VsLnjQbKr+kQ06hXRubgwfqfB/7WWu\nDSvRzAG9lUHjWNI8HSZhvEWewLetHIBeuj/P5OQIjFCFQ9fj0UE3chw8Q3u6\nPlls\r\n=MOl8\r\n-----END PGP SIGNATURE-----\r\n" + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5BgZCRA9TVsSAnZWagAAjzEP/3lJ7zhj0TKOtNrPBVj8\n9Ypn5Ru29IWn/UTy6iv48fODPWvDH/gbzi+lb99wYBVOrEhwkXRRthQnyE6H\nOMfDamSFZ0M5N9g/2QafpbdIKIyAHmwNPLdY1BxlNE18CGUopx8wBxZcf725\nTmSa/6ld2gIhTbAaNklO7U6G1jFx5rZmbh2sQlz3/ezYY6ll69x4lNUG36Vv\nK3Qyo0zYKhXIZaDoD+ERcQWDVMjsCJ+7EJiSci1dg+Wn2ERebkRYYTNNvAjz\nCGw5QNW2vO5EvvCbHfts9VH1yPSrKrp/qCNByFVVkKV/FUVJqZshK6bSAb8p\nfr6i3y4dOKNYBnLScz2a+yDkhiNFpTSrCh7fPAuZECN3o1l3luseHIg44Dfp\nYph+YsGNJPEe/eq5h6KN18vtCMEs/1xTC0Pffo/pWv3AK5nCuZFzblsNIkLH\nO5McLriRI8BHc1VxRcPAWWRR7yNinqpQqZ3vp6qEWISqLeVKohYLixETiIz9\nZcnKsBKouejDx2AfeMakb1vLYj1B7dWQdcZZFQrqGjnMF+vdvOMI7VY9PJgV\nggQAcQyDcKOyTq1xW6rLy2X6906kU5VsLnjQbKr+kQ06hXRubgwfqfB/7WWu\nDSvRzAG9lUHjWNI8HSZhvEWewLetHIBeuj/P5OQIjFCFQ9fj0UE3chw8Q3u6\nPlls\r\n=MOl8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC+hMRFGosk6SttRi4d7MoM5APpnCTfuq+PoXljAK3EhAiEAlT98Cyayl7tSTalWknq9TZ3vhxEasQq30yva3sKWBj0=" + } + ] }, "engines": { "node": ">=0.10.0" @@ -49,5 +69,5 @@ "deprecated": "This package is no longer relevant as Node.js 0.12 is unmaintained." } }, - "modified": "2019-01-05T02:56:56.679Z" -} + "modified": "2023-07-21T15:52:30.855Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.json b/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.json index 731a9ddcf7612..47d5c87956ceb 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.json @@ -1,6 +1,6 @@ { "_id": "wrappy", - "_rev": "11-c9685a548d3be3f07ba70baaf86cf306", + "_rev": "17-c90b970a11c2f23d934921de964dbde7", "name": "wrappy", "description": "Callback wrapping utility", "dist-tags": { @@ -54,7 +54,14 @@ ], "dist": { "shasum": "8aae4fc6b4cd6be32a4553985bcf32b3ee131e4e", - "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.0.tgz", + "integrity": "sha512-3y8PlpIQuv3/g9rN12ffm6FrWo+fCLlt8mtAruKSVgnPgdV4SoxOF8qmJ+6BXjsfDFe/EMUGFWjCu2dImNHjBQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDWrRxKStHgOvqG0fa7ESlcj8Il3QEuGl9fyomDlesSbwIgICeFpe4kqnMG6kdfOCFsncQzN1SjfME8H+6yXea2VXo=" + } + ] } }, "1.0.1": { @@ -104,7 +111,14 @@ ], "dist": { "shasum": "1e65969965ccbc2db4548c6b84a6f2c5aedd4739", - "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", + "integrity": "sha512-42h1d25nW6G/N7l16Oz4vqCOLIFobFBOwZrBYlCxJ/QuS2o1Gdn1PzSoiYndbnL9rgGIGZ6Qn09AIpyhrkepfw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDn2Qrc+DAxw+20ABU0tpbXyFWAazK7SOB9mnc56inccQIgAc9xuBXOmE37NGBaAA1HGv9RoNpukosY3Fi+QuvBoW4=" + } + ] } }, "1.0.2": { @@ -151,7 +165,14 @@ }, "dist": { "shasum": "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f", - "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHtPpKlaDF3QN9vNEImDylgjhVgE1cPX5dxgADkO3cbOAiBDRht6eiKjXoYA0jCizl4yJnAJLrUoRkZtth0Uw0e5aQ==" + } + ] }, "maintainers": [ { @@ -167,21 +188,90 @@ "host": "packages-16-east.internal.npmjs.com", "tmp": "tmp/wrappy-1.0.2.tgz_1463527848281_0.037129373755306005" } + }, + "0.0.0": { + "name": "wrappy", + "version": "0.0.0", + "publishConfig": { + "tag": "testing" + }, + "description": "Callback wrapping utility", + "main": "wrappy.js", + "directories": { + "test": "test" + }, + "dependencies": {}, + "devDependencies": { + "tap": "^1.2.0" + }, + "scripts": { + "test": "tap test/*.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/npm/wrappy.git" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "license": "ISC", + "bugs": { + "url": "https://github.com/npm/wrappy/issues" + }, + "homepage": "https://github.com/npm/wrappy", + "readme": "# wrappy\n\nCallback wrapping utility\n\n## USAGE\n\n```javascript\nvar wrappy = require(\"wrappy\")\n\n// var wrapper = wrappy(wrapperFunction)\n\n// make sure a cb is called only once\n// See also: http://npm.im/once for this specific use case\nvar once = wrappy(function (cb) {\n var called = false\n return function () {\n if (called) return\n called = true\n return cb.apply(this, arguments)\n }\n})\n\nfunction printBoo () {\n console.log('boo')\n}\n// has some rando property\nprintBoo.iAmBooPrinter = true\n\nvar onlyPrintOnce = once(printBoo)\n\nonlyPrintOnce() // prints 'boo'\nonlyPrintOnce() // does nothing\n\n// random property is retained!\nassert.equal(onlyPrintOnce.iAmBooPrinter, true)\n```\n", + "readmeFilename": "README.md", + "gitHead": "6ff331c0ea9d4525d17d12fb5a1c7933c8d84c20", + "_id": "wrappy@0.0.0", + "_nodeVersion": "16.0.0", + "_npmVersion": "7.10.0", + "dist": { + "integrity": "sha512-LqL69QCiUu9q/qMG/a7l9bsJJQBN0QKOFx2l8RpT1NOu3v3BYxTiRVC0RkbW+8KlLCYtwksWopVWH0dY2r0Kug==", + "shasum": "adf927968d3c4aa3e5cac7a47e714086086dcc25", + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-0.0.0.tgz", + "fileCount": 6, + "unpackedSize": 4203, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgggQOCRA9TVsSAnZWagAAReQQAKQzNIf0bHTunqO7/g8C\nKHEM0IjZqNZcP47lkWZ7YLq0uy2616wMzgW3+fFb1yKtispVKRMNHlDt1Jkl\n8+z0MkqsCHdm2A8/cRuaXpBwT1kbPJkHlnOboWq/ghUAiKznUWJKr0ENoBzQ\nOa6RgMb5M/Twwi/KFeaxltGw5BTx66CzJxHkS23iL6wjAIHQk0SMnkbFyHuh\n6eysYcoMt4+1VcwbGiXvxya5oiihNkr4G78R/2ZLNL2pQQk5b7pySHHMqwFR\nJ3YM91ZE04oCaz7A9rl9KPFgVdwlrNCT0OcEvs95dWH1rvioSqmgrEsDgaXg\nWvui5X3XGZSTIDskAsFBVKV0/fro6nyiKD0F5ysSXeGA6id7Gkvtm+dY//q0\nZF6TAS/GxyASjPccvVaomqQSUxtF2/1/Yp8AC0Z8ZQ5tZRP9J67cxWndauA+\nDk3RKMpLw7WhEnREPYAQ0VEFiVsYIl4TSmv59OYJtW2m0xJ1uvzCQ/EuQosL\n7uhoDp9tiJpuM7t/TYZka/UoK/wt8agauqg/+lbfKJj9Qxc1YYahdn3i2rkv\nQtCrVw0g8octR4oKQPgWQ3fJ1xfxG6g1wzgOOOH3TUDYNMayLusXYWvg1ULR\nuLLRtQyuoxEqKrKjCnmIF9Rs2akdS9z646Y/xNb0EgN5e287mOBxZt9TXDuU\n5Kh3\r\n=LoNR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIF6mVzm0s41VKrmDQ1WYvWoj/topP/d34Ij07TY3IOWjAiBhF8n0zYChG+dFgTp0QFZC2w1Q85OVuyvucAnEw+ts8A==" + } + ] + }, + "_npmUser": { + "name": "isaacs", + "email": "i@izs.me" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/wrappy_0.0.0_1619133453839_0.3872619564603934" + }, + "_hasShrinkwrap": false } }, - "readme": "# wrappy\n\nCallback wrapping utility\n\n## USAGE\n\n```javascript\nvar wrappy = require(\"wrappy\")\n\n// var wrapper = wrappy(wrapperFunction)\n\n// make sure a cb is called only once\n// See also: http://npm.im/once for this specific use case\nvar once = wrappy(function (cb) {\n var called = false\n return function () {\n if (called) return\n called = true\n return cb.apply(this, arguments)\n }\n})\n\nfunction printBoo () {\n console.log('boo')\n}\n// has some rando property\nprintBoo.iAmBooPrinter = true\n\nvar onlyPrintOnce = once(printBoo)\n\nonlyPrintOnce() // prints 'boo'\nonlyPrintOnce() // does nothing\n\n// random property is retained!\nassert.equal(onlyPrintOnce.iAmBooPrinter, true)\n```\n", + "readme": "", "maintainers": [ { - "email": "i@izs.me", - "name": "isaacs" + "name": "isaacs", + "email": "i@izs.me" } ], "time": { - "modified": "2019-08-09T05:47:48.380Z", + "modified": "2023-06-22T16:34:09.617Z", "created": "2014-09-18T22:59:23.410Z", "1.0.0": "2014-09-18T22:59:23.410Z", "1.0.1": "2014-09-18T23:13:15.838Z", - "1.0.2": "2016-05-17T23:30:52.415Z" + "1.0.2": "2016-05-17T23:30:52.415Z", + "0.0.0": "2021-04-22T23:17:34.192Z" }, "homepage": "https://github.com/npm/wrappy", "repository": { @@ -197,10 +287,11 @@ "url": "https://github.com/npm/wrappy/issues" }, "license": "ISC", - "readmeFilename": "README.md", + "readmeFilename": "", "users": { "program247365": true, "klap-webdevelopment": true, - "mojaray2k": true + "mojaray2k": true, + "flumpus-dev": true } -} +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.min.json b/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.min.json index 9d3ed218ce20f..1a2e4c20c1aaa 100644 --- a/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.min.json +++ b/workspaces/arborist/test/fixtures/registry-mocks/content/wrappy.min.json @@ -15,7 +15,14 @@ }, "dist": { "shasum": "8aae4fc6b4cd6be32a4553985bcf32b3ee131e4e", - "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.0.tgz" + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.0.tgz", + "integrity": "sha512-3y8PlpIQuv3/g9rN12ffm6FrWo+fCLlt8mtAruKSVgnPgdV4SoxOF8qmJ+6BXjsfDFe/EMUGFWjCu2dImNHjBQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDWrRxKStHgOvqG0fa7ESlcj8Il3QEuGl9fyomDlesSbwIgICeFpe4kqnMG6kdfOCFsncQzN1SjfME8H+6yXea2VXo=" + } + ] } }, "1.0.1": { @@ -29,7 +36,14 @@ }, "dist": { "shasum": "1e65969965ccbc2db4548c6b84a6f2c5aedd4739", - "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", + "integrity": "sha512-42h1d25nW6G/N7l16Oz4vqCOLIFobFBOwZrBYlCxJ/QuS2o1Gdn1PzSoiYndbnL9rgGIGZ6Qn09AIpyhrkepfw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDn2Qrc+DAxw+20ABU0tpbXyFWAazK7SOB9mnc56inccQIgAc9xuBXOmE37NGBaAA1HGv9RoNpukosY3Fi+QuvBoW4=" + } + ] } }, "1.0.2": { @@ -43,9 +57,40 @@ }, "dist": { "shasum": "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f", - "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHtPpKlaDF3QN9vNEImDylgjhVgE1cPX5dxgADkO3cbOAiBDRht6eiKjXoYA0jCizl4yJnAJLrUoRkZtth0Uw0e5aQ==" + } + ] + } + }, + "0.0.0": { + "name": "wrappy", + "version": "0.0.0", + "devDependencies": { + "tap": "^1.2.0" + }, + "directories": { + "test": "test" + }, + "dist": { + "integrity": "sha512-LqL69QCiUu9q/qMG/a7l9bsJJQBN0QKOFx2l8RpT1NOu3v3BYxTiRVC0RkbW+8KlLCYtwksWopVWH0dY2r0Kug==", + "shasum": "adf927968d3c4aa3e5cac7a47e714086086dcc25", + "tarball": "https://registry.npmjs.org/wrappy/-/wrappy-0.0.0.tgz", + "fileCount": 6, + "unpackedSize": 4203, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgggQOCRA9TVsSAnZWagAAReQQAKQzNIf0bHTunqO7/g8C\nKHEM0IjZqNZcP47lkWZ7YLq0uy2616wMzgW3+fFb1yKtispVKRMNHlDt1Jkl\n8+z0MkqsCHdm2A8/cRuaXpBwT1kbPJkHlnOboWq/ghUAiKznUWJKr0ENoBzQ\nOa6RgMb5M/Twwi/KFeaxltGw5BTx66CzJxHkS23iL6wjAIHQk0SMnkbFyHuh\n6eysYcoMt4+1VcwbGiXvxya5oiihNkr4G78R/2ZLNL2pQQk5b7pySHHMqwFR\nJ3YM91ZE04oCaz7A9rl9KPFgVdwlrNCT0OcEvs95dWH1rvioSqmgrEsDgaXg\nWvui5X3XGZSTIDskAsFBVKV0/fro6nyiKD0F5ysSXeGA6id7Gkvtm+dY//q0\nZF6TAS/GxyASjPccvVaomqQSUxtF2/1/Yp8AC0Z8ZQ5tZRP9J67cxWndauA+\nDk3RKMpLw7WhEnREPYAQ0VEFiVsYIl4TSmv59OYJtW2m0xJ1uvzCQ/EuQosL\n7uhoDp9tiJpuM7t/TYZka/UoK/wt8agauqg/+lbfKJj9Qxc1YYahdn3i2rkv\nQtCrVw0g8octR4oKQPgWQ3fJ1xfxG6g1wzgOOOH3TUDYNMayLusXYWvg1ULR\nuLLRtQyuoxEqKrKjCnmIF9Rs2akdS9z646Y/xNb0EgN5e287mOBxZt9TXDuU\n5Kh3\r\n=LoNR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIF6mVzm0s41VKrmDQ1WYvWoj/topP/d34Ij07TY3IOWjAiBhF8n0zYChG+dFgTp0QFZC2w1Q85OVuyvucAnEw+ts8A==" + } + ] } } }, - "modified": "2019-08-09T05:47:48.380Z" -} + "modified": "2023-06-22T16:34:09.617Z" +} \ No newline at end of file diff --git a/workspaces/arborist/test/fixtures/reify-cases/lockfile-with-missing-parent.js b/workspaces/arborist/test/fixtures/reify-cases/lockfile-with-missing-parent.js new file mode 100644 index 0000000000000..51e9996a1072d --- /dev/null +++ b/workspaces/arborist/test/fixtures/reify-cases/lockfile-with-missing-parent.js @@ -0,0 +1,202 @@ +// generated from test/fixtures/lockfile-with-missing-parent +module.exports = t => { + const path = t.testdir({ + "package-lock.json": JSON.stringify({ + "name": "lockfile-with-missing-parent", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "lockfile-with-missing-parent", + "version": "1.0.0", + "dependencies": { + "glob": "7.1.6", + "globby": "1.2.0", + "minimatch": "3.0.3" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==", + "license": "MIT" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.0.4" + }, + "node_modules/globby/node_modules/glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha512-I0rTWUKSZKxPSIAIaqhSXTM/DiII6wame+rEC3cFA5Lqmr9YmdL7z6Hj9+bdWtTvoY1Su4/OiMLmb37Y7JzvJQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^2.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/globby/node_modules/minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha512-jQo6o1qSVLEWaw3l+bwYA2X0uLuK2KjNh2wjgO7Q/9UJnXr1Q3yQKR8BI0/Bt/rPg75e6SMW4hW/6cBHVTZUjA==", + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-NyXjqu1IwcqH6nv5vmMtaG3iw7kdV3g6MwlUBZkc3Vn5b5AMIWYKfptvzipoyFfhlfOgBQ9zoTxQMravF1QTnw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz", + "integrity": "sha512-CdsOUYIh5wIiozhJ3rLQgmUTgcyzFwZZrqhkKhODMoGtPKM+wt0h0CNIoauJWMsS9822EdzPsF/6mb4nLvPN5g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + } + } + }), + "package.json": JSON.stringify({ + "name": "lockfile-with-missing-parent", + "version": "1.0.0", + "dependencies": { + "glob": "7.1.6", + "globby": "1.2.0", + "minimatch": "3.0.3" + } + }) +}) + return path +}