{"_id":"mem-fs-editor","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"dist-tags":{"next":"12.0.0-0","next-8":"8.0.0-beta.0","latest":"12.0.4"},"author":{"name":"Simon Boudrias"},"description":"File edition helpers working on top of mem-fs","readme":"# mem-fs-editor\n\n[![NPM version](https://badge.fury.io/js/mem-fs-editor.svg)](http://badge.fury.io/js/mem-fs-editor)\n[![Coverage Status](https://codecov.io/gh/SBoudrias/mem-fs-editor/branch/master/graph/badge.svg)](https://codecov.io/gh/SBoudrias/mem-fs-editor)\n\nFile edition helpers working on top of [mem-fs](https://github.com/SBoudrias/mem-fs)\n\n## Usage\n\n```js\nimport { create as createMemFs } from 'mem-fs';\nimport { create as createEditor } from 'mem-fs-editor';\n\nconst store = createMemFs();\nconst fs = createEditor(store);\n\nfs.write('somefile.js', 'var a = 1;');\nawait fs.commit();\n```\n\n### `#read(filepath, [options])`\n\nRead a file and return its contents as a string.\n\nYou can alternatively get the raw contents buffer if you pass `options.raw = true`.\n\nBy default, calling `read()` on a file path that does not exist throws error. You can, however, pass `options.defaults = 'your default content'` to get a default content you pass in, if you prefer to not deal with try/catch.\n\n### `#readJSON(filepath, [defaults])`\n\nRead a file and parse its contents as JSON.\n\n`readJSON()` internally calls `read()` but will not throw an error if the file path you pass in does not exist. If you pass in an optional `defaults`, the `defaults` content will be returned in case of the target file is missing, instead of `undefined`. (Error would still be thrown if `JSON.parse` failed to parse your target file.)\n\n### `#write(filepath, contents)`\n\nReplace the content of a file (existing or new) with a string or a buffer.\n\n### `#writeJSON(filepath, contents[, replacer [, space]])`\n\nReplace the content of a file (existing or new) with an object that is to be converted by calling `JSON.stringify()`.\n\n`contents` should usually be a JSON object, but it can technically be anything that is acceptable by [JSON.stringify](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify).\n\nOptionally pass `replacer` and `space` as the last two arguments, as defined by [JSON.stringify](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify). `spacer` is used to format the output string (prettify).\n\nDefault value for `space` is `2`, when not specified.\n\n### `#append(filepath, contents, [options])`\n\nAppend the new contents to the current file contents.\n\n- `options.trimEnd` (default `true`). Trim trailing whitespace of the current file contents.\n- `options.separator` (default `os.EOL`). Separator to insert between current and new contents.\n- `options.create` (default `false`). Create the file if doesn't exists.\n\n### `#appendTpl(filepath, contents, data[, options])`\n\nAppend the new `contents` to the existing `filepath` content and parse the new contents as an [ejs](http://ejs.co/) template where `data` is the template context (the variable names available inside the template).\n\n- `options.trimEnd` (default `true`). Trim trailing whitespace of the current file contents.\n- `options.separator` (default `os.EOL`). Separator to insert between current and new contents.\n- `options.transformOptions`. Options passed to the EJS renderer when processing the template, similar to `copyTpl`.\n\n### `#extendJSON(filepath, contents[, replacer [, space]])`\n\nExtend the content of an existing JSON file with the partial objects provided as argument.\n\nOptionally take the same JSON formatting arguments than `#writeJSON()`.\n\n### `#delete(filepath, [options])`\n\nDelete a file or a directory.\n\n`filePath` can also be a `glob`. If `filePath` is glob, you can optionally pass in an `options.globOptions` object to change its pattern matching behavior. The full list of options are being described [here](https://github.com/mrmlnc/fast-glob#options-1). The `sync` flag is forced to be `true` in `globOptions`.\n\n### `#copy(from, to, [options])`\n\nCopy file(s) from the `from` path to the `to` path.\nWhen passing array, you should pass `options.fromBasePath` to be used to calculate the `to` relative path. The common directory will be detected and used as `fromBasePath` otherwise.\n\nOptionally, pass an `options.fileTransform` function that transforms both the destination path and file contents. The function receives a single object parameter with the following properties:\n\n- `destinationPath`: The resolved destination file path (string)\n- `sourcePath`: The source file path (string)\n- `contents`: The file contents as a `Buffer`\n- `data`: Optional data passed via `options.transformData`\n- `options`: Optional options passed via `options.transformOptions`\n\nThe function should return an object `{ path, contents }` where:\n\n- `path`: The transformed destination path (string)\n- `contents`: The transformed file contents (string | Buffer)\n\nExample:\n\n```js\nfs.copy('source.txt', 'dest.txt', {\n  fileTransform({ destinationPath, sourcePath, contents, data, options }) {\n    const newPath = destinationPath.replace('.txt', '.md');\n    const newContents = contents.toString().toUpperCase();\n    return { path: newPath, contents: newContents };\n  },\n});\n```\n\n`options.ignoreNoMatch` can be used to silence the error thrown if no files match the `from` pattern.\n`options.append` can be used to append `from` contents to `to` instead of copying, when the file is already loaded in mem-fs (safe for regeneration).\n\n`from` can be a glob pattern that'll be match against the file system. If that's the case, then `to` must be an output directory. For a globified `from`, you can optionally pass in an `options.globOptions` object to change its pattern matching behavior. The full list of options are being described [here](https://github.com/mrmlnc/fast-glob#options-1). The `nodir` flag is forced to be `true` in `globOptions` to ensure a vinyl object representing each matching directory is marked as `deleted` in the `mem-fs` store.\n\n`options.noGlob` can be used to by bypass glob matching entirely. In that case, `from` will directly match file paths against the file system.\n\n### `#copyAsync(from, to, [options])`\n\nAsync version of `copy`.\n\n`copy` loads `from` to memory and copy its contents to `to`.\n`copyAsync` copies directly from the disk to `to`, falling back to `copy` behavior if the file doesn't exists on disk.\n\nSame parameters of `copy`. The `fileTransform` function can also return a `Promise<{ path: string; contents: string | Buffer }>` for async transformations.\n\nSee [copy() documentation for more details](#copyfrom-to-options).\n\n### `#copyTpl(from, to, data[, options])`\n\nCopy the `from` file and, if it is not a binary file, parse its content as an [ejs](http://ejs.co/) template where `data` is the template context (the variable names available inside the template).\n\n`options.transformOptions` replaced the old `tplOptions` parameter and is passed as ejs options. `mem-fs-editor` automatically setup the filename option so you can easily use partials.\n\nYou can also optionally pass a `options` object (see [copy() documentation for more details](#copyfrom-to-options)).\n\nTemplates syntax looks like this:\n\n```\n<%= value %>\n<%- include('partial.ejs', { name: 'Simon' }) %>\n```\n\nDir syntax looks like this:\n\n```\n/some/path/dir<%= value %>/...\n```\n\nRefer to the [ejs documentation](http://ejs.co/) for more details.\n\n### `#copyTplAsync(from, to, data[, options])`\n\nAsync version of `copyTpl` that uses `copyAsync` instead of `copy`.\n\nCan be used for best performance. Reduces overheads.\n\nSame parameters of `copyTpl` (see [copyTpl() documentation for more details](#copytplfrom-to-data-options)).\n\n### `#move(from, to, [options])`\n\nMove/rename a file from the `from` path to the `to` path.\n\n`#move` internally uses `#copy` and `#delete`, so `from` can be a glob pattern, and you can provide `options.globOptions` with it.\n\n### `#exists(filepath)`\n\nReturns `true` if a file exists. Returns `false` if the file is not found or deleted.\n\n### `#commit([options,] [...transforms])`\n\nPass stored files through a pipeline and persist every changes made to files in the mem-fs store to disk.\n\nIf provided, `options` is the pipeline options.\nBy default only modified files are passed through the pipeline.\nPass a custom filter `options.filter` to customize files passed through the pipeline.\nIf provided, `...transforms` is a vararg of TransformStream to be applied on a stream of vinyl files (like gulp plugins).\n`commitTransform` is appended to `transforms` and persists modified files to disk, non modified files are passed through.\n\nreturns promise that is resolved once the pipeline is finished.\n\n### `#dump([cwd,] [filter])`\n\nDump files to compare expected result.\nProvide a `cwd` for relative path. Allows to omit temporary path.\nProvide a `filter` function or a pattern to focus on specific files.\n`dump` returns only modified (committed or not) files when no filter or a pattern is provided.\n","repository":{"type":"git","url":"git+https://github.com/SBoudrias/mem-fs-editor.git"},"users":{"metakermit":true,"kermit666":true,"itonyyo":true,"flumpus-dev":true,"wangnan0610":true,"yl2014":true},"bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"license":"MIT","versions":{"11.1.0":{"name":"mem-fs-editor","version":"11.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"0809bb41a745b6465a21052e4a33f823e34139c1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.1.0.tgz","fileCount":46,"integrity":"sha512-18VJxGX2BqsAW45uEooOZinY6ne80eTCy3WKGI/LGEPjntvDsIA5n+H1VtZpf99SRjRLhnVEhjLZ8tbtPfnpQg==","signatures":[{"sig":"MEUCIQDm4X2Z8rhRui1Od0iWJT2hdeSvtrbeh/gL9DEc1zryXAIgG/ALVGPKlsYBWGEtibM0N5bPs4cPKycZpPrBzd5CYPg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46047},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"2572b49a177ed5e42aa751e1165fba5c8dd09e32","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.8.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"18.20.4","dependencies":{"ejs":"^3.1.10","vinyl":"^3.0.0","globby":"^14.0.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.4","multimatch":"^7.0.0","@types/node":"^18.18.5","deep-extend":"^0.6.0","isbinaryfile":"5.0.2","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^18.0.0","eslint":"^8.51.0","vitest":"^2.0.5","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^2.0.5","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^7.18.0","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^7.18.0"},"peerDependencies":{"mem-fs":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.1.0_1724023301867_0.12152346832379624","host":"s3://npm-registry-packages"}},"11.1.2":{"name":"mem-fs-editor","version":"11.1.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.1.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"9ee84ee8889c6a9b8c1ccedc736e0f01f4558090","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.1.2.tgz","fileCount":46,"integrity":"sha512-yUVFK96XhGv31iWZ3G60pGNIuXuZTUsWz0GQzv9ffjYFf1oXs0PcD3LFZHzRDImH+Da21x/C4csEjN0W5ygdQA==","signatures":[{"sig":"MEQCIGalmCejcnlAl6D/Hi5hyMk+VxkfpTJYK+oDSVhKujyFAiBQvL25vmogxFg5/l9olOcHdM+tFbQE4r4eGKXqn/sCnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46035},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"31c0f9dabba71ded3edabf189b7219de2b756b63","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.8.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"18.20.4","dependencies":{"ejs":"^3.1.10","vinyl":"^3.0.0","globby":"^14.0.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.4","multimatch":"^7.0.0","@types/node":">=18","deep-extend":"^0.6.0","isbinaryfile":"5.0.2","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^19.0.2","eslint":"^8.51.0","vitest":"^2.0.5","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^2.0.5","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^7.18.0","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^7.18.0"},"peerDependencies":{"mem-fs":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.1.2_1728731038366_0.47091360095080925","host":"s3://npm-registry-packages"}},"11.1.1":{"name":"mem-fs-editor","version":"11.1.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.1.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"739bea0d0fdd7bedc068e7873fe2f331415cd3b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.1.1.tgz","fileCount":46,"integrity":"sha512-bjBczabthdOjNE9+gRk+wObTihMgwkrhr/ffk7e+adZk0F5I3i5fE/MApOwSG/JYmFAfpoThPkA6i+kKShcl0w==","signatures":[{"sig":"MEQCICJhmAQGn9qC+2QcAsqYirT5tYQFhRq6UnqoqFOFMt5SAiBtRHZIRSLxm82Wz20VX8mAPvq43Yj5XnZhWUW5JlTqGw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46039},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"4ea3700c3cdcb3f2f807e78daebc4868f0961054","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.8.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"18.20.4","dependencies":{"ejs":"^3.1.10","vinyl":"^3.0.0","globby":"^14.0.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.4","multimatch":"^7.0.0","@types/node":"^18.18.5","deep-extend":"^0.6.0","isbinaryfile":"5.0.2","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^18.0.0","eslint":"^8.51.0","vitest":"^2.0.5","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^2.0.5","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^7.18.0","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^7.18.0"},"peerDependencies":{"mem-fs":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.1.1_1724024053591_0.5346023961019717","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"mem-fs-editor","version":"9.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"b96bf63e76ff311870d4ceeae6615a6781f7a9b0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.0.0.tgz","fileCount":23,"integrity":"sha512-QF+JwCdtw3Pft+FnyXTOAXT8mXXifcQz/JAIjR/Zn3SqTVArhplovFpcO2YrMKEeheVi7dP3QwJE8n1x+EVqbg==","signatures":[{"sig":"MEUCIQCTuGSs2y6cFJ3JB4Cgf+VBU+1TEG/xAUetHfOWJZDBCAIgP26/VGtaooxC1fOiIAYskMnrm8HGr2cwiig5kCe6Pdc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28699,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjI9RCRA9TVsSAnZWagAARhYQAIGOXkDnZ29Gf5IaVyLi\nI1ONkhkDl2ALDfb01YTG9eOBgVYyp1qUBk+NIo16oRAEnFWNQ2iWQjF562JN\nEwVuOP3K8Xgv+Y7sM2yq3cQQtYl5slnAZpodU7G0x4ALe5+QpNbfxtn54Ttn\nmAeduQE/n6rHn5eev8LskHK0BP+hcSFEj0/7HNIGGXEY2IB+b1B7mwgQItoo\nssPJcozNP+NRojPBx7yNz+2klWGFuhOBmhFrS9eSrO7A0IPtCj+Fm88QscsA\nqHoQkL8cWo6Z0PoaT9vx4pTJNQ+wxWU2ESPI9ysf7oySFfDTI2SgyU2YeWw8\n33jUaw3MtOgNkmEKB3pxAXKyEDZrAIZtg+tHfpJGvw07ZQcT0ScCcmz3OLLn\nQRyZQJIz7QkBJQ76K2/YdXRBZAvhKa2Y1V/3Kj7eNwItXMhrO/VSb+sOXj0/\noNEr/nZGHsdBv9qqRDDngxhTB5qLqfrWouur472RUtRDwd2jZ1gPiphaRseu\nrCFQ0r4iV/KDc5bE6QJQfhJw1kcSCAP3GxSMIE39pgVyqD1GXcw+0HZB6Uh/\ndSp+3jsZfTZevyVTGmKPjTlMLl5sjD9u5jZngSUiIu8NS5AJAY1ynStSkC8w\nceL9icDMf0EQO+ptRH/Pn2PqqtCgsl4OJqE43utJYP33wk5VZSaG6qn8G6na\nuQOG\r\n=gNJt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"b55bc6d4af08879f3abc9077a472ac289fa2f673","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.11.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"14.16.1","dependencies":{"ejs":"^3.1.6","globby":"^11.0.2","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0","normalize-path":"^3.0.0","textextensions":"^5.12.0","binaryextensions":"^4.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"^2.1.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.0.0_1619824464982_0.26740325216166494","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"mem-fs-editor","version":"9.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"c700117476ff004cdacf5fa66f4fd1b5410b23c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.0.1.tgz","fileCount":23,"integrity":"sha512-SqW+DkPbxZVzVldNHexoo5MiUR3YpIqiCVcZ/SZ6f7KToaSV7pMd4/URrkD5mnj35bd6NAK7SlftHSyW+Kgk4w==","signatures":[{"sig":"MEQCIF0eXHLL0/jENhp5crvDyJDioy5hDSSGn+rWNXzW88EDAiAzZovrs93zO0Zcl/LxxPth2jjqthaxSjA5vP/4ckzRUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28733,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpV4ICRA9TVsSAnZWagAAICoP/RbfVGy3dG5z8oa02f8L\nrOw5H4O2ojmJcGxlLqspLobbN8pwCBM6DY/oU8baL0dYao+4cQdPQD5JgwSg\nFZ+UMstvHtRZVNfhYt3BRh5eLkTcLZj5+YzBQSftkGi8qv1pm8Yl0IN9IjR1\nK1JxaKf1HkJc9lNA+kCqIWSfRJHUL8goguiqCi3OWSjDJqRx5AIO66mB1rJ/\ni6KV6Z+FybRiRNUKi28NXiNyToWGdNnOPEsEAmU6J+bvRCmG8rzPa99COKkn\nLlU6GtRPMRZbkDF+pri1XsH1+UoFFqkeofva+lLXx/RkI05nB1BMDT8/YhD0\nzuYge7kUwflRrellYA6m7gID8x8lQLy0AT5aUkLgiXhsydcBuK1eqD13lb9G\niAWUrFClhhCAKQQLl9Mo4NFv8gP+ktW1ByQTN/gYvipQirVuuIrVv1+oHSxJ\no2fKNGEX1m0pTDI/SWnsr0bWOc9rQUUg2jSIPpm44WeFiTuins0B2kKRC8KG\nPxc1YXKoixWwEfUXflQqeqNhIyK1RiIXUxwkphT4qGLG4mwlPxdKjpOtFUnc\nNiKmGGH9ajLnjk1bGmVhnVwObLRyIJKqntiaKAfExK/oTmV8v1K/89pSibuU\na0D2VVnMt0OsMRWbXwzRRqyOZ9UAm8JOxstqw+auNHLsmjLCdY2nEmW5m/ML\nJ3cS\r\n=sHmA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"25187fc276683e22dfffc35d475389946b585589","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.14.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"12.18.1","dependencies":{"ejs":"^3.1.6","globby":"^11.0.3","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.12.0","binaryextensions":"^4.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","sinon":"^10.0.0","eslint":"^7.26.0","mem-fs":"^2.1.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.27.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.0.1_1621450248121_0.7497075436334382","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"mem-fs-editor","version":"9.0.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.0.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"0bf4ea74571e9fa98c94ced28d5213d11c4d270d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.0.2.tgz","fileCount":23,"integrity":"sha512-0ebt+XneyzOzYs6HqW5OEJaA997trrETuyy/7Vu92CIO7A5yfqHY0M4MVXAjqBCdX1GzjCe396ljAbm3O087Fw==","signatures":[{"sig":"MEUCIDSsIhjM+JexXYt7cnTMg8DKQSg9DSQbhxF3CpmY3RsjAiEA8yGLSFxLKWd5TsbC+g8KfDOrFMh1UDYTctuU8f5AFcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAGF9CRA9TVsSAnZWagAA3cEP/jKhHD2D9wxHKDNfvtnk\nA/C5lo15NSwhOpa+UwEYzMnXCiK4ngnzVZRNjc3atr7PvYDFZ4adbLAh/4lr\nWoJVFVzOi52ulgiE5zo+hDj01xYGlXai4FugInvcFsOwCEj4sdy73syhHVwh\n7zeF5S+1p40mzJXvAZTOjUdsrc70TM7ahFvgpYX4+1U8yAowWgIgjizPyAJK\nUPA8jIgwXOnBooZf4v7Vk0X6P4sOOrdbner6tm5SMCBaQS5XsPFvUwU1vXEA\nLfHuwFHPN4V8Bx5ZCnrilnrRd+YCZkgptoS84DQ9hfPpeZclBZ+ixRiEvmio\nXpL6RzH8X7cgVarDl3r7UunVqLxHow1ohZGTggIUE6/a7zSMm4edMglwtj8B\n8yJ6d1E7TrYRQRP0qrMP0ubjWTD8dpAfBdjwuSN5goHmVHEQW9XZGUeSrksP\njan25ENMlJbEF4yV489mmw6RHL9NMVjgXYwxpoX2Y2tfg+J+gmgg1ttxbxlL\nOqPjTaWa7ZTkocHYX+AOrDGUbd5zndTz3fkwMNwNJ2peka5cH4778UsAGdby\nmd/pCFeDZkO4TAFOU59m2Dsc6nA5HLbeYidWfYCeYEEAxoIA+H/DXKaswnKt\nA645dskrt62J0i2OCKE1AlYY4eepBl2dGKwhhwpTIdcD6S7kS0+bCGs3dnNQ\nRhna\r\n=KtGO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"4176e388670431b2e01792206377324f2c40deb7","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.19.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.5.0","dependencies":{"ejs":"^3.1.6","globby":"^11.0.3","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.12.0","binaryextensions":"^4.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^11.1.2","eslint":"^7.26.0","mem-fs":"^2.1.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.28.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.0.2_1627414909575_0.8996460241376449","host":"s3://npm-registry-packages"}},"9.2.0":{"name":"mem-fs-editor","version":"9.2.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.2.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"75092594b157abd9b5c87ea15b877734efa4aaf2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.2.0.tgz","fileCount":23,"integrity":"sha512-4xCSiwu6AjaiJEarZwLToEllrG6oOMiH2ZKd5x1/V1t8lh5Oww9CPV1BMRC+91cSsnnQsbUUlBL0/2pOA3/5Cw==","signatures":[{"sig":"MEUCIGnOs9TuaF7yJJbKM5GT45t5sguVZD0g3yCUvY5v0Nw2AiEAnIyiTzSLeSykhbJE33HpbPSPpGs0kViOMXHr3LlWvZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJoilCRA9TVsSAnZWagAAQiUP/jlnl4GWPnfeD5b5+Uso\nTLk8lrGVAeQIB2x4zGpyfxA2EYWeBGu16Uuh7USTYxF3galvfboG/VhmmvAJ\nNGrkCvKwCJdsWmA28ZGgMjfeq3aRe1Civv+3fJZ+Vapk9BZpLWrdKpt5zjvW\n7sLs6ARsTiujamS/eosfyoS651MVsapHH+iyKzh5kNzME8iw2ppupl6dnDJc\nUMmD2KSAILaOYoJuWj2VqjpydY5ywv2Gpz91Oyp3X54F+3Py3a3lEG2hD9VB\nAJTc8nJ1eSQhdxaNqhgrGvdrvNOalBzIpsEKu9/nrYpGVHAhGEd7qGL55GXz\nM6isYZdgTjIlHu5ZSdaAnL0hEg+2xQQJxYm6aUxOdppT8XNzUy5xhPnrjLm1\nrm4s2AHxDQe3GawGy/vn+D+hHrFZKgeIs7RnlWUGnfFAJL1k2IYphp0bFXq8\njsISEQEunwtyZAZ3swtUmumkQdXY4qgf2BVUZwuJvOaMF8Fi73U5IkVqPHZZ\n3OLTPDCSwwvyb3aYpqjaNrqGfvu+VqcOasT3AUWDWXKM63w646GGzdGqfwnt\nh/3mg/vvKHJCckF4eIva8KKpt7HBUYzFQTlpUsnyl/uU6eiGwAs5vPvc+cDY\nvHDRxxAq2sWKwf+Pmdu5q+3tckFsR1PYUUQCC/aXm0+IoFBmCvpn4uyWGLmq\nmZpj\r\n=OAJg\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"695dfe0864c092399ea45bdb4264619eef9e0d8a","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.19.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.5.0","dependencies":{"ejs":"^3.1.6","globby":"^11.0.3","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^11.1.2","eslint":"^7.26.0","mem-fs":"^2.2.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.29.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.2.0_1629915300973_0.7674897120127611","host":"s3://npm-registry-packages"}},"11.1.4":{"name":"mem-fs-editor","version":"11.1.4","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.1.4","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"ddfe705f3b0110cb96a40a3cad290ca21f0d1900","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.1.4.tgz","fileCount":46,"integrity":"sha512-Z4QX14Ev6eOVTuVSayS5rdiOua6C3gHcFw+n9Qc7WiaVTbC+H8b99c32MYGmbQN9UFHJeI/p3lf3LAxiIzwEmA==","signatures":[{"sig":"MEUCIQDLN/2s/pRGaa4TUyt/Iy2cv2g1o++zVNxK2UdwdAJ6oQIgLsE0TsScz9DNBTrVnU9p4V7nhVPKOjLFnPiDRBOAWZE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46027},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"dac051454e3d1b6c8d06e2be14dd20f72d78de9f","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.8.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"22.12.0","dependencies":{"ejs":"^3.1.10","vinyl":"^3.0.0","globby":"^14.0.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.4","multimatch":"^7.0.0","@types/node":">=18","deep-extend":"^0.6.0","isbinaryfile":"5.0.3","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^19.0.2","eslint":"^8.51.0","vitest":"^2.0.5","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^2.0.5","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^7.18.0","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^7.18.0"},"peerDependencies":{"mem-fs":"^4.0.0"},"acceptDependencies":{"isbinaryfile":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.1.4_1734004849063_0.8200300718881064","host":"s3://npm-registry-packages-npm-production"}},"11.1.3":{"name":"mem-fs-editor","version":"11.1.3","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.1.3","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"d89e58dfbfad63bd47a5fef49bfd8265eae7f5d7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.1.3.tgz","fileCount":46,"integrity":"sha512-1+FhUWmCLY6Eqdc8HzDx3+wHScNiZQP62iMFZ+zZDpPmTyzfduPimWYjhtiSkVDBB/yXU1qGmlL8vQrQLUG1Lg==","signatures":[{"sig":"MEQCICN2SE0KbF+DYnoCkITpm3JhmU8UK/w6ixepRvIO0WFUAiBv2sEkeYn6cLWKUKUcJaLgOOZ7Ac17rZB91NatRMwuHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46095},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"c706573dde7fd762be93f7e21a451fdecf8fb170","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.8.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"20.18.0","dependencies":{"ejs":"^3.1.10","vinyl":"^3.0.0","globby":"^14.0.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.4","multimatch":"^7.0.0","@types/node":">=18","deep-extend":"^0.6.0","isbinaryfile":"5.0.3","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^19.0.2","eslint":"^8.51.0","vitest":"^2.0.5","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^2.0.5","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^7.18.0","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^7.18.0"},"peerDependencies":{"mem-fs":"^4.0.0"},"acceptDependencies":{"isbinaryfile":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.1.3_1728957109801_0.6310054408243257","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"mem-fs-editor","version":"8.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@8.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"cd8402fa009df302656422f71831ccd8e30319e7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-8.0.0.tgz","fileCount":16,"integrity":"sha512-0+6Zp44EmPpF01MZOlY0kt7JTndjdvALo4jA7Kk9GPCuqGzGnBmWtcE44Cwzj1aru57IN5/LKIWd1lIvaT6sKw==","signatures":[{"sig":"MEYCIQDBt/9S/9N99IJy74CMkJFBTkvvejWsQlr2EtD9FgXBqgIhAJRtjC/h2LtLAU0cx5+puOuh1MVwrT3Fpnawr2jp7jUI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4j+0CRA9TVsSAnZWagAAd1MP/jhs/df7aBo4xxbUhHji\nXTXJuU0ZfLcKh8zMl39aoQR7dbHwnBtzvao4Kiv0PdHvGmwPbLwGs76Ti9G5\nxZrSyt7GoVdZV7FdCWeQCVHRxIrlTaufD5ubQDSHlFg9uGciI3LmLbqVJuro\nK5az4N1OGhoJonFVsPE0849sBW8/+avvm4LoAFRWp6ROTuJDaA2IwXz2U5jb\njlv0ogGFEM64L416eZOTNEj+X1fcoTmFdBP5MaPxfmzgKAuv0DxxB7mXZLJ5\nJkw5UAZ7vCeQUAGkEjrWN1298GNg+Js5fnTQGCv1agVyYvrOmECYX8w+0vSo\n4CflYA3qfgpbAi8ESn/7b+iN8jlj/V28MTg9G6rf3Twm5rOuMlrZrPUqHidV\ndpof8UyEJp0ZWS341TVNO63I15mEygP0Q6pXYRpFOvWYWBwRq4B5MEjXtwXi\nNWgOy52inAnnag16qdI0OQiVxBrqjrXG72z0rul0P9tXa5YRU39Q8e5Y0Q8Z\nnNMCxc90165t8W8meCPUB4xWzEgcN7uHMJdjT9q6k6batYAeb9qs7GlNUUc3\nMFYTJVebMIXkScGqRPJnuW3dGmSrIB8zqqhKVEbYjeCV+bpVjJcYTGbrYTzC\naq4pB70p7ypJvl8SK2XsDg5rMpshqaboNt78h2CKotUETwa7HxV4F3UaTRtx\nv9OI\r\n=31FA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"08c2487009279f8a74da95fd8fa6ea9fdc710e86","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.14.10","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"14.15.0","dependencies":{"ejs":"^3.1.5","vinyl":"^2.2.1","globby":"^11.0.1","through2":"^4.0.2","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0","normalize-path":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"^1.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_8.0.0_1608662963471_0.6874538136665589","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"mem-fs-editor","version":"7.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@7.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"e0797802b7797acf43ef3c511f3d3ad5ea765783","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-7.0.1.tgz","fileCount":16,"integrity":"sha512-eD8r4/d2ayp9HHIgBPHB6Ds0ggA8F9cf9HxcNtbqrwqJXfIDrOSMG5K4fV3+Ib3B+HIdrWqkeDDDvrO7i9EbvQ==","signatures":[{"sig":"MEUCIEGvpXn5+2RLW1nJXS/fR7vXkWQkKoe93+njXpORPwv7AiEA5wbA/HYyO4Vxe+zUKuSQOL6FjjSlME7nQYbe6SP85YI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6vkUCRA9TVsSAnZWagAA4jAQAJ0SBc6LYVWWToEpTD/A\nOgjWuv/ShS8DX+pLk02WOZDtNGTBAwtNUVYOkSCyI+QxSFVPxC+/OP9PEj0x\np9W+4yx+0rh8GGPrYjFIzKNHAqSUCJkx+psqGlnr/PkaFjcln9MuuIHFVLJD\nW1qUAtCNDDBDiSfIYUODjRf+5pC2WivVsIcb3I5/vrTxYV1sxiMuaGQ6zuxa\nQ01qBYiGgfuFt5Wqx29opWcb414lg2gT2MAjGkDC94NOiIKE4rkvyopqK30w\nGryToNSlH8cjTrggqcK7BEVfP5dlEXrCPYOUlvSXVNb2UrYCTHoSHrR/TWod\nGeGlRkclD8GXQHdhbZf5R/ClD6xjY50/4VvWgn9Hr48NNpm+iJMpCUoIQ3o2\nzpAus8hm3+3pbV+dM4yvwMZ0Q3EkKACei/yNlyihxnepschDMamedHe6s1bK\nsetPGVYtEN4E9fy9Boscz963FYoP5I/tvAhke7VzUMj6Sk9nfqps6NvBK4hz\nveZmcOgX9CYjR81DkyCwJdhwyTSdsAoT2XoRX4tFppHGvCvrknSGtJ06FzL2\neEbec5zRO3wmpRgX81y1jXWLPryS3MFwSe6I5g3FXA3mHuo3fqfe6TNZQsQW\nJH1KRZbusnyj2TUU/tBMoiln1wuwUdtAjcOduVQsv2b272K+hvKsAAB7vf7b\nrwMj\r\n=Ej0/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=10.0.0"},"gitHead":"44a566c1046cfc6d23797ef1c798889dc65fba2a","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.13.4","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"12.16.1","dependencies":{"ejs":"^3.0.1","glob":"^7.1.4","vinyl":"^2.2.0","globby":"^9.2.0","mkdirp":"^1.0.0","rimraf":"^3.0.0","through2":"^3.0.1","commondir":"^1.0.1","multimatch":"^4.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"^1.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_7.0.1_1592457491747_0.16981590477176223","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"mem-fs-editor","version":"2.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"658df242b9660794676f309f402e6f81b45c2585","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.1.0.tgz","integrity":"sha512-+fqMgclePNDdPEQqEX5Ok5MtPDWkSJVVFJ92OLg84o0fu/VFBgKfMwReR5ZLLA4Fn2UnixvqB1/AlSERo45cWg==","signatures":[{"sig":"MEQCIA0SzpTAHYmuLKequ2hx8hm3Vkw+yWXS/R/zqDT9BW/2AiAR97C7r5CSxJ81NmZTTMQfL1VUFDYM8gOz5Z7lCWkI1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"658df242b9660794676f309f402e6f81b45c2585","gitHead":"ea4e71cdbf3427ab812d7e2e197bda9702e32d73","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"3.3.12","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.12.7","dependencies":{"ejs":"^2.3.1","glob":"^6.0.1","vinyl":"^1.1.0","globby":"^4.0.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"devDependencies":{"mocha":"^2.1.0","sinon":"^1.12.2","mem-fs":"^1.0.0","escape-regexp":"0.0.1"}},"7.0.0":{"name":"mem-fs-editor","version":"7.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@7.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"ec80120fa6d6ebfabe6a3cf8ffaf64d680b64b81","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-7.0.0.tgz","fileCount":16,"integrity":"sha512-OBqCAsN5DDLapL3BXcpbJyN3Eb52r36nfmcE0jCw5gZZk1IPK9NmXazPeqIFVMkQAc7c2XrUadlPUMCaEsYp9w==","signatures":[{"sig":"MEUCID9XoiaFY6afWSvwVcjbapOThpoS/zi4TB9KYCp9G6+yAiEAlFeWnbcyugBgU8YpKxWpAChWFDgmcFGSPd7eLnrE+IU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1Iq9CRA9TVsSAnZWagAAemYP/A+7TdkTclWipK1bIWnQ\n3FBQzz0jzz7tSRWkGOiX72+Zp1Xz6JTaWPS32g4XnTh0ir4RVGY52B+JGqsp\ntbXEm9O2b7HrGEABMqt0BxRQX/ZuSqPkq+tj+zn9N83F/pBjxS8Xo42mWOt7\nYKRirF2s2p04H/A2F4HMP0ykhODpat9ltZwI9QRpE49TDUJno/W570NSTkbY\nQRFrSzwB3BWBobG8jhll5ucCzHYTefz42jbkMheC51IUfQlV25G2KLXUknVZ\ncNXtD5Soeo73eDGNDzdRZRl+Rk9qwDLdBDjymzehc3Ktt7180NMRNZUE6TKc\nSE8pb+GQefKfkLpsFoOATNbwKr8kS1AvCswzjMVMdDLcfNVz5VQUqFcmGRdG\nh7EK7WX7eEiosk0An7A5ImdmdahjyGhpLn+4NDAUQvTMjVOKmMl9GhlB6pc8\nx590mkPWGbPy9s+72NS00JNIIUxGAgnQzy6Ym8YIOF5bqFDwlLcuu9gNe0OE\nKWMfUx8Jj3BiCWIV9bvky9TY/81Of5RH/1d5SKc4mOll23jD6DDjWSrJ5XDI\naPYFIlu/q+RXPzJR22wF0C7aYIApjXQGJGyhLyHo2wKUWFdfneRb5wVIQ/UU\nEbVR9swoafNRX+i01LTAcOvQOX/veGt7gOCdvpptMrm8kulwTi0S7nq3sH8h\nWl6v\r\n=2SaK\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=10.0.0"},"gitHead":"19d0f5fe1353e2fdd36cd27a0e593b4099f3531f","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.13.4","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"12.16.1","dependencies":{"ejs":"^3.0.1","glob":"^7.1.4","vinyl":"^2.2.0","globby":"^10.0.0","mkdirp":"^1.0.0","rimraf":"^3.0.0","through2":"^3.0.1","commondir":"^1.0.1","multimatch":"^4.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"^1.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_7.0.0_1590987453406_0.21976951282844315","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"mem-fs-editor","version":"2.3.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.3.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"42a0ae1f55e76fd03f09e7c7b15b6307bdf5cb13","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.3.0.tgz","integrity":"sha512-8YgO8YOs5ZLtk4kcsigkKbBodl86DrLFWTG6hmYA/oV7RFSAzOzAhGVRcSSxKS6vphf7jm0DGy2Y+Wl79MoJkg==","signatures":[{"sig":"MEUCIElZsZwkKgyatEjn7CHhvbmm27bE/v6VmVK7JP2n08ocAiEA4s01XNgxUOnCBYGGLtRqgOyg7ssG1U4tb0DN+5Tr6eI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["lib"],"_shasum":"42a0ae1f55e76fd03f09e7c7b15b6307bdf5cb13","gitHead":"dd10d64e68ab07a93333c68cd36f62a9b5841c3a","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"3.10.3","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"6.2.2","dependencies":{"ejs":"^2.3.1","glob":"^7.0.3","vinyl":"^1.1.0","globby":"^4.0.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"devDependencies":{"mocha":"^2.1.0","sinon":"^1.12.2","mem-fs":"^1.0.0","escape-regexp":"0.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-2.3.0.tgz_1468298054877_0.7923902780748904","host":"packages-16-east.internal.npmjs.com"}},"6.0.0":{"name":"mem-fs-editor","version":"6.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@6.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"d63607cf0a52fe6963fc376c6a7aa52db3edabab","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-6.0.0.tgz","fileCount":16,"integrity":"sha512-e0WfJAMm8Gv1mP5fEq/Blzy6Lt1VbLg7gNnZmZak7nhrBTibs+c6nQ4SKs/ZyJYHS1mFgDJeopsLAv7Ow0FMFg==","signatures":[{"sig":"MEQCIG4LjBuQXBwckheFkM1ooKKEf8+qysJsAD2xJe41HZSYAiBU3gFw6eyRw1949nqYUknSf2lS4uOOx4nJHte/um6DCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16971,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7QJvCRA9TVsSAnZWagAAt9oQAIL6e0NwY5EO8LvhHjQ7\nHynUHsRtqxi1rYpy7iL485xHZIRPxoIQz5PCgbdca1QhxD+rqAL7UIXybwQA\nDESyoG2Oy1vTTA6D1tMxrDCEFRMxQ3Z/+tRRPRtWtewm6bDP1Cj5MbS+4NtK\nFr/DINz82RnJpzFjHPfRwWpeWQfU50GCjz7oQxfCmtPFOAQvj8j4YMTwXFdt\ndbfpaPbdXA8MJQOA06y8jYUs/gmbArE7wXiBD/MhFD+MhIz9k9qyUdx5kn6e\nnpR3/qUqryBKoZLz0eR3BKcJi1O7IF5GJRQnDpJV7VydO++Y/8zlJvI6bwki\n0Q96nYK9lq+A/0zIx9uriR6O6yUbqJktl0QkVxIrA0CUunG+A4Yc0S0Q9eh5\nus6EdKn/K4jxOvOLbLO3DyITZ+ci5DWjLZ8FJVwPgRaSbypak/E2hyn9t2gH\neZ2kOLNP32b4SDXBQP32npcsqgRnC9IRVP2OYZ6+UAzdMQwOWDdh9kJDGo8B\npZnloaCK8eEmF9nT253dVhTPvtns86sxguaULShTiW6Gg+UtJv4N7BgoJ7ZS\nUp/hVpOw75iwCSV38680bchCTdHO/rIj9vkjCssjqA238MnnnfazvXfLqvlo\niFU5r2VOE24veKdj62z6vVIrBj7eU2XKtZgGCvnHWcQyJiC+5i6Nw+O9eL2x\nfxxi\r\n=NFTS\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","gitHead":"9e35f77f0865d577986c66d91dba498bbe1893af","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.4.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"10.15.0","dependencies":{"ejs":"^2.6.1","glob":"^7.1.4","vinyl":"^2.2.0","globby":"^9.2.0","mkdirp":"^0.5.0","rimraf":"^2.6.3","through2":"^3.0.1","commondir":"^1.0.1","multimatch":"^4.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^7.3.2","eslint":"^5.16.0","mem-fs":"^1.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_6.0.0_1559036526682_0.501680786063633","host":"s3://npm-registry-packages"}},"9.3.0":{"name":"mem-fs-editor","version":"9.3.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.3.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"85ce80541b1961d1d9f433e275c7cee9d0a1c9a2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.3.0.tgz","fileCount":23,"integrity":"sha512-QKFbPwGCh1ypmc2H8BUYpbapwT/x2AOCYZQogzSui4rUNes7WVMagQXsirPIfp18EarX0SSY9Fpg426nSjew4Q==","signatures":[{"sig":"MEQCIH/Y/juAft8m9pxI7h1WUm+mxlkHn/eVRCBZsXJ2wWJKAiAeyZWKUffoLRhbR013OWVtRQCttWVkLqqJMqkalGyQAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJq5tCRA9TVsSAnZWagAAVJcP/jpwYMmNfDiMahz66hXL\nUaP68aRDlj9BMUx+I4e1qM7K7VB2cMEuv1Q0SkMSkxLUPLPOhP5Vgz/tpYDn\nu0p6jWVAKI2uprZcDStS3YrFB4mKEEGrz8udSvDe4e6/1Zb70SmMzsykLoCs\n22vkr86DorX1Stsc3QSXBH+T7YQDPW3gfrLPPqrhpdmfAQvFLhBv7gzWXBiI\nvN1LQ89b736SgZ16wSbyv8naCKbOMxmATvsyGwvl8PHBMrTcqWcNHCmGKYwk\nUtW/cVhUc4SaCyDYQNY5hpG5fBUu+jMn1tqXs0CE7JeFohkbsJyZTLq+lcxb\nr9egQclRZjNrX/tQaaL2ad4vH4d8ON9LZ/9PI9ySY1nAJuOdTG6G5bfQYYkA\nLCRZULBV6E5M+eZ5PyDuTHgCDpMfr5RCD2CxVL7K+J8nzJANHv38dfaJoK0B\n/9VEgOFyB/WxgoYz3dT2kZLEbxTSNUw7UpSNjxDqft9jWZ/n1ATQXONZ1W1h\nUDRlqVJCHylAy60wDkn5hTaeAHtqnAaNJcUtR/Ht9wgYZEQ8DwFD8S2C5DSb\nbxc6ntsOn/8WByMUBekWP4JO+/Vcu5BsV9ASqhTXJ0vHP7yjyb3bA+9yWZxk\nqoEqA5sEq+Ve0AmcPha6vvzj2AyRC4IsUlJo+loeqC3zeicG49F+gP+tZLX2\nCO1V\r\n=+5o/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"ddbeb6862214386b6f6bf36fb30cf2cf2ad3ae79","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.19.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.5.0","dependencies":{"ejs":"^3.1.6","globby":"^11.0.3","commondir":"^1.0.1","minimatch":"^3.0.4","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^11.1.2","eslint":"^7.26.0","mem-fs":"^2.2.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.29.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.3.0_1629924973010_0.12650441061810747","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"mem-fs-editor","version":"5.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@5.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"f62bf3ab61a75283d31c9b2d1f6851e615b4f8f5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-5.0.0.tgz","fileCount":16,"integrity":"sha512-KEISnQICff6U8cXGdyiaPLfGssrBfTwyu6lZBErdQdmFDQtKg08rXtaPUrG7w4eUXcfqLplfn53Ul6xzp2Tb0w==","signatures":[{"sig":"MEUCIH+bRwjMA2uCXhjJRFeaHuixS9EPGEQxzGnhHCF5nV19AiEA+CRyQacl45o5SFDksSRVMFtF3lTmv/QPaqR7bJnql84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbN7jgCRA9TVsSAnZWagAAuMAP/jYP6p6KSgzTt4CdMXAo\n72EyZnl+nloREke8HGZ26PJeBddyK0dy+0qVG/FokjzhwvI5fynnzMahdxPm\nyC6ahixLM2CBq1n6cPiJJlaekeD85gXH8CioQL4z9kTBfh81QPX4aigipAAE\nEmmpM6R1u+degWnburZqnVfEVQkZCbkjHsHcXkhalM6mdBOHyLHwJxIB0pb6\n5LGdMsQ7vfNMdqfgFwFE+yKz3NkXC3GwV1/8cXvM0j40BktlZBtduDxxN4cd\ncZGFzsQUBtmWMd9RBnPU0eUtVhNe6Xy5ku5uTG59DG/u65jzxaQSdoog3IJK\nuvCwinVk6KdhIdCHg21XE8bdKxoXNgHAUHlW1kBpO3UDlLMzmmEyxO+SeVZv\nvT7aZ840nizGX4pvEk62nNhCvVSi7ekIDbITGjav+5F4jZSphSBVfNoq29xK\nfqI87OksrBMHk9VxfthccE8Xz4qv5oTcMxjjwVZ04SObU6aPr9yKGcgE3c+Z\nHuUAmD4da+jeGiYlUl2K2BvYS9sW1Dht56HOKRLgionWTphYcMCcRW3LyX25\nJz89HhK9YRTj3WXoXVqJ88f10wsNWVX+qB/KqEzuztHwrxve1V6Oo4M2pQKw\nfewlk/iYWML8ip34BO93yJnJBjwZRv99Ydl2PHvkaQfErOyvHz2RYcCKhd8t\nKJyG\r\n=KLaO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","files":["lib"],"gitHead":"ecae0c4adeaa4a8778ddd401918742e525a23d31","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.1.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"10.5.0","dependencies":{"ejs":"^2.5.9","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^8.0.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.6.0","isbinaryfile":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.2.0","sinon":"^6.0.1","eslint":"^5.0.1","mem-fs":"^1.0.0","coveralls":"^3.0.0","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.19.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_5.0.0_1530378463974_0.21547585398814761","host":"s3://npm-registry-packages"}},"9.5.0":{"name":"mem-fs-editor","version":"9.5.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.5.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"9368724bd37f76eebfcf24d71fc6624b01588969","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.5.0.tgz","fileCount":23,"integrity":"sha512-7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA==","signatures":[{"sig":"MEYCIQDJmdbQppnCTmDecxGgwxRQJxpZTPFLBRSAUoGpu+x60wIhAKk3QBQJh0xEaEly0ltWCirPHxeR5Pe4OXEy984c1QuG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30897,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6qAQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmptmw/7BDqRb1EYrF1+IuT5GiaqGSx4KWB6S7Mu+q2lAyUfcx/J+tfS\r\nhJW4+3UCLZvOMEodTu4y/qA3DmkwJChkF8qOJJvCJ9+Ul732A2PN0NLdA1yY\r\nfgTVtqCYOwS47meRuYqvBVEGPXhEOcEE9tKx7wzebI/PilsfSNxK2/Kq6fl9\r\niK/83WN2QjXyFwPVeZrneHyEnElfaMWllJrtSOG0QyRy8YaUgfHdc/SfgiwX\r\nXT1NCFGPuxtI40RikObYtKt1zCjv8jeGMRwwrgtwUkpWrA4WZ+5IIGcrxR5w\r\ncgEO7m6Uy1toDxmf75gRDbtRSccXHBVa/S7JiE8NxHAij4O94DCYGQezxblG\r\nRPZ9t/NUJHPT3i0k4DtTNyyKbTTWZak6tHPeEbSO6cXI8PDdJSFXbuIMqmPB\r\nlAiHypM5n9JtG4aNopp8ZkG0yJ4rn6+aAE5IE3Ty9eaOrm99L1Qticj1FiI1\r\nwm51ZaKHe2xm2nykE5rRTYixZ4pIia2NIVe/UARUCxLoUk3oDzUzCDplTlkF\r\nK0ncPkr2v/bmF5l6cJMzy5GmzTpj0MWXp5g0LG8McBD06fMO5FTmQdi6ZhgU\r\nyByKIOhd9NB9ya+vGh/zr2c59uw5SgPyQRWlsCQABliR45wn5hrSRwu/8Nbg\r\n/EayfhodoBSEzdbson+tKumy06+M8uY6qmk=\r\n=KICj\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"a35e71e8eac83dcb67d2a560d19006279b68df74","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"8.12.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.16.0","dependencies":{"ejs":"^3.1.8","globby":"^11.1.0","commondir":"^1.0.1","minimatch":"^3.1.2","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^12.0.1","eslint":"^8.5.0","mem-fs":"^2.2.1","prettier":"^2.5.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo":"^0.39.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.5.0_1659543568383_0.7484847114376645","host":"s3://npm-registry-packages"}},"9.7.0":{"name":"mem-fs-editor","version":"9.7.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.7.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"dbb458b8acb885c84013645e93f71aa267a7fdf6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.7.0.tgz","fileCount":23,"integrity":"sha512-ReB3YD24GNykmu4WeUL/FDIQtkoyGB6zfJv60yfCo3QjKeimNcTqv2FT83bP0ccs6uu+sm5zyoBlspAzigmsdg==","signatures":[{"sig":"MEUCIQD3wCxSy7nkGtW1fr8AbgOfBbU94vpsRV0f9NIzCV1eUwIgV1vKOW9MBDbF5piQWj7sfMzP9RM14zlykuCG9JHeZHE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31777,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/NgwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAog//XN2JtD5PZXu/jpec1CDce2JK1h3zZlu5QH3gRtCJ6OmsLGtm\r\n3kf9bdFbSxBS7BHita26eq2NzqGKwRDy5S+KuTiKRFzWiUiRqXsS/nwW/5T1\r\ntJiLibi52FxjovwUjrDPyqKEhhkVCfVeAWbpv+W6PyErAdO6aXhbzp0e29dl\r\n2ovMdvaQ/NId4ZrsEWiH5PO5jMCd3AjBGFMBfA7sjkf+CBMQKgleBBjLP3uf\r\nS6Se6WT1pVAZloxyL8QilampMy7EYeWRPyncfb+wu4/496tNieoAMIPofNqn\r\nUY20AkI5kBo4qMBnzuC8OpW4EOsE9EZUj4C/hTChPf3aFoU0ddDH0IFgPpXD\r\nO+Og83GRW5BQiGw0v0UVLpSELus6UVTMLaCXOcRlOTqT8rROFLK+uupc77qf\r\ntWx1OjJsQ++Mb39MhnMmsxUR8NxgcQN6QJQAie/kSohfcLnSl5PfdQHjDeBZ\r\n8BbYe9C7umim8PdMHXTirsFLUt/z+GNt9rkrQAsdy5dkUPpuJnLUySJmUfkF\r\nKvXX6JSEaAcvU36klhkilO1rWF2rad+XZ2iq+osq2bM1xn6Uw+2P9Fl1m2aw\r\ngtxr4aATmmsCYHRajKYWkLaY50AgIV2mH5R07P4cxkitZQDQJKz5WUo2G0EQ\r\nOwdPW41u8F1rzq3a8Iknfl24Up18IfxmwYM=\r\n=ui0g\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"17192c852017fafc26832fbc751be4a60d287c8e","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"8.19.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.17.1","dependencies":{"ejs":"^3.1.8","globby":"^11.1.0","commondir":"^1.0.1","minimatch":"^7.2.0","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^5.0.0","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.4.3","sinon":"^15.0.1","eslint":"^8.5.0","mem-fs":"^2.3.0","prettier":"^2.5.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.7.0_1677514800013_0.19092222028750916","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"mem-fs-editor","version":"1.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"80f382d823f3cc2a456a130bfa8d8ec46884a096","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.1.0.tgz","integrity":"sha512-6lF2BSJkOGMrrcOvvfzy9iE3DL/prCjI/xO4v2045NgnJuSgU60i8i1iQVaEHcj6Zjqy/8xvWm01db+GIxKdxQ==","signatures":[{"sig":"MEYCIQDlMt64FQUMwUe8YJy5NPhpUGhL8tDYrf/2E3Us543yngIhAI7wFHhqMclvPXqaFhiO8FdZE7+uXBtgIsgFMltCstHr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"80f382d823f3cc2a456a130bfa8d8ec46884a096","gitHead":"8fb6ed21790dba581beafe93b95f25e3271e047c","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.1.11","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.10.32","dependencies":{"glob":"^4.0.6","sinon":"^1.12.2","vinyl":"^0.4.3","lodash":"^2.4.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^1.21.5","mem-fs":"git+https://github.com/SBoudrias/mem-fs"}},"11.0.1":{"name":"mem-fs-editor","version":"11.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"758485bf5d210ac2db52eaf5c97bd6892fb11e9f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.0.1.tgz","fileCount":46,"integrity":"sha512-ne7/ep9gIfl8IitTDBMlU2M0IRfvAzCK2zhoafu+hirqui9A9qp/KQOpG+J5/Td6qufbLee6RMxYeD5vxitK5w==","signatures":[{"sig":"MEQCIEQ1b4E4M5z+0NqEXYP8LGRdPfqhV4zU9WAyq+NpXv5yAiAPLRKViYmhH6sLa4EzBAPfa9fueL+bpnTgRyy2uHuWSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44699},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"a0c2d4bf1cff0993844efdb20818dd23bb0c34f3","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.7.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"18.20.2","dependencies":{"ejs":"^3.1.10","vinyl":"^3.0.0","globby":"^13.2.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.3","multimatch":"^6.0.0","@types/node":"^18.18.5","deep-extend":"^0.6.0","isbinaryfile":"5.0.2","normalize-path":"^3.0.0","textextensions":"^5.16.0","binaryextensions":"^4.18.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^16.1.0","eslint":"^8.51.0","vitest":"^0.34.6","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^0.34.6","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^6.7.5","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"mem-fs":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.0.1_1716513077519_0.45096609984369995","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"mem-fs-editor","version":"11.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@11.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"ae8398a16584106f19a97a5e156dc5cdd5193103","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-11.0.0.tgz","fileCount":46,"integrity":"sha512-D9+DPIDohRxYUO95vR3RxJZUNkCmehOHqIoJVm9OxChMadCsNdiTB1nuU4zaHJonUMASYdfKN2USxnB9z0ccXg==","signatures":[{"sig":"MEUCIEykQEqaR2J+8xSQ4obARAgVdPViFP9MFbkc4ZOgPlTUAiEA8OElhQUhdOdG4SHW/qx9uzhQJ8keIi6YvGwzJ8tZuBA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44422},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=18.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"472c0eda0f0abbb5dae33c7b65b31dbd242c3d2f","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.2.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"18.18.1","dependencies":{"ejs":"^3.1.9","vinyl":"^3.0.0","globby":"^13.2.2","commondir":"^1.0.1","minimatch":"^9.0.3","@types/ejs":"^3.1.3","multimatch":"^6.0.0","@types/node":"^18.18.5","deep-extend":"^0.6.0","isbinaryfile":"^5.0.0","normalize-path":"^3.0.0","textextensions":"^5.16.0","binaryextensions":"^4.18.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^16.1.0","eslint":"^8.51.0","vitest":"^0.34.6","prettier":"^3.0.3","coveralls":"^3.1.1","typescript":"^5.2.2","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","@vitest/coverage-v8":"^0.34.6","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.1","@typescript-eslint/parser":"^6.7.5","prettier-plugin-packagejson":"^2.4.6","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"mem-fs":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_11.0.0_1697414538909_0.2515676248461878","host":"s3://npm-registry-packages"}},"12.0.0-0":{"name":"mem-fs-editor","version":"12.0.0-0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@12.0.0-0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"ba178655dd414ca0aaed2cdfaa6b204721ec49a9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-12.0.0-0.tgz","fileCount":46,"integrity":"sha512-4IgWhxhxkHTujHAMRVcs7C857WdGzk7dECr2TwW4K/D9Qb1ofWacr+0PXn0uom5Jd9xAZLhQ3+WPi7YAtzGSWQ==","signatures":[{"sig":"MEYCIQDuD+WMiL2aJpu0693gcu7cqQq3BOI5vgurRGBdar+O+AIhAMbuYtkWxYx06Rrs9SEV1Vjlq9opuEppAQk8Db3H15WB","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50272},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=20.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"4f462af9ac54f32995bc5fa9723f7f12bec2c6a4","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc -p tsconfig.build.json","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"11.10.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"22.22.0","dependencies":{"ejs":"^4.0.1","debug":"^4.4.3","vinyl":"^3.0.1","commondir":"^1.0.1","minimatch":"^10.2.4","@types/ejs":"^3.1.5","multimatch":"^8.0.0","tinyglobby":"^0.2.15","deep-extend":"^0.6.0","isbinaryfile":"5.0.7","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"eslint":"^10.0.2","vitest":"^4.0.18","globals":"^17.3.0","prettier":"^3.8.1","@eslint/js":"^10.0.1","typescript":"^5.9.3","@types/debug":"^4.1.12","escape-regexp":"0.0.1","@eslint/eslintrc":"^3.3.4","@types/commondir":"^1.0.2","eslint-config-xo":"0.46.0","typescript-eslint":"^8.56.1","@types/deep-extend":"^0.6.2","@vitest/coverage-v8":"^4.0.18","@types/escape-regexp":"^0.0.3","@types/normalize-path":"^3.0.2","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","@typescript-eslint/parser":"^8.56.1","prettier-plugin-packagejson":"^3.0.0","@typescript-eslint/eslint-plugin":"^8.56.1"},"peerDependencies":{"mem-fs":"^4.0.0","@types/node":">=20"},"acceptDependencies":{"isbinaryfile":"^6.0.0"},"peerDependenciesMeta":{"@types/node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_12.0.0-0_1772219396708_0.5966273091372176","host":"s3://npm-registry-packages-npm-production"}},"9.1.0":{"name":"mem-fs-editor","version":"9.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"090868eeaeac60826632a592b4a85a20dda23f77","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.1.0.tgz","fileCount":23,"integrity":"sha512-BrfhBTJ2oEmE9HRCbv70e7gnpflIDnV7OvDrCt5bcgoORTyleyXz7WberDt5+S/gqMpGfXpwkoXcsGoSMfb2xg==","signatures":[{"sig":"MEUCIQDIVYS//UpHFq/FZSf0H+4zjgIu1Y/EJFCHHe/95ICtEgIgaQozSTTHjJI8HSp3d9h3lACZ/cLIXqojupYYsTvTgls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhBDOYCRA9TVsSAnZWagAAWXQP/1Oh4JKYBnMidCzeoHtt\nOcJBLb9vWdbGfB7lyvqFF/bUNLvDseAkY16ztekmIwpdIfrml6Kz7iBDmq67\nIXmHX3BQMpU52MFT+64JhgShhPhV7Blfv+QDLPVWJ5FSF5b4Iz/hgYpcyfXv\nzGUsPCZLvSAiCMhHa/I6uoshluQlpqYd0OJPmYuTF9FHI0Ck7VtU64H6TuWD\naBZRNKgNvbSZDM0FMI42bp1QkCSRDCGVMI/Q/qKEphpq5LnT+4m90VU/3gol\nsNyUekZNJphMD+p7CkAW+1RV//EsX7d/61wAmLu6yAsap/hB4UhT/pysCBTi\nbEyzHMWS5/07PKt2vqrs+8B+gKMKo5yY6GpRtX4z8wxlKVGxAnHhwKKmy0Kp\nlguweCYnJ3uXIZp9vjb1TrLmHKqF/9lCpFH/R1ogT7YSK8xeeoeeftoAuh9h\nceAwo4amDg2jEzpA5Rzo6EWZzq7DmBvUJyAlfILtez4H3xbmnWSt81vWTZYy\nafxv5v2lIkig4lPpOWUfNsHel2WYZpwiIWvKR45eTvVkznCVZuqpUvIF9Ot3\n3nJUx0dbSqZ3Vp7FvT2Jz/tiS1dHJRCDgqtNOX3EZ4MmDYpTtg08f/Cq72qU\nuqys+C4GYZH3c4frVxPf5plFbxkfZfhRghLmdQmXkI2nyCRc5cuAYMEsau3D\nIDlD\r\n=qvTJ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"4d21170d017cc2918a89dbb86e999af788e0b5d0","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.19.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.5.0","dependencies":{"ejs":"^3.1.6","globby":"^11.0.3","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.12.0","binaryextensions":"^4.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^11.1.2","eslint":"^7.26.0","mem-fs":"^2.2.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.28.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.1.0_1627665303767_0.03369467870017995","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"mem-fs-editor","version":"4.0.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@4.0.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"55a79b1e824da631254c4c95ba6366602c77af90","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-4.0.2.tgz","fileCount":16,"integrity":"sha512-QHvdXLLNmwJXxKdf7x27aNUren6IoPxwcM8Sfd+S6/ddQQMcYdEtVKsh6ilpqMrU18VQuKZEaH0aCGt3JDbA0g==","signatures":[{"sig":"MEUCIQCiLuzo8wec7w7N4T3aa+JYrxbkrWP2G5+/6mPNpf7UuwIgKkD0CJSmMqmTo77vZ8QWDTXbgXHLwKxubscpcgLTTdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7z2aCRA9TVsSAnZWagAAiOsQAIJVL/bsF6BuaLoj2Jif\nqi8PBwoyhbY8Kx6dmp3lBun6a6plrapOvfxdRIZs190Oanulf+LxmGU5Jm4n\ngKj2jcjjs6YG2IlXnjdVO7zUJe4GFumML8kHWBLzAxWrg7Thb9a6z3UjnXey\nHK/9ueGcbtwfEeLvoiqj3zOUVJ46lYIbgMVIvAU+DpUDjes8FT7R0kIcVe56\nBaenYksMgIkLy4XYukozH8ppa6e120t+4J1+BIG/reLehkOn39QxJV/RsuUj\nXNkZ6z3rKwPcACbIRWpXPELyXOsNV5fs04JjGj40o5hzXPxvQaBvKYA96EDU\nQUbC2doiKTWvLzoY+qhuK0JBVDJ7gRE9BVhdyV/ZKZFOuidyemisGhOwFROf\neWuSh3herHga2G9qUobBKss6+STYrNqTKi+hDViLz336MVQBYwEU/CrcZ95z\nwyjL6eL6LpHHL5Q1R5knqYwsyvI1ei0DCRZv8kwl2LzzN6cL68XtJiCRaKT0\nZ2SP5tLQwdonn6x5O698YMuBIuG9ZOm2NXLtYt/ZCKEkrERatHL7/lh6NtJg\nYUrKxU8IbbPBcSNfYHmDVqoqgEG8WnTm93QySNqlFTM+UJozgcgvMjE5k1JF\nujN+tnQ1HlCQ6TnS7m9jcC+WEs7nIqK+xE3IdwlGEAJMjJ4ZOrJb9AIJ8Yoh\n+j5F\r\n=M6sj\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","files":["lib"],"gitHead":"974e693bad39fe3388141c06ad485ba1cd74fea3","scripts":{"test":"jest","pretest":"eslint **/*.js","prepublishOnly":"nsp check"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"5.6.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"9.11.1","dependencies":{"ejs":"^2.5.9","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^8.0.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.5.1","isbinaryfile":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"nsp":"^3.2.1","jest":"^22.4.3","sinon":"^5.0.0","eslint":"^4.19.1","mem-fs":"^1.0.0","coveralls":"^3.0.0","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.18.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_4.0.2_1525628311622_0.3275012041517391","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"mem-fs-editor","version":"4.0.3","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@4.0.3","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"d282a0c4e0d796e9eff9d75661f25f68f389af53","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-4.0.3.tgz","fileCount":16,"integrity":"sha512-tgWmwI/+6vwu6POan82dTjxEpwAoaj0NAFnghtVo/FcLK2/7IhPUtFUUYlwou4MOY6OtjTUJtwpfH1h+eSUziw==","signatures":[{"sig":"MEYCIQDdc1Az5AePIpsvPMtolfoOODdefN9EwV2w5sj4pBAuXwIhAP6/82XPKwGk0X/iQ4q7K6ufojIzYG9IkfSHV8sNH6cg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbN7aVCRA9TVsSAnZWagAAWvMQAI0CKLaW5xSE9TWucocv\n2IsH8Lv+IPpv3urRwaZEmByhOAJfKpl7l69I/RHtv/iu/obEa4+Z/kxsQBbj\n9ii5iaN+thxRPfCTj/YeUN1v9kxA8NVxKM1hcplAu8OWucfM5D1VctDNtvs7\nJdYH2rGxYMqlG6ZB5Ccqv4jWGoOvxN6q2ruxKl7UnXY8EGFGM83i91VUhJIK\n9c4ApP2yKqwqcp9HhsbqI1NFkgK5Ml3iYLwAdaK9AOHtC68C349vCrbl0Q1a\nQPhv+rgXms59ZqH1PAzJLuF3ZLOd/lcdqBKXbAIr69XizDIPM5yzJVWfhCX+\nc0m5YDLDbauPfU5oqTc5Bm5OOlPs3WxFdOc/rWd8Ca8QLVZ8ucF0NERanHZC\nkqQawckTXVc5PfO+QGj3Q0VvPJS+hFK+67dJ8G/xm5Z3vwX5oEXCmU8MCCfL\nK2u4K9GS2rFdbxHXt7aXybXy99L4clXrA/3oAT1Ubz26uTRcTLeXS2RAjfV1\nzB8adOGi06XRNWtXsap+edfrAm4Nd5BBMKRKYKA6rdTgcelG7t1p9CACa6NH\nQlUADX5VMUBiDovS0+Sx2ENNHRM+mA70f8lbV/ZXiGF4tR4sjHW7Yt8acLmN\ngDG81cJPlMbclLLBy3E4CIru7WcAWZortyQYpq7oBlkx20pYv+tx0SIvDlKu\nQba2\r\n=lWVZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","files":["lib"],"gitHead":"1bab273384606503463573d9163d8aea1bf20da7","scripts":{"test":"jest","pretest":"eslint **/*.js","prepublishOnly":"nsp check"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.1.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"10.5.0","dependencies":{"ejs":"^2.5.9","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^7.1.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.6.0","isbinaryfile":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"nsp":"^3.2.1","jest":"^22.4.3","sinon":"^5.0.0","eslint":"^4.19.1","mem-fs":"^1.0.0","coveralls":"^3.0.0","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.18.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_4.0.3_1530377877253_0.859504483776333","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"mem-fs-editor","version":"4.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@4.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"ff40a6886c7231ac330389b8206453e3564d12ec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-4.0.0.tgz","integrity":"sha512-xo3rK2HRWWgPJXs1qxeqpUauMLX7efkQOmNmq9DsiV2KIlXyJAV+E0OZKWtz8QrFxxLTLITxc9VHHECkzjBWdA==","signatures":[{"sig":"MEYCIQDei7rz4rsvNjHrhW6/i3oulL3WmSXKez8PIKziaCDZogIhAItbzzvOePlwgQ3mFmjpXEyClAuHuGnNzhbH2hCIaQ0f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","files":["lib"],"gitHead":"3fee19116a96ddc22acb67d90ef77f660ae41aa9","scripts":{"test":"jest","pretest":"eslint **/*.js","prepublish":"nsp check"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"5.5.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"8.9.1","dependencies":{"ejs":"^2.3.1","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^7.1.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.5.0","isbinaryfile":"^3.0.2"},"eslintConfig":{"env":{"jest":true},"rules":{"eqeqeq":[2,"allow-null"],"no-eq-null":0},"extends":"xo-space"},"devDependencies":{"nsp":"^3.1.0","jest":"^22.1.0","sinon":"^4.0.0","eslint":"^4.1.0","mem-fs":"^1.0.0","coveralls":"^3.0.0","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.17.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-4.0.0.tgz_1516022327176_0.6334083410911262","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"mem-fs-editor","version":"4.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@4.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"27e6b59df91b37248e9be2145b1bea84695103ed","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-4.0.1.tgz","fileCount":16,"integrity":"sha512-54fptqhSZX1sSYsVVInG2qzUWPPrEv/6qYxHAwXJZQfzDcviJcL+7p/wmupg8SdAOi42m/vilMBemx3D6Sz22g==","signatures":[{"sig":"MEQCICOaHh4DMLx8zGf+Km00AS1TPwD82V7hXsLX8PQb0Eu2AiBNdQ5pn18GIc0nwLdN4AKpodTQV/730zOkXapO+xew6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16497,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5tDtCRA9TVsSAnZWagAAPbMQAJEoHLQGkOLF/ssqiKE/\n+FbGx1VSBTkMtoOC70JIktS/pJuNCLQgBWx9cSfs8TqzMyppME7xyg2ai2fv\npHv5CDIZLfRYtHbgnaJ5vgLJORvQYuNK+zwmhOqemSaDWY0EoZOr5qqEXKK2\n7BhwWoUHEgstg89yvz3JD70wX9yVmXnMfyppJHwA8ACLzlqJWmq74EncIy5w\npBCvGWU8dy1dWcLIC6RvTr5FvEFmalWM1CJjQiqgoEgnDY6s37VPS7vuPNKu\nh2M7/xzegT8RnAN8IUDTu/8IwcrtksqE0YQ3jaNU+Ahzt9zSYLPtl8f4LSp2\n9/2j/Te9vlO2ZISDdZiIAvGoSNxeCP/GEnDscWIuBlg/1KIcZW4yVJD3kRCL\n3+6qKtyDEI7+y/akd9M6i/5rT8O6+IWC9t80z5RCsWCnQOESNzyFECsxxbkk\ny3vVg6+lyCsqKLQFbAf22CP2OpMGinFpLqBHOpV+sjp+VcgO2RNlXD+ZVTS3\nl2UabU46bi4IAOL2V8vlgS6TFWik3cwfzUwKe+r71Qv2RtbO/fhmR99OkdRK\n13wN1COH0OrTCPHQznOwitcLzvv+cxKgLOFGcGDuClnExB5kQ6G2VOjS/mpy\njmYOhwI1FlYBS/9zfWUDKS/yMOkRdkyxYHwblHvoYdPZsvnMelP86LfAoYFt\nzOtn\r\n=dFyi\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","files":["lib"],"gitHead":"a522ac377128558c903de0e3ebee3ada2a3af0af","scripts":{"test":"jest","pretest":"eslint **/*.js"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"5.6.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"9.11.1","dependencies":{"ejs":"^2.5.9","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^8.0.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.5.1","isbinaryfile":"^3.0.2"},"eslintConfig":{"env":{"jest":true},"rules":{"eqeqeq":[2,"allow-null"],"no-eq-null":0},"extends":"xo-space"},"_hasShrinkwrap":false,"devDependencies":{"nsp":"^3.2.1","jest":"^22.4.3","sinon":"^5.0.0","eslint":"^4.19.1","mem-fs":"^1.0.0","coveralls":"^3.0.0","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.18.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_4.0.1_1525076204342_0.16596069423569948","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"mem-fs-editor","version":"3.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@3.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"2bde38970ee0a842390edd7e3f1504437c31e236","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-3.0.0.tgz","integrity":"sha512-2oG7ZepCz7UEGqH7YykhuFTQNt+V5/nTnx8DcqbyGHTzR18oQDcGc3EXlkFKaznI/jW+2dIUx2X4giEjSKNzGQ==","signatures":[{"sig":"MEUCIQDYcMykMvzzHQAjwJrGvUwMItcfZsqhDu0D37qtLfWm2AIgFYb1wzAXaE7GkUWuxKYPGKvL9xpVxF8Qa5/8SrNL5eI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","_from":".","files":["lib"],"_shasum":"2bde38970ee0a842390edd7e3f1504437c31e236","gitHead":"1604a0c6f364994bbdeb9d28f5cfd0c231497951","scripts":{"test":"jest && eslint **/*.js","prepublish":"nsp check"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"4.0.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ejs":"^2.3.1","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^6.1.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"eslintConfig":{"env":{"jest":true},"rules":{"eqeqeq":[2,"allow-null"],"no-eq-null":0},"extends":"xo-space"},"devDependencies":{"nsp":"^2.6.2","jest":"^18.1.0","sinon":"^1.12.2","eslint":"^3.14.1","mem-fs":"^1.0.0","coveralls":"^2.11.15","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.15.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-3.0.0.tgz_1485506513028_0.24069455661810935","host":"packages-12-west.internal.npmjs.com"}},"8.1.1":{"name":"mem-fs-editor","version":"8.1.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@8.1.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"23a6cf6a5a0a2967cb94d33e148342fa1dc9e34d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-8.1.1.tgz","fileCount":20,"integrity":"sha512-GhsfYkTyHg73Y6HsfAX6VhdjoMYs/3xjuetz05Fu7YgvGfDiF4pEHDQV01AAwq49alZdn1MghqL1LbA58CFsCg==","signatures":[{"sig":"MEYCIQDVuSBpua3vHydNZf0tyfUYKzCElTUA8seM93YfwtK91gIhAPUUY3vUqdx19T4akWKeN9h97JwbClURUY44XPXxPgUt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgghDrCRA9TVsSAnZWagAAylIP/R5+ZqeI7D/XLOrOsG8g\n9+HXjClZdUOeEA9n4f9IdBd7oZXRkoZKzw7Eph9zqAsltuV8TK9SpJ4Qz0cz\nQwdtv+0lehuANYKoY3nHedIS3OSx8bDLPRZ9e6aHyMGf5all4Wxu/mgQI+l6\nJ5Afdb9mlhVb1TpGRtJXiSkYUXK9VFll5Sk8Di0hiAnPHCSWQ/3/a7lAqo8R\nR5kzIf9n2ShDWeDGOQkh2BRuyAiFv3KY4ea//GGraVBXThJBlD7EQ2cE5y2S\nY1unrSFJUFGhDYswL9EkUtcnB1mCMOYxfEWZY1CrFP3Qy/BJizHQbL+izcyj\n6unVJWNRNzCNkRaOseVHYOn5z1QF3ep1ZtKgzmLnCyVP0jGzMtmgAGZErNg6\nuGkPEAHhbQZH6V0ifLRZo5dMh/iAbHRFilmBHRR/xFGjzc4CNzniXSVo7rOB\n6P2djLYcOOLYT4h8kc7lflJKhzPQN/lw53MvktRs5mIamolYrdsNVeAks6ZC\nsVf/hBC9JD9z4HUWs+AotS0N9F61oNbMOJfvrbmSToC0NKaSNZp2jiAIbn6B\nUs4C/AsMCUNStcAi5eddBck58yGcs6k+3gw7PPoIoBpWGzO3wXZ5bOK8zyOZ\n1Fxux4/nE1+jlBZtPdfX0IzKJCdnk/ODvwmVnbQQPn4Xswc0CZi/uvEcR3vr\nGq/6\r\n=hpPm\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"246039738bb5dc82ebf40b83917755e8891c76ae","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.7.6","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"14.16.1","dependencies":{"ejs":"^3.1.6","globby":"^11.0.2","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0","normalize-path":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"2.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"peerDependencies":{"mem-fs":"^2.0.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_8.1.1_1619136746524_0.5913290256600363","host":"s3://npm-registry-packages"}},"12.0.2":{"name":"mem-fs-editor","version":"12.0.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@12.0.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"f7411cb5c2d5effb1e799cf134cb648e2cf8a30b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-12.0.2.tgz","fileCount":46,"integrity":"sha512-H31IlLheZAEViQpInX2Wv9YdH98hLMOeqiaSmuENIDoXriQBd7KUmqXOgby0Xgy/9MoZvvDly2k9Zm77EdngAA==","signatures":[{"sig":"MEUCIQDjZ5yV1d204al5TImr1qQo4ICjH3GKtf8PbYXVsSiURgIgFbbQX0TK9tnAImATc12HW9j0FJYzLiSycOowvSCE2Rc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50327},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=20.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"86454dd2da1834753ce1b2278ab1233ea036249c","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc -p tsconfig.build.json","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"11.11.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"22.22.0","dependencies":{"ejs":"^4.0.1","debug":"^4.4.3","vinyl":"^3.0.1","commondir":"^1.0.1","minimatch":"^10.2.4","@types/ejs":"^3.1.5","multimatch":"^8.0.0","tinyglobby":"^0.2.15","deep-extend":"^0.6.0","isbinaryfile":"5.0.7","normalize-path":"^3.0.0","textextensions":"^6.11.0","@types/picomatch":"^4.0.2","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^10.0.2","vitest":"^4.0.18","globals":"^17.3.0","prettier":"^3.8.1","@eslint/js":"^10.0.1","typescript":"^5.9.3","@types/debug":"^4.1.12","escape-regexp":"0.0.1","@eslint/eslintrc":"^3.3.4","@types/commondir":"^1.0.2","eslint-config-xo":"0.46.0","typescript-eslint":"^8.56.1","@types/deep-extend":"^0.6.2","@vitest/coverage-v8":"^4.0.18","@types/escape-regexp":"^0.0.3","@types/normalize-path":"^3.0.2","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","@typescript-eslint/parser":"^8.56.1","prettier-plugin-packagejson":"^3.0.0","@typescript-eslint/eslint-plugin":"^8.56.1"},"peerDependencies":{"mem-fs":"^4.0.0","@types/node":">=20"},"acceptDependencies":{"isbinaryfile":"^6.0.0"},"peerDependenciesMeta":{"@types/node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_12.0.2_1772280920098_0.602066071899529","host":"s3://npm-registry-packages-npm-production"}},"8.0.0-beta.0":{"name":"mem-fs-editor","version":"8.0.0-beta.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@8.0.0-beta.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"3b74dc71317deb2611e10f455aa0dc525db7be89","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-8.0.0-beta.0.tgz","fileCount":16,"integrity":"sha512-KUyO1CKKvflowdqvZsG+UvrdVr20Az0XHfv1h2rxlmZA9VyzG5LMzxZwW+hiaGOuDh74Zh6d21eR1gADQbmVUw==","signatures":[{"sig":"MEQCIEWwYZLW5DraQKup3sdTX6Ug/A0HyHe3NvUcrPtyTtPfAiAZnw5mLAZSxqQ3Aurjn27EJ6bfHKDS7I+8YfTsBnR8ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17610,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJftBUwCRA9TVsSAnZWagAAqRkP/Au8HklJS2fbXTSc1uQM\nyqd0PX56+30H0nacrNTmGRxvSfY9Vf9KDwRY7m3y78DzXjQ2KAk5Vog0GZZa\nqR4QGP9ab6m4OHIBohccvjQqv3aYLvkPhDiCMmzijsNTcMSQRxmUknh7WlzX\nrnCW0T5OtHMfUbZ4XY7djmxmHUHw/f600sUZ5Fq233DzGLBvJe7N42C4HENM\nXkCSheR02uaCT2gGhViBqM62a9dALs9gb+1BhadvvvCGJ9nk/iJtoOdcmu/p\nB3meLEbgHtsALIPVcL7KNvb+s4+eE0vbrhSFJC0qs0y9SmRQxxvjhPLkJ3d9\nRzuw5bsc/imsBj38MUV8QQeEGUYNZeXs4JXCHLaKvJ9f5NGRa1IdgI/93SHP\nUUx3rIoqUdSU4Y/91fCSfTYIv9oaQhK1bhP7/xBU21IKd9/7SEYOwaTyS54g\nLMRmWCP3U27JVb5t1ed+eSnlPbTHgapwkGzx0eSO34HwNs0EyrM1kCID2HTV\nigTeWFWe/gUjqXMPkH0CQZOg66WQDM2E9RmBbDNcaKFQWDgp4tb22hxYfcXa\n9Mx+KYvILKvsbgctTugpOerPEhf4FOp8ZLGI+z4TByMW4XYTaytT2za+W6LV\njVM4IgdtoXbeXl+Gt/vcQZ7AxWnlabt8L8HqG1zbS200SdT/aR7+GlAGv+mc\n6gL+\r\n=Pdat\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"ec99952f09216c16fdffaca80d2e24a468b763f3","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.14.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"12.16.3","dependencies":{"ejs":"^3.1.5","vinyl":"^2.2.1","globby":"^11.0.1","through2":"^4.0.2","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0","normalize-path":"^3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"^1.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_8.0.0-beta.0_1605637424319_0.6042379721241393","host":"s3://npm-registry-packages"}},"8.1.2":{"name":"mem-fs-editor","version":"8.1.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@8.1.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"475cbaeeb917d162a949e9d4b6049f688e422ec4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-8.1.2.tgz","fileCount":20,"integrity":"sha512-owE6PKMRegrYb37Lsar3yLSwK9wLGvHkNIOzBO3ycFeoOwshdF8j593EqjU7ucFAf3ZvcFVwfpo8Q8LqgFQg0A==","signatures":[{"sig":"MEUCICf5t2hvqVjSU6YYvNICfTJKlB+voYlVYXsNYIuFoEZZAiEA1WXLQz/yQuBF4vKHSuL4aoM4onKy7NInuH0h1+KKabs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggh1yCRA9TVsSAnZWagAAhCsQAI4HiBcBKUxUMWvRUv/B\n1fpBzmPIhoORAh39CU5wIsDsN3xKYsV5c5u59d8H6HxFUIY9LmrauwVEoz9Z\nf4NHKne7y74D0oF0JLlLvyMRt2TD4aZQZ8bWAMYbYqV6aoOv/citzv2TIUIC\n0LQouuUZ5EPtUpKz0CHi0x3wLwCuXHaoYSak7P2Sg9AmRd3I+cGojSItuEFL\n08UpnJ++pLM9A1evIKwY0Q9LW6oX8UzdvKk8B0vXdGiKsKyo0/igG3i/ZrPv\nKZsQcln30wznqdUHn+NKODvUcePNZiVAadPFnASFnrBQHxsTUgulUD5Npf2L\ndqMEQGNPeMYvNuWBSG7VYsw6eUKjAfpW04X1fFP6x2anzLAyBTWXJ5Jpoe7N\nFtG8QclFo4oc7jCNVR5q/Yb27rhAwI/DF535Oubv/Eyq5v7ACQFl5socJzZK\ntGm6hAR4ogaYKxynymMAjgIFTqcYSb2Q/IXGKXYbxmSkrlore2CvtSCQ8aht\n2A2nYiqNbL9vQm9jCaqQ2jOEojr46/Xjxu+oBvsv+2Q9UJ0gTpQLnK9Q+YsP\nxloEz+qDX1+ARKShx837rZD7oOV2fqiqRjaqqp2WYPrcGRBBSsEPREWuWHMi\ntEkPnnMVI7IrKTxJTnOrxMWsr3fnHiF3dXOCoU2asD+BciOXkSbT3eodP4ou\nWJdx\r\n=Te50\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"0e52a55bcd83294ea7e144fb24d06ca7aa19aae1","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.7.6","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"14.16.1","dependencies":{"ejs":"^3.1.6","globby":"^11.0.2","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0","normalize-path":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"2.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"peerDependencies":{"mem-fs":"^1.2.0 || ^2.0.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_8.1.2_1619139953523_0.2979027615253447","host":"s3://npm-registry-packages"}},"12.0.1":{"name":"mem-fs-editor","version":"12.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@12.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"8155913ded9540f9ae97066d1d41024597652d65","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-12.0.1.tgz","fileCount":46,"integrity":"sha512-y+CG+HLAOxORRmSzM8eMVS83cbMipwtPvtKTMfsCSZYDuBMQbh/Aq9jLG5DAZIAiSTgJSMggCC13IbvhFSBaqg==","signatures":[{"sig":"MEUCIDj0+2TfLhGzIFwf4Ljpt6RW9JstAWAI/c+TdwCz5+oEAiEAtJxfxMjBd7AMwvuw2GQ9IZHkQ9lWGSKj68qAYfXIG1Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50327},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=20.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"e30acddcbff36925ae90243ee8db8991157fc938","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc -p tsconfig.build.json","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"11.11.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"22.22.0","dependencies":{"ejs":"^4.0.1","debug":"^4.4.3","vinyl":"^3.0.1","commondir":"^1.0.1","minimatch":"^10.2.4","@types/ejs":"^3.1.5","multimatch":"^8.0.0","tinyglobby":"^0.2.15","deep-extend":"^0.6.0","isbinaryfile":"5.0.7","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^10.0.2","vitest":"^4.0.18","globals":"^17.3.0","prettier":"^3.8.1","@eslint/js":"^10.0.1","typescript":"^5.9.3","@types/debug":"^4.1.12","escape-regexp":"0.0.1","@eslint/eslintrc":"^3.3.4","@types/commondir":"^1.0.2","@types/picomatch":"^4.0.2","eslint-config-xo":"0.46.0","typescript-eslint":"^8.56.1","@types/deep-extend":"^0.6.2","@vitest/coverage-v8":"^4.0.18","@types/escape-regexp":"^0.0.3","@types/normalize-path":"^3.0.2","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","@typescript-eslint/parser":"^8.56.1","prettier-plugin-packagejson":"^3.0.0","@typescript-eslint/eslint-plugin":"^8.56.1"},"peerDependencies":{"mem-fs":"^4.0.0","@types/node":">=20"},"acceptDependencies":{"isbinaryfile":"^6.0.0"},"peerDependenciesMeta":{"@types/node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_12.0.1_1772280580687_0.6961531590294792","host":"s3://npm-registry-packages-npm-production"}},"12.0.0":{"name":"mem-fs-editor","version":"12.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@12.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"7d57c4e9d837dce677d303c55071b949a86ea8f7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-12.0.0.tgz","fileCount":46,"integrity":"sha512-ihSLQdJRLdKYCwr6NA7WTaKlwKT+HRoTtOnxBp2q9gv5cBTfWG6VH4cy3lCraiFrwz/xn7DIw0XE1Kds7JunmQ==","signatures":[{"sig":"MEUCIGdtogrrTh9gnKGMUs7glMI71MOJV+fi88sEIAaUWVbIAiEAxD7oMGOk3ubDzUbcNzJ/yS5p9iNHbU++jpcMzaMnk1I=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50270},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=20.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"fdf7788366f1d15337bfc1404afe466b6ae98a32","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc -p tsconfig.build.json","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"11.11.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"22.22.0","dependencies":{"ejs":"^4.0.1","debug":"^4.4.3","vinyl":"^3.0.1","commondir":"^1.0.1","minimatch":"^10.2.4","@types/ejs":"^3.1.5","multimatch":"^8.0.0","tinyglobby":"^0.2.15","deep-extend":"^0.6.0","isbinaryfile":"5.0.7","normalize-path":"^3.0.0","textextensions":"^6.11.0","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^10.0.2","vitest":"^4.0.18","globals":"^17.3.0","prettier":"^3.8.1","@eslint/js":"^10.0.1","typescript":"^5.9.3","@types/debug":"^4.1.12","escape-regexp":"0.0.1","@eslint/eslintrc":"^3.3.4","@types/commondir":"^1.0.2","eslint-config-xo":"0.46.0","typescript-eslint":"^8.56.1","@types/deep-extend":"^0.6.2","@vitest/coverage-v8":"^4.0.18","@types/escape-regexp":"^0.0.3","@types/normalize-path":"^3.0.2","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","@typescript-eslint/parser":"^8.56.1","prettier-plugin-packagejson":"^3.0.0","@typescript-eslint/eslint-plugin":"^8.56.1"},"peerDependencies":{"mem-fs":"^4.0.0","@types/node":">=20"},"acceptDependencies":{"isbinaryfile":"^6.0.0"},"peerDependenciesMeta":{"@types/node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_12.0.0_1772259099530_0.19508475152283467","host":"s3://npm-registry-packages-npm-production"}},"8.1.0":{"name":"mem-fs-editor","version":"8.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@8.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"15a4b5d5db8ee9e8049904b2819ebac4d27a7379","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-8.1.0.tgz","fileCount":20,"integrity":"sha512-vl7yPOHUEM82hdwmWx6VBWGZoFGUPVM1Q6P5YM1Rb1B1asiyyra/UYVfCpE5pCCTAhJMULMAerdz1kySWgbaWQ==","signatures":[{"sig":"MEQCIHaKJf419WaA1LA9RNsYF/3yhOVlz6GtlKDhJfTsakdUAiAzWqDqvrl7ftvBdKFZ/IhULDFN+3WQiIgtdjYQnaRRjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggfywCRA9TVsSAnZWagAAjVIP/jrLms/RUKTAT/8yXeSy\nMfVqbQn+R5CobklVauFsi6Yp0F7Lzk1wIsZWCoop3hgGrlX+51uMfJyZI/NC\ny6smJYd+/rEs8k7z8F1feb/8XM0bbxOasR+N/T9v5MaEnlFiZiaQEZGIFpqB\n3O9F6wkqy8rKCt+hv5mcJRB0213kDbCA9S7zZRcSexUQ6hXc7vAAwo43CBzL\nIIZEXq2kioiKUQ3bQQtZsyivbgMS15bANg/jYt5kpMBd/rRuwNdzX6t6UfJp\n3kiCCek7Xv8SO4iBKbaF4bon39Gq7a8/ADO4P1/8PNNdNc8abekst42rk9gG\nGTu7s0QLWbdQXJYPtqqGJqOZQmpWKaxvVVeh71ukj2ac33hWOv6gWIZXjWbv\n7bvQWXqRexIYbd/K09E1QooS0IfwqFUsvfO4vmBFgDA1dSzBbBH5ymwKu/Ol\nxTbyeCoMosXYppTaBb3rWoYqTYTzkGWIJHm8hHoSea3F2pKfscZUtWppxlJt\nOppbIJY2/4IpZ+YD3PVXnOBYJC4RJJ161Vi4ADSr7mgV86jBiyF0Y4clYveS\n90oBIbVmUOMJ97KywfHPqdmCeIVDzPCfiUENjGBQMZ568QcMNHvBHZept2Qy\niMmACRzRQVH16jum012fD+RGz6H9YVEppJ6yOHBjdDDhnhimjhTt9DhkdkbX\nHGb1\r\n=tKl5\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"cc302d802143893ded61b97f206d849adf3d2d09","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"7.7.6","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"14.16.1","dependencies":{"ejs":"^3.1.6","globby":"^11.0.2","commondir":"^1.0.1","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0","normalize-path":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"2.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"peerDependencies":{"mem-fs":"^2.0.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_8.1.0_1619131567459_0.7183485980095567","host":"s3://npm-registry-packages"}},"12.0.4":{"name":"mem-fs-editor","version":"12.0.4","description":"File edition helpers working on top of mem-fs","repository":{"type":"git","url":"git+https://github.com/SBoudrias/mem-fs-editor.git"},"license":"MIT","author":{"name":"Simon Boudrias"},"type":"module","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"main":"./dist/index.js","types":"./dist/index.d.ts","scripts":{"build":"tsc -p tsconfig.build.json","fix":"eslint . --fix","prepare":"npm run build","pretest":"eslint .","test":"vitest --run"},"dependencies":{"@types/ejs":"^3.1.5","@types/picomatch":"^4.0.2","binaryextensions":"^6.11.0","commondir":"^1.0.1","debug":"^4.4.3","deep-extend":"^0.6.0","ejs":"^5.0.1","isbinaryfile":"5.0.7","minimatch":"^10.2.4","multimatch":"^8.0.0","normalize-path":"^3.0.0","textextensions":"^6.11.0","tinyglobby":"^0.2.15","vinyl":"^3.0.1"},"devDependencies":{"@eslint/eslintrc":"^3.3.4","@eslint/js":"^10.0.1","@types/commondir":"^1.0.2","@types/debug":"^4.1.12","@types/deep-extend":"^0.6.2","@types/escape-regexp":"^0.0.3","@types/normalize-path":"^3.0.2","@typescript-eslint/eslint-plugin":"^8.56.1","@typescript-eslint/parser":"^8.56.1","@vitest/coverage-v8":"^4.0.18","escape-regexp":"0.0.1","eslint":"^10.0.2","eslint-config-prettier":"^10.1.8","eslint-config-xo":"0.46.0","eslint-plugin-prettier":"^5.5.5","globals":"^17.3.0","prettier":"^3.8.1","prettier-plugin-packagejson":"^3.0.0","typescript":"^6.0.2","typescript-eslint":"^8.56.1","vitest":"^4.0.18"},"peerDependencies":{"@types/node":">=20","mem-fs":"^4.0.0"},"peerDependenciesMeta":{"@types/node":{"optional":true}},"engines":{"node":">=20.0.0"},"acceptDependencies":{"isbinaryfile":"^6.0.0"},"gitHead":"e9752cca83a4f0824374e17e651c9d37a4a80fe8","_id":"mem-fs-editor@12.0.4","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","_nodeVersion":"24.14.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-gc8b4VlisaGp5W+ot2f4Xc8jUgKnMn5UR2mKsdm8UdbESYCdSiQKqioktPu8gJ0Uxd8gV/m/M16Pp5n1Ge8pjA==","shasum":"234bcb93109be2e36b45930a20e83a86a547ee9a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-12.0.4.tgz","fileCount":44,"unpackedSize":52136,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/mem-fs-editor@12.0.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDb8v79URiyF1TBipwvwcTqLHLPs3xpD7Selcaud1VzWwIhAIh5khRKihAQgf5TcdPYzFvrmnJ0yfdYWnVB+96JwHh2"}]},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:d3b2bcd3-c787-4425-92f1-da0a52418022"}},"directories":{},"maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/mem-fs-editor_12.0.4_1776471742463_0.24643371229025424"},"_hasShrinkwrap":false},"12.0.3":{"name":"mem-fs-editor","version":"12.0.3","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@12.0.3","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"6c73144630442609f03cfb02aeaaba38891d0f79","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-12.0.3.tgz","fileCount":46,"integrity":"sha512-RVfJmfthkI/2b8Woy0r1HXAq/vKbnIyvfn7y7JdKO9sngIwYKARvqf/XrdOr2eokn+shQi7TLwXHB0ZyMTnjog==","signatures":[{"sig":"MEQCIHIbm9H4wecluNy5dU1YUPMvqzFpjofAwIxRagbPTZkOAiAShXXgVPvuEYDi1rQ4pWGdc9yW4AwURX3FJ0yh3rvtWQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":53699},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=20.0.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"6979fb007fa5ef21d63a676f7c6195dedaee7d10","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc -p tsconfig.build.json","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"11.11.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"22.22.0","dependencies":{"ejs":"^4.0.1","debug":"^4.4.3","vinyl":"^3.0.1","commondir":"^1.0.1","minimatch":"^10.2.4","@types/ejs":"^3.1.5","multimatch":"^8.0.0","tinyglobby":"^0.2.15","deep-extend":"^0.6.0","isbinaryfile":"5.0.7","normalize-path":"^3.0.0","textextensions":"^6.11.0","@types/picomatch":"^4.0.2","binaryextensions":"^6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^10.0.2","vitest":"^4.0.18","globals":"^17.3.0","prettier":"^3.8.1","@eslint/js":"^10.0.1","typescript":"^5.9.3","@types/debug":"^4.1.12","escape-regexp":"0.0.1","@eslint/eslintrc":"^3.3.4","@types/commondir":"^1.0.2","eslint-config-xo":"0.46.0","typescript-eslint":"^8.56.1","@types/deep-extend":"^0.6.2","@vitest/coverage-v8":"^4.0.18","@types/escape-regexp":"^0.0.3","@types/normalize-path":"^3.0.2","eslint-config-prettier":"^10.1.8","eslint-plugin-prettier":"^5.5.5","@typescript-eslint/parser":"^8.56.1","prettier-plugin-packagejson":"^3.0.0","@typescript-eslint/eslint-plugin":"^8.56.1"},"peerDependencies":{"mem-fs":"^4.0.0","@types/node":">=20"},"acceptDependencies":{"isbinaryfile":"^6.0.0"},"peerDependenciesMeta":{"@types/node":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_12.0.3_1772639384678_0.30385024606513733","host":"s3://npm-registry-packages-npm-production"}},"3.0.1":{"name":"mem-fs-editor","version":"3.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@3.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"f504908c27fb522a148d54737ba25dd37f01c831","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-3.0.1.tgz","integrity":"sha512-sJWTTFFohqqtrp4yXiTQd4QNf7WMyApgmWV5zL4dm8TYCujX6DxRC96NCN8v82Mtp0aS5chrOP00JkNy4VmJlg==","signatures":[{"sig":"MEYCIQCPHLxDqMiV4oxZ4BeL+QXDSq2rYFO0BD3SbD1xnAOlLgIhAPDB1Kz2s218Y1P4kX1rqORC43Ak99YCujxF/02bSWi/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","_from":".","files":["lib"],"_shasum":"f504908c27fb522a148d54737ba25dd37f01c831","gitHead":"de647ccb85d552f91d437e70c051360afb5e6cee","scripts":{"test":"jest","pretest":"eslint **/*.js","prepublish":"nsp check"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"4.0.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ejs":"^2.3.1","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^6.1.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"eslintConfig":{"env":{"jest":true},"rules":{"eqeqeq":[2,"allow-null"],"no-eq-null":0},"extends":"xo-space"},"devDependencies":{"nsp":"^2.6.2","jest":"^18.1.0","sinon":"^1.12.2","eslint":"^3.14.1","mem-fs":"^1.0.0","coveralls":"^2.11.15","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.15.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-3.0.1.tgz_1485709596045_0.7382212840020657","host":"packages-18-east.internal.npmjs.com"}},"3.0.2":{"name":"mem-fs-editor","version":"3.0.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@3.0.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"dd0a6eaf2bb8a6b37740067aa549eb530105af9f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-3.0.2.tgz","integrity":"sha512-42dMCmP714BJ4RhJauY2Rq95MsjlKuj9b9nd8x5jYYmdj300HTZiCa+w/ZiqPIfm5Zh0/dj0vHy7u10lFHueAg==","signatures":[{"sig":"MEQCIGpTfUtcE6NkTfzpPFTHmkta6T8nMN4C95vi4GoxIvhwAiBV56Yr3YgN/VKqiFX4aejX621WCG/yWub7jbniMOwKRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","_from":".","files":["lib"],"_shasum":"dd0a6eaf2bb8a6b37740067aa549eb530105af9f","gitHead":"a04935cb73e99a42e29acaee347dab8f3c862f3c","scripts":{"test":"jest","pretest":"eslint **/*.js","prepublish":"nsp check"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"4.0.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ejs":"^2.3.1","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^6.1.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"eslintConfig":{"env":{"jest":true},"rules":{"eqeqeq":[2,"allow-null"],"no-eq-null":0},"extends":"xo-space"},"devDependencies":{"nsp":"^2.6.2","jest":"^18.1.0","sinon":"^1.12.2","eslint":"^3.14.1","mem-fs":"^1.0.0","coveralls":"^2.11.15","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.15.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-3.0.2.tgz_1485876026402_0.14031435013748705","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"mem-fs-editor","version":"2.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"3fd67ccfdb5dbb138a508280c806cc92a699621e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.0.0.tgz","integrity":"sha512-PuRfvg5sNxwpYJCroJ60C9ozgcVf/uSqOqMj2wGwWwC6pWvdHraDxtErmlxEndMLLowsdX7idKMIfRQWzpXJEw==","signatures":[{"sig":"MEUCIFCf4dPi7LAZ2Yisr6X0qPoUSCMBEPVd5pEND2ayQrVYAiEAq+QxdOKbJQQzywN54eWf5ymJ07aOD3OySYDBRgfsl4Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"3fd67ccfdb5dbb138a508280c806cc92a699621e","gitHead":"4a4f4632612e42b3c868a92c04fe6285e94313f2","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.7.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.12.2","dependencies":{"ejs":"^2.3.1","glob":"^5.0.3","sinon":"^1.12.2","vinyl":"^0.4.3","lodash":"^3.6.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"7.1.0":{"name":"mem-fs-editor","version":"7.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@7.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"2a16f143228df87bf918874556723a7ee73bfe88","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-7.1.0.tgz","fileCount":16,"integrity":"sha512-BH6QEqCXSqGeX48V7zu+e3cMwHU7x640NB8Zk8VNvVZniz+p4FK60pMx/3yfkzo6miI6G3a8pH6z7FeuIzqrzA==","signatures":[{"sig":"MEQCIF8H77lFvqZ3CGSC0T7c8WdRnFRIkqmG6W35fQe9GwqhAiBCty5k/jLkoMJeHW40oESi4KWcxlJazI/vQtWP9ZaMyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmtw0CRA9TVsSAnZWagAAoysP/0Ok4F+eesPQXpLiIZhI\nAJdTM213Tfk3I2HUyQ7H5JSLEEDifQUGQ44PfAjs6LZo7YKTRVV+RCEjZRfJ\nBHABqhTKn4ScFmWMdMq3hEUFJREreZU40Yv2P2/j+pE1/dpQGS3PE0YDmNRh\nxNlUz69/3Ichk1qN5S+hbKH/M60oBllFyh3hsDM8GuGTbO0S536WOAZAcY8T\nAT1lYD3IyaMB3XTEma8VSp0mblbrRtsB6X7t6gg3sBQhVBBkcfg+qBkdJfhF\n592VfNsnSuSsX5Mwr8IFqd+UVUGaAD862xJTuD8gGgyEZu2H8YXfhVPBcYG0\nq9tpo41sWyT1rJBiCUsx3KiJ/hUoy6cW1tiDtTaQfnEi0vQk1PjdDB/QLtZr\nlG/vJzPcQ/9JGtS0lLl5gd/6MHY562aWRgKWbShf1/WZYUFwHzEj8MUgBiOY\ndyB36bEgNEXHMY5Fzp1zqZGRcd3fr9m5Ia+icY4TGc33Z8wL64X24n7xZ2KI\np/6uesip4dCMARSR+bdSm3GofjecloqKW5rMWcz+UCCpqmIfOPZm/tZ6eXT+\nfth5I0w1udmweNEni1NI3zVjexgbyftTCdShiXOHRTfmm5HJj2h8LmJJaPnL\n4PQFWKvrZXU7e4xM2+/i+k1MG9D3zDJy3YB+xckRVi5HB9zqznAqwZbHFkKA\n3Kyy\r\n=wnKq\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=10.0.0"},"gitHead":"4f987b0446ce5dda521ffe602c10cab64beb90a6","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.14.5","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"12.16.3","dependencies":{"ejs":"^3.1.5","glob":"^7.1.4","vinyl":"^2.2.1","globby":"^9.2.0","mkdirp":"^1.0.0","rimraf":"^3.0.0","through2":"^3.0.2","commondir":"^1.0.1","multimatch":"^4.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.8.0","sinon":"^8.0.0","eslint":"^6.0.0","mem-fs":"^1.0.0","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.21.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_7.1.0_1603984436258_0.41767157072343175","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"mem-fs-editor","version":"2.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"9d6947ad43996877e5f85fa4f74f423d81fb55bf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.0.1.tgz","integrity":"sha512-KoGAn+gdeaqPDn1IHbhtH0RN6bHMup0Ma9Zt0ios3nEMquZjfwZanZdNxOysv4febWb7CDLZ04jDFkp/lm9dSA==","signatures":[{"sig":"MEQCICzj31ypJ8pGWwC8UClnrFPTXqEnSW2efSXIUsu5kqm/AiAdGGaxazhSDUSuYOxZjx55HWTq68vzAZ5hfXx65KuUhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"9d6947ad43996877e5f85fa4f74f423d81fb55bf","gitHead":"7ac8c9bd4a4a909296da6fb203a0650bacbc6215","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"2.10.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.12.4","dependencies":{"ejs":"^2.3.1","glob":"^5.0.3","sinon":"^1.12.2","vinyl":"^0.4.3","globby":"^2.0.0","lodash":"^3.6.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3","commondir":"^1.0.1","multimatch":"^2.0.0"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"2.0.4":{"name":"mem-fs-editor","version":"2.0.4","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.0.4","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"2634f497ba506d857583084e1e074b129f6d053f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.0.4.tgz","integrity":"sha512-JaxpWjElMKH1qEJx+n9tlNBzL3VSr9ss1uvv3NLmGzcqpqQtjIkhfpEjLNL94a5TLjeqY98RMfzrUfh/EASLMQ==","signatures":[{"sig":"MEUCIQC9gMrVkQP0o96qei/8J2SwSh3X9OoN6TnQKHzm+b/JpgIgdiREHfQGJidJM77XS+DmaY8OYdSU7YiKz6CrTpZoPxA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"2634f497ba506d857583084e1e074b129f6d053f","gitHead":"c3071113365575b0f8c7b3f519830aba29d21e01","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"2.12.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.12.6","dependencies":{"ejs":"^2.3.1","glob":"^5.0.3","sinon":"^1.12.2","vinyl":"^0.5.0","globby":"^2.0.0","lodash":"^3.6.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0","escape-regexp":"0.0.1"}},"2.0.2":{"name":"mem-fs-editor","version":"2.0.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.0.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"36622fe7576010b304cfd0fd10b10e17e671d0c2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.0.2.tgz","integrity":"sha512-05cQOQESRBUD/y1VtLmakADZ8k2bi4/J9TFwVOxjbzojlZTmmGw3jg4L0yy/bfj6OHLZRWPSQ1h+lN/vOyCxCw==","signatures":[{"sig":"MEQCIDtV4RBq4ppKwDvhy1OmIvtC4v7D2C7QQZ61nbdgoZ+oAiBAvcewjdlP8Sqi3LOBxQs60E2FpG9SgTyp8zk1eYea7A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"36622fe7576010b304cfd0fd10b10e17e671d0c2","gitHead":"2002a2ac01e1949367585d1e2d3573d4a6c25851","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"2.10.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.12.4","dependencies":{"ejs":"^2.3.1","glob":"^5.0.3","sinon":"^1.12.2","vinyl":"^0.5.0","globby":"^2.0.0","lodash":"^3.6.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"2.2.0":{"name":"mem-fs-editor","version":"2.2.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.2.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"ea29681a71f08ba1b994dc4b34e14d665d76a055","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.2.0.tgz","integrity":"sha512-RM0i3BBHK85wgKh6sDDBwB8k7/8Fa3A64Ancje58aGZYuLgu/W5OYuji6lLmR/9pbHnHRZ0taa0blNgC/40vGA==","signatures":[{"sig":"MEQCIGsX8Y2yG1nYUlC9CjJRYrOOApPICTcUHm8OxZu7HwzRAiAe5veHierXIOOoMhn+ZwGrTDs7HB1rxfDYD0X4oo57wA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["lib"],"_shasum":"ea29681a71f08ba1b994dc4b34e14d665d76a055","gitHead":"de4dc7f097c0cdc431ed0c5741328046b8fac207","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"3.5.3","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"5.2.0","dependencies":{"ejs":"^2.3.1","glob":"^6.0.1","vinyl":"^1.1.0","globby":"^4.0.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"devDependencies":{"mocha":"^2.1.0","sinon":"^1.12.2","mem-fs":"^1.0.0","escape-regexp":"0.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-2.2.0.tgz_1456817698744_0.8274306103121489","host":"packages-6-west.internal.npmjs.com"}},"2.0.3":{"name":"mem-fs-editor","version":"2.0.3","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.0.3","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"39259960834b92a4feeea82c9b65ae0e8708d368","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.0.3.tgz","integrity":"sha512-F+IfVp+4KIrfop7fawN91cdCNvlV20z+Nd6bnRj5GybIA1UuBx1w7I3wtgP3iEn0MuYcx91Qu6SZ4pXBWCu9lA==","signatures":[{"sig":"MEYCIQC0WqpePKweoxMrYytaIMfH8PFBxEmswy+Brh+Q9PKieQIhAOfz5NniFBB1j9WwxWABAAls0IKosuMhK7PHrql6CT1p","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"39259960834b92a4feeea82c9b65ae0e8708d368","gitHead":"b78dde05875c26a8c30f3566f66616ff4be22709","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"2.11.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.12.5","dependencies":{"ejs":"^2.3.1","glob":"^5.0.3","sinon":"^1.12.2","vinyl":"^0.5.0","globby":"^2.0.0","lodash":"^3.6.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"2.2.1":{"name":"mem-fs-editor","version":"2.2.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@2.2.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/sboudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/sboudrias/mem-fs-editor/issues"},"dist":{"shasum":"d4577b67185ada93eed2f4b5ae9ac2d3e6c7fdbf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-2.2.1.tgz","integrity":"sha512-wIlCwLEG486dumk8cfcWnZRHbHP5rH9sTZS9aRZPUCLUMKv2QROKE014SNzSwqT9s5TWzx50PxqKheB6ePWunw==","signatures":[{"sig":"MEUCIDeiuPjpEzyG4wrBwZX8xRHkf9FoNPyhdZRqt3rwfY9+AiEAk6+jI1pdCDVefo1+8KoTJF4G3giJ9leRvXSPZyGx5Zs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","files":["lib"],"_shasum":"d4577b67185ada93eed2f4b5ae9ac2d3e6c7fdbf","gitHead":"83ff0500c3e15731fbbd57d6c6022dc0333eeb5a","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/sboudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"3.5.3","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"6.1.0","dependencies":{"ejs":"^2.3.1","glob":"^7.0.3","vinyl":"^1.1.0","globby":"^4.0.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.4.0"},"devDependencies":{"mocha":"^2.1.0","sinon":"^1.12.2","mem-fs":"^1.0.0","escape-regexp":"0.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor-2.2.1.tgz_1464332452256_0.10419088951312006","host":"packages-12-west.internal.npmjs.com"}},"1.2.1":{"name":"mem-fs-editor","version":"1.2.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.2.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"23a31880904d0ed54b5ecf6e546a4bc91798d186","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.2.1.tgz","integrity":"sha512-1y+brjSHhO6rptnwUoF/rRX84P4MhZI2XUd8R36sK7JKWB4ZU+wJpzFKPVeK6ONvP+es448VpT7xgBUiSYgMow==","signatures":[{"sig":"MEUCIDZ0M5jzNKQ5mKd1dJP96JOoLUgt9biDM7Es1L+xnSZ1AiEAndINUEl/5Ea5p4ZuTyNIIvENDNq3JzMbfRjzbIUnsgQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"23a31880904d0ed54b5ecf6e546a4bc91798d186","gitHead":"838074de4b5ac27808d5d38899ea7eebcbc032c0","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.1.6","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.10.33","dependencies":{"glob":"^4.0.6","sinon":"^1.12.2","vinyl":"^0.4.3","lodash":"^2.4.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"1.2.2":{"name":"mem-fs-editor","version":"1.2.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.2.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"d2bfd71189715d203233f0345fbb8b078bb9ea70","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.2.2.tgz","integrity":"sha512-+02mPMPzdOLE+WdJhWIMUAtKhu6Lg+m5viG8ZWuK8mqTDwTDTG0KAt4mSYW49SijuCImnH90fUfIbsZFu1mNGg==","signatures":[{"sig":"MEUCIHBg9zGsRIX0TLAPPbRcGO9T3qVjpy/9S+QoxoFj07oTAiEAtNfRzvCi7LpP1Sp9BGjgzMZrHVZKO8Oq+lvQGwMVK9A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"d2bfd71189715d203233f0345fbb8b078bb9ea70","gitHead":"efcf96bc866b1b3b8893e70a8934032a4b12599b","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.4.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.10.32","dependencies":{"glob":"^4.0.6","sinon":"^1.12.2","vinyl":"^0.4.3","lodash":"^2.4.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"10.0.3":{"name":"mem-fs-editor","version":"10.0.3","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@10.0.3","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"c9e85443d484e51ddfb160cf2999cd42b3687fae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-10.0.3.tgz","fileCount":46,"integrity":"sha512-EfE+MKDgfplq6wtS0mRP/4hKNBLfVqc1dhnNEIJRQS9neTCAI3SkHQDToh9fvp02QtICiyGVR1/jJPFE7AFIpQ==","signatures":[{"sig":"MEUCIQCTn1Mw7vzIYYIRJ9Knb/M0v6hRO85yiEsGG7sX3EFNUwIgAg7D6pJwjJ39xwmwIoMjaPVtV/jhzkbJbK0TqeYsdXY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45224},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=16.13.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"2eb873e8f4b49bdbcfa5ead9091d6f112c5506f6","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"10.2.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"18.18.1","dependencies":{"ejs":"^3.1.9","vinyl":"^3.0.0","globby":"^13.1.4","mem-fs":"^3.0.0","commondir":"^1.0.1","minimatch":"^9.0.0","@types/ejs":"^3.1.2","multimatch":"^6.0.0","deep-extend":"^0.6.0","isbinaryfile":"^5.0.0","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^15.0.1","eslint":"^8.5.0","mem-fs":"^3.0.0","vitest":"^0.30.1","prettier":"^2.5.1","coveralls":"^3.0.3","typescript":"^5.0.4","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"acceptDependencies":{"mem-fs":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_10.0.3_1697424416026_0.9919888485710973","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"mem-fs-editor","version":"1.2.3","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.2.3","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"3fbeb70680fbb0eb431acb0f0bb780673bdcfcd5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.2.3.tgz","integrity":"sha512-c68HOw9nmGerNaGaCLqi7befwQM1/amU3DWSCq/ZYfDp6+yRdnPO0EslpNQK1MFBXIKMWWsIaO9GcQ0vm0sGXg==","signatures":[{"sig":"MEUCIGVpT/lRwo5W1zlw1yxVhleVZOOx9yd+XQmC+/6LU2l2AiEAz4F2vm2rd1PoJyaBmIEWCEoG0ZnaCcJPKh4vGVCND1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"3fbeb70680fbb0eb431acb0f0bb780673bdcfcd5","gitHead":"cee7ef71e01b79092d1e5a835e2132b10aece787","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.5.1","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.10.32","dependencies":{"glob":"^5.0.3","sinon":"^1.12.2","vinyl":"^0.4.3","lodash":"^3.6.0","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}},"10.0.2":{"name":"mem-fs-editor","version":"10.0.2","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@10.0.2","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"e248dddda5c827d0a9c4e8bf63e9a16c7e96dddc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-10.0.2.tgz","fileCount":44,"integrity":"sha512-9lhR40QDM8okLk3abz3ZaoaLZA+Pt7qLgFG2m1P74+Ax+DnLSnlhyXQ+8r56OuTJpSS1llqqr77jiZBRb1gNHg==","signatures":[{"sig":"MEQCIDwyAEBI9a3RRTkt1foeKfQBfJikxbt5cMURZ3DrIxH1AiA2L36bKWnIjVnIAB982q0PMZf4Jvey7KkNf2yz1XN0jA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43524},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=16.13.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"59d2bc9bc0bda3012bf0ec0b99b068553f192da4","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"9.6.4","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.20.0","dependencies":{"ejs":"^3.1.9","vinyl":"^3.0.0","globby":"^13.1.4","mem-fs":"^3.0.0","commondir":"^1.0.1","minimatch":"^9.0.0","@types/ejs":"^3.1.2","multimatch":"^6.0.0","deep-extend":"^0.6.0","isbinaryfile":"^5.0.0","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^15.0.1","eslint":"^8.5.0","mem-fs":"^3.0.0","vitest":"^0.30.1","prettier":"^2.5.1","coveralls":"^3.0.3","typescript":"^5.0.4","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_10.0.2_1683626429967_0.13886562692330218","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"mem-fs-editor","version":"10.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@10.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"a394cc752a6925be718b024de84bdb0b2ae06176","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-10.0.1.tgz","fileCount":44,"integrity":"sha512-Wkp0eMVrg+T4l97pUPKAaspQBjkb2fEdL+zrhUxHKmfdJk0FSYIFaknOGoy66+JftIJn5OsHobXTviPxiE1U+Q==","signatures":[{"sig":"MEUCIGiOmBBoOJA78AK2eFA4i1E60XFjMSNccKsJzn8SaIPQAiEAhOfhvS1ll94Lda9T6aCSj6g7ioVI4gUknxsen4OdDEE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPm1VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWGg//c9LAGpKg7yr8tgcwOgAEMpV0FS5qrgcjg5M+fC8bWJT8WcWr\r\nIeNREHXbCxIPUihfdeEfM03UKI0TeRrPwwdM1dFFRCNh0f6mn4n4hduiqSmp\r\nRfLnvElkLjQqB0ZEhdhuBCeZta65geE2DXLINJHwxHXHwSGheVNI4IYkHA3+\r\n3/B0QuthZdy5psZ/iSzLyfKeWlw/gpLgk3C7AA7eo+RqpeHxdMTTpKqGrGJ0\r\nymovtHxu/3EGwHX7/UTl3rdJVAzHBhEdJMgh1UWVFT7NlUsWjlkdQjJO+yQP\r\n42/yQ00ib/LQpJLzOseMbJCXUjeAzgFv7XFPGVnNmNWGsZxXCzTxhVCiKSkq\r\neAbqUwPVD0JT6ZG0BHqmMJWJ6NAH6Crqyz+wA8SpQfCV19PjgcDRS7rWBjjp\r\n0CJuo3t50/oOEqclIJp/XTwTpSxaShUYRpZjnSD0zgNJDYsSfDG7ksRvaYHi\r\nvNjOH+YQF/+1gRwq1wXj0NbJoLstrbjjpgVNguQZ5MZLQuudnwrRuR2RIk47\r\nQpKAVo35jay8lleLn+PsxrTCW6HflD5qfMPU2UNMIUXDtOKdVnzqD7e04YWu\r\nGx/0HF6HBOGXeUlD0jmUpHmIxpCFrMf02ChBl/85IsxvPDtSplEb7WJiVclT\r\nriJGMK3PXmnQQfm8Y/2+PeLKvop7g1wN92c=\r\n=TrfI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=12.10.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"6a5f9c268deb592fa1e7f8a82eb82f34e7b7d86e","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"mshima","email":"marceloshima@gmail.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"9.6.4","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.19.1","dependencies":{"ejs":"^3.1.9","vinyl":"^3.0.0","globby":"^13.1.4","mem-fs":"^3.0.0","commondir":"^1.0.1","minimatch":"^9.0.0","@types/ejs":"^3.1.2","multimatch":"^6.0.0","deep-extend":"^0.6.0","isbinaryfile":"^5.0.0","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^15.0.1","eslint":"^8.5.0","mem-fs":"^3.0.0","vitest":"^0.30.1","prettier":"^2.5.1","coveralls":"^3.0.3","typescript":"^5.0.4","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_10.0.1_1681812821331_0.3374914836030487","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"mem-fs-editor","version":"10.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@10.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"eead8562f6a2cbb7fe3ffb8cf4f3f6072138aac0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-10.0.0.tgz","fileCount":23,"integrity":"sha512-ZIJXXg1nEFulXx0VZe1DOwaHXIoXoUMKHO1nrT6fJbIAA5DKfHKNr3q+DkO7IAYxMvIWTlZVrlZtAe+YWiBlOg==","signatures":[{"sig":"MEUCIQCW6ot0zixJ/SvtYHkrNt9JtpUTXR06JWqj6U1LshD7oQIgIKGHofyAko1MemkuoSjHbgFM7Yim+MChPf8ahXjEjjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPbrNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpzcw//Zpww/q3xehA4hzmA/L78NNdMEeM/tLLURLdJtfs8baDENUEf\r\nyctWh1SPKAIX2SOLihPAP3dlRfRdWwNc4InM4jAOG9PMqEJ7MzmSYFo2VAf6\r\n+go50Ej2h5v8+QMpK+63FdDCA/KeLiMxVtyu9TltGhPBt1TbNad32ifOCo5C\r\nG1g+ObuDZjYYUkF0HhyTqpY4rF/X0KFoGTqTnj554yzZHoMI4jIqVXA1JC51\r\nzelZs9JA9NDFaMMlb8B1XFV5BTY6ENIovDRSYrBTC0VdBD5T90FNq32p2MUk\r\n5MxPf9PERRjCeuMMe4eaxV6H26hcrbP+ZEs7coKaG4Auk+tY9U4wKzse9Kfl\r\nkLoy/RFh/deH+JO+wXSXk1BFLfusWBLZiVhU/HOPnBDQOVQxHo0+GXrsSOXL\r\nhICVnREjbBnJYRAcAMZACDDRAmxpqrxkh+QcMZ4aIDp8Sxzgq0fuGgMYQ5Cv\r\nQC93kjGKjzr2SoBW6+j0wA6nyqtiKygfD3jyzwg6UOnHKdK9waHF9Gjn8c4X\r\nDSEHKp9t79OtOKcRm7RnIMBV526+joahTi0XfcjsAbPl998zeRenwNvrWID6\r\nZ0kn5YQ5/c4rowj/BlOS7qb1IdgjROQf0mHM1j1nUSE0X3dMEZk2b4oMES1D\r\nyIwB8VhTvvy+B9RI9iC3J9+ejLRcc+YNRUI=\r\n=af1r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","type":"module","types":"./dist/index.d.ts","engines":{"node":">=12.10.0"},"exports":{".":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"./state":{"types":"./dist/state.d.ts","default":"./dist/state.js"},"./transform":{"types":"./dist/transform.d.ts","default":"./dist/transform.js"}},"gitHead":"75eabeaff6cf1dea6881f306fece8e88854a329c","scripts":{"fix":"eslint . --fix","test":"vitest --run","build":"tsc","prepare":"npm run build","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"8.19.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.17.1","dependencies":{"ejs":"^3.1.9","vinyl":"^3.0.0","globby":"^13.1.4","commondir":"^1.0.1","minimatch":"^9.0.0","@types/ejs":"^3.1.2","multimatch":"^6.0.0","deep-extend":"^0.6.0","isbinaryfile":"^5.0.0","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"sinon":"^15.0.1","eslint":"^8.5.0","mem-fs":"^3.0.0","vitest":"^0.30.1","prettier":"^2.5.1","coveralls":"^3.0.3","typescript":"^5.0.4","escape-regexp":"0.0.1","eslint-config-xo":"^0.43.1","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_10.0.0_1681767116837_0.015493904405045278","host":"s3://npm-registry-packages"}},"9.4.0":{"name":"mem-fs-editor","version":"9.4.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.4.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"0cc1cf61350e33c25fc364c97fb0551eb32b8c9b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.4.0.tgz","fileCount":23,"integrity":"sha512-HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==","signatures":[{"sig":"MEQCIAUDVLWIWq7IEtfLTZ+EkuUP1w4/ctjYc2IVB4M8HfE4AiABC6DQzZtGI8uV4tvvN7+AJnRCtUdc0xE/+phbgUZb1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29868,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhw2zSCRA9TVsSAnZWagAAT+gQAJREeuAKoDb3Z7pLbmNF\nSlMTVXPS8fFBbI8SsbNMVVH3dS0/83qJ4oiI8i1RxlTOEfAfvBaub5T00qCv\nF0NDt7qMRDL+JiH9obwrXT0nZhny9Nuu81bAt8h/M60YoyJJ+WYrFAiBtJRg\niYNSMf2x4W4RxAtFKa4xD8E65qa3BlwXpBWnCDjP2KvuQ64cdthr/hN+BC8L\nbx808yhel/tNC7TD9NW9h/lodF5zmeKZCNuuncDpKP3xyC8EtWEwREzFM7IU\nV8BTcIX2Tat/PbO1QioxkAlqUMLxsgPg3Xlf/IoWdk2fNAWqf4ZL4ahHSyXC\ncATIlKSwDpnydUjpzW/sGuy3nN0n3xtfGliMRbX914DDbxfd2A/FaLMz+TgT\ncr3ZmIlF9a2Dv4uXbq84oTkFqhx5YflD2DDVhjXO/BWc79Dy3PUVAZW3W5DM\nWApV4k4A1Da0MiSbDneu7A/kwao9FN4NuhsDY9LnDod4kYnUIQyq+UVgREM5\nb7UK/8z8O5yIzFmRo9hMjhe/9QNOGnfCPor2iIGjyyi7kFPKHqpbNK0pdkBL\np2MTKWeUoKym1dWjRcNW0BQVVTz973tAlRWu6zJNXG+A+LL+iKh8vVH99pw0\nvhYHfZi+UfXfxgbreaTF7LexC6aolsUeZApqU/+dV7odt1kqF2geWzr4CwnW\nimun\r\n=2QnJ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"24e92be3158b9591c73360f41e56eb162864a571","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"8.1.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.13.1","dependencies":{"ejs":"^3.1.6","globby":"^11.0.3","commondir":"^1.0.1","minimatch":"^3.0.4","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^12.0.1","eslint":"^8.5.0","mem-fs":"^2.2.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.30.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.4.0_1640197329901_0.2687375207848397","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"mem-fs-editor","version":"5.1.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@5.1.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"51972241640be8567680a04f7adaffe5fc603667","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-5.1.0.tgz","fileCount":16,"integrity":"sha512-2Yt2GCYEbcotYbIJagmow4gEtHDqzpq5XN94+yAx/NT5+bGqIjkXnm3KCUQfE6kRfScGp9IZknScoGRKu8L78w==","signatures":[{"sig":"MEUCIQCry5UKkDUJYX4RDIqT6yxfoJ+59sLKgVtEJQ1cN20uBQIgHiBlrdpdk+3VSmmw5lB4GJfRnMMOIEakD88hKmzjES8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO4aMCRA9TVsSAnZWagAAeG0P/3VAd+oY1eMPBZJD6PPi\nZajXy2JXa0pvAkXDTfEnpdxYvCFwltheeGDxCq2SSsfsdbPoOwFjXrSykGIq\nyfqy7zpjEfSXCI/WxFYc6+RNc81oUXkgvtkUQ7ecRONLeI1ggDPmflgX7HQ1\ngobV8UkUcfNiKKd/wOXK+jKP5zM3UkhujaXy3Nv+ZXXWBZEkLNUeyCEQ097b\n1FZvUzy384qkQT819fp9M3cTh3etJa5DXxGTGeh7dpltl+NhApQoCakL2VoW\nUp62V3S+njrw/tO7UBTC41VAyxuTpvmEMez6silR5zv19m2C5y72rdxGNv54\nn4ZJQPYDB5RTE+GRad3/I0O2XZZsyicCvddIAKYAtf8j2u0npzj/5hEXT4bR\nl1PBQjHAuy3D4t3SUhT/AJc+VuuadEViv8DhqY4m8PpXK3EV4tT2JPLM0IbD\n9W7aa6yJyS1oEj/1kXrRZ/Np+9Xp+8DHLtf5ifOkg79YZrKwJIdp+BQUu6sf\n6UGB3W6zPZuBB2aNPmMxEoT63TVXtyJmMDQNl9EkLu8P1Wae77857Jhe8682\nHu1QQLIflSZLg05UBAFit/lolcv/jdg3nY3YF6gm2nFt0mD8ywbUVAy1wJX0\nIs4AdQD8pZU8veVOvJguc36Jzgciou43fvGkIB2fbxEIHV6myj+0n7YbRxkt\nhgzd\r\n=f1Bw\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","files":["lib"],"gitHead":"22b1414497b997d83e6822084e3b80beb67ce238","scripts":{"test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"6.1.0","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"10.5.0","dependencies":{"ejs":"^2.5.9","glob":"^7.0.3","vinyl":"^2.0.1","globby":"^8.0.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^2.0.0","commondir":"^1.0.1","multimatch":"^2.0.0","deep-extend":"^0.6.0","isbinaryfile":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.2.0","sinon":"^6.0.1","eslint":"^5.0.1","mem-fs":"^1.0.0","coveralls":"^3.0.0","escape-regexp":"0.0.1","eslint-config-xo-space":"^0.19.0"},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_5.1.0_1530627724132_0.7220374516185677","host":"s3://npm-registry-packages"}},"9.6.0":{"name":"mem-fs-editor","version":"9.6.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@9.6.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"mshima","email":"marceloshima@gmail.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor#readme","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"a867377737b12c0d02ca756d90bc70c51883aa38","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-9.6.0.tgz","fileCount":23,"integrity":"sha512-CsuAd+s0UPZnGzm3kQ5X7gGmVmwiX9XXRAmXj9Mbq0CJa8YWUkPqneelp0aG2g+7uiwCBHlJbl30FYtToLT3VQ==","signatures":[{"sig":"MEYCIQC3IEl1zkK/pkeemxJw7wFisidi3CYP0KTL9iL+l10xGQIhAIOfkXkPnX9EtNjeiDNdPAWWMfCuqvejgTxcfCyHHygU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31176,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjybuCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUqQ/7BDPV27n51BwMxRESYcEWqa9ixdgA4EC5BaofBP95X/MXF2em\r\nMA1jWjIPpRQDdlWf2ksusW08ZUFvr4fWb5vi++5x0rKiH57Lo+YayCJxdGl7\r\n/v3R8FMzL723VMiDKfElx+Hg7QxneN/pwyLl0ABKH55Td4muOdnOYYjag31r\r\nMIhqhI7yDTQco7LR+UNZHJYjcAedhoXAOZdOA61Wc3iD7w1miqI7dr48Gv0Y\r\ngtmgs9CSTdoadH5BBsSrUjUZAj9YGj4DzFY11gpVv/OqPkq/uRstzE3zUVQg\r\nTeyB7vGB1ylbsJ5jWibyZdPAnAxQ108P7cmQL4UAIFqtKdeP5wx8IdBMKwmN\r\nFPNzX28/PjWNqzWfMA3D+qLYokzICF3WMuBX1ctRpAutMi86LgYmwHIzd4JP\r\nOvpgCojj3kIhPpIZEpA159CUnfTtTFB7FGwg5BfX2Ad18UJAiwRBoiV50eIu\r\nzUJJ842UuHax1emxFuBHAIaSfVTVpnLxZd8+4DyUtYIi4OZYElW3D5N57OHj\r\nH9sI0P3mZVGn+v4RitRnEkO14NeKFJXib/d2IF8kFpVzq77QXGlUX9cJYZK7\r\n1p19eOfTthg0Ft08bT3Dsw3PDupPFkDCKjzsj0i0Nekc4neEkBNcfaUjVpFB\r\nRgo5Va7AbVoBP6tkQQm0h20h9exIkPZuVlI=\r\n=DqkK\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"collectCoverage":true,"testEnvironment":"node","coverageDirectory":"coverage"},"main":"lib/index.js","engines":{"node":">=12.10.0"},"gitHead":"f58729b6bd902e2128024202f03078ee3915d23c","scripts":{"fix":"eslint . --fix","test":"jest","pretest":"eslint ."},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/SBoudrias/mem-fs-editor.git","type":"git"},"_npmVersion":"8.19.2","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"16.17.1","dependencies":{"ejs":"^3.1.8","globby":"^11.1.0","commondir":"^1.0.1","minimatch":"^3.1.2","multimatch":"^5.0.0","deep-extend":"^0.6.0","isbinaryfile":"^4.0.8","normalize-path":"^3.0.0","textextensions":"^5.13.0","binaryextensions":"^4.16.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.6","sinon":"^12.0.1","eslint":"^8.5.0","mem-fs":"^2.2.1","prettier":"^2.5.1","coveralls":"^3.0.3","escape-regexp":"0.0.1","eslint-config-xo":"^0.39.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0"},"peerDependencies":{"mem-fs":"^2.1.0"},"peerDependenciesMeta":{"mem-fs":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/mem-fs-editor_9.6.0_1674165121915_0.7993984479769813","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"mem-fs-editor","version":"1.0.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.0.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"664e92b02ed2abd94ae78434e7fc382e1c007357","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.0.0.tgz","integrity":"sha512-BFuH0gH3xFbcTLyhIrIXNDMFC0jcR1DIKj2+7H7+i2M44Sx5cdR9KbdtZ62vbnTrvGN4vZyeDDUXPaQRwCb1nA==","signatures":[{"sig":"MEQCIFu32GaUY/ozqsYZNL4Clni22//SyvgA6ioygZ/KxcNCAiAuJrsHxzbseF4Qu7hEIwTQh30BxnCu5OobGA8hQEhAPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"664e92b02ed2abd94ae78434e7fc382e1c007357","gitHead":"87b12f8937e026d42b8db90c4868f46ce0e818e0","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"1.4.28","description":"File edition helpers working on top of mem-fs","directories":{},"dependencies":{"glob":"^4.0.6","vinyl":"^0.4.3","lodash":"^2.4.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^1.21.5","mem-fs":"git+https://github.com/SBoudrias/mem-fs"}},"1.0.1":{"name":"mem-fs-editor","version":"1.0.1","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.0.1","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"60cbcd583d7bc143fd2808f673207328cf97a744","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.0.1.tgz","integrity":"sha512-yIusNEABQ1PT/HC+s9UCRAkHvJvdsuab0atFu//E2J4k3hDeF0luLlO/IGgbfGjRWVY1IzLnf81GQQzC8a+Rzg==","signatures":[{"sig":"MEUCICiHV9R+9bG394j/4gi39OxKhZd0uXvk0wwUa/LxAyodAiEAnAiv/1etWuKq+GF/lzDUtl80t5nGlh6OF0rJUHkfLKs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"60cbcd583d7bc143fd2808f673207328cf97a744","gitHead":"788ad597e356ef14404b2eb9eb97befe0594f588","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.1.4","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.10.32","dependencies":{"glob":"^4.0.6","vinyl":"^0.4.3","lodash":"^2.4.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^1.21.5","mem-fs":"git+https://github.com/SBoudrias/mem-fs"}},"1.2.0":{"name":"mem-fs-editor","version":"1.2.0","author":{"name":"Simon Boudrias"},"license":"MIT","_id":"mem-fs-editor@1.2.0","maintainers":[{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/SBoudrias/mem-fs-editor","bugs":{"url":"https://github.com/SBoudrias/mem-fs-editor/issues"},"dist":{"shasum":"1128bc4575f052e9698d037550c3cf2962715e51","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mem-fs-editor/-/mem-fs-editor-1.2.0.tgz","integrity":"sha512-AU6KgrKIzfcJK6muarHzk7aDvGBSR06E9DOgoSCJxTXzR/4o9OQwUMj0LvW+KKGkNXqc0xzfOsWo/LhB0PZYtg==","signatures":[{"sig":"MEQCIAJ3t5IkAKuKxlvU/qx4fdspuQGFCgv9KCvkHBBjJV1gAiAcDllkOa85H70KX4+bYPuS0TUJEr9UXiNC8h9VOPue1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["actions","util","index.js"],"_shasum":"1128bc4575f052e9698d037550c3cf2962715e51","gitHead":"a5c0f5c5e1312f70f34f0257303a28c90eaca71c","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"https://github.com/SBoudrias/mem-fs-editor","type":"git"},"_npmVersion":"2.1.18","description":"File edition helpers working on top of mem-fs","directories":{},"_nodeVersion":"0.10.32","dependencies":{"glob":"^4.0.6","sinon":"^1.12.2","vinyl":"^0.4.3","lodash":"^2.4.1","mkdirp":"^0.5.0","rimraf":"^2.2.8","through2":"^0.6.3"},"devDependencies":{"mocha":"^2.1.0","mem-fs":"^1.0.0"}}},"name":"mem-fs-editor","time":{"11.1.0":"2024-08-18T23:21:42.045Z","11.1.2":"2024-10-12T11:03:58.589Z","11.1.1":"2024-08-18T23:34:13.796Z","9.0.0":"2021-04-30T23:14:25.125Z","9.0.1":"2021-05-19T18:50:48.283Z","9.0.2":"2021-07-27T19:41:49.721Z","9.2.0":"2021-08-25T18:15:01.149Z","11.1.4":"2024-12-12T12:00:49.244Z","11.1.3":"2024-10-15T01:51:49.999Z","8.0.0":"2020-12-22T18:49:23.572Z","modified":"2026-04-27T00:33:09.583Z","7.0.1":"2020-06-18T05:18:12.010Z","2.1.0":"2015-11-24T08:23:16.885Z","created":"2014-11-06T20:34:31.168Z","7.0.0":"2020-06-01T04:57:33.530Z","2.3.0":"2016-07-12T04:34:17.549Z","6.0.0":"2019-05-28T09:42:06.838Z","9.3.0":"2021-08-25T20:56:13.147Z","5.0.0":"2018-06-30T17:07:44.104Z","9.5.0":"2022-08-03T16:19:28.506Z","9.7.0":"2023-02-27T16:20:00.173Z","1.1.0":"2015-01-02T20:27:16.269Z","11.0.1":"2024-05-24T01:11:17.697Z","11.0.0":"2023-10-16T00:02:19.202Z","12.0.0-0":"2026-02-27T19:09:56.870Z","9.1.0":"2021-07-30T17:15:04.192Z","4.0.2":"2018-05-06T17:38:32.694Z","4.0.3":"2018-06-30T16:57:57.316Z","4.0.0":"2018-01-15T13:18:47.507Z","4.0.1":"2018-04-30T08:16:44.430Z","3.0.0":"2017-01-27T08:41:53.248Z","8.1.1":"2021-04-23T00:12:26.691Z","12.0.2":"2026-02-28T12:15:20.235Z","8.0.0-beta.0":"2020-11-17T18:23:44.470Z","8.1.2":"2021-04-23T01:05:53.680Z","12.0.1":"2026-02-28T12:09:40.820Z","12.0.0":"2026-02-28T06:11:39.696Z","8.1.0":"2021-04-22T22:46:07.611Z","12.0.4":"2026-04-18T00:22:22.628Z","12.0.3":"2026-03-04T15:49:44.825Z","3.0.1":"2017-01-29T17:06:37.923Z","3.0.2":"2017-01-31T15:20:28.331Z","2.0.0":"2015-05-06T22:36:38.846Z","7.1.0":"2020-10-29T15:13:56.444Z","2.0.1":"2015-06-22T02:45:29.824Z","2.0.4":"2015-07-09T22:26:59.977Z","2.0.2":"2015-07-01T05:49:39.264Z","2.2.0":"2016-03-01T07:35:00.351Z","2.0.3":"2015-07-05T01:45:48.063Z","2.2.1":"2016-05-27T07:00:52.725Z","1.2.1":"2015-01-28T20:03:50.113Z","1.2.2":"2015-03-16T02:09:14.447Z","10.0.3":"2023-10-16T02:46:56.275Z","1.2.3":"2015-04-05T06:49:39.429Z","10.0.2":"2023-05-09T10:00:30.134Z","10.0.1":"2023-04-18T10:13:41.508Z","10.0.0":"2023-04-17T21:31:57.058Z","9.4.0":"2021-12-22T18:22:10.098Z","5.1.0":"2018-07-03T14:22:04.206Z","9.6.0":"2023-01-19T21:52:02.205Z","1.0.0":"2014-11-06T20:34:31.168Z","1.0.1":"2014-11-30T06:59:01.261Z","1.2.0":"2015-01-21T07:06:08.432Z"},"readmeFilename":"README.md","homepage":"https://github.com/SBoudrias/mem-fs-editor#readme"}