{"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"dist-tags":{"latest":"8.0.0"},"description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","readme":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)\n\n---\n\n# Jest Specific Snapshot\n\nJest matcher for multiple snapshot files per test\n\n<b>You can read about the implementation [here](https://medium.com/@davydkin.igor/adding-multi-snapshot-testing-to-jest-b61f23cf17ca)</b>\n\n# Installation\n\n```sh\nnpm i -D jest-specific-snapshot\n```\n\n# Example\n\n```js\nconst path = require('path');\n// extend jest to have 'toMatchSpecificSnapshot' matcher\nrequire('jest-specific-snapshot');\n\ntest('test', () => {\n  // provides snapshot file with absolute file\n  const pathToSnap = path.resolve(process.cwd(), './example/specific/dir/my.shot');\n  expect(100).toMatchSpecificSnapshot(pathToSnap);\n\n  //same snapshot but with relative file\n  expect(14).toMatchSpecificSnapshot('./specific/dir/my.shot');\n\n  // another snapshot file in the same test\n  expect(19).toMatchSpecificSnapshot('./specific/another_dir/another.shot');\n});\n```\n\n## With Custom Serializer\n\n```js\n// extend jest to have 'toMatchSpecificSnapshot' matcher\nconst addSerializer = require('jest-specific-snapshot').addSerializer;\n\naddSerializer(/* Add custom serializer here */);\n\ntest('test', () => {\n  expect(/* thing that matches the custom serializer */).toMatchSpecificSnapshot(\n    './specific/custom_serializer/test.shot'\n  );\n});\n```\n\n## Extend `toMatchSpecificSnapshot`\n\n```js\nconst toMatchSpecificSnapshot = require('jest-specific-snapshot').toMatchSpecificSnapshot;\n\nexpect.extend({\n  toMatchDecoratedSpecificSnapshot(received, snapshotFile) {\n    // You can modify received data or create dynamic snapshot path\n    const data = doSomeThing(received);\n    return toMatchSpecificSnapshot.call(this, data, snapshotFile);\n  },\n});\n```\n\n# Limitations\n\n1.  Snapshot files should have an extension **other** than `.snap`, since it conflicts with jest.\n2.  In order to handle the `--updateSnapshot` (`-u`) parameter provided from CLI, there is an abuse of the `SnapshotState._updateSnapshot` private field. TBD - try to use the `globalConfig` to get this state.\n3.  `.toMatchSpecificSnapshot` does ignore a custom serializers strategy. In order to support custom serializers, you should use the `addSerializer` method explicitly.\n","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"license":"MIT","versions":{"0.1.0":{"name":"jest-specific-snapshot","version":"0.1.0","main":"dist/index.js","scripts":{"example":"jest specific.napshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^20.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"^20.0.4"},"gitHead":"bb0f6130e5cea0cd9981840a87eab762ff9491f7","description":"TBD","_id":"jest-specific-snapshot@0.1.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-20xwgYj+vvYRRc8X4QUzYFBEfMtAGFwS+DOOxzh/zzVH+Dz3GiQiK8ZU6QA9tb6r1Ge1KlOygzmfbZeHX7VXxA==","shasum":"c3a6ab42d086c7509d1308e9480ff3f6eb9e13f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-0.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3jCAfwLUOPNMjrsHN48X1vLr2yVJ94qvvoGsTY+HNGwIhALLBFQv6jMghRew+S2KnpigJBXIHk6P0N5iaJkRjlgFB"}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot-0.1.0.tgz_1501626230958_0.6193886413238943"},"directories":{}},"0.2.0":{"name":"jest-specific-snapshot","version":"0.2.0","main":"dist/index.js","scripts":{"example":"jest specific.napshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^20.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"^20.0.4"},"gitHead":"d67f5d0eb2429309456cf9926a766991813ee360","description":"TBD","_id":"jest-specific-snapshot@0.2.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-6cVUQ1qxF4BqqWa0U3DaY3zMsc15ynzUxrnRPq7R6fhJKOeT57FN/TnacdV+YSiqYcRPrReNRxfm/4qQ4NoIAA==","shasum":"271422a09b87cff42a70651634b70918135c6330","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-0.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDy0NBIhQvJZd3fUmT1TCbaZ3FBIUH5MvObpFa1XzmAtAIhAL20kv831N7I0EaHbeicqbagEhEW6CSB5sq0VUnPzL/L"}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot-0.2.0.tgz_1501688685741_0.6102849771268666"},"directories":{}},"0.3.0":{"name":"jest-specific-snapshot","version":"0.3.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"example":"jest specific.napshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":">=20.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"*"},"gitHead":"dc754db503f71a91d692442c515969fd9fe254c9","description":"Jest matcher for multiple snapshot files per test","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@0.3.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-BzwtkVrYwKSE/ZLwGgG2uoyBe3U9Wl8hdRSzi/BM66m3Lnue9FN+Y+GY5LMapdcxg750AkFIf6O0FK9RCxqdOg==","shasum":"89d37c7c2e94180c7b58bfedf9d9dc172ebd19e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-0.3.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2fOaZV3RxAO90NiFDVilRwuyLds3FDTrHqvFf7yLKGgIgYDmN/dGO7VLooS/JE8r54hpUOESsUSUP3nhoViIFweQ="}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot-0.3.0.tgz_1512548357394_0.38026644312776625"},"directories":{}},"0.4.0":{"name":"jest-specific-snapshot","version":"0.4.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"example":"jest specific.napshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":">=20.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"*"},"gitHead":"bbaecc7af16c738888202f3ca25e4b85feb34ca7","description":"Jest matcher for multiple snapshot files per test","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@0.4.0","_npmVersion":"5.5.1","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-1j80sXLjYOT9uEYwPS4bA7ZP+ltXRxs79Z1EG1rUT1ppNTcNccfOcO0KZ2DgOd9w91dIPNtHw4CqZKK86el92A==","shasum":"31d1a644a3d86e481aa3cb8fd62eddc1ff4ea676","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-0.4.0.tgz","fileCount":9,"unpackedSize":7319,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRYZyCMQRB9nEMxBSF7DyVDQRCiGlHmuYKmwCzGTlgFwIhAICPtGkq+PdOH1sHPVv8+Pd/Lbz1D7Qr8Rygtxt9n3XW"}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_0.4.0_1519860869310_0.2694099743764371"},"_hasShrinkwrap":false},"0.5.0":{"name":"jest-specific-snapshot","version":"0.5.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"example":"jest specific.napshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":">=20.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"*"},"gitHead":"961ac0998ed9e8c797020e763bb6e5312ed3c346","description":"Jest matcher for multiple snapshot files per test","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@0.5.0","_npmVersion":"5.5.1","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-jtcxwY9DnK9gT7HjS1bGL8SF4NV8DL2/CzUmuL4aZxwmAk4gEW8qOnXkU6kD3B1T4Y+Zj9uvN8zWqzcftT0ERA==","shasum":"92201b5f51fbe56cc744bdfab08f379867c1bb18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-0.5.0.tgz","fileCount":9,"unpackedSize":7339,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBmzVGUmuTIfA72irw2IGrEGAn0ySHoINTfpOjyzqHgNAiEAipSo3A+jYmDlkuTggMZNUgj5atBbTAZKbQ7EC+oRNqw="}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_0.5.0_1520241849183_0.8516078189483591"},"_hasShrinkwrap":false},"1.0.0":{"name":"jest-specific-snapshot","version":"1.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"example":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":">=20.0.3"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"*"},"gitHead":"6b70a33b1e225b220f8ebfa58523f1cb21115e7c","description":"Jest matcher for multiple snapshot files per test","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@1.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-EjCK8Ob8eneeQCdBuO06J1v1C1jklKK7VvCOG/iwQx+8byZ7iCY8+d9M7xlUJiu76ubycXtSkIrPrL+nqjJsjA==","shasum":"157c79e2534a6fea820fd475f5d17740c8f90833","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-1.0.0.tgz","fileCount":9,"unpackedSize":7972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHnMOCRA9TVsSAnZWagAA9okP/i94xk37x3h/16fjjkhm\n1MsspUQi0ejoJJMiB8LSUJVvdeu2w0fKzgsRq2xv5uDI2ouc1ZE4HX8Ifvy2\npG4rNpbFHJTnqBit/ZWmRPyz//rEy+IigU4DFmSf+3CuMlGAzCqMkON4vzI6\ng+XifItsID18vD9GuxNYV5DOX2IyIgEDsCWxVhlJ0Ao7uQ/2uWHqzf/6das4\n+7N8O8C4gDR9k1xK099WidWNPKV4+QRUzU7ZxU/n3W6f21yuPnuB6SSDIIaR\nWdaUK6cE7806Ly598mMbUd13NKZACZTVJ5F03is8ZsZYk6F/CmEejN5L5sCg\nG0sfNct/EcU+dIVahLKuANpQxkExJpXRjBR7GdttQzbt0cIoA9lom57mhZRu\ndEwy3LuRE9o6DQuEgnaAu5BUusqHURV6eGKqbP9ZATqLj7DeSiCiqMFEVTQ8\n45MqDeVpMhvnzetluLvnlvyZZHm3QKjljzzh/y+0bDQP3UuEvVMPEToJ0AJ7\nJlzj7nbLcM4vIzngMNDHWIJhvCB4PAV/4oJ2zbTn0GwZ3InFxjAI6HgFp6jp\n/hNDcQX8VCmm9rfou30qMb2f4dVkEvHRjcPzQO9rLHE1OCDOEtlQDSrWQwEJ\ncIOlBKYOULtbfQEpzrOsadzyTdvwbwj7T5fhHQX5DgRWWUuUz4g9Z6KvaVht\nmLB2\r\n=awvC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDbWeJZ19EHMX9u4QGuRHTs2tWuGyxqFNd7SLn2KnWvJAiByLPSwbxLqlBE9Vjouf1Aj+iUSzidBk+PS4MswwLTSew=="}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_1.0.0_1528722189628_0.2042779275714337"},"_hasShrinkwrap":false},"1.1.0":{"name":"jest-specific-snapshot","version":"1.1.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"example":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepublish":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^23.6.0"},"devDependencies":{"babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-eslint":"^7.2.3","babel-jest":"^20.0.3","babel-preset-es2015":"^6.24.1","eslint":"^4.3.0","eslint-config-airbnb-base":"^11.2.0","eslint-config-prettier":"^2.3.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-json":"^1.2.0","eslint-plugin-prettier":"^2.1.2","eslint-teamcity":"^1.4.0","jest":"^20.0.4","jest-cli":"^20.0.4","prettier":"^1.5.3"},"peerDependencies":{"jest":"*"},"gitHead":"80a5a0d3901d9ca90ed7169c6fe7a8ede432dcb4","description":"Jest matcher for multiple snapshot files per test","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@1.1.0","_npmVersion":"6.4.1","_nodeVersion":"8.14.1","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-RXfqUh64epirdCkLvrM6hOEu7emxQWHUJ2+gh9IplJJ88hGCjWQh8ODwEfbQPSJ4lXVccX7Nw7HZ2QKBvOspUg==","shasum":"3eaa12a79105ebe73453e2e174c4c0014445d890","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-1.1.0.tgz","fileCount":9,"unpackedSize":7852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcX7mBCRA9TVsSAnZWagAA6dIP/R+LbfP2ni7i+mBkzKb7\nd02Imj/bzqFPkaOr2IbGj1YaHPsTyxLsUylSxn76fw/5AMd2y/rkygKamouF\njRAEvzLi2MZarBnyjx8DOy+kMxSBS7oZ41l7cf1OzWljgJuOM2GnJQZCqQ9d\nNx7EuNSLrh6kRQkW/V46dmQ3+/BP4lIQ/F8Vg6482Jwl+k/TuM+h4HHzqmpO\n6HokZJJYtDs9WmkUA7WWXUtK1tvRTUDh0dxe1wDEYfqr03ltJeIXkNkX0Tkr\nIwNoAi2Y3LXnNuK3lDqiIPAuC9jLPxbK3crYwlUIpb17ButZVZkhoyFORmsr\n7IpuJdc0xFCVmSKny9O8tAqHR++evYRo0RotAPqtpCAHApDujaxdjbQi7XaG\nMAcamjxdaekzWgBFIj88qgqF5vhUSyeJ5MNRxZTzmQ9xux6sF1PY6uU+OzP6\n+YsjOohp8V7mAf8Sp7j/hcfpQh6mU8gLXonFUBeKkG5ggZYGGTgSbuQOxp2c\nejEevaXa2wwGlb24S4FMBaVTfBf+2dNe5L4kpJoCxPijVaLqEKcyJAH4Yngu\nUMRbHwXSN8u6EKO+W2Su9iTm29plgmBOYOL0ViUd6diJXUmD2gEdMXHE9UtR\nzPmN+hqCoVeWj3PNZOwlubMRXLJnNP5lLaz6qLXtreuDAQJG81IBjoGaoQMn\nQwzA\r\n=swhj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE+x8hOBuL83l2wEGfNjR1VoOqUYI0i/jL9Gh6NftqL+AiA9pz+Az4ksm0dYk+RhxDQSwKHRup9XomW3CD4rPeforg=="}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_1.1.0_1549777280686_0.30357421150711694"},"_hasShrinkwrap":false},"2.0.0":{"name":"jest-specific-snapshot","version":"2.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"example":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^24.1.0"},"devDependencies":{"@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/preset-env":"^7.3.1","babel-eslint":"^10.0.1","babel-jest":"^24.1.0","eslint":"^5.14.1","eslint-config-airbnb-base":"^13.1.0","eslint-config-prettier":"^4.0.0","eslint-plugin-import":"^2.16.0","eslint-plugin-jest":"^22.3.0","eslint-plugin-json":"^1.4.0","eslint-plugin-prettier":"^3.0.1","eslint-teamcity":"^2.1.0","jest":"^24.1.0","jest-cli":"^24.1.0","prettier":"^1.16.4"},"peerDependencies":{"jest":"*"},"gitHead":"427a52b21ae9594a3ee69538f5466e69f7ab8920","description":"Jest matcher for multiple snapshot files per test","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@2.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.14.1","_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"dist":{"integrity":"sha512-aXaNqBg/svwEpY5iQEzEHc5I85cUBKgfeVka9KmpznxLnatpjiqjr7QLb/BYNYlsrZjZzgRHTjQJ+Svx+dbdvg==","shasum":"425fe524b25df154aa39f97fa6fe9726faaac273","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-2.0.0.tgz","fileCount":9,"unpackedSize":7863,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcc6taCRA9TVsSAnZWagAARPEP/26GYl5uq78hyFlENOu8\nk6OZH9rjTljJd5XJoY9/JWfp+LjvbHBiCzs3owktCVZJtYX24lHrp53lllBP\nfbDp67sMN1eUDZ4ZEz3ofi2IbOQp9AR3A6IIW+cTjOreDlGPBhCRMa5SLki8\n5QZ6Jm5xId/5HoXdS2Kz+EX24KKP654QknscPZ98YmTmLdyu74AReIKKhLpX\nYlxklR3z6zZhrPCe+/PqVFcx9r4eunDayfVcUpmog30hI509HfYdAFAOXWmu\ns6yMuhQtNZO3J36+fuzq+AG79VEeo3BRLMhAUdYr2BXaN79rcRJ2ZsHKx+X6\n2SOgplWu44WGZ8+/eRX9vwdF5MZ18Ry0vGG5wROZyDmSZxNnkfh3NT53Pvjz\n/oJmxWMoMrHNIayKuxw46AsTL0umuypbm9oQC36kyuC7XpPZY/MqLhEJCvmY\nYEJcOfqwkkVFf/w+/TXKnoEjGKo4A+INYz4qAN51g8UgA6+PSgjVF04R1CUp\n9Bd1tlKzeqx02GE5NGMFB7EeX19/W2rAlB9r2XCelOHNcGJyPiraLXsGbGOt\nu/H1WcjGOtjm0pQ12ceboyrmXfkzcvYdUxQQ76doaygQD9yA6cZ+NlzhuSDV\nQYPIi2j1armWsLakSSQ9gbM4ffHGEAMaAiO/h9t2PjxzjRlmGb8C4/NCzF2I\nMZpj\r\n=Y9ZA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyWAaJmOhqf8/glvlNeSWNT2pqygwjeampdb8GYVqb/gIhALUlWk/ElIBe02jbPai6yDrghcyhAeTbu2O+yfqnkYX8"}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_2.0.0_1551084378145_0.242390312501491"},"_hasShrinkwrap":false},"3.0.0":{"name":"jest-specific-snapshot","version":"3.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"test":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^25.1.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","babel-jest":"^25.1.0","eslint":"^6.8.0","eslint-config-airbnb-base":"^14.0.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","eslint-plugin-jest":"^23.8.0","eslint-plugin-json":"^2.1.0","eslint-plugin-prettier":"^3.1.2","eslint-teamcity":"^2.2.0","jest":"^25.1.0","jest-cli":"^25.1.0","prettier":"^1.19.1"},"peerDependencies":{"jest":">= 25.0.0"},"gitHead":"690d14b13e538cc3705e6b72e4232006077fe1b2","description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@3.0.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-dMEDxj762XleVVUYnxHbRypWOxRwV3HsolUZugISyFu8jE6Xz58TkeKeXxRfT9oG6U8zxPggrH+1MSNVyLwGqg==","shasum":"c203a6bccc572832aea0278feeaa3350567a306f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-3.0.0.tgz","fileCount":10,"unpackedSize":9927,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVOvGCRA9TVsSAnZWagAA7P8P/1sODnT5do4/jQqFW1Ia\nonu9ZLEehYFUOT535P98DiNsMGr8mqE50o3yTbYHfm2FpahqqvYgh0niWA6S\n4umcabOM6+gdjY6DpAgAxqvdzgQIfV6ii3b7Y7MEsJ08xvEFvLxjw+DN6Dky\nCQnf/GBv6Wfv2A+NMqlBIkOBZfll/Xh6gCyTepLZMM5Kxb/WwVictiCnEuuL\nMcVVWH2Efkpge/tPnbkpQSwNl4xlUlC8QXDGXgrW23+OTVlAUJ8kxw7J+Hif\nBp1F0uVGR4q43NJo0WSVOo2IOAv+NQKW9zVwUe0+OTMfImA736WcgODF9AMH\nSTSPj4YPZAQ1drAoMB+EgYUVkuDBXoJaqdRt58R48nh9TI4JzYbSQFQAzgSU\nZREMurX0ceYT8cYNjVeLM3fJP/jyRTTNGGJDehuoCiDmxIJKNYkaxCcs0Kb6\nc1CauAz4Ue36shcELwkjBJRNKbuRGhAybO9Hj29LTrn4T7VU65+46CQyzauX\n4OI5h6fMpH9Cq6HABTio59PeMJlcII+BAOaa6KLQ6vI5zwk97j9JA4BVPmno\nhbYeGZvs7i8aJLh/NqXtneO9j9qvS3vpuaYzrkdp5xpayxkbh1d1e4Q52tCi\nqgDZWOy2qC8cx38tqURZwum4358wbD9CtO1dbfk/2QvkfVKc5MLVnRonDlP6\nHBLe\r\n=VR1f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGVBJ3Z+tD7DBrY9X/s+3pAX1bIIj3rJGqVlaBnm8IrfAiEAgzENXgfDXyEeistuT7juOiQYo84XcXfXLHKzt0IeGc8="}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_3.0.0_1582623686408_0.9326761321931463"},"_hasShrinkwrap":false},"4.0.0":{"name":"jest-specific-snapshot","version":"4.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"test":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^26.3.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","babel-jest":"^25.1.0","eslint":"^6.8.0","eslint-config-airbnb-base":"^14.0.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","eslint-plugin-jest":"^23.8.0","eslint-plugin-json":"^2.1.0","eslint-plugin-prettier":"^3.1.2","eslint-teamcity":"^2.2.0","jest":"^26.3.0","prettier":"^1.19.1"},"peerDependencies":{"jest":">= 26.0.0"},"gitHead":"f62668ef971c87d5cfd454d1673b9cc5dec3aace","description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@4.0.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-YdW5P/MVwOizWR0MJwURxdrjdXvdG2MMpXKVGr7dZ2YrBmE6E6Ab74UL3DOYmGmzaCnNAW1CL02pY5MTHE3ulQ==","shasum":"a52a2e223e7576e610dbeaf341207c557ac20554","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-4.0.0.tgz","fileCount":10,"unpackedSize":9900,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfM6UOCRA9TVsSAnZWagAA1vwQAJBWGYaK4KzMp2u3onOv\nCJux8lwJEm+PKi7mebRVoKNjFgmMPeBBdaPuxa1wRiYyYH1NVN7y/XD92QLC\nVhlKrv2F4U5VEvu1b1/P1deOe8vFFOkxgkJmxyzAaV/8tTItTiPWHxRuiwGm\nuMresbYbZLH5SUVUTYYAD1ofJAsb+gX3XYVtTz/6jAlSviFGR0oA1tFaKI05\nHRDGoH/cIq4gn6G1x3iL15WQhF1pv8A+9SpVuWFHhAiRLLUDu+QdMiZID4vB\nC0WauulEeqYI1ZsnU+J4+41Ry7zUZ50X0O/tA4hnyAs1A6zEyQGnUSNvUYBJ\nhtMiTGtj7nphkPdFem8dnvRctLEse43JmiKXYEoSYzT0MDjAX52R7e9KC8BF\nliJ+zdoDDnGE5AG10SJRLSe5WIIZ4hH4K9tBZYXQev/fGmqaArMj6jrQgtvm\nju/VBo8Q4utKl9Kpu0Js+xxaPhTvl8jWyTMR0Kbe7ehexQP7Jo7DKCbJfAxe\n5OlzKRtYuw+AsRF/oAknlRNtvi+xc+bnQDnLCELaIPrx/ZSR6G72MKbDMxRg\nJEujF6RSsxnzsCsIuNtslrugl/9p6JWhvHdqvR6sCxWZmtrmh4JMAla57ISH\ng7Q5IVkrJaCNRx+YNNzMZjEux6e7sOMM1iaPi/ojxVaYbTmhtDEU6yXZPdrC\ngr5u\r\n=zObO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFNYwrLbgazCh/Ke8l5HQGk7t3yzN5M2IEACf9+LQWFBAiAhKKrUOQ+M3bAv09GrEMql7W3dXyN9w9nY2nAzDT0Itw=="}]},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_4.0.0_1597220109639_0.39645637262297084"},"_hasShrinkwrap":false},"5.0.0":{"name":"jest-specific-snapshot","version":"5.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"test":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^27.0.2"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","babel-jest":"^27.0.2","eslint":"^6.8.0","eslint-config-airbnb-base":"^14.0.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","eslint-plugin-jest":"^23.8.0","eslint-plugin-json":"^2.1.0","eslint-plugin-prettier":"^3.1.2","eslint-teamcity":"^2.2.0","jest":"^27.0.3","prettier":"^1.19.1"},"peerDependencies":{"jest":">= 27.0.0"},"gitHead":"4cf2c5b632f6bda0f3a7bd4c88b20d9ae8ee0428","description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@5.0.0","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"integrity":"sha512-V65vuPxZQExD3tGbv+Du5tbG1E3H3Dq/HFbsCEkPJP27w5vr/nATQJl61Dx5doBfu54OrJak0JaeYVSeZubDKg==","shasum":"48f72d5613af7f3e30df75b6b3534db6bab32ea0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-5.0.0.tgz","fileCount":10,"unpackedSize":9919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgs+tlCRA9TVsSAnZWagAAgNEP/RGKPFi+qJB7ndAynQc1\ndSPsx7NQsBN3FaT+rtOKWbhPpCASvoNpw2tUCRGzIVdAFh4NqQW6opzg2FrA\nQNqkUmyzUNhmTACVTVZe2mfANBLmW7eNWW/43yHwXr2/ZfjsPhNjBXGtS1C0\n4/0dxTd6fN5RSqTzUAV+5A6b0zm4AnOfRWOeM8J7/qnCj9iFbKJaNKG0m9t9\ntMVwcQM79TUXjyrNa9S5YgXSvt0x8kGPePeqpA/G53HXNLs8unVpqvnPaqyj\ncCBoiz7jceDH5rGYNYvQvozRcLYmNEM0/4qL0glaFMmXi23FIRIawIvThzge\nXzMRo/sifOV3T+Gb+Of4vJFCiCfOoOWZBegT8rx/KC41cW1uf3eDRspSgml5\n5BGe5pZoYcoiPiLagLDrAXxLNUOPDWx5Sq93bMUkWW1vKE9YnfygoMHJemUr\nwX6rAgYsWbTweMBiV2lGtBlQb5WLAW24tyKajg8ZEcbwtaIeqhOWhR/rnJHf\nwjoTpaNsVEWhcmbO/2CzNFyBt7B4/TQcD68sJo9oa2+npozMlu9wzYiA/+bF\nJvEMV629aTC2z3Opuvh8Jfmb/rd3F6oIGgYAKja/ovkphL8mkflRANgGTVGF\nYiGpRTk+7W8KOGYD2AgRgPPrUSqfjvsxg1eBAOJ7Xo3Kzw3I2CEbiPZEQzCW\ng+aj\r\n=nDfs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDm8sbEnXhR0T4X4c3Ez41E77HTCJvvl0nOEB+TUfmD1AiBQFk+04NOkBCmGkLxYspSSCQKHqG3FqTDu/4hVYv/BTQ=="}]},"_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_5.0.0_1622403941373_0.5341514581520359"},"_hasShrinkwrap":false},"6.0.0":{"name":"jest-specific-snapshot","version":"6.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"test":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^28.0.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","babel-jest":"^28.1.3","eslint":"^6.8.0","eslint-config-airbnb-base":"^14.0.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","eslint-plugin-jest":"^23.8.0","eslint-plugin-json":"^2.1.0","eslint-plugin-prettier":"^3.1.2","eslint-teamcity":"^2.2.0","jest":"^28.1.3","prettier":"^1.19.1"},"peerDependencies":{"jest":">= 28.0.0"},"gitHead":"b9cadec7f64150e17939d6c0e677bf992fcc1cd3","description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@6.0.0","_nodeVersion":"16.11.0","_npmVersion":"8.0.0","dist":{"integrity":"sha512-IiAfq0bmuXNwRkfCO3mLTCMhZJBdU05y/zEUKRk0KDhW6WQ7ZL0xTgjjtMrfLb0h+o/i+1/N68Ls3NrIFTykiA==","shasum":"8373589825234fbbeef1bf054f5a6720a15a54f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-6.0.0.tgz","fileCount":10,"unpackedSize":9923,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIADw53rx3tBlYS6zaYoUj22BkNelbo3GZMIx38ck7LBJAiBGL0yDrFf3tmwyIROs5zXob1k9FjT0sNZiz7yQsJ7F/g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdKcGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6Lg//WQJjFyyW5vG1subiuC9qd3bxeUG0wuGc1DNtYMsQ39EeY+5a\r\nfN6OtY3t7wgVglo7F6US7gdcm/+s1ADfaQltxvYdFikW6l4nMS8xtZ8h+g+z\r\nvRomjySwA5zp/D6queA/FZhAWpKvERTEUcXa25IGK0T8SsNapYIA+xafBIqi\r\n7QvQuSOD1iQwGnlX594THCnSBYbL4Gjs0M62xetr7O6w6DakRksJRSXfeaj4\r\nnD2nmYoMPJSjDJvWvUo8mtEz0STmxH162YzEEfiuDkx3vvGc51irlzI5tcNK\r\nM0dD7XauNFFrb36IZvVvVDWgGrJe6zAsa2PIxX2ohpMXtYKAV7MvyP6In0G/\r\n5JEvnaCBf5O18wUxJ3DNb1LaSrY8Bibp6WZ7g2MEUmXFM9ouqKawySZFAyRu\r\ndbN6XnW3vDp1mA0SPKKRl+ytvlwIWJk0WBC7NpYsgJ0VmVcsE7iyZZK5B11S\r\n/NlOL0NxFz+VIJ2jsqiOb5dYo2vMRZ2wlqDA0NmW+MoxwvRYIIz6PawvxE95\r\nZWdwRMMYmVBvVfv5CEWXU72cbuwxR1/7q3PvRtQqmofRBtJXBydnJExXlm4b\r\nNPPo3Y3nxSZ6CeoD2v4ocW3iJZIrpdH0JJG7yImb8A9tMjUPx9AHDLL9GaE8\r\no5qASg1Ko4zGFfwV8WDGuGzo1KBxukWulb0=\r\n=7Blf\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_6.0.0_1668589318025_0.693279913452574"},"_hasShrinkwrap":false},"7.0.0":{"name":"jest-specific-snapshot","version":"7.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"test":"jest specific.snapshot.test","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"jest":{"cacheDirectory":"./.jest/cache"},"dependencies":{"jest-snapshot":"^29.0.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","babel-jest":"^29.3.1","eslint":"^6.8.0","eslint-config-airbnb-base":"^14.0.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","eslint-plugin-jest":"^23.8.0","eslint-plugin-json":"^2.1.0","eslint-plugin-prettier":"^3.1.2","eslint-teamcity":"^2.2.0","jest":"^29.3.1","prettier":"^1.19.1"},"peerDependencies":{"jest":">= 29.0.0"},"gitHead":"fe8545f157687b6ee1bf245579de9829977c1c15","description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@7.0.0","_nodeVersion":"16.11.0","_npmVersion":"8.0.0","dist":{"integrity":"sha512-Ut2YItOYFC88Pir/JPN8Cgjvf60N4ZPmIqGJ2iZI+c9SLR27hwJxaEngKpW4RurPb+p45BbSuZoKe9SlVIylQA==","shasum":"c8851bc263b780c0fa750462f61bd98fe956fc64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-7.0.0.tgz","fileCount":10,"unpackedSize":9923,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE370F96x0buM1THbSo130qba8laqUL4Ky8a4QIvnfYFAiB9JUeu2kWGjBw94I9mjN8/esGL2oUcImt5hRh0FvZrcA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfg/iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpgOw//cfqqcc4S4f0mtiCxoeUhxKUgMKwAjQ4R4/sVAw4XOUtOE8vh\r\nBqkOycD+Txwo4vd3U6LmwMqcOcmMQ94kve8pd5VMRAQRIscGfZ7/kBvnIrHd\r\n2vXAostGJIMfFfY2rVarckP07fVXLb8AMU3wYSayGwSS3msHfmfr46HD7aK0\r\nsBWwdvv6ln0MjGuhw7JOQyL1BIoEQDWamEwpeRjRC5Bq6Ua8TJAC1vWc8wsK\r\nIl7KKCqC/J9qqHXX/7ywJlLWa/IZ6vKb7MiQDSwEZnyC64j3o7LCheXpwTbX\r\neDmbKntVjy0LnPkaWKZw0f5LELPkr3zh+5waTzRDfyFxBIIoMeEPuCh2TuZj\r\nnF3eWGUV6tNnDuG/QITSv2D3fMtvfz1Jad5uz1EpaLK1mumY3cuNyzNBep62\r\nFRYL+Pjl3qnW6K+nykczSdVEpBd5Qb4NPypEYXRdMS48MrU/bHF6c8fuGfPj\r\nMPvt4o47C4s6fKyHmDDvxWX+6HPwARHlKIDJc0qxWQEjlDthLwL7lWFadzZo\r\nc8czOMD9pv/Pc80kQP3PjlPgEXu1Jx+PT1P0jRrSYlOde5OfdyQ9EtoZSgBW\r\nIpCAzH/RPIe/WZf+uuYo/yxcBS602fztDN3/Q8b9Tf2qlFE9em3smeqsgDsv\r\nh4nYj+iKJ4yk7Ws4DNwb4jgXeAGR77b6W1Y=\r\n=8RbR\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_7.0.0_1669205985839_0.34953743695749995"},"_hasShrinkwrap":false},"8.0.0":{"name":"jest-specific-snapshot","version":"8.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/igor-dv/jest-specific-snapshot.git"},"main":"dist/index.js","scripts":{"test:default":"jest specific.snapshot.test","test:old":"jest specific.snapshot.old-format.test --config jest.old-format.config.js","test":"npm run test:default && npm run test:old","babel":"babel src -d dist","lint":"eslint .","lint-fix":"npm run lint -- --fix","prepare":"npm run babel"},"dependencies":{"jest-snapshot":"^29.0.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","babel-eslint":"^10.0.3","babel-jest":"^29.3.1","eslint":"^6.8.0","eslint-config-airbnb-base":"^14.0.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","eslint-plugin-jest":"^23.8.0","eslint-plugin-json":"^2.1.0","eslint-plugin-prettier":"^3.1.2","eslint-teamcity":"^2.2.0","jest":"^29.3.1","prettier":"^1.19.1"},"peerDependencies":{"jest":">= 29.0.0"},"gitHead":"106b40f0c2b2c4f0740c0138e3965a5eebaf9812","description":"[![CircleCI](https://circleci.com/gh/igor-dv/jest-specific-snapshot.svg?style=svg)](https://circleci.com/gh/igor-dv/jest-specific-snapshot)","bugs":{"url":"https://github.com/igor-dv/jest-specific-snapshot/issues"},"homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme","_id":"jest-specific-snapshot@8.0.0","_nodeVersion":"16.11.0","_npmVersion":"8.0.0","dist":{"integrity":"sha512-PjK0cqPbN3ZGU1pdP78YBEFMsS1AsV28hIHg249E0v/bTtGAJqDm7lNDLj0Cs0O26P2sulbXbgEQU9xLm34WmA==","shasum":"c80af21dcd95b6c46b73f71618f887ef3825a44c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jest-specific-snapshot/-/jest-specific-snapshot-8.0.0.tgz","fileCount":12,"unpackedSize":9979,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdcNsJBIWQrvZjuYp3Za2RitG0ZgutzahCdsu3cbE1qwIgHJSvrqauHdmzAgYaNJa6xtW1eMMC8vUivRy8QUAeNt0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBH9RACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqVaQ/+InkmlMkV6Hfr0MX0RofO7wGElC1f7hA9gvrl5DnWigHYcv4M\r\noKhUhZcqyqI3b/Vk87xzIfzB5BefpYkvCfJxUIvJi4zobEGU3E6qc9ujrpiY\r\nh5i8G+fhsmkK0rRKartvK2HsTveKoODTJ/jv57lcoN2m7UO6jn5oBcoshU4A\r\nojGmxr0SJ0RYy6bO3dC+k5708VCGnGBTWfTV7mO9/j93jal+NXBUNAtJlQqw\r\nYCalKe5D3M34mku2Hi19zgAp22fEmz1B3LavPfTHemktjXx/ieFgdgrkGAFt\r\nPpgbJZ3gYJXV1ITHtZgoPB9CJqVH5utF6btVDskfxw2aZViCbSq3ZNb4v2y5\r\nKyh7mOpW2Y/+ZGH+PiIluUMocJgUVUh3hUtoJPN9CJ5Mp7eTzk5Ufn0mzyW3\r\n+I17e5ABaAmIagzcuor5FdQhmnXLMRCjgSeGHoFvVjDMlRIrO9An0BEqfNwf\r\nuS2wTKUGClsDDNems7jnhyEPVCDbI8FExx/Q+aklfCIpnVe0vyedrBjeeE05\r\ntchLBM2lPxMnuQblQ6wnT2eVV6K4c/AbaFECbRnUzZejYUAy4vQniB/wwGV9\r\neWsMmQYh8am4C4umz+f8hsD7JBoKftNv39Y5eLaQjsijw24ZmEIXdIxfpFEB\r\nEiRZICV6rV++yyxRMHfdgKl/F2sIA6co8q4=\r\n=csAU\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"davydkin.igor@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"davydkin.igor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jest-specific-snapshot_8.0.0_1678016337659_0.47639100587128036"},"_hasShrinkwrap":false}},"name":"jest-specific-snapshot","time":{"modified":"2023-07-09T22:10:13.447Z","created":"2017-08-01T22:23:51.911Z","0.1.0":"2017-08-01T22:23:51.911Z","0.2.0":"2017-08-02T15:44:46.658Z","0.3.0":"2017-12-06T08:19:17.455Z","0.4.0":"2018-02-28T23:34:29.413Z","0.5.0":"2018-03-05T09:24:09.247Z","1.0.0":"2018-06-11T13:03:09.718Z","1.1.0":"2019-02-10T05:41:20.784Z","2.0.0":"2019-02-25T08:46:18.298Z","3.0.0":"2020-02-25T09:41:26.652Z","4.0.0":"2020-08-12T08:15:09.821Z","5.0.0":"2021-05-30T19:45:41.509Z","6.0.0":"2022-11-16T09:01:58.192Z","7.0.0":"2022-11-23T12:19:46.058Z","8.0.0":"2023-03-05T11:38:57.805Z"},"readmeFilename":"README.md","homepage":"https://github.com/igor-dv/jest-specific-snapshot#readme"}