{"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"dist-tags":{"latest":"13.2.1"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Copy files","readme":"# cpy\n\n> Copy files\n\n## Why\n\n- Fast by [cloning](https://stackoverflow.com/questions/71629903/node-js-why-we-should-use-copyfile-ficlone-and-copyfile-ficlone-force-what-is) the files whenever possible.\n- Resilient by using [graceful-fs](https://github.com/isaacs/node-graceful-fs).\n- User-friendly by accepting [globs](https://github.com/sindresorhus/globby#globbing-patterns) and creating non-existent destination directories.\n- User-friendly error messages.\n- Progress reporting.\n\n## Install\n\n```sh\nnpm install cpy\n```\n\n## Usage\n\n```js\nimport cpy from 'cpy';\n\nawait cpy([\n\t'source/*.png', // Copy all .png files\n\t'!source/goat.png', // Ignore goat.png\n], 'destination');\n\n// Copy node_modules to destination/node_modules\nawait cpy('node_modules', 'destination');\n\n// Copy node_modules content to destination\nawait cpy('node_modules/**', 'destination');\n\n// Copy node_modules structure but skip all files except .json files\nawait cpy('node_modules/**/*.json', 'destination');\n\n// Copy all png files into destination without keeping directory structure\nawait cpy('**/*.png', 'destination', {flat: true});\n\n// Progress reporting\nawait cpy('source/**', 'destination', {\n\tonProgress: progress => {\n\t\tconsole.log(`Progress: ${Math.round(progress.percent * 100)}%`);\n\t}\n});\n\nconsole.log('Files copied!');\n```\n\n## API\n\n### cpy(source, destination, options?)\n\nReturns a `Promise<string[]>` with the destination file paths.\n\n#### source\n\nType: `string | string[]`\n\nFiles to copy.\n\nIf any of the files do not exist, an error will be thrown (does not apply to globs).\n\n#### destination\n\nType: `string`\n\nDestination directory.\n\n#### options\n\nType: `object`\n\nOptions are passed to [globby](https://github.com/sindresorhus/globby#options).\n\nNote: Dotfiles are excluded by default. Set `dot: true` to include them.\n\nIn addition, you can specify the below options.\n\n##### cwd\n\nType: `string`\\\nDefault: `process.cwd()`\n\nWorking directory to find source files.\n\n##### overwrite\n\nType: `boolean`\\\nDefault: `true`\n\nOverwrite existing files.\n\n##### ignoreExisting\n\nType: `boolean`\\\nDefault: `false`\n\nSkip files when the destination path already exists.\n\nThis option takes precedence over `overwrite`.\n\n##### update\n\nType: `boolean`\\\nDefault: `false`\n\nOnly overwrite when the source is newer, or when sizes differ with the same modification time. Ignored when `overwrite` is `false` or `ignoreExisting` is `true`.\n\n##### flat\n\nType: `boolean`\\\nDefault: `false`\n\nFlatten directory structure. All copied files will be put in the same directory.\n\n```js\nimport cpy from 'cpy';\n\nawait cpy('src/**/*.js', 'destination', {\n\tflat: true\n});\n```\n\n##### base\n\nType: `'cwd' | 'pattern'`\\\nDefault: `undefined`\n\nChoose how destination paths are calculated for patterns. By default, globs are resolved relative to their parent and explicit paths are resolved relative to `cwd`. Set to `'pattern'` to make explicit paths behave like globs, or `'cwd'` to make globs behave like explicit paths.\n\n##### rename\n\nType: `string | Function`\n\nFilename or function used to rename every file in `source`. Use a two-argument function to receive a frozen `source` file object and a mutable `destination` file object. The destination path must stay within the original destination directory. The legacy single-argument form is deprecated, emits a warning, and will be removed in the next major release.\n\n```js\nimport cpy from 'cpy';\n\nawait cpy('foo.js', 'destination', {\n\trename: (source, destination) => {\n\t\tif (source.nameWithoutExtension === 'foo') {\n\t\t\tdestination.nameWithoutExtension = 'bar';\n\t\t}\n\t}\n});\n\nawait cpy('foo.js', 'destination', {\n\trename: (source, destination) => {\n\t\tif (source.nameWithoutExtension === 'foo') {\n\t\t\tdestination.extension = 'ts';\n\t\t}\n\n\t\tconsole.log(destination.name);\n\t\t//=> 'foo.ts'\n\t}\n});\n\nawait cpy('foo.js', 'destination', {\n\trename: 'new-name'\n});\n```\n\n##### concurrency\n\nType: `number`\\\nDefault: `os.availableParallelism()`\n\nNumber of files being copied concurrently.\n\n##### ignoreJunk\n\nType: `boolean`\\\nDefault: `true`\n\nIgnores [junk](https://github.com/sindresorhus/junk) files.\n\n##### filter\n\nType: `Function`\n\nFunction to filter files to copy.\n\nReceives a source file object and a context object with the resolved destination path.\n\nReturn true to include, false to exclude. You can also return a Promise that resolves to true or false.\n\n```js\nimport cpy from 'cpy';\n\nawait cpy('foo', 'destination', {\n\tfilter: (file, {destinationPath}) => file.extension !== 'nocopy'\n});\n```\n\n##### onProgress\n\nType: `Function`\n\nThe given function is called whenever there is measurable progress.\n\n```js\nimport cpy from 'cpy';\n\nawait cpy('foo', 'destination', {\n\tonProgress: progress => {\n\t\t// …\n\t}\n});\n```\n\n##### signal\n\nType: [`AbortSignal`](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal)\n\nAbort signal to cancel the copy operation.\n\n##### followSymbolicLinks\n\nType: `boolean`\\\nDefault: `true`\n\nWhether to follow symbolic links.\n\n##### preserveTimestamps\n\nType: `boolean`\\\nDefault: `false`\n\nPreserve file access and modification timestamps when copying.\n\n##### dryRun\n\nType: `boolean`\\\nDefault: `false`\n\nSkip copying and return the resolved destination paths.\n\n##### Source file object\n\n###### path\n\nType: `string`\\\nExample: `'/tmp/dir/foo.js'`\n\nResolved path to the file.\n\n###### relativePath\n\nType: `string`\\\nExample: `'dir/foo.js'` if `cwd` was `'/tmp'`\n\nRelative path to the file from `cwd`.\n\n###### name\n\nType: `string`\\\nExample: `'foo.js'`\n\nFilename with extension.\n\n###### nameWithoutExtension\n\nType: `string`\\\nExample: `'foo'`\n\nFilename without extension.\n\n###### extension\n\nType: `string`\\\nExample: `'js'`\n\nFile extension.\n\n##### Destination file object\n\n###### path\n\nType: `string`\\\nExample: `'/tmp/dir/foo.js'`\n\nResolved destination path for the file. The directory part must stay within the original destination directory.\n\n###### name\n\nType: `string`\\\nExample: `'foo.js'`\n\nFilename with extension.\n\n###### nameWithoutExtension\n\nType: `string`\\\nExample: `'foo'`\n\nFilename without extension.\n\n###### extension\n\nType: `string`\\\nExample: `'js'`\n\nFile extension.\n\n## Progress reporting\n\nThe `onProgress` option provides progress information during file copying:\n\n```js\nimport cpy from 'cpy';\n\nawait cpy(source, destination, {\n\tonProgress: progress => {\n\t\tconsole.log(`Progress: ${Math.round(progress.percent * 100)}%`);\n\t}\n});\n```\n\n### Progress object\n\n```js\n{\n\tcompletedFiles: number,\n\ttotalFiles: number,\n\tcompletedSize: number,\n\tpercent: number,\n\tsourcePath: string,\n\tdestinationPath: string,\n}\n```\n\n- `completedFiles` - Number of files copied so far.\n- `totalFiles` - Total number of files to copy.\n- `completedSize` - Number of bytes copied so far.\n- `percent` - Progress percentage as a value between `0` and `1`.\n- `sourcePath` - Absolute source path of the current file being copied.\n- `destinationPath` - Absolute destination path of the current file being copied.\n\n#### handler(progress)\n\nType: `Function`\n\nNote that the `.on()` method is available only right after the initial `cpy` call, so make sure you add a `handler` before awaiting the promise:\n\n```js\nimport cpy from 'cpy';\n\nawait cpy(source, destination).on('progress', progress => {\n\t// …\n});\n```\n\n## Related\n\n- [cpy-cli](https://github.com/sindresorhus/cpy-cli) - CLI for this module\n- [copy-file](https://github.com/sindresorhus/copy-file) - Copy a single file\n- [move-file](https://github.com/sindresorhus/move-file) - Move a file\n- [make-dir](https://github.com/sindresorhus/make-dir) - Make a directory and its parents if needed\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/cpy.git"},"users":{"bsara":true,"dylanf":true,"anhulife":true,"developit":true,"axisthemes":true,"rocket0191":true,"despairblue":true,"ericwbailey":true,"flumpus-dev":true,"preethamvishy":true,"program247365":true,"arcticicestudio":true},"bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"license":"MIT","versions":{"0.1.0":{"name":"cpy","version":"0.1.0","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@0.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"4b10e155fa835fba954a7f06fc27600d618efc00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-0.1.0.tgz","integrity":"sha512-DCqg4L3XctNfvKOyV09ccgzdbqAX8tIEWn9hZDKpe9p3yNs7y0IN7I567S35jvjzqn6IrTZTrKMG8Y8cT3jlqg==","signatures":[{"sig":"MEQCIFfWMpemf7Y1xyG0xeUu+Hk7ElIsf481/tw/K29ewB2zAiA+tQO045JA/WD0nRdS2K7b6vbAkEbrEVA/yjYVZFqCWg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"4b10e155fa835fba954a7f06fc27600d618efc00","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"1.4.9","description":"Copy files","directories":{},"dependencies":{"globby":"^0.1.1","cp-file":"^0.1.1","minimist":"^0.2.0","each-async":"^0.1.3"},"devDependencies":{"mocha":"*"}},"0.2.0":{"name":"cpy","version":"0.2.0","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@0.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"6511e044dbcadaacb0facc6f4ae5a4200bf9a435","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-0.2.0.tgz","integrity":"sha512-xsYgIb//bmkT9x17rPWlhtLItP8N444cYxMfz/wpUyYXb2lBCvwvXxdgVsVHlXt+xO97GzorJHhmYKWpGcog2w==","signatures":[{"sig":"MEUCIGchww5be/LvlLuzD1jzK5ky3biNLa5ga89wED3kBE6RAiEAmS/YG9Zzyrq5PTkU3nGPD/Hl4oTjmVxowgjwlX3i5VU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"6511e044dbcadaacb0facc6f4ae5a4200bf9a435","engines":{"node":">=0.10.0"},"gitHead":"38d399243502969d7dd9a29596dc959d11a22bea","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"1.4.14","description":"Copy files","directories":{},"dependencies":{"globby":"^0.1.1","cp-file":"^0.1.1","minimist":"^0.2.0","each-async":"^0.1.3"},"devDependencies":{"mocha":"*"}},"1.0.0":{"name":"cpy","version":"1.0.0","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@1.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"2ccdec3afa83808c2af1fa9201f50ff49fb7453f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-1.0.0.tgz","integrity":"sha512-124nFuDyzrGsGTiynsOTADlHa+yQHkxRURMlal2WI8v00WahGd9ICucOPtIVqO9VMk6V7sRgLufbP6gC0SV49g==","signatures":[{"sig":"MEUCIG5JgBS3isfi6HtTyS1TrvMa8yM4wXt22f9muuDjSYEjAiEAtXDKOD/kPSt/O8KJfdahPRPBN+3EmTLVhNxDyYQTlec=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"2ccdec3afa83808c2af1fa9201f50ff49fb7453f","engines":{"node":">=0.10.0"},"gitHead":"c59c0794beda6cb933dbd9aadbcc29d5c03f4ffc","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"2.1.5","description":"Copy files","directories":{},"_nodeVersion":"0.10.32","dependencies":{"meow":"^2.0.0","globby":"^1.0.0","cp-file":"^1.0.0","each-async":"^1.1.0"},"devDependencies":{"mocha":"*"}},"2.0.0":{"name":"cpy","version":"2.0.0","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@2.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"114a0ee8c7ca7ade2a2bef7fa971c9cf318c00fa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-2.0.0.tgz","integrity":"sha512-bt/BldA8MuGYFcjdyADapRD9bmqJq8P0G142qW5bNHyQBbtDdx+iZ04LmdrWyuEdn4jD72oPnm8yb+4oW7aBYA==","signatures":[{"sig":"MEUCIQCx7O4ekS0t3WhaEXYDQrORqzs3AdFnBQnoivbctY1pQAIgE+VsK/O5DxEmz2K6SSNwYAqhqEK/wjOsf17DLo3i0hM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"114a0ee8c7ca7ade2a2bef7fa971c9cf318c00fa","engines":{"node":">=0.10.0"},"gitHead":"85f568a6e46077dcfae2f15d94df1ec9f8f53b3d","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"1.4.28","description":"Copy files","directories":{},"dependencies":{"meow":"^2.0.0","globby":"^1.0.0","cp-file":"^2.0.0","each-async":"^1.1.0"},"devDependencies":{"mocha":"*"}},"2.0.1":{"name":"cpy","version":"2.0.1","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@2.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"c0c921234010dc3163905ab7a75cba7495c37c10","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-2.0.1.tgz","integrity":"sha512-Ft7QaC7NjTrnj7hen6ZZuyLL9+BeSCpqyJ5Me9DggwwEMTXK7mNomtHL/CeAdHwlfFV/BYyajWUSmCMwRTEXpA==","signatures":[{"sig":"MEYCIQC9DIIF5NwMqPRqq9/0io85hkjdU1MmvgHtJ3Ei9rEdhAIhANY2RVcMFZ20XHS3ZHlU+0N7UL5/HdbIMzoC6f2Lh6yN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"c0c921234010dc3163905ab7a75cba7495c37c10","engines":{"node":">=0.10.0"},"gitHead":"05ca0021bab715ebc0bcb305ffc124b92bbf4327","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"2.5.1","description":"Copy files","directories":{},"_nodeVersion":"0.12.0","dependencies":{"meow":"^3.0.0","globby":"^1.0.0","cp-file":"^2.0.0","each-async":"^1.1.0"},"devDependencies":{"mocha":"*"}},"3.0.0":{"name":"cpy","version":"3.0.0","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"125e01fea8bd42425a5b7bd458d814052ca63128","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.0.0.tgz","integrity":"sha512-ef6flbtWFtICZyGtNNT8A1C2V92ROBIEEgW5Fe3wlVf84xr28cuj6JY/fZlMxkWTOZ8yrlBCFOjYOSGXn44meQ==","signatures":[{"sig":"MEQCIA47CKMxlfVd6goyG2dmo+ftBSylpA5KG89I+uSPoRWSAiBLxWrvrwyI7QbsG1h+i/WTV6t2fMoe/CBTsLg1FE2wkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"125e01fea8bd42425a5b7bd458d814052ca63128","engines":{"node":">=0.10.0"},"gitHead":"36efe29c76c586125e462b28e657ab3178f3347c","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"1.4.28","description":"Copy files","directories":{},"dependencies":{"meow":"^3.0.0","globby":"^1.0.0","cp-file":"^2.0.0","each-async":"^1.1.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"3.1.0":{"name":"cpy","version":"3.1.0","keywords":["cli","bin","copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"abbc2c0a533676d8b4c0443926d39d2d8e9926aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.1.0.tgz","integrity":"sha512-tPPSMloU9SYwkN0aP1vz0jORCI+kNet7Y2sXRTp7F8RgmkmB7a3QQYG+WzL6vtWefHFOB7imXJ+Pa+Aw9aP/cA==","signatures":[{"sig":"MEUCIBIKQYpjUEWXQArp25v2G321FLIA9+hEhI/VCcVMCRaZAiEAskB0p+As/Kby+DH1ck7pQU/SfZCJDBLhXOdjer38G9w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"abbc2c0a533676d8b4c0443926d39d2d8e9926aa","engines":{"node":">=0.10.0"},"gitHead":"e75bdd7f559f2873d0c2991f71089c05be63e0dc","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"2.7.4","description":"Copy files","directories":{},"_nodeVersion":"0.12.2","dependencies":{"meow":"^3.0.0","globby":"^2.0.0","cp-file":"^2.0.0","each-async":"^1.1.0","object-assign":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"3.2.0":{"name":"cpy","version":"3.2.0","keywords":["cli-app","cli","copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"c7af940d992a5a44f2f4d470d999b50f0de04418","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.2.0.tgz","integrity":"sha512-lcV1wcmuC5gydA2+gOtYsreBF3Gu/oPzngOLVud/JwjmdlBN8gvYxasp0EoVLlssd0HGrVXISWinVCNRFeBvuA==","signatures":[{"sig":"MEQCIHlE/2/GreIEaL+nojLgT3reQSjmDOqTcPx3CbItZNwyAiBn1Q/A1OmQoUT/ji7TAYGA65+UUzHdgWoze3UvY6g8og==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"c7af940d992a5a44f2f4d470d999b50f0de04418","engines":{"node":">=0.10.0"},"gitHead":"58437de6de568b6e4759a4e596aa74cb45d70344","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"2.10.1","description":"Copy files","directories":{},"_nodeVersion":"0.12.4","dependencies":{"meow":"^3.0.0","globby":"^2.0.0","cp-file":"^2.0.0","each-async":"^1.1.0","object-assign":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"3.3.0":{"name":"cpy","version":"3.3.0","keywords":["cli-app","cli","copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.3.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"f96830ea56ba9c9f210760e5f5bcdab2536b559e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.3.0.tgz","integrity":"sha512-3ggfaDDTpO3hP7ZXTcyOIDcm4qxztH8VnL74qeoclcUbla+oyqUU8K2rig2tt1ujrRMLmlvEQ8QD471KYbmSPw==","signatures":[{"sig":"MEUCICjVDcCHXW3OCocMVLMPEphMxme64JYoNSD40Kxw4MvLAiEAgK3HcH2f5wWoheWYeyoaMfa16CBR3hTjLv19ZJRa30A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"f96830ea56ba9c9f210760e5f5bcdab2536b559e","engines":{"node":">=0.10.0"},"gitHead":"2b94cf33060cb382892cfaf1bd5a42e6539fe7ef","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"2.10.1","description":"Copy files","directories":{},"_nodeVersion":"0.12.4","dependencies":{"meow":"^3.0.0","globby":"^2.0.0","cp-file":"^2.0.0","each-async":"^1.1.0","object-assign":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"3.3.1":{"name":"cpy","version":"3.3.1","keywords":["cli-app","cli","copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.3.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"01e344e21402129672e772c942de8829d98cf9fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.3.1.tgz","integrity":"sha512-x6NtaZyjKKARvPs31GTk54V5nk1C/JRFhOG8TPMjUdto7M3m4/LsT8wCYp3S7pwpdpU2ZNWr/j70/vfkurbKeA==","signatures":[{"sig":"MEUCIQD3pyB05baKIrkRx3Ub9ZRGdJsTQWbx1bA9vlgxc4gkWAIgZ3LbjkFjxUxKwX2YdfzB97AnEg+aYy+ry8AMuNLV+wk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"01e344e21402129672e772c942de8829d98cf9fb","engines":{"node":">=0.10.0"},"gitHead":"b63b2c099594a66d99a545ea94a0b1968745d51b","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"2.11.2","description":"Copy files","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","globby":"^2.0.0","cp-file":"^2.0.0","each-async":"^1.1.0","object-assign":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"3.4.0":{"name":"cpy","version":"3.4.0","keywords":["cli-app","cli","copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.4.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"58a599a2fc1f8c2162da9efbfc0809d869445a7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.4.0.tgz","integrity":"sha512-ecquGoIEjXs1XkF8PFinZHWGpHRtIFw5Oq785MF4+uC7rgh2wzwhQrhV/jDHnTBtQPNMp5xmyrUw9yQf9nGIdA==","signatures":[{"sig":"MEUCIHT5xrPdSQujZk2t3q9VHXhzigPTMNOxPHLZdnhvnugHAiEAhQOHCqXeij9C20uejq85EwCmYnqT9AY5wXarLCnFLLk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"58a599a2fc1f8c2162da9efbfc0809d869445a7a","engines":{"node":">=0.10.0"},"gitHead":"cbfc80912bca3a6af4c62b749e5d08b876d893f8","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/sindresorhus/cpy","type":"git"},"_npmVersion":"2.11.2","description":"Copy files","directories":{},"_nodeVersion":"0.12.5","dependencies":{"meow":"^3.3.0","globby":"^2.0.0","cp-file":"^2.0.0","each-async":"^1.1.0","object-assign":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"3.4.1":{"name":"cpy","version":"3.4.1","keywords":["cli-app","cli","copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@3.4.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"bin":{"cpy":"cli.js"},"dist":{"shasum":"5600ffd8c2e66f15e4316642e5c8ed14cb328a23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-3.4.1.tgz","integrity":"sha512-U+4jAwYgTO/4rR+zxBrtkpLFyjwJXicjer3AEBwnPmtJL/Tzhc8/AB5u9X+KjY2I/ptnvjrBto9Hy/N5mGUuVQ==","signatures":[{"sig":"MEYCIQCX7Gy7g/UrKL6uPr+5g0CSVEGcDUOi6x8HVLXj4jW4NgIhAM7O+UAdt1KIT+ABv1oqtt4sfFGrA7MCYKMG2xH+Hgqs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js","cli.js"],"_shasum":"5600ffd8c2e66f15e4316642e5c8ed14cb328a23","engines":{"node":">=0.10.0"},"gitHead":"96196edd1bcb6f99e35931a5f752a0891f7ff1ee","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"2.14.2","description":"Copy files","directories":{},"_nodeVersion":"4.0.0","dependencies":{"meow":"^3.3.0","globby":"^2.0.0","cp-file":"^2.0.0","each-async":"^1.1.0","object-assign":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"mocha":"*","rimraf":"^2.3.2"}},"4.0.0":{"name":"cpy","version":"4.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@4.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"601d08dffab5961b8ca1c1bd2b2674247efdc372","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-4.0.0.tgz","integrity":"sha512-RXpGh3jFSDny1wpDRwOrjb6Gf3x2eRnl+5y/4hrmj8gyrGSbY2PjMnyTUaZaP3KW0xR8ouj3SCtk6LpVpkYoRA==","signatures":[{"sig":"MEQCIDU6jow7CxmNcK3JhMt7Uor4O9iqkhGlZUilnwB0j8rZAiBHp5G0z1KAAVQRF/58UqABA7piTbfMl5Xd4UTLq2+Ung==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"601d08dffab5961b8ca1c1bd2b2674247efdc372","engines":{"node":">=0.10.0"},"gitHead":"96ec299e86ebd737c170159cf4634fa3473bff27","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"3.3.12","description":"Copy files","directories":{},"_nodeVersion":"5.3.0","dependencies":{"meow":"^3.6.0","globby":"^4.0.0","cp-file":"^3.1.0","object-assign":"^4.0.1","pinkie-promise":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","execa":"^0.1.1","tempfile":"^1.1.1"}},"4.0.1":{"name":"cpy","version":"4.0.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@4.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"b67267eba2f3960ba06a5a61ac94033422833424","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-4.0.1.tgz","integrity":"sha512-Lt5k8rObSQnmJa9bOAVflYaC8TpjQXkgcONlREuu55QZBPBJ+G261faRfcUnYKvxqGarsZC8O7IRo8swHzS6Kw==","signatures":[{"sig":"MEYCIQCfvZXtODBa1YfkcEBFD9dcnM3hAsHnZeX266p5rucFQQIhAOumHa+LaUtFCLoEnfA9Nv4zamGSBKy0Lwb6lTbdDz31","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"b67267eba2f3960ba06a5a61ac94033422833424","engines":{"node":">=0.10.0"},"gitHead":"1dc1250203f5521b8c69cd34c65f34226bfa56b1","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"2.15.0","description":"Copy files","directories":{},"_nodeVersion":"4.4.2","dependencies":{"meow":"^3.6.0","globby":"^4.0.0","cp-file":"^3.1.0","object-assign":"^4.0.1","pinkie-promise":"^2.0.0","nested-error-stacks":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cpy-4.0.1.tgz_1463390121802_0.037648170022293925","host":"packages-16-east.internal.npmjs.com"}},"5.0.0":{"name":"cpy","version":"5.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@5.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"80870985b8f508b518c5782fa7ca38965cf17d5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-5.0.0.tgz","integrity":"sha512-xiXQ74H30w4oUk6dFHZJHVjOylBjb+DOsLSgsGg7A4XZoUMRvrIvK2USqT4GKXME6VNfbHY8x8pBw3+3gXNptw==","signatures":[{"sig":"MEYCIQD5ju+PwfR9/2K0RuB0ndROAl3Ev2E8O1RfzQ3QHlbauQIhAMH3JZFs+8+I7bxTWse9WHU5VALqvJbtY6iHR5KbIMRu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["cpy-error.js","index.js"],"_shasum":"80870985b8f508b518c5782fa7ca38965cf17d5a","engines":{"node":">=4"},"gitHead":"c0ed4265cfb65d8eb773cdde00a2ceb281b8e172","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"3.10.8","description":"Copy files","directories":{},"_nodeVersion":"6.9.1","dependencies":{"arrify":"^1.0.1","globby":"^6.0.0","cp-file":"^4.1.0","nested-error-stacks":"^2.0.0"},"devDependencies":{"xo":"*","ava":"*","rimraf":"^2.5.4","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cpy-5.0.0.tgz_1480055081913_0.7904404283035547","host":"packages-12-west.internal.npmjs.com"}},"5.1.0":{"name":"cpy","version":"5.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@5.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"248982bf209b0a4507830e72a45d284d4583a16a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-5.1.0.tgz","integrity":"sha512-ottpTsYKE0zzZFQFWSrK+kIGsqlpqilVMVFP3/y/Q8MXQclK4PtHdG3wpoNXT9aFsTtgfHMODqH5RacC49VdXg==","signatures":[{"sig":"MEYCIQD9X29Hl1jtWAD3IcLXPDRXsk/OpYGJLZoYBMswfFiA9gIhALwoKQ3mqhyKmrfMSxrlu7vLZTigXAeuwJ4NPmsbF8Y5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["cpy-error.js","index.js"],"_shasum":"248982bf209b0a4507830e72a45d284d4583a16a","engines":{"node":">=4"},"gitHead":"bd3cb09dac9809e446b2f1825f9b980baf56b05d","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"2.15.11","description":"Copy files","directories":{},"_nodeVersion":"4.8.3","dependencies":{"arrify":"^1.0.1","globby":"^6.0.0","cp-file":"^4.2.0","nested-error-stacks":"^2.0.0"},"devDependencies":{"xo":"*","ava":"*","rimraf":"^2.5.4","tempfile":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy-5.1.0.tgz_1500819527419_0.8405206422321498","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"cpy","version":"6.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@6.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"0b6888e037bb5a7b02a62249551316208a523253","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-6.0.0.tgz","integrity":"sha512-7uBKHhKOFgjCVx6Vv2gx/LqdrM9F7l0vunzmyS3CdStn3U02H1ehhS1SCpZ1qJFZqPi40IMUWAPkN/nQ4RXAiA==","signatures":[{"sig":"MEUCIQDCdW0Ve3iANI+s007fIoYwXaEf8CBJyRVYa4SkTuvbWgIgQsigNRA2z2mPkuJioCY18oJqyviQG4Fq/TwldDS/1Ac=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["cpy-error.js","index.js"],"engines":{"node":">=4"},"gitHead":"e87dd81adbe62648e9dd0f2c3fc9ba8fee9ff1d1","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"5.3.0","description":"Copy files","directories":{},"_nodeVersion":"8.5.0","dependencies":{"arrify":"^1.0.1","globby":"^6.0.0","cp-file":"^5.0.0","nested-error-stacks":"^2.0.0"},"devDependencies":{"xo":"*","ava":"*","rimraf":"^2.5.4","tempfile":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy-6.0.0.tgz_1506157936334_0.9892419369425625","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"cpy","version":"7.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@7.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"00d0265efa29b2b0f5f8b7aec95590692fe624e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-7.0.0.tgz","fileCount":5,"integrity":"sha512-TrCxDbSjKZyz/jgmelcIh3meeSiiwzb561m3pYEDnzkAN4J6OijAt8cL1j3vvHG4ER/HgM4YMHKb5kyR5y5Hqw==","signatures":[{"sig":"MEUCIEHYXvsuC+ADTVsBfkesSIKPTNtI8l/VlXetiVGJbKEUAiEA5wx75o6m+ifCx/MI1fDSUBW/sJKlJCzY3rVdjmGcxQA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9s2tCRA9TVsSAnZWagAAZRkP/1CwHWmhID51uncQDrSC\nSfuynaDBEXUZate6z+eMyVYsyO8NL1bcr/fbW3sD8HrxPYaixwQkGyvVc+/5\nbueeccCcrCuf3lhJ+1316XU5GcJvmJle7Ivcase4H6Qzwz+Zcx9+NQ4ROPsI\n3hmzkQ3f9LinJWsAp+HulWGDcK/bYoM0CXscJmz9LZ4truP541/YRB+AaTAi\nL6+23HBjah0CNGiv0Fh5GP4E0+L5aW708TeMDAHUTu+RioiBw2K4ar6MeSmh\n5xnGo0lrF/w4r/hPkQhGwRFgXihAN0H2kglmWI60rdTff9+hL8xVHz/UGUbT\nt1kJUVEpgpXJ4f36Ue9zT0S5EqeUDoL0L4UhE1BFNzr1JBgQtkSp+sXXogTv\nqMNb1fBGnJ6i9GLyKfIx5ClWHSh8OeqRRGpdhrz+27tPR0rb6W6VvNkG1eFL\nSc9APXyhhbYIkXqnsqUW53/JgQjgUGvUzLVfxvk+668LarcYMs+7sESeK+dh\n40qsDq/5+HRwRtT4u0vPlmtAJCj0Y7//29WP+PG1XIRBgSUZLA/kEQDpcQBL\nW59H8oJfQx5UjE+M3o/wd16vxp3PkWrpgFQfk+qYJMZ7Bcsx0WhuuNRVM5Rm\nbbDNZ2+/UrbvNvzogs2DAejR74ffB0ax3LOafuanE+9j5POuGi1VAdl+VC2E\nLN6q\r\n=QB25\r\n-----END PGP SIGNATURE-----\r\n"},"files":["cpy-error.js","index.js"],"engines":{"node":">=6"},"gitHead":"cac67062d2f6ba0e494f203f3b6dc81f89523c71","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"5.6.0","description":"Copy files","directories":{},"_nodeVersion":"8.11.1","dependencies":{"arrify":"^1.0.1","globby":"^8.0.1","cp-file":"^6.0.0","nested-error-stacks":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*","rimraf":"^2.5.4","tempfile":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_7.0.0_1526123948219_0.7590793272274674","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"cpy","version":"7.0.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@7.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"d817e4d81bd7f0f25ff812796c5f1392dc0fb485","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-7.0.1.tgz","fileCount":5,"integrity":"sha512-Zo52tXKLJcgy/baacn6KaNoRAakkl2wb+R4u6qJ4wlD0uchncwRQcIk66PlGlkzuToCJO6A6PWX27Tdwc8LU2g==","signatures":[{"sig":"MEUCIAeR8E1y7WgZGTBfg+JAdgoTXv1oR2eH82LU/uq1RTAHAiEAjU2fonvkAcjFXrFSNZpUHIWjtTKqug3azWLM5RqZUJE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKq4rCRA9TVsSAnZWagAAzqAP/iAaMLVgZFPgeZqgBcRx\nuzujhMe5QtN7BcrPARDhzW8WPSX6UzwzM2ZaqRi8rDgFxZUM7qBm7CdMlBXH\np1zOLp0aPa+kv9XQggCYfcWTfkw3JFuuyVBV87Qc1LmE/Wjw9HxVJ8Db9xRG\nZbJ0Y7wuxeT26Ux5UTfm+hZ8cDCcS1tZv3Z7D0+CfGXIAS9kLf2B9BYORKwK\nA61z6OPHaUkxjYJLi7r756tLPLxoG8jDZ7IukQDKDG8C+RsO8Kihhg/u+7Wb\nN6SkcQrqacTvciYnXJO0Iqqv3tbYBAjUjl1IeUkbfBvGIpBkGwY/NoeZfZ82\nRVD1h7psxEXXo1N01SKiFtWZ6u+Raj4AJo896dP2AzcUzDjFMVFG/jbr77+1\nhil70q1oulTqhXcSnlboBwvbeHSMXiavVdu8DIrUjfoc2feMXoUutijSc1Up\ncJbA/Y/usQWrBuS2jdaJXOXLJCzC/i5ZkmEcZX3H9WJi+q1zBKgoEWO+FmKa\nzjtFGy6Ls08evWOUUp31IznSZwSsIg+PsWr/iLHiDR9U9mJngd8jhjdtdgw/\nNMNPDDEHXrCUFacd0cm2z3ouT2UOvEG2/TEzs7+rI8K9iJEkPWmQBmgyPzJK\nJaPu2csF7IPVVXn7xz8JW3nDfTJymnmU/genx2S3WjB4gpUsGvSKlY/v1Wwr\nFAzM\r\n=vUoE\r\n-----END PGP SIGNATURE-----\r\n"},"files":["cpy-error.js","index.js"],"engines":{"node":">=6"},"gitHead":"5d4158b1290df2a08167717cffe076bc7bb65262","scripts":{"test":"xo && ava"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"5.6.0","description":"Copy files","directories":{},"_nodeVersion":"8.11.2","dependencies":{"arrify":"^1.0.1","globby":"^8.0.1","cp-file":"^6.0.0","nested-error-stacks":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*","rimraf":"^2.5.4","tempfile":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_7.0.1_1529523753774_0.01489621165118371","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"cpy","version":"7.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@7.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"085aa6077b28d211d585521ad7d8f3d05234a31d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-7.1.0.tgz","fileCount":6,"integrity":"sha512-HT6xnKeHwACUObD3LEFAsjeQ9IUVhC1Pn6Qbk0q6CEWy0WG061khT3ZxQU6IuMXPEEyb+vvluyUOyTdl+9EPWQ==","signatures":[{"sig":"MEUCIQDN8w+AlRv3+o3w8Nx25E18mQ43CZWsRUDLxIJ0+pbq8wIgEzBZfBGnOfy+U7mtAYOXO4f10qhnuNAH+cqykXivkGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf2iICRA9TVsSAnZWagAA420P/R/P+AyQcJazj0i8iLJP\nBpjcGlF+8AOilYdsxVSKCPOzklNeK2+hNdVfUokiXRTs40Ufeh/BPr6JoNiF\nIvhvr+Z4IrfCCZaphMJStnQuXdf23tgwAZjnNaYJw04fFNN1uH0mlnqoK6zJ\nMQWT2mx6KMM2ENmkT6zjw5XgtPJGYWtzUzgqP5z91R1V8X1opTkri5Jii6+P\n1mKxHSuAC+KeD2mfAdKUH9N4sN0SPlmd6cyNBQMLOa17rIOCVlI3zCGF0GE0\nnHZxdWpYi71ehU8yLP11lemlABBCkSakoDgD6QJbE4VyvZeN/t8z6slKDJYZ\ncqSbLbN148LOEdNcMgTdRgmk1RntT1Yy5kOa6we56+K2hVhGYWFwPZJzLOCW\nxldWKYwTY4NAuGAuDlHm3TA8LDcpwWyI4wwd3bZmAoO32BuBnrTcm+vQW4/r\nqla7J7HIMP14AWxzw/QDqtTQ7heSHmVVIaOZxJM39/mnImm1S5HTzTG6REhV\nBz8T5yAp3O8CkclNdXLGA68sNwdnNWeNrecfFGaN4WDDtQ3ijKlFSl3SS7Va\nF4XDOR/vyMO6Xgqg21snbJQIGrhQEkjUuKMXPG4BP8eUwvoYMjxbZV/y2BSY\nK3KQd/xHTXHyjokuW8mZ4wkwum7X1he0K0zFYRrff3EIdC3cKOfvqN0HCGOQ\neJ9C\r\n=bOeO\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"de08eb1ad4a2cb67313c43ed7bfedcf80233d501","scripts":{"test":"xo && ava && tsd-check"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.8.0","description":"Copy files","directories":{},"_nodeVersion":"8.15.0","dependencies":{"arrify":"^1.0.1","globby":"^9.1.0","cp-file":"^6.1.0","nested-error-stacks":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.2.1","rimraf":"^2.5.4","tempfile":"^2.0.0","tsd-check":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_7.1.0_1551853703878_0.42136898545074697","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"cpy","version":"7.2.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@7.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"6f0f39ec720712628b4702c32263816f4720a364","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-7.2.0.tgz","fileCount":6,"integrity":"sha512-CUYi9WYd7vdtEcq1NKqiS/yY2WdaDCNOBA/AoTQHVJzlpJMqctB8py9JrHgGIft6TgO5m8ZidI4l1ZD+RMr/wA==","signatures":[{"sig":"MEYCIQCE1rehhD8qGWBlLh9iO9nJrCkK6zZjUbAG3bORSB67WgIhAI2MQ33FGt5EIU/gWFQM+LXXtukhig4IGEisU6k6sX9R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpEHWCRA9TVsSAnZWagAAMXkQAJCRUbndX2FUSGMTTCQy\nxiz6BY0QmHW7KjpUgvS3FbohfUI4CCQYj6SlwsqqVGFiirbi8ml8vpw8Q4QE\nNZn2dMegq9b8BSMKmJXC9g8UgxmEKULoSIiE07H0hXMb78IIW55kTgDWe0FC\nyEZ3WZkYFE+gPcPrr5vZZmoqh+J/uQWlu9wbW4nbNiiSSjUNZOXqfqNgh8nF\nIiStL2+vKC2RWyMbOQ9f7jKUrExF4bbB4astiTpVeIG+4MUT4LXMJZzE17qd\n6LOx0qPraxkLgFNfE5lq3yy5eMzK9EvFq+c6XsX30CIsosmTA+PrLLLKASdD\nCaggz9KlzzFgfOYa45oAlfcmrDxmeeuNglF0E/kCYbEbXHF6GNxpaZwuoj03\nU+iUfpcRyORh0t/lt4MAhbZ96G2xrHPTtCm6s/dKWl9nMsX9sE2JhvrgUyMJ\nKE5j3+PYvhGFG6vOlXnuIcVGS9o25eBIYFg3UrlhilACc2K6mqaYJo36BFcI\nEy6L5AalFiAlWgZEvWXp9Q5kAZtzpS5MVNeafUrQ6FgYZEx4I96vTu/p2vdO\n5GkmN2hTyCA8XhM0DCrlguY8vS2hJ/Ikm4/AnxVuHwkxW7Z0PQB1z+4bSfIK\nrBzbIG/620Ifb6k0h6y/h0aLgk2vOGfuThSM4jcCq7b4K61qIovtaGhE/Snm\nOVzi\r\n=EIt8\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"977ea66291c9b5dba61305ef3df563455cd7e739","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.9.0","description":"Copy files","directories":{},"_nodeVersion":"8.15.0","dependencies":{"arrify":"^1.0.1","globby":"^9.2.0","cp-file":"^6.1.0","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","tsd":"^0.7.2","rimraf":"^2.6.3","tempfile":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_7.2.0_1554268629675_0.3661204508205518","host":"s3://npm-registry-packages"}},"7.3.0":{"name":"cpy","version":"7.3.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@7.3.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"62f2847986b4ff9d029710568a49e9a9ab5a210e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-7.3.0.tgz","fileCount":6,"integrity":"sha512-auvDu6h/J+cO1uqV40ymL/VoPM0+qPpNGaNttTzkYVXO/+GeynuyAK/MwFcWgU/P82ezcZw7RaN34CIIWajKLA==","signatures":[{"sig":"MEQCIFWxuwYkBSV76lfMIRThRNAxit85+JjsinblQ1wqT/DKAiBfhegwBxssFuQxcJuijSwoochgYtIWabG+CYAusMdX8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/1UgCRA9TVsSAnZWagAAC94P/1iclTToc1lUAZf4j9oS\nLxIEnloKECx7SzEbz6JEMfVQsZ/Wr6oVCsxPXL0VVDUozvc7+88VuHfEjUkl\n73fLertDobi6Wuf34V5UawtYyMk64drVh1IDMvgaUPJeq3IPQ86j8SBd9Isr\nlbQjSUvzliO4r06gnjwLiYAOnyAkb+ImirbI++ajanqtcdZjyombIDuH3uSL\nVPU3JGghUXe28Zk1DZqJyAAQVszgXAsPFRXRG2761aoJKFHReky5bUyFYbZ3\nEgWX6ygkix78nIZwH7jUYB50Ti+8TN1Prr2fWdiScJ37IxaUsb4QQ3EU3dt9\no+9eI7jhNv38tZNUu7VwT/osGEzIqQ/Xeggg6QTMvElAVkIrwmXfaxpFBemO\nuIX5VtvzusN/asqRB9jtU33U25BWFqMY14Odhl0W5sxYaZogok+7etsCNjjQ\nOx3m5OhoxKH+IccVQEKn78SnWlWy4x8pwtpL5jslvZiKDqq3KzsNfWlG4fPR\n/LqubcLl9v0wbA7zm39QvprYV9TyDWrtiUdjN27TwMkuiYKWDxVZGWI022NQ\nN60eF7DyRhodXMKL+yLrrz4w25UDlslgiMrci/u1SCh6WYJiIx33vPKLXX/j\nZVPJn+5ItaflRAfSeVOmVcrRyqlcwkZCL8rQa0jGUlYCJuMJ6i2+3DAq+Tp4\n0gwh\r\n=CG+d\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"44200b850ec36b5c13277a7f379cda9322c2557e","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.9.0","description":"Copy files","directories":{},"_nodeVersion":"10.16.0","dependencies":{"arrify":"^1.0.1","globby":"^9.2.0","cp-file":"^6.1.0","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","tsd":"^0.7.2","rimraf":"^2.6.3","tempfile":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_7.3.0_1560237343813_0.09133676161285975","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"cpy","version":"8.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@8.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"8195db0db19a9ea6aa4f229784cbf3e3f53c3158","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-8.0.0.tgz","fileCount":6,"integrity":"sha512-iTjLUqtVr45e17GFAyxA0lqFinbGMblMCTtAqrPzT/IETNtDuyyhDDk8weEZ08MiCc6EcuyNq2KtGH5J2BIAoQ==","signatures":[{"sig":"MEUCIHPjMHLcaq84y+ic7E4zFS8naHyEPLlfD5R2LSn6f4AVAiEAh2qpymxHJGp2cGOu7f6qb1R4ezhCK0Ubb8TU4wz66rg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10321,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6hGjCRA9TVsSAnZWagAAJvIQAJ6Lq9FPnx33XZhQbwJ9\n+EfQ6/UEaQqWTsDMHg0kzD679B/obMkmFOQAdJUKBesO10jmahEnMvNWYTKq\nFrx3ZDJZFCXOddZayrajAI/JhA6boCYidcJ17C7RdLhVU7hkuVApc4sbqF7b\n1Fd6zLLC74nbKVurWLZv/VvsLWd5QlxUQgQFI5ksyYoQnex50lvJV8YOSNb4\np9oZ2BBBtfM7fEScIALU/D5lInfioqdV9XDGlYXGPJv05Eux7E7FnmF0Ufjy\n/7MGaAZ6TFLWsZsR/rPCDwVoAKKrIjx/YAi78RuqSyRyZ/SjodCavGFD1rJZ\nxEoBORlTaztvp6cBeSKzhnAtyr3Bdix1B0f/c9UtG6eL/w/EqUVhXMjF6GFp\ne3yQROnt4GyNxCwqfjDhzC8HHitfOzkpVVpWC+AWhaZlbv1Ed1ZRcWm1mbdd\nysl8jj2tuecfOFthNL4KgrDVICWNzDrZmqOZWhPYioPL9I7Fl0BoL3x0avpN\nDvk0Fs4yMyOAVc7MnQ7Z78tChz5WpmIiOMYIOFMZTbpqQ7p81zfV446mRFNo\nQ8M3bNYS463Z/LAxUqR86tckQaolWXoznpBK6V5UYcqZG2E9EiyH7SKvK+au\nY6/B6dzMSUskA2D4f2pXW118FqHwUbGn5SSRw3Syj6f7KCsB6i1m+FOnX/kY\nN5VT\r\n=lNJf\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"14d59919466978e21cb2d4d54734334ddf5f5363","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.13.2","description":"Copy files","directories":{},"_nodeVersion":"10.17.0","dependencies":{"junk":"^3.1.0","p-all":"^2.1.0","arrify":"^2.0.1","globby":"^9.2.0","cp-file":"^7.0.0","is-glob":"^4.0.1","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.1.0","tsd":"^0.11.0","rimraf":"^3.0.0","tempfile":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_8.0.0_1575621026789_0.08599309675052957","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"cpy","version":"8.0.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@8.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"78884cd2db1fb2ae445c6d150300bda1b24a72a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-8.0.1.tgz","fileCount":6,"integrity":"sha512-XplonbFkGld3KST+wKFutU+Al3srtT9RaeLTJeRY47QzzLDlA5kpK4s+o0DdgRx7W0cdkifOehGnCBCGIFfdeg==","signatures":[{"sig":"MEQCIDqNcKcjFuHr4D9Hin3pYmxTfQ39LDTkQXQn7H4AYukOAiAFjg9ZLH0lQtGwwWHZfgY9qEgaDyHvVbqRF3Xw9tH8CA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeT7lNCRA9TVsSAnZWagAAn80P/AwsVULNkYfULW/F9UII\nbw5p/5h3/hkcbH/uE203OfzXCftoBjw4UlM1GWD1d8nss63Ca2VzhHSpKC20\nYWIa5sheGhF2Pybm5oFABeFrbt60ScME/FfhI/nAimNPYW4hBMmEd7nDWcxf\nmLyquOcqvX/ZgIPrdBoQS/+WCHOH+MQbTfrYw0kit9g4TjMu52vMCSw1Z/9A\nsjrksUm9LAdKAaKp47ZRow22HTgb1zHIZZrYjtWMePWD7K5hI0tTTC/ujEnh\n/L160bcHyHrKRiluHtoujDTwKyz38y9LfMJIYt5ACVwAfhY5aCrzakc0bF0s\nNCNc7eLga+t8MQmFduNaTF4byXdaVSxfjyfECYGPmkv9aI0UfREP8dEio/Uy\ng3zVVL9KXzUOHdonvXGzxVGLS6D31x45kEwNce48fnOPLJihpoIkUXuwW8fA\nmQLV3lixLtZtLzyBKnfV6fvevW6sguqyqjrPU8wUoBYp9bOO0YMK+PFvKYkn\nSPWXB/b1BDngI5yKtILLjSaknG4/UF3RiRT4w7BRHOOmdJPV+9ScBP2niio5\np6YFcVx5aQqiMups9fhy1JrJXALhLuUE0qXcywBKknY2K8HahDfDkAte+oDk\nSY7KAABgIC4kACSa4clIKHOb9LWoAi6lKn8nBkjYEqI+zLtCzGFekZuCIHoU\ngnEA\r\n=+NZU\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"85831f1607cd92c00f43165ab84087df590b3499","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.13.4","description":"Copy files","directories":{},"_nodeVersion":"10.18.1","dependencies":{"junk":"^3.1.0","p-all":"^2.1.0","arrify":"^2.0.1","globby":"^9.2.0","cp-file":"^7.0.0","has-glob":"^1.0.0","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.1.0","tsd":"^0.11.0","rimraf":"^3.0.0","tempfile":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_8.0.1_1582283084838_0.6766532999647383","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"cpy","version":"8.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@8.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"e8ac07f3caeb0113bd55326e5cda052c19fa6c60","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-8.1.0.tgz","fileCount":6,"integrity":"sha512-XwlImkjPxMr01qXqC564VD4rfcDQ2eKtYmFlCy0ixsLRJ1cwYVUBh+v47jsQTO1IrmvdjqO813VpDQ0JiTuOdA==","signatures":[{"sig":"MEUCIQD3rOc1UhwotNau7w4ULDGK5/CBVrXcfvDs8gWXC83qFwIgbWRi5dmJVtMXgln65xoRzBIDVNmNPagV2Gbt/29m0/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYzLRCRA9TVsSAnZWagAA54gP/i3rGuX1mVhc4mXkwlJ7\nPeD1qVJDFp3pxjiF39gc9iIm4Wj0YEqpUDVmyMmEt8YKBI4akhnfQt70y+rM\nKm4xMctRV/PXSdynAWEf2wEUnrXrgzJze0aYO0WUh01d6jbOa0jCASP8Hxv/\n7kFM5aYG047YQ/hFNTpbxVVwx+4ywpbR1A7JfBGxcpVR/OYggNY5lEP6UpbM\nKfj8N05k/yn0A6oXyL4zAX6JuPkN0fgyghBtsXFoG2B3CXJdCu/x5zlopuaL\nyHZTzG14gBIHb9v3KmLMqw2Tacek3QixLJjcWMEa6koaYhNSLDw1FxXlUzPZ\nM670eUrWOhFVfAnSB5UW8ZgYP+N+wBULdtFvxyoVUVu9rdKgtmlREF0bcrsv\nPGnpaA2Xgk8x2wKA43IECin4BVt7ZU62F9ij57oX4FNYsjfIW6NTahar2eS2\nkRb5GeCR9MP5HVDIej83/FWoVc5VIpq9npI6XgjaIMMt+WYEHB1byQh9oOWE\nSupWohbgLweG+Vc6iCO0JItEHnBlepcT1CXh2GYOaPqrxeSeA/qQZ8Zn0Jvk\nwTs+vFbm8wTF3eiZDIb8dyw8R63B35IP9uOs1b74zudWNTkoQrxwngNrMyP5\nICKQVSM5E+0O+fUjoUXOmCs7ySTI870erDSsHzDzwIe0Gx1sZFYKKrbgAXRR\nIYI0\r\n=cGw9\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"f7ab7422cff171dce4b0f7d5f4bdd29a52f7868f","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.14.0","description":"Copy files","directories":{},"_nodeVersion":"10.18.1","dependencies":{"junk":"^3.1.0","p-all":"^2.1.0","p-map":"^3.0.0","arrify":"^2.0.1","globby":"^9.2.0","cp-file":"^7.0.0","has-glob":"^1.0.0","p-filter":"^2.1.0","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^2.1.0","tsd":"^0.11.0","rimraf":"^3.0.0","tempfile":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cpy_8.1.0_1583559377070_0.38540114850823737","host":"s3://npm-registry-packages"}},"8.1.1":{"name":"cpy","version":"8.1.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@8.1.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"066ed4c6eaeed9577df96dae4db9438c1a90df62","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-8.1.1.tgz","fileCount":6,"integrity":"sha512-vqHT+9o67sMwJ5hUd/BAOYeemkU+MuFRsK2c36Xc3eefQpAsp1kAsyDxEDcc5JS1+y9l/XHPrIsVTcyGGmkUUQ==","signatures":[{"sig":"MEYCIQC8gwAZwoAeJK+RxO0IgnG/YJk+SFQG0EaAmWlEu67g4AIhAMYHbPvSkOZY3/mxLlJ4Fz/C15Eiz37r/EhsHZowjmDH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12970,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfUCxjCRA9TVsSAnZWagAARdIP/2CUHPpDxcMvnO7zzwpA\nIOJcoVw4Zhu5I9ZLTysRZxxY4mWpUxSdonC7xOCzX2Lvn1ybtKlOaQyMC46+\ny+5v3OOxDcr6tMbb41VwMmsDBi+ULzQdidryWaCaLnMZOfQnlf2JI1DNA+pu\nIC3wviJePHsfQj9FRGsR24nZUMG/p+gC8XPDQLAjnAgbmb6o57IIwA7zWzWs\nzNC0Z0xOdF8tDnxpTCrxYp/d0te96Asa82FpK6g9/MLfnhRi/ljrameqrptX\n+S/b9W434glAOWaGLW4583Sl1hfKa8Lti1o6Gw050b55c3Q2fVOPT5PThX+F\n44fQE7m4ZRu9LiyOUFNjR+BL0V5VbKvsGCEW0Vq/fXJihlAeVMnuvqcs0eMI\nF1Ro4r1fpzo9EwDJuzeg209ACYgUloN6paIMQjDXnxwieuvEPAjOTpSx46oB\nAB5RkEI2eTMv51ylVTvVO9rtO757xnN8V2RpQvFYMINYS8RicZsiZGwXzKnF\n//0XbpBCJ7zIEYtsee93WVsxCCI8UZUXmxznkdzvxt/jLKCBECV7ecjb5zXp\n25RH5dkwFRJIzNVlptXy+VBcLI3n3zhzaFzMu/jQXFXTRxSEEUiEgMb0RqQs\nYdATMrHK2B2eV9RqQ0Y1P0aYlMJ6Tdb1rqDuFECR6JjJ5S5R/47IjlB8wcPw\n3CMp\r\n=vSfD\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"b28be2a5929ed885c03e92d1d04f941f79aa937e","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.14.7","description":"Copy files","directories":{},"_nodeVersion":"10.22.0","dependencies":{"junk":"^3.1.0","p-all":"^2.1.0","p-map":"^3.0.0","arrify":"^2.0.1","globby":"^9.2.0","cp-file":"^7.0.0","has-glob":"^1.0.0","p-filter":"^2.1.0","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^3.12.1","tsd":"^0.11.0","tempy":"^0.6.0","rimraf":"^3.0.0","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_8.1.1_1599089763406_0.7407131353953966","host":"s3://npm-registry-packages"}},"8.1.2":{"name":"cpy","version":"8.1.2","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@8.1.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"e339ea54797ad23f8e3919a5cffd37bfc3f25935","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-8.1.2.tgz","fileCount":6,"integrity":"sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==","signatures":[{"sig":"MEUCID7E1HWPVf9emyeFLXcmlEMl/EfetdQl6nX6ez9vk9l9AiEArxloWCzIZ/5sQy4huJjmgAT0H+q35l2Fh+zU6MdAFiE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQhIbCRA9TVsSAnZWagAAdI8P/jGtrSQKKYKCJLTjgyED\nBUD+22ujC2gQl4/jGX/ooWI0MaT5U3ZvPgoXlZ3aOZ2D6IZYYoDwpp8VjcJ+\nrMaBTqDEeNeSHTCmkaU6/z3Yo4p/tbLaFbkgmFJVSGxgKaHOP+QxgAeKrTns\nenHKdfb9QFNX4Y7ADLbkfFXiyJo/d7hG+/+20JjZ7Ag3h+hbPDWF6l5KIci3\nQQM77PW1rkMVhZk29ZTeyEstA0afrU7pEEf2KEJNpTigkaYqZ24wNHfEu7kp\nMNhFyrP2gojn52ffCaPLqf0VQImIhoir8K50nMwqeF0XYAeECfj4X1rdUQlp\nsNiiilUqhnPoIary9L8SFHFSYawvs5+e7VuMy86PjTBXyk3MmdT0peGCHLbZ\nYISpgAyrDDUBx+Trqcyq5nWGy6DgmMen5zlRqarYK6CYbVfFZ/W8w/NZdPvC\nitIaGGc1YoQnzt7DIlr1XRUYWVsx8ersTcfpn9aCyx/ummXCuUbF9SNc17ho\nnmo17R/WxOeEjJPCl8AnkISR0Sq/BwQp7UWjl7J70bc2OS5xATUKHjk761Uy\nLAj9N+qPoXu9GEm3nafZmPBiEFT3EFYjgwCaYo54+dQnnBhPmEiv5beHbKuw\niW0ImC0hab8JmIPPb/baA0vO1QUFCG6Q4CAwB506CDjHf8NE7JUYK3bs3VBt\nticl\r\n=NOHR\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"94fff3ad3514162efbdc8eb8ea3998857fc8556c","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"6.14.10","description":"Copy files","directories":{},"_nodeVersion":"14.15.1","dependencies":{"junk":"^3.1.0","p-all":"^2.1.0","p-map":"^3.0.0","arrify":"^2.0.1","globby":"^9.2.0","cp-file":"^7.0.0","has-glob":"^1.0.0","p-filter":"^2.1.0","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.3","ava":"^3.12.1","tsd":"^0.11.0","tempy":"^0.6.0","rimraf":"^3.0.0","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_8.1.2_1614942747072_0.49732773542452846","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"cpy","version":"9.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@9.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"02943474fd96ea122443f3bb2c5f26e6b9a66fe7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-9.0.0.tgz","fileCount":7,"integrity":"sha512-+yJuWIPnwcdBx+vBcZkb1jeAu05TZlPTAXdZf/fMrksyPQf2tTQr3/zpm1CeBJxeS3E9t4X0HQnr+CMsKSDIXA==","signatures":[{"sig":"MEYCIQDr8l8ww0Y+xSLfW99lR8bL09/bN5UxD6FZ9bsxUGYqjQIhAM5ZHNVRIs86NyXrsx3bO6SicdI04yRkgYN2o+y6bXDq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18160,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiG0dcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqD6hAAiBWLYqQzi2CtAzbZ4PIGiffOTwHuFfDKRKgVlIWbE0NO8QwF\r\nAoVsdCQbrPKAj7dEJ7tDHVQJp0qhRhP8T/TQoH+cZ0i1ePgSwwucv8v6eBi0\r\np/VzeSG59mY6k1NjGkrI0g1vuZCcyNGWCC6GlMRk3pol4hmwe0U1d3INsG4Q\r\nc8FDjMn9+hS3B5QYvdyQ00Cz575ffq22/IOC+0KDj8pJIG3uE98kDWr+MjgD\r\n8PO8bkrDJYllTXyIMG8Ge/SKVSjk6ufMQ1s7kIaysQfVukhtI8omGdme3x1y\r\nC5/mEDO282KdxD1jvcqzIiTlwN/4Y3wb1CjwTHY0aXmpxjQ9FiMJUcWLOMJx\r\n0ZftBtyJwglX0cYILpBXQj2S2je/Uc5msiHLdFsj9vIZXU85nIIvHoLKIdeY\r\nmx3hcm6Kh/jRdR/7QKrs4+HqrqOoX0NiElkGjH0Hv15TStn5BNbK3WiZZujm\r\nYesvxRUEg7XxRaZ9LHIg9dB4sThvi+0a01ogBiFFVPWMkuxwa+YRA8dkR2yv\r\nxmoC7vgo9ewD8LjGuJdCVmK0vGm1h2AkNf4NrnUjYF8SvI+0Kly0rzxi41Os\r\nhyRNb5scdDnOmkQ5D3QizZQesLIHnJYxLQScahQP1FCeUZ/ZpF/FWr8kLqv4\r\nNtLI1fqyvzW+v9kUnssaEorSQNEGEvP1QmY=\r\n=INmN\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","types":"./index.d.ts","engines":{"node":"^12.20.0 || ^14.17.0 || >=16.0.0"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"84fe6ede58a2aac5d66d70bff93326ebed65ca91","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"8.3.2","description":"Copy files","directories":{},"_nodeVersion":"12.22.1","dependencies":{"junk":"^4.0.0","p-map":"^5.3.0","arrify":"^3.0.0","globby":"^13.1.1","cp-file":"^9.1.0","p-filter":"^3.0.0","micromatch":"^4.0.4","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.48.0","ava":"^4.0.1","tsd":"^0.19.1","tempy":"^2.0.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^4.5.5"},"_npmOperationalInternal":{"tmp":"tmp/cpy_9.0.0_1645954908743_0.5715039585352042","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"cpy","version":"9.0.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@9.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"7f3ad0ad5bafe0bc70645c4bb567969927cadb9f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-9.0.1.tgz","fileCount":7,"integrity":"sha512-D9U0DR5FjTCN3oMTcFGktanHnAG5l020yvOCR1zKILmAyPP7I/9pl6NFgRbDcmSENtbK1sQLBz1p9HIOlroiNg==","signatures":[{"sig":"MEUCIDCC7kwe56Dvt06nG2EV4yAbpQf7D1T2kEV9pSsh9LPvAiEA0RxBv5UujuSWo1eJbcUHL/TJwt2yb7nhyWBlrKCufg8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18304,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJcxsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpeRA//QXtGVI+0UmRZ7DRJk/nJ3YBJgSapXjfv5EyxVV0eIye1Z91L\r\n6RR/IqnPNFiGMsMiSbIJHqYe+/ItvJfeoh9JHPERCu/slXKl6WcUYAhKpR57\r\nzJpQMyTS9EkZgfLAWPulrJpXxFf6hys4cFfS5/qpWUTmbt44ZrN3k1hF718N\r\n6620kiKb6xcZtpdj9EC25K5DEYV+x+cEc4/ctTwbb3kIwW5JP3Qj/LeQ7DUk\r\n8ExEEBg6H6RsXBZfyJ1lV2OzaX9VWkrJ9RbokXNvRPVr0rFWx9yqOnqJo9r9\r\n92j4qM9c5htfRqbl4WC8cOEw8Wyt6eUUifzeLYTt01pBWh7Bxf/Zg2cw4JFb\r\n8T9AUcCaiZbD2ren+aS6HhKJK1otX3SB++7zsZrJP+oaCsYnKI13PhSh5b9E\r\nOT023cXyUWJ8U7k4k52W4+UQT56u8Nhh62pOGy/MO3b4q09Bb1Kmkn59jJ2K\r\nZpcWRD2ditdhPORQB0HbkAGKs/NyYhEc0EwzoTaHCoqPY7kiy/mSIQZKlcBe\r\nrlorN/G0A/NAXAMi007vIT1zbr9DQcm9jMTHh3mSnUf/dBxUo9zXwvp+gDWS\r\nft8T2Bs9rKLQYR+1d8mrJY54mlD3fLPJEeiGQSKqm0Bojvozo+s0Hfv4TPhB\r\n6J5dYYMBAajZx3b3qMcG8KA/NsgKis/hQbA=\r\n=ORyo\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","types":"./index.d.ts","engines":{"node":"^12.20.0 || ^14.17.0 || >=16.0.0"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"0a3dcbece0289cca86aa3a9e7e41cf212c7048d3","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"8.3.2","description":"Copy files","directories":{},"_nodeVersion":"16.14.0","dependencies":{"junk":"^4.0.0","p-map":"^5.3.0","arrify":"^3.0.0","globby":"^13.1.1","cp-file":"^9.1.0","p-filter":"^3.0.0","micromatch":"^4.0.4","nested-error-stacks":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.48.0","ava":"^4.0.1","tsd":"^0.19.1","tempy":"^2.0.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^4.5.5"},"_npmOperationalInternal":{"tmp":"tmp/cpy_9.0.1_1646644332300_0.90417841262601","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"cpy","version":"10.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@10.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"372dfc731f8f1d72ab06888093084e3c558aec20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-10.0.0.tgz","fileCount":7,"integrity":"sha512-6aFIEPIDnUE98L4FNBEkfOL5A1XfMt+37fzYsdQ4KugSrVU6gWa1IgBbtc/Di3ohTzGw10LqCcCamw8bL8Erqw==","signatures":[{"sig":"MEUCIF6V2XkLfSJGJoeidRwhEnI9iqRQHokNi2qiBN+xhxL5AiEApnL+n9+2fSamG00B97lopm1YHL6WK+atT0UTFMmN5ZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkUVavACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdlQ//dm9uhjzO15JpmbBywr2PZMFzklJDjc6wCkvQs0EfHaKIahES\r\nmrgf8HbYEq7DXIs8fJ44111o0hVXE8aBIrThSuJKeIzdrA83CMQP73+8g5KK\r\ntekfV/apdL41qNgfewCogi44HtgvhuVWq07cwdFhlHC2FoQV275egiSf34Tp\r\nS4xps0Aaj3FmyLRvKfAcZsliIxMhzTn3oDEaxmInFeACTGegfLLoVB1/SP+8\r\n74w0fumphbTzvOCVIUNPPkP4MJ4CrOMXlMiVdeS61DFifg24BZwcF1LvIrgo\r\n6aWaYzFyEHMyJNLOfFsz0ptR3GCXdjcP/QKMnJOE/pquG8B+n55CRNgnGgLF\r\nbI9l7rUILK3g3cam2qev7ReEH75MbzHvKbAwseE5Hv8cDC3XlQnbTJS+w/oh\r\n8bOvmtQlIrY3LN4VLZxUJ7VfIuCjV+tda3ZKlE3oueh32qIOIz3VNLeyGce8\r\n8fOcq/yyxCdPX1gjLUJ9yWxLYHA9MBTPXtovtNZ5sYTDqqZzI03YxlCcCCh6\r\niJH8OKY2V5fCfOlQwo3w8uCBbAzDylvntERPJSHLO1s4VHbmAEWOqDPAlA6C\r\n7ykZcrDaJIa33cddoSTSYAQfAN4ui2aGhltBAKhuSd0r/FCv03tlM+jrot2K\r\nqYiq2ae5u+4UK90Fq5R2myrxd+1gtRmmr0g=\r\n=SZ80\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","types":"./index.d.ts","engines":{"node":">=16"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"9fe469b46abe4d5f9385d8098dc224306a9445d9","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"9.2.0","description":"Copy files","directories":{},"_nodeVersion":"16.20.0","dependencies":{"junk":"^4.0.1","p-map":"^6.0.0","arrify":"^3.0.0","globby":"^13.1.4","cp-file":"^10.0.0","p-filter":"^3.0.0","micromatch":"^4.0.5","nested-error-stacks":"^2.1.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.2.0","tsd":"^0.28.1","tempy":"^3.0.0","rimraf":"^5.0.0","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_10.0.0_1683052207060_0.878815803901323","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"cpy","version":"10.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@10.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"dist":{"shasum":"85517387036b9be480f6424e54089261fc6f4bab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-10.1.0.tgz","fileCount":7,"integrity":"sha512-VC2Gs20JcTyeQob6UViBLnyP0bYHkBh6EiKzot9vi2DmeGlFT9Wd7VG3NBrkNx/jYvFBeyDOMMHdHQhbtKLgHQ==","signatures":[{"sig":"MEUCIQDI3MDV874hVHM4NlCy4UOjxtvMKvWCTMj0pfpbj9KWjwIgf4nDiX4WOCJHMaxK2AeOPN4XqN+vc6F7a2eJSF7nbL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18808},"type":"module","types":"./index.d.ts","engines":{"node":">=16"},"exports":"./index.js","funding":"https://github.com/sponsors/sindresorhus","gitHead":"38c5d858aa480015bcf15c0b5e493995a3f25ce3","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"9.2.0","description":"Copy files","directories":{},"_nodeVersion":"16.16.0","dependencies":{"junk":"^4.0.1","p-map":"^6.0.0","arrify":"^3.0.0","globby":"^13.1.4","cp-file":"^10.0.0","p-filter":"^3.0.0","micromatch":"^4.0.5","nested-error-stacks":"^2.1.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.2","ava":"^5.2.0","tsd":"^0.28.1","tempy":"^3.0.0","rimraf":"^5.0.0","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_10.1.0_1683725511087_0.5518787653787642","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"cpy","version":"11.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@11.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"9629d1bce02f78d34dcec887547ada37a3cf29ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-11.0.0.tgz","fileCount":7,"integrity":"sha512-vA71mFQyIxCrqvP/9JBLCj05UJV/+WpvAxZK2/EiK5ndD090cjuChfJ3ExVVuZXHoTJ/3HLedOPYDWyxnNHjrg==","signatures":[{"sig":"MEUCIHj+w/DfBBqrK9pC9nMEwOs0cTZ8kOvgkHfXYx3HQPQ7AiEAxwdopGwctxmPMsHc8/oRVsZVtoFNN4FRNYF3hxC14zE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18977},"type":"module","types":"./index.d.ts","engines":{"node":">=18"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"7d6e8be9aa1cb8b993084512cb9ca4a48e1f21d3","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"9.2.0","description":"Copy files","directories":{},"_nodeVersion":"18.18.2","dependencies":{"junk":"^4.0.1","p-map":"^6.0.0","globby":"^13.2.2","p-filter":"^3.0.0","copy-file":"^11.0.0","micromatch":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","tsd":"^0.29.0","tempy":"^3.1.0","rimraf":"^5.0.5","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_11.0.0_1699171786272_0.6749087169047261","host":"s3://npm-registry-packages"}},"11.0.1":{"name":"cpy","version":"11.0.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@11.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"82cfda50870b6b422c7f751bdf6df5ad904e74df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-11.0.1.tgz","fileCount":7,"integrity":"sha512-VIvf1QNOHnIZ5QT8zWxNJq+YYIpbFhgeMwnVngX+AhhUQd3Rns3x6gcvb0fGpNxZQ0q629mX6+GvDtvbO/Hutg==","signatures":[{"sig":"MEYCIQC7SOAwTCaJQYzcoxe9eFuxzhGIs7ChiEQvJDGblJ5pWwIhAJ+NDi74RPd+sQ+CkUuzLD4C9Ay3yEsmhREduBiWfwBY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18873},"type":"module","types":"./index.d.ts","engines":{"node":">=18"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"622d814678de6ca9f78713cfd7379f68f89635d4","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"9.2.0","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"18.19.0","dependencies":{"junk":"^4.0.1","p-map":"^6.0.0","globby":"^13.2.2","p-filter":"^3.0.0","copy-file":"^11.0.0","micromatch":"^4.0.5"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","tsd":"^0.29.0","tempy":"^3.1.0","rimraf":"^5.0.5","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_11.0.1_1710084771507_0.8063323164263203","host":"s3://npm-registry-packages"}},"11.1.0":{"name":"cpy","version":"11.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@11.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"3dfdfe15ed4d8218158ea3b71cb213af3d183c36","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-11.1.0.tgz","fileCount":7,"integrity":"sha512-QGHetPSSuprVs+lJmMDcivvrBwTKASzXQ5qxFvRC2RFESjjod71bDvFvhxTjDgkNjrrb72AI6JPjfYwxrIy33A==","signatures":[{"sig":"MEUCIQCHNB+uBCk7IXhUhBqZv0Njz3HSEVrRU+C6vN1fiSZnzQIgA7zNupllWo+l1TbaJRv0AqlA01nAWKdFIWVjMERDNRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18936},"type":"module","types":"./index.d.ts","engines":{"node":">=18"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"cedf94cf7e222e9cd4e1df1ca87e4ef454126bc7","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"10.6.0","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"junk":"^4.0.1","p-map":"^7.0.2","globby":"^14.0.2","p-filter":"^4.1.0","copy-file":"^11.0.0","micromatch":"^4.0.7"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.2","ava":"^6.1.3","tsd":"^0.31.1","tempy":"^3.1.0","rimraf":"^5.0.5","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_11.1.0_1722007515842_0.4467240689771268","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"cpy","version":"12.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@12.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"f7fa5d45bf43d317fd5e06905ea80d64041a0602","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-12.0.0.tgz","fileCount":7,"integrity":"sha512-k2Y2BFZUp8VzoEuGcVx3Vk2/ACf0PgVnC/cgSC7IyZeEW3nr67E/tcspoC0TUpAxZmByXaYsPKATFwSsUli9XA==","signatures":[{"sig":"MEUCIAkqag/KpDCG9MlRNBzTDqP771Ui1Kn6UZYWApJLEJ0VAiEApn723mflRqCV0sZpih35lEhdiqpdDBkgKAgm85oZAIU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":21756},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"ebe15e42db30933ac6b399f54150482029cd73fe","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"10.9.2","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"20.19.1","dependencies":{"junk":"^4.0.1","p-map":"^7.0.3","globby":"^14.1.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.1","ava":"^6.4.1","tsd":"^0.33.0","tempy":"^3.1.0","rimraf":"^6.0.1","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_12.0.0_1755057440545_0.44699123093839455","host":"s3://npm-registry-packages-npm-production"}},"12.0.1":{"name":"cpy","version":"12.0.1","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@12.0.1","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"82425ea4e8635f31e3861c2e1e55bab826faa766","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-12.0.1.tgz","fileCount":7,"integrity":"sha512-hCnNla4AB27lUncMuO7KFjge0u0C5R74iKMBOajKOMB9ONGXcIek314ZTpxg16BuNYRTjPz7UW3tPXgJVLxUww==","signatures":[{"sig":"MEQCIEvlJqWax/Q9eph5mrWTxSBSFy3km+O6ufn0/1JDeH9uAiB7WkB8QEX2Oa+4jThigABwsqe9S4W4zK2JAY0k28fNdg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23510},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"1dd59f0b81baaf73e80172098488948f17f92b05","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"10.9.2","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"20.19.1","dependencies":{"junk":"^4.0.1","p-map":"^7.0.3","globby":"^14.1.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.1","ava":"^6.4.1","tsd":"^0.33.0","tempy":"^3.1.0","rimraf":"^6.0.1","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_12.0.1_1755676998269_0.2721588089596134","host":"s3://npm-registry-packages-npm-production"}},"12.0.2":{"name":"cpy","version":"12.0.2","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@12.0.2","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"590920d2299c7e233b943d20c96410b5379458b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-12.0.2.tgz","fileCount":7,"integrity":"sha512-DBEV/xw8u0rEHFcYq0YDs/7WH8ibdJetmEXrI1wi2a0GdisSP6LaS6A0Quef0+F7p7mNKEhdUC0SImQzZ8W1kg==","signatures":[{"sig":"MEUCIQDPvPMYJnS/gPHTlykVOITWY098qjOrAISsY7GKt2T4fQIgCl1TRN5HgIVg0n1sE7V2NSKeijQg78rHnhzHofcUlv8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23446},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"ffb398a92353a03443cf56c18bdde11ea4af0c99","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"11.6.1","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"24.9.0","dependencies":{"junk":"^4.0.1","p-map":"^7.0.3","globby":"^14.1.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.1","ava":"^6.4.1","tsd":"^0.33.0","tempy":"^3.1.0","rimraf":"^6.0.1","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_12.0.2_1760892100600_0.2072727685480389","host":"s3://npm-registry-packages-npm-production"}},"12.1.0":{"name":"cpy","version":"12.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@12.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"e8eadfa9d4b06d549a77c851f45b55a06529c8e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-12.1.0.tgz","fileCount":7,"integrity":"sha512-3z9tP1rPBLG7pQYn9iRgl7JOSew0SMPuWmakaRfzhXpmFBHmRbp7JekpuqPkXbbWOdSeKSbInYEcdIZjov2fNQ==","signatures":[{"sig":"MEUCIFMnXqtstI8ODMxawtDWZzhjRg/NlZO+gG9J02GVg02dAiEA8U7UZ1/+rz9yysDPAocGfAYMIGX4P45VUVTwp0XT5sc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24807},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"b0c533ab7ae6fa8e667c222199e01d0616ec1e90","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"11.6.1","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"24.9.0","dependencies":{"junk":"^4.0.1","p-map":"^7.0.3","globby":"^15.0.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","ava":"^6.4.1","tsd":"^0.33.0","tempy":"^3.1.0","rimraf":"^6.0.1","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_12.1.0_1760943642562_0.3988138532651926","host":"s3://npm-registry-packages-npm-production"}},"13.0.0":{"name":"cpy","version":"13.0.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@13.0.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"f7e3fb620775e7b11dbff2c2b25cdbf007018897","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-13.0.0.tgz","fileCount":7,"integrity":"sha512-RnZyDgAMq5f4bPueq9r+8GlVGSrl3CoCzPzFT6cFceYFHhPa2KJuNh1sIFjYmpUOnTRh2ZIECh3zJONfQ/V1ig==","signatures":[{"sig":"MEQCIHjmS6L8SNVa5njIjhlpnwVPZKvrEyZLwjZsCbPKpZi+AiBQ1uPtmfTmu9NsP/smqROC9i1MEAQJXf+HNCbFR0WX9Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":37033},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"3b98caf97bd1206d636f50de2272ee8bae99fc9a","scripts":{"test":"xo && node --test test.js && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"11.7.0","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"25.3.0","dependencies":{"junk":"^4.0.1","p-map":"^7.0.4","globby":"^16.1.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","tsd":"^0.33.0","tempy":"^3.1.2","rimraf":"^6.1.2","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_13.0.0_1770015340663_0.7668266823414762","host":"s3://npm-registry-packages-npm-production"}},"13.1.0":{"name":"cpy","version":"13.1.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@13.1.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"68f45cd2dd5a2bbc9065c404b11c5c29b6caa493","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-13.1.0.tgz","fileCount":7,"integrity":"sha512-XFkWMaeQ1MliAltMaxr5QR25FBhiKCQZvW90Iriy3x5uoR82YA6oTgiIj08ai7ONvqNhsvSB37oAO928qnlSOQ==","signatures":[{"sig":"MEUCIQDxz1BY2aVE3OHvQHw78waHDoslQOwV4VDRInrzN2iHTwIgBenoALVTCyTDIkO79BleRqNS6jry8bt51RuzsUTQJlQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":42007},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"bb19e4d192280405830081da842d78a5a2b65f6a","scripts":{"test":"xo && node --test test.js && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"11.7.0","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"25.3.0","dependencies":{"junk":"^4.0.1","p-map":"^7.0.4","globby":"^16.1.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","tsd":"^0.33.0","tempy":"^3.1.2","rimraf":"^6.1.2","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_13.1.0_1770225933887_0.594294510482573","host":"s3://npm-registry-packages-npm-production"}},"13.2.0":{"name":"cpy","version":"13.2.0","keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"cpy@13.2.0","maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/cpy#readme","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"dist":{"shasum":"3d039f485ce20524c50148034e791d987af2c14d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-13.2.0.tgz","fileCount":7,"integrity":"sha512-zTF1smuEo4MqYkx2/vzE2QftjgUJGaDNkIyEV9iZG7OfRhxZh6DlLEm+xHAcc0D2k8hL/Abseoep1crmG9so/w==","signatures":[{"sig":"MEUCIFV5yyMhZSkpv8fs6gUR1uaaWFMdGj4+gsDPDU/vTliBAiEA85QHZ5INYdEPAXC6wQpptP1QJb+/ziOs8QB2vCVsWfk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":44726},"type":"module","types":"./index.d.ts","engines":{"node":">=20"},"exports":{"types":"./index.d.ts","default":"./index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"da95199375b91edd7543a5fe88313c3dbaf7e4f3","scripts":{"test":"xo && node --test test.js && tsd"},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/cpy.git","type":"git"},"_npmVersion":"11.7.0","description":"Copy files","directories":{},"sideEffects":false,"_nodeVersion":"25.3.0","dependencies":{"junk":"^4.0.1","p-map":"^7.0.4","globby":"^16.1.0","p-filter":"^4.1.0","copy-file":"^11.1.0","micromatch":"^4.0.8"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.3","tsd":"^0.33.0","tempy":"^3.1.2","rimraf":"^6.1.2","proxyquire":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/cpy_13.2.0_1770274749810_0.8516467603097426","host":"s3://npm-registry-packages-npm-production"}},"13.2.1":{"name":"cpy","version":"13.2.1","description":"Copy files","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/cpy.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=20"},"scripts":{"test":"xo && node --test test.js && tsd"},"keywords":["copy","cp","cpy","file","files","clone","fs","stream","glob","file-system","ncp","fast","quick","data","content","contents","cpx","directory","directories"],"dependencies":{"copy-file":"^11.1.0","globby":"^16.1.0","junk":"^4.0.1","micromatch":"^4.0.8","p-filter":"^4.1.0","p-map":"^7.0.4"},"devDependencies":{"proxyquire":"^2.1.3","rimraf":"^6.1.2","tempy":"^3.1.2","tsd":"^0.33.0","xo":"^1.2.3"},"xo":{"rules":{"unicorn/prefer-event-target":"off"}},"gitHead":"279066e57ef21ffefee8cf33d6fe4463f4e34814","types":"./index.d.ts","_id":"cpy@13.2.1","bugs":{"url":"https://github.com/sindresorhus/cpy/issues"},"homepage":"https://github.com/sindresorhus/cpy#readme","_nodeVersion":"25.6.0","_npmVersion":"11.8.0","dist":{"integrity":"sha512-/H2B3WW9gccZJKjKoDZsIrDU3MkkHlxgheT82hUbInC5fEdi4+54zyYpFueZT9pLfr5ObrtgN4MsYYrmTmHzeg==","shasum":"db378d272cdfbbef6033524c39df1a7a234f7057","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cpy/-/cpy-13.2.1.tgz","fileCount":7,"unpackedSize":44927,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIBjX9RkDZGq6rz7Ozrz1z175TnYgnCNlGZgywrH4RzC7AiEA+wH1tclEqMD/ccOrdGv8tExtQz/DpajJoJGm/J3tSRA="}]},"_npmUser":{"name":"anonymous","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/cpy_13.2.1_1770904068689_0.7487866588398067"},"_hasShrinkwrap":false}},"name":"cpy","time":{"created":"2014-06-28T22:31:12.466Z","modified":"2026-02-12T13:47:48.970Z","0.1.0":"2014-06-28T22:31:12.466Z","0.2.0":"2014-07-26T18:47:36.404Z","1.0.0":"2014-12-01T06:54:49.589Z","2.0.0":"2015-01-21T08:43:56.734Z","2.0.1":"2015-02-16T17:00:27.894Z","3.0.0":"2015-03-14T13:04:21.479Z","3.1.0":"2015-04-24T09:54:19.866Z","3.2.0":"2015-05-31T21:16:26.684Z","3.3.0":"2015-06-03T15:18:32.026Z","3.3.1":"2015-07-08T18:23:01.862Z","3.4.0":"2015-07-28T02:09:46.635Z","3.4.1":"2015-09-11T18:12:21.414Z","4.0.0":"2016-01-03T20:58:40.064Z","4.0.1":"2016-05-16T09:15:25.120Z","5.0.0":"2016-11-25T06:24:42.129Z","5.1.0":"2017-07-23T14:18:48.434Z","6.0.0":"2017-09-23T09:12:16.473Z","7.0.0":"2018-05-12T11:19:08.598Z","7.0.1":"2018-06-20T19:42:33.845Z","7.1.0":"2019-03-06T06:28:24.193Z","7.2.0":"2019-04-03T05:17:09.810Z","7.3.0":"2019-06-11T07:15:43.943Z","8.0.0":"2019-12-06T08:30:26.895Z","8.0.1":"2020-02-21T11:04:44.969Z","8.1.0":"2020-03-07T05:36:17.223Z","8.1.1":"2020-09-02T23:36:03.558Z","8.1.2":"2021-03-05T11:12:27.211Z","9.0.0":"2022-02-27T09:41:48.899Z","9.0.1":"2022-03-07T09:12:12.645Z","10.0.0":"2023-05-02T18:30:07.263Z","10.1.0":"2023-05-10T13:31:51.253Z","11.0.0":"2023-11-05T08:09:46.466Z","11.0.1":"2024-03-10T15:32:51.667Z","11.1.0":"2024-07-26T15:25:16.022Z","12.0.0":"2025-08-13T03:57:20.726Z","12.0.1":"2025-08-20T08:03:18.462Z","12.0.2":"2025-10-19T16:41:40.779Z","12.1.0":"2025-10-20T07:00:42.762Z","13.0.0":"2026-02-02T06:55:40.815Z","13.1.0":"2026-02-04T17:25:34.038Z","13.2.0":"2026-02-05T06:59:09.957Z","13.2.1":"2026-02-12T13:47:48.840Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/cpy#readme"}