{"maintainers":[{"email":"yo@contra.io","name":"anonymous"},{"email":"blaine.bublitz@gmail.com","name":"anonymous"}],"keywords":["object","property","copy","deep","map","convert"],"dist-tags":{"latest":"4.0.0"},"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"description":"Copy properties deeply between two objects.","readme":"<p align=\"center\">\n  <a href=\"http://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# copy-props\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]\n\nCopy properties between two objects deeply.\n\n## Install\n\nTo install from npm:\n\n```sh\n$ npm i copy-props --save\n```\n\n## Usage\n\nCopy _src_ to _dst_ simply (and return _dst_) :\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: { b1: 'bbb' }, c: 'ccc' };\nvar dst = { a: 2, b: { b1: 'xxx', b2: 'yyy' } };\n\ncopyProps(src, dst);\n// => { a: 1, b: { b1: 'bbb', b2: 'yyy' }, c: 'ccc' }\n```\n\nCopy _src_ to _dst_ with property mapping (and return _dst_) :\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: { b1: 'bbb' }, c: 'ccc', d: 'ddd' };\nvar dst = { f: { a: 2, b1: 'xxx', b2: 'yyy' }, e: 'zzz' };\n\ncopyProps(src, dst, {\n  a: 'f.a',\n  'b.b1': 'f.b1',\n  'b.b2': 'f.b2',\n  c: 'f.c',\n});\n// => { f: { a: 1, b1: 'bbb', b2: 'yyy', c: 'ccc' }, e: 'zzz' }\n```\n\nCopy _src_ to _dst_ with convert function (and return _dst_) :\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: { b1: 'bbb' } };\nvar dst = { a: 0 };\n\ncopyProps(src, dst, function (srcInfo) {\n  if (srcInfo.keyChain === 'a') {\n    return srcInfo.value * 2;\n  }\n  if (srcInfo.keyChain === 'b.b1') {\n    return srcInfo.value.toUpperCase();\n  }\n});\n// => { a: 2, b: { b1: 'BBB' } }\n```\n\nCan use an array instead of a map as property mapping :\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: { c: 'CCC' }, d: { e: 'EEE' } };\nvar dst = { a: 9, b: { c: 'xxx' }, d: { e: 'yyy' } };\nvar fromto = ['b.c', 'd.e'];\ncopyProps(src, dst, fromto);\n// => { a: 9, b: { c: 'CCC' }, d: { e: 'EEE' } }\n```\n\nCan copy reversively (from _dst_ to _src_) by reverse flag (and return _src_):\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: { b1: 'bbb' }, c: 'ccc' };\nvar dst = { a: 2, b: { b1: 'xxx', b2: 'yyy' } };\n\ncopyProps(src, dst, true);\n// => { a: 2, b: { b1: 'xxx', b2: 'yyy' }, c: 'ccc' }\n```\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: { b1: 'bbb' }, c: 'ccc', d: 'ddd' };\nvar dst = { f: { a: 2, b1: 'xxx', b2: 'yyy' }, e: 'zzz' };\n\ncopyProps(\n  src,\n  dst,\n  {\n    a: 'f.a',\n    'b.b2': 'f.b2',\n    c: 'f.c',\n  },\n  true\n);\n// => { a: 2, b: { b1: 'bbb', b2: 'yyy' }, c: 'ccc', d: 'ddd' }\n```\n\nIf a value of source property is undefined (when not using converter), or a result of converter is undefined (when using converter), the value is not copied.\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 'A', b: undefined, c: null, d: 1 };\nvar dst = { a: 'a', b: 'b', c: 'c' };\n\ncopyProps(src, dst, function (srcInfo) {\n  if (srcInfo.keyChain === 'd') {\n    return undefined;\n  } else {\n    return srcInfo.value;\n  }\n});\n// => { a: 'A', b: 'b', c: null }\n```\n\nYou can operate the parent node object directly in converter.\n\n```js\nconst copyProps = require('copy-props');\n\nvar src = { a: 1, b: 2 };\nvar dst = {};\n\ncopyProps(src, dst, function (srcInfo, dstInfo) {\n  Object.defineProperty(dstInfo.parent, dstInfo.key, {\n    writable: false,\n    enumerable: true,\n    configurable: false,\n    value: srcInfo.value * 2,\n  });\n}); // => { a: 2, b: 4 }\n\ndst; // => { a: 2, b: 4 }\ndst.a = 9;\ndst; // -> { a: 2, b: 4 }\n```\n\n## API\n\n### <u>copyProps(src, dst [, fromto] [, converter] [, reverse]) => object</u>\n\nCopy properties of _src_ to _dst_ deeply.\nIf _fromto_ is given, it is able to copy between different properties.\nIf _converter_ is given, it is able to convert the terminal values.\n\n#### Parameters:\n\n| Parameter   |        Type         | Description                                                                                                                                                         |\n| :---------- | :-----------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| _src_       |       object        | A source object of copy.                                                                                                                                            |\n| _dst_       |       object        | A destinate object of copy.                                                                                                                                         |\n| _fromto_    | object &#124; array | An object mapping properties between _src_ and _dst_. (Optional)                                                                                                    |\n| _converter_ |      function       | A function to convert terminal values in _src_. (Optional)                                                                                                          |\n| _reverse_   |       boolean       | True, if copying reversively from dst to src and returns src object. `fromto` is also reversively used from value to key. This default value is `false`. (Optional) |\n\n#### Returns:\n\n_dst_ object after copying.\n\n**Type:** object\n\n- **Format of <i>fromto</i>**\n\n  _fromto_ is a non-nested key-value object. And the *key*s are property key chains of _src_ and the *value*s are property key chains of _dst_.\n  The key chain is a string which is concatenated property keys on each level with dots, like `'aaa.bbb.ccc'`.\n\n  The following example copys the value of `src.aaa.bbb.ccc` to `dst.xxx.yyy`.\n\n  ```js\n  copyProps(src, dst, {\n    'aaa.bbb.ccc': 'xxx.yyy',\n  });\n  ```\n\n  _fromto_ can be an array. In that case, the array works as a map which has pairs of same key and value.\n\n- **API of <i>converter</i>**\n\n  **<u>converter(srcInfo, dstInfo) : Any</u>**\n\n  _converter_ is a function to convert terminal values of propeerties of _src_.\n\n  **Parameters:**\n\n  | Parameter |  Type  | Description                                                       |\n  | :-------- | :----: | :---------------------------------------------------------------- |\n  | _srcInfo_ | object | An object which has informations about the current node of _src_. |\n  | _dstInfo_ | object | An object which has informations about the current node of _dst_. |\n\n  **Return:**\n\n  The converted value to be set as a destination property value. If this value is undefined, the destination property is not set to the destination node object.\n\n  **Type:** _Any_\n\n  - **Properties of <i>srcInfo</i> and <i>dstInfo</i>**\n\n    _srcInfo_ and _dstInfo_ has same properties, as follows:\n\n    | Property   |  Type  | Description                                             |\n    | :--------- | :----: | :------------------------------------------------------ |\n    | _value_    | _Any_  | The value of the current node.                          |\n    | _key_      | string | The key name of the current node.                       |\n    | _keyChain_ | string | The full key of the current node concatenated with dot. |\n    | _depth_    | number | The depth of the current node.                          |\n    | _parent_   | object | The parent node of the current node.                    |\n\n## License\n\nMIT\n\n<!-- prettier-ignore-start -->\n[downloads-image]: https://img.shields.io/npm/dm/copy-props.svg?style=flat-square\n[npm-url]: https://www.npmjs.org/package/copy-props\n[npm-image]: https://img.shields.io/npm/v/copy-props.svg?style=flat-square\n\n[ci-url]: https://github.com/gulpjs/copy-props/actions?query=workflow:dev\n[ci-image]: https://img.shields.io/github/workflow/status/gulpjs/copy-props/dev?style=flat-square\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/copy-props\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/copy-props/master.svg\n<!-- prettier-ignore-end -->\n","repository":{"type":"git","url":"git+https://github.com/gulpjs/copy-prop.git"},"bugs":{"url":"https://github.com/gulpjs/copy-prop/issues"},"license":"MIT","versions":{"1.0.0":{"name":"copy-props","version":"1.0.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js","lib"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","devDependencies":{"chai":"^3.5.0","eslint":"^3.5.0","istanbul":"^0.4.5","lodash.merge":"^4.6.0","mocha":"^3.0.2","testrun":"^0.7.0"},"dependencies":{"lodash.isplainobject":"^4.0.6","lodash.set":"^4.3.2"},"_id":"copy-props@1.0.0","_shasum":"dcbe69b0298df8d2b4863e40286be050c7ab5d71","_resolved":"file:copy-props-1.0.0.tar.gz","_from":"copy-props-1.0.0.tar.gz","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"dcbe69b0298df8d2b4863e40286be050c7ab5d71","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.0.0.tgz","integrity":"sha512-WuceZSwLOSdGpWoK3ino/yTFRd0+Ti5fUpgJ04tDturGrlSX6p84Hni78sxD2ZuF/eb0n2Nx4aa6uOl6sw/EXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAODupT4DBFd2+MckfFA0HcQJjDxLcRLPbV10TQAI4qQAiEA/CZxF4GhfPm42oq/lXA5Qepj8p73NJG+a59GeQm6XXw="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-props-1.0.0.tgz_1474209049463_0.8443108666688204"},"directories":{}},"1.0.1":{"name":"copy-props","version":"1.0.1","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js","lib"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","devDependencies":{"chai":"^3.5.0","eslint":"^3.5.0","istanbul":"^0.4.5","lodash.merge":"^4.6.0","mocha":"^3.0.2","testrun":"^0.7.0"},"dependencies":{"lodash.isplainobject":"^4.0.6","lodash.set":"^4.3.2"},"_id":"copy-props@1.0.1","_shasum":"ea80e753abf9e71054dc95917a50128baa6aa20d","_resolved":"file:copy-props-1.0.1.tar.gz","_from":"copy-props-1.0.1.tar.gz","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"ea80e753abf9e71054dc95917a50128baa6aa20d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.0.1.tgz","integrity":"sha512-xqtLHUPBa9fsmSRJ8/Du/hKJ503OcDZU/7eTUVOuLf3cYWTY18cOlbecNJ6L7E+8SfnFEIV3giwJ8WVtIHBbZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCeY02fj4IkIEGmgbwsRk388MBnT9A+4Et4y07NYiHkyQIhAPb6QLKDL2dDk9fj8pHgUukhF7xka+k9PNvi5OMyGE8F"}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-props-1.0.1.tgz_1474244104777_0.8970527837518603"},"directories":{}},"1.0.2":{"name":"copy-props","version":"1.0.2","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js","lib"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","devDependencies":{"chai":"^3.5.0","eslint":"^3.5.0","istanbul":"^0.4.5","lodash.merge":"^4.6.0","mocha":"^3.0.2","testrun":"^0.7.0"},"dependencies":{"lodash.assign":"^4.2.0","lodash.isplainobject":"^4.0.6","lodash.set":"^4.3.2"},"_id":"copy-props@1.0.2","_shasum":"560460cd95eb8c32cc6157eb359eb94e5c6fcfa2","_resolved":"file:copy-props-1.0.2.tar.gz","_from":"copy-props-1.0.2.tar.gz","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"560460cd95eb8c32cc6157eb359eb94e5c6fcfa2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.0.2.tgz","integrity":"sha512-C47cHBmuoXLB3qJYc+rR3jo/6mdeCgkygSOtjoB1CWl6/F/JfmFWs8X+Zm0x8qP/l4m4HqKkY/67/PwTBgVZAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+9W1vDfaNNEc8k4CBj8VExZuaCmQed+1Yr/vKfez9lQIgeshMq7XO8Qb/PHKcinI6DvN+ekl1O+WnwAuiloL31OE="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-props-1.0.2.tgz_1474295701630_0.10882602026686072"},"directories":{}},"1.1.0":{"name":"copy-props","version":"1.1.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js","lib"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","devDependencies":{"chai":"^3.5.0","eslint":"^3.5.0","istanbul":"^0.4.5","lodash.merge":"^4.6.0","mocha":"^3.0.2","testrun":"^0.7.0"},"dependencies":{"lodash.assign":"^4.2.0","lodash.isplainobject":"^4.0.6","lodash.set":"^4.3.2"},"_id":"copy-props@1.1.0","_shasum":"b64e7f5b916689d4f01621cdade2816aef7b9214","_resolved":"file:copy-props-1.1.0.tar.gz","_from":"copy-props-1.1.0.tar.gz","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"b64e7f5b916689d4f01621cdade2816aef7b9214","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.1.0.tgz","integrity":"sha512-o2abv4PgOHxPSIH0j2l0iL1Oaz9Cm0HEYxUTYvoXa/9lPqDhKaO80N1j0j563M4CH/4UmBSDWt5BajT8kmbOmw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICGkzHAOR17cyGzZfuufeSXmhdW1tHBteTTV+wOFoT+TAiAVb10Qbhi9EE2JRsXDBd7QBcm/ia+4+55aKE+miYUySg=="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/copy-props-1.1.0.tgz_1474794107655_0.7565485909581184"},"directories":{}},"1.2.0":{"name":"copy-props","version":"1.2.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js","lib"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","devDependencies":{"chai":"^3.5.0","eslint":"^3.5.0","istanbul":"^0.4.5","lodash.merge":"^4.6.0","mocha":"^3.0.2","testrun":"^0.7.0"},"dependencies":{"lodash.assign":"^4.2.0","lodash.isplainobject":"^4.0.6","lodash.set":"^4.3.2"},"_id":"copy-props@1.2.0","_shasum":"7676e2a1e1b7f4fd8033c1f5182586da01a6ad57","_resolved":"file:copy-props-1.2.0.tar.gz","_from":"copy-props-1.2.0.tar.gz","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"7676e2a1e1b7f4fd8033c1f5182586da01a6ad57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.2.0.tgz","integrity":"sha512-JQGpGOLui/bz8qUWvVwFvBBOuQQzJf8t0jb+nRZ8rxHQ/CI343bb1K1rrTj5TL+FtLZ3/8G0E+TQsPZTaKK1Dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDS4uuy0Ics9p/8KmUCmAb/bGmgu0oGOXVxh5kjvGUwjAiA7OWRRcUvVejIlzSDxiCq0cq1Wtik9W9p8Fg0xpodjDA=="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-props-1.2.0.tgz_1474835328784_0.316410199040547"},"directories":{}},"1.3.0":{"name":"copy-props","version":"1.3.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","devDependencies":{"chai":"^3.5.0","eslint":"^3.5.0","istanbul":"^0.4.5","lodash.assign":"^4.2.0","lodash.merge":"^4.6.0","mocha":"^3.0.2","testrun":"^0.7.0"},"dependencies":{"each-props":"^1.0.0","lodash.isplainobject":"^4.0.6","lodash.set":"^4.3.2"},"_id":"copy-props@1.3.0","_shasum":"c777f151bb8b891ed35062de134da543c451be15","_resolved":"file:copy-props-1.3.0.tar.gz","_from":"copy-props-1.3.0.tar.gz","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"c777f151bb8b891ed35062de134da543c451be15","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.3.0.tgz","integrity":"sha512-qoCZCyuZVPP0NxULHu1S7TJQecTKjrVIEBjJEOV28DU+a5am/p7oNCn9JH2vZigrdgOUWoH0Z65C/EXxMcogTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDyWCoojCxa7AVSMLLoGh9xsKwg8b0MhkDRnj38JMoWzQIgdTOLBQlK0yNDqHtv/jO4avYiQmthcljEIkrNmU6TaRk="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-props-1.3.0.tgz_1475931340264_0.49412796972319484"},"directories":{}},"1.4.0":{"name":"copy-props","version":"1.4.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:build":"browserify index.js | uglifyjs --compress --mangle -o web/copy-props.js && browserify -o test/web/copy-props.test.js test/*.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.1.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^13.3.0","chai":"^3.5.0","eslint":"^3.6.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.1.0","mocha-phantomjs":"^4.1.0","phantomjs":"^2.1.7","uglify-js":"^2.7.5"},"_id":"copy-props@1.4.0","_shasum":"07c2e040338cebcc9f7a815bd65fc0de8099a600","_resolved":"file:copy-props-1.4.0.tar.gz","_from":"copy-props-1.4.0.tar.gz","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"07c2e040338cebcc9f7a815bd65fc0de8099a600","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.4.0.tgz","integrity":"sha512-HF9/GQHD5MVg9UzWJjFycOYW5AQTK0ihwJMeW0jhmWtCPGSqaYGKbGdqH2DA0H4aMwsEvaLjHzRbhgHh1CudFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxKCGoi5FneHBN1tK3XQWgx9TCrfvM1BiIaVFtOwtr5AIhAPT7vtWiMHu8AxgM9a4N8hCxUc0VL//Hxp3CvbN7u8Bm"}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/copy-props-1.4.0.tgz_1485443250805_0.08957056351937354"},"directories":{}},"1.4.1":{"name":"copy-props","version":"1.4.1","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:build":"browserify index.js | uglifyjs --compress --mangle -o web/copy-props.js && browserify -o test/web/copy-props.test.js test/*.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.1.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^13.3.0","chai":"^3.5.0","eslint":"^3.6.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.1.0","mocha-phantomjs":"^4.1.0","phantomjs":"^2.1.7","uglify-js":"^2.7.5"},"_id":"copy-props@1.4.1","_shasum":"e96bb851c0387d4818b4d2414daf38b988cfe19c","_resolved":"file:copy-props-1.4.1.tar.gz","_from":"copy-props-1.4.1.tar.gz","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"e96bb851c0387d4818b4d2414daf38b988cfe19c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.4.1.tgz","integrity":"sha512-9L2RdzSOtQPlpIl/ZDLVF34S4Op4gZk+1n3hfgaChL8TLs1N2VKkfrwkMedOncyAk40JOVd46fAVOdM9pB3KLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH3uF6BibycX2wrndwVZZzxzwEOHxqh/ORidesxGZbYqAiBLRZwQnGwn1u1/J/9TMzI0mz2e7NDLXhh5Msi3JDJvBg=="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/copy-props-1.4.1.tgz_1485527317824_0.21595831913873553"},"directories":{}},"1.4.2":{"name":"copy-props","version":"1.4.2","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.1.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^13.3.0","chai":"^3.5.0","eslint":"^3.6.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.1.0","mocha-phantomjs":"^4.1.0","phantomjs":"^2.1.7","uglify-js":"^2.7.5"},"_id":"copy-props@1.4.2","_shasum":"5fb5f0e27b27d78632bc513c23a812c554e610aa","_resolved":"file:copy-props-1.4.2.tar.gz","_from":"copy-props-1.4.2.tar.gz","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"5fb5f0e27b27d78632bc513c23a812c554e610aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.4.2.tgz","integrity":"sha512-EgZt3EG5mvV0obt+9Yrj63A335Wgvj/vKrvsY6gwQrYReg6jK9oFAI0U9Yth3ytoMdZNHljTkvbWjO6XA35xOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBFTZRF7NHY/RM1woNFSuBqA1qo3tiS/aOoXdzeY2xRDAiBLH4835bK7Mc1JJIMa2eGCH3UcdNgLM2EeJHqNVFyEOg=="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/copy-props-1.4.2.tgz_1488228101684_0.6235193742904812"},"directories":{}},"1.5.2":{"name":"copy-props","version":"1.5.2","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:install":"npm i phantomjs-prebuilt mocha-phantomjs","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.2.1","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^14.1.0","chai":"^3.5.0","eslint":"^3.16.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.2.0","uglify-js":"^2.8.1"},"_id":"copy-props@1.5.2","_shasum":"b1e459d22b3674c35a012bf0bdb70c920c8c1971","_resolved":"file:copy-props-1.5.2.tar.gz","_from":"copy-props-1.5.2.tar.gz","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"b1e459d22b3674c35a012bf0bdb70c920c8c1971","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.5.2.tgz","integrity":"sha512-Z+4xzCJ3W5E3BSHkdpDo/LGwGZZhW9wjuq32PRraq1c0ZLpwQ9RwAfpLVmz2zFMMr5Q2607uiWPc1vxzzY5siw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF2LNjP+WeHA6Sh+t6Wpl0AbCBPPIn5wwcWgSAMwNeuIAiBtW5LIv4p8++S9qAFOby5DGYbFPaHvlAu1ha6EBumY2w=="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/copy-props-1.5.2.tgz_1488380510521_0.8292003523092717"},"directories":{}},"1.6.0":{"name":"copy-props","version":"1.6.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:install":"npm i phantomjs-prebuilt mocha-phantomjs","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.2.1","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^14.1.0","chai":"^3.5.0","eslint":"^3.16.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.2.0","uglify-js":"^2.8.1"},"_id":"copy-props@1.6.0","_shasum":"f0324bbee99771101e7b3ada112f313c393db8ed","_resolved":"file:copy-props-1.6.0.tar.gz","_from":"copy-props-1.6.0.tar.gz","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"f0324bbee99771101e7b3ada112f313c393db8ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-1.6.0.tgz","integrity":"sha512-vQl6Qiozb9HpBGfayBxynsZnFef9AFB2b2ckRpFs0V/uG7ChIizBb0TKYbytPtnS1MxEKeQeUBhKloQPKV2mRQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGaVmxlDB4d4WwF+kqazZo7PKZSn6AJtECkHjGhnMsspAiEA2S7pFgs2a2D+pFlxIWzTFBn+ItK/9/olX6yxqi4Gf8Q="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-props-1.6.0.tgz_1491049344200_0.8218970422167331"},"directories":{}},"2.0.0":{"name":"copy-props","version":"2.0.0","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:install":"npm i phantomjs-prebuilt mocha-phantomjs","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.2.1","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^14.1.0","chai":"^3.5.0","eslint":"^3.16.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.2.0","uglify-js":"^2.8.1"},"_id":"copy-props@2.0.0","_shasum":"ffea34afcd641295b7df045129bbf37d2bb243d7","_resolved":"file:copy-props-2.0.0.tar.gz","_from":"copy-props-2.0.0.tar.gz","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"ffea34afcd641295b7df045129bbf37d2bb243d7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-2.0.0.tgz","integrity":"sha512-cCL4eYqhTYSgEHblarOSSK5Htr2GQKC59oZLJFHORW31obIOMHUwlzEdNrO6a9IVIIgaTF9C9zGhNA2fCMEh7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYLr7pIKaZyq8jLKdkKd79tmPycXlWaZc4vTO0mseGjwIgUQVqf52T9FrajYR/gMxhi4lcqgNxZZ4bnhhglRDbbDY="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/copy-props-2.0.0.tgz_1492088440331_0.207194670336321"},"directories":{}},"2.0.1":{"name":"copy-props","version":"2.0.1","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:install":"npm i phantomjs-prebuilt mocha-phantomjs","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.3.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^14.1.0","chai":"^3.5.0","eslint":"^3.16.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.2.0","uglify-js":"^2.8.1"},"_id":"copy-props@2.0.1","_shasum":"665fc32046ca84a898abaa3c5945e7f248ccba00","_resolved":"file:copy-props-2.0.1.tar.gz","_from":"copy-props-2.0.1.tar.gz","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"anonymous","email":"t110000508260@yahoo.co.jp"},"dist":{"shasum":"665fc32046ca84a898abaa3c5945e7f248ccba00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-2.0.1.tgz","integrity":"sha512-ovyWVXWzJzOvv1SsCuP/M/7qflmEgs+3EXaug2q9CZWGMAiJoheyKpbUZ/7ykM5SXcCglaSpo73Llb+QMPq9zQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0NjGjmigG3RZlXHakQS1P/aQ+eJDYKrbLh/RjDVOOKQIgLPfE3M6Oid0GjPgnp2TpKy7U7rHCJ28IsG+QI85H90s="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/copy-props-2.0.1.tgz_1492268180092_0.6462797534186393"},"directories":{}},"2.0.2":{"name":"copy-props","version":"2.0.2","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:install":"npm install --no-save phantomjs-prebuilt mocha-phantomjs","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.3.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^14.1.0","chai":"^3.5.0","eslint":"^3.16.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.2.0","uglify-js":"^2.8.1"},"_id":"copy-props@2.0.2","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"anonymous","email":"sttk.xslet@gmail.com"},"dist":{"integrity":"sha512-/W7IE8h4Zj1jdyf26YhdEjTS/xO42ltxtlH6B9+rmFNeXO+LL7KhzqqJdKJUwwO+4ZZ4IRw7rFhm8VEw95T25A==","shasum":"6151fc8fd47fd8703df00f53940a0ebfeb8c2162","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-2.0.2.tgz","fileCount":4,"unpackedSize":13594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1LfOCRA9TVsSAnZWagAALdQP/2nQ13NJx+fS+UpxpfSl\nri1rwS96O3QqA4mq1ckpNT9GQpNxxDMjeKg1L2bfzpGnL0c/uOmen6eMzlbR\npQzHMOF99lGksWRycp/Z2rch4A/t4DSR6djXbn5+3grKZ4FWjz4PL4LcwPgG\nb3XuOXohDDp7mjDf3uQIFFyrfO/y5ch4FD4MTkyr9rvOllDldPtKu/aXglal\n4HxPwCoCw2kFKmzC/GaM1UMAcYJdm/5pcvQQWmmPcmd8yMZrPOB+m+sYqOHc\nXeuuYCz20itiZhStsbu4Z3PD8WjldLYPGunmFubGjtfSGOm9znSWvGP/QNqe\nIz+4bTFF3TsC7oNtfxLM47qvUQAB4f7bqi7aFyv3+bxmvXIvuwm+2svOrRZU\nF11+EtLvanjlLr2Q8hngHtRTMYAU2EMdFgZnPbPjOPKoN6XHm5vQK1J9NShQ\nmoHlFa7DQk0aVT3k+7PrHpFLZHb6B+9YFqHg1vcVUUkp97OzBXAZDpDyQtEE\nVZp8CdWbt4LX613i6L4EiZzjURtAEQ1AF/MnhzpL1iOFHD0NwQe+fnoJ2os5\nRpZhCP+sdTWZqsAEwOjXwNimRMJNAbaDCzKeXHzxt9/1aAWDPUeWudWMzJNP\nCYBsEHTqF4Bo4OH/P53r8311BM3L/B0f8/QfKbSqAXIL0kPC9t/Q8XSPim7N\nMjjH\r\n=JvEr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCTJQuMDBGCFzZlmA5r5WM05G5udEj1CviDiAZ0Qv6Y5gIhAPqSNFhj8d0ByqIo18x7Y9khleQAxEHCn+XRgDxP6GAY"}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_2.0.2_1523890125160_0.4433409768888277"},"_hasShrinkwrap":false},"2.0.3":{"name":"copy-props","version":"2.0.3","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"istanbul cover _mocha","coveralls":"istanbul cover _mocha && istanbul-coveralls","web:install":"npm install --no-save phantomjs-prebuilt mocha-phantomjs","web:build":"browserify index.js --standalone copyProps | uglifyjs --compress --mangle -o web/copy-props.js && node test/web/make.js","web:test":"mocha-phantomjs -p node_modules/.bin/phantomjs test/web/copy-props.test.html"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.3.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^14.1.0","chai":"^3.5.0","eslint":"^3.16.1","istanbul":"^0.4.5","istanbul-coveralls":"^1.0.3","mocha":"^3.2.0","uglify-js":"^2.8.1"},"_id":"copy-props@2.0.3","_npmVersion":"5.6.0","_nodeVersion":"10.0.0","_npmUser":{"name":"anonymous","email":"sttk.xslet@gmail.com"},"dist":{"integrity":"sha512-Q5jXiqCOvlQc1Nvy2txrVg9ZexZ0UAw9NBQ7/s3cZ7SCAm0WD7NNsLwwcy+xvNwuVBbfkF2+4SBcz1L1AWbtmw==","shasum":"55460b8196583fe38b8f08aa13578c22ddd1b114","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-2.0.3.tgz","fileCount":4,"unpackedSize":13609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7dRJCRA9TVsSAnZWagAAtVwP/iAscyp7K8vumSPGfgjf\nGVSdDMkHCvpRZz9l/5kudWFkUXAf689WBq1jYrWMkNS0en6Fm8qvoUIoUvp+\n52/xKP0OwkhmKnJgwStQ9MJP4YRo5Uj0hTsJskZjTzeRhnOevVydCMSC2VAe\nL5fv/wZqqWPa3VK3SAYa+dF1SYlkWdOdIcqUc31L7v3/5cYypXayH7vrBYEn\nLledC1E09pE8a46WD/t6EB6YNjDUPK0Y/TY05HdTfnlEokYWQS6jyFj4bb0J\npT/cZsXH0/AbZvmkyhnwyd5L+srERi2u8pk6FHDvGwjygtUyE2gAP+DPhXzc\nHsuha238j/pBw+UdP/3thsUFX6tDlxzhDei5CK9OrLFq9WK4SminvUAG17m3\nSWgngka4yBsrm/45aoXzqt+BEe565aj3bjkel/CdtnnlWyHvaFP7qcm5fb+n\nKTzsTSyUEVbGkbhypI6KAQ8jm4iJbi3KkDm/t0sBO+BfhqpcprRfPCpJb/r8\nIhIYXquZHWt1Kq9a/0Ovoh+lW0FTzOi7+2xFKPIyl7qAmM4RHwQs3fGmr3jK\nXcWr595IJU7w6BuOm306OZcUhTxgGsf2VBxD9R5q7DKRe5p782NDkyXWGsVo\nzeU1WueB5avZA8+tSyDn10PEEw3/jfZsEoVVcZFDXzLDf+qSfXyLcw8IYlFI\nA0cw\r\n=YKvt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBbpuLvP68K0pR1SFetI9rCvI7wnzplvWsbIBOlMkYhLAiA2GpSpqtI2Duictwa7d5i5wqDn0IAdyIdrPZdpoyG04g=="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_2.0.3_1525535815961_0.9287396728205146"},"_hasShrinkwrap":false},"2.0.4":{"name":"copy-props","version":"2.0.4","description":"Copy properties deeply between two objects.","main":"index.js","files":["index.js"],"scripts":{"lint":"eslint .","test":"mocha","coverage":"nyc --reporter=lcov --reporter=text-summary npm test","coveralls":"nyc --reporter=text-lcov npm test | coveralls","web:build":"browserify index.js --standalone copyProps -o web/copy-props.js && cd web && uglifyjs copy-props.js --compress --mangle -o copy-props.min.js --source-map url=copy-props.min.js.map","chrome:install":"npm i --no-save mocha-chrome","chrome:test":"mocha-chrome test/web/browser-test.html","build":"npm run lint && npm run coverage && npm run web:build && node test/web/make.js"},"repository":{"type":"git","url":"git+https://github.com/sttk/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Takayuki Sato"},"license":"MIT","bugs":{"url":"https://github.com/sttk/copy-props/issues"},"homepage":"https://github.com/sttk/copy-props#readme","dependencies":{"each-props":"^1.3.0","is-plain-object":"^2.0.1"},"devDependencies":{"browserify":"^16.2.2","chai":"^3.5.0","coveralls":"^3.0.1","eslint":"^4.19.1","mocha":"^3.2.0","nyc":"^11.7.2","uglify-js":"^3.3.24"},"_id":"copy-props@2.0.4","_npmVersion":"5.6.0","_nodeVersion":"10.0.0","_npmUser":{"name":"anonymous","email":"sttk.xslet@gmail.com"},"dist":{"integrity":"sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A==","shasum":"93bb1cadfafd31da5bb8a9d4b41f471ec3a72dfe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-2.0.4.tgz","fileCount":4,"unpackedSize":14012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+EFxCRA9TVsSAnZWagAAw/oQAJP29VqIwhaW7wYN+6rA\nlDojc24CHkkk8MWAnSpZL4aFr50liAr/bmwH0aK/DlS/vqWJ+Mi6jOmxt9D9\nI6sNMia0BFZxcV4yjuboQLEZl3MlNypyy9mLf8A61FNwUL8hpnlmG/92PyZJ\nuOwCU1diZBWwl5BoBXrhf2n6cWmCPVKED372GyWNXY3xVAR27CrPz6sNPj6i\nXt8wZv0JqQw4M3b/P+w0u9gvTxHlfHcpRqfWgQ/HjvknVCNylX7dHuitlFVW\nONfwju6IFCtWaOwO2EHf1CAH8Po7sOq6TuRh7SA0Fef6jvZmdqNmxqIHAQ0x\nXV6X5zljOlZwiOZwsJbI8LNT3OAhciNHh3/KnVsuWbGz3DUKcDhoPujfJb7Z\nWE+Qm0iyiKiwPrrsSIKt5i7/fD5ZR2H0ieLMl/4dw3axLwUGkj/TsSb4PZkN\nJSHgP2+uQtYSSN71z27JO0WpXO2EOlqKO2CVGtof4mPzNHuF3Uu3e0aaDRIn\nw7Hd8brt0MdL6jbaXwRpPCgrvnFkRY99yzzsSG23shDlQiCc0RVpv27Puw8Q\nwMxLgmUtlkXcCFbbeiQZg4nENvWTZH/1fDlNR7dGUwwCe6Ls/avSKCUGm93F\nwxevExEDDwdbda0WaKVzKLN99dZWfjljfhlm8hqajIEGzDlm9Ita1Elz1sK5\ne0gX\r\n=2EDz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHHGj50QP5zpBuCV8FGXeH/MNji8kittcA9NCNbnTVJXAiEAxE7duJuLnMNKj0Qs7aEeBzc060glF87eq8t1fn2oWyI="}]},"maintainers":[{"name":"anonymous","email":"t110000508260@yahoo.co.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_2.0.4_1526219120001_0.6283586133186712"},"_hasShrinkwrap":false},"2.0.5":{"name":"copy-props","version":"2.0.5","description":"Copy properties deeply between two objects.","main":"index.js","scripts":{"lint":"eslint .","test":"mocha","coverage":"nyc --reporter=lcov --reporter=text-summary npm test","coveralls":"nyc --reporter=text-lcov npm test | coveralls","web:build":"browserify index.js --standalone copyProps -o web/copy-props.js && cd web && uglifyjs copy-props.js --compress --mangle -o copy-props.min.js --source-map url=copy-props.min.js.map","chrome:install":"npm i --no-save mocha-chrome","chrome:test":"mocha-chrome test/web/browser-test.html","build":"npm run lint && npm run coverage && npm run web:build && node test/web/make.js"},"repository":{"type":"git","url":"git+https://github.com/gulpjs/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"license":"MIT","bugs":{"url":"https://github.com/gulpjs/copy-props/issues"},"homepage":"https://github.com/gulpjs/copy-props#readme","dependencies":{"each-props":"^1.3.2","is-plain-object":"^5.0.0"},"devDependencies":{"browserify":"^16.5.2","chai":"^3.5.0","coveralls":"^3.1.0","eslint":"^7.9.0","eslint-config-gulp":"^5.0.1","mocha":"^3.5.3","nyc":"^15.1.0","uglify-js":"^3.10.4"},"_id":"copy-props@2.0.5","_nodeVersion":"15.5.0","_npmVersion":"7.3.0","dist":{"integrity":"sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==","shasum":"03cf9ae328d4ebb36f8f1d804448a6af9ee3f2d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-2.0.5.tgz","fileCount":4,"unpackedSize":14291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgU3KOCRA9TVsSAnZWagAAhN4P/0MVr/ptyjic2fmniBbK\nbE2O8N7BtqFAURospBIv50m16vWEzVA8nLCZDmXkc5jNFmH2tzIo1dUCwbi4\nsHOzxreiBwTi54MTUvZkwnFJ6bE91ZZogGUyRDj2mXhFl8PUQB+POw6d16Wi\nJyYtCqcDg3QAcBNV5Re0GEPKC5OVupcUZ6F195hyAUYkyqjBJ6IZ7diGb4Ja\ntfTETqFgw4mqBaCDBJyMSqM/2DAOhDWQPLOhCz2oxB4lMlWQhaIBY1TmD7GW\nH2iehjU2kHx9OQkLCCO4+xd83KCTEMLuP0NvEqQOgWPSxsYshl51dl9kz+Bj\nP77Jjosb/2apmLvsOZnVFacvMiF9/zp6NdF6ZU9zWE5Id5ZSDDvT0hezmrjY\nhirdRhECw1YEct6jhLYnpjQlAMeKtzI4o6dbkU5gYHcuAj9HFLrPMRR6bOCy\n9cK/VOXyZZyjFHdXQpyvTzz8zUnUmCMXjCWIg7AD78Uch5YGkKB21C06OezD\nZTJqtQMWhHcq+RZiSsnvMOOCTWWpzN8O4HKFcB/k2pvi+0jN9JOrdx/5nviy\n+HC6curaptMOAKST4G4O7r+io5m3QRetWdklwtS4hrQudgjsQrFAMCtqs+BU\ngR5U6u8hP1nIs3grmCMrD8Yw60EmvlR5knITl4DB0VjS3Iw3wghV5LugLscF\nrW7d\r\n=y4cP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEJpC9YM9IxK3m2KhcSPfSBCIHceID2gIJ4I0IMFHd0UAiB6CR+MukLXA3f4wajtbQqDsQqxMYvYhlDKzZ4XLUABKw=="}]},"_npmUser":{"name":"anonymous","email":"sttk.xslet@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"},{"name":"anonymous","email":"sttk.xslet@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_2.0.5_1616081550261_0.5357865694884878"},"_hasShrinkwrap":false},"3.0.0":{"name":"copy-props","version":"3.0.0","description":"Copy properties deeply between two objects.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"nyc mocha","web:build":"browserify index.js --standalone copyProps -o web/copy-props.js && cd web && uglifyjs copy-props.js --compress --mangle -o copy-props.min.js --source-map url=copy-props.min.js.map","chrome:install":"npm i --no-save mocha-chrome","chrome:test":"mocha-chrome test/web/browser-test.html","build":"npm run lint && npm run test && npm run web:build && node test/web/make.js"},"repository":{"type":"git","url":"git+https://github.com/gulpjs/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"license":"MIT","engines":{"node":">= 10.13.0"},"bugs":{"url":"https://github.com/gulpjs/copy-props/issues"},"homepage":"https://github.com/gulpjs/copy-props#readme","nyc":{"reporter":["lcov","text-summary"]},"prettier":{"singleQuote":true},"dependencies":{"each-props":"^1.3.2","is-plain-object":"^5.0.0"},"devDependencies":{"browserify":"^17.0.0","chai":"^4.3.4","eslint":"^7.32.0","eslint-config-gulp":"^5.0.1","mocha":"^8.4.0","nyc":"^15.1.0","uglify-js":"^3.14.2"},"gitHead":"16412451725f82bf273b4751d3e6a3f0815ec56b","_id":"copy-props@3.0.0","_nodeVersion":"14.18.0","_npmVersion":"7.24.2","dist":{"integrity":"sha512-hxT0AascIa7GwqKeS+eZshyXt6Ap4h7OXg6+vEUJYmXb3AYHBoQyQs2hWtbLatsVcIwv1UkE36YJwxzLjtrMUQ==","shasum":"d8971ee41f36fa80f2af0934d659d19ec7c2945b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-3.0.0.tgz","fileCount":4,"unpackedSize":15189,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAlc7k50Alyhn8wGlw+McAOKxUxr4vLmKtPe/TQNrqpvAiEAs1eDW+xJ1kDS15Inj3N/R1yiOA95mlz06Dhm8PSwQ8o="}]},"_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"},{"name":"anonymous","email":"sttk.xslet@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_3.0.0_1635714544108_0.18965489708348215"},"_hasShrinkwrap":false},"3.0.1":{"name":"copy-props","version":"3.0.1","description":"Copy properties deeply between two objects.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"nyc mocha","web:build":"browserify index.js --standalone copyProps -o web/copy-props.js && cd web && uglifyjs copy-props.js --compress --mangle -o copy-props.min.js --source-map url=copy-props.min.js.map","chrome:install":"npm i --no-save mocha-chrome","chrome:test":"mocha-chrome test/web/browser-test.html","build":"npm run lint && npm run test && npm run web:build && node test/web/make.js"},"repository":{"type":"git","url":"git+https://github.com/gulpjs/copy-props.git"},"keywords":["object","property","copy","deep","map","convert"],"license":"MIT","engines":{"node":">= 10.13.0"},"bugs":{"url":"https://github.com/gulpjs/copy-props/issues"},"homepage":"https://github.com/gulpjs/copy-props#readme","nyc":{"reporter":["lcov","text-summary"]},"prettier":{"singleQuote":true},"dependencies":{"each-props":"^2.0.0","is-plain-object":"^5.0.0"},"devDependencies":{"browserify":"^17.0.0","chai":"^4.3.4","eslint":"^7.32.0","eslint-config-gulp":"^5.0.1","eslint-plugin-node":"^11.1.0","mocha":"^8.4.0","nyc":"^15.1.0","uglify-js":"^3.14.2"},"gitHead":"37826bdf3689e74a317cd0dd0827e236c9ccd1dc","_id":"copy-props@3.0.1","_nodeVersion":"14.18.0","_npmVersion":"7.24.2","dist":{"integrity":"sha512-cznNj9Mb7P3Y3sQ4Xx5oqUatE/j+juFV56FxKzWSf7ULpJ1QLIxXTpLuqXAbaZvFO5+OHC1TbnZVEa9fnYzDPQ==","shasum":"cf9de4afb8ae462735782ef0b9ac7e15918fc676","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-3.0.1.tgz","fileCount":4,"unpackedSize":15332,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2mxWCRA9TVsSAnZWagAAXQwP/3XJKWZrTIkBWqq+0Dtr\nZGmBEMwIsTsu1x8Bx9OInHdwSw0AqznFFFFN2aQHuoQko7WNAIUF4pCASGra\nH6hzVUF9LtmloGpgwEQs8l62o/RH5gEv4brkwHLKoosLgs8mteS5zdDyStV/\nHDiyGNHntCNrBA/BJc0kmVPHPZJaMJ/hSJv28v67lZ1di2MwKBAAial8+hpM\nEvfTmwFpMprkMUQK/n5oAZm3HmcFCKKry9T/2lHap2uBTjDfIdW0KnvVu6Mo\nYbfEdOANT6R6ABGyH1WJTMMmeTzFY28phPNxf+N98HZEI/uhH+gB7TpNcbD9\nIU8nGnZNdLaHXttrN4OYMEMoM521c6XUNNkXclSQ+gAKz7MFHy/Cb2uo51Dn\nP+X3qN5GfOPerR2tnxPVy5pmBjDq1wV89k6A4xv46GmnB27njCNSe5o4yx1O\nW17XeaSJ/BRzNEo8i+2uYlU/ayHVlRPlIk4ZIEry9U3kJ+9m/1IuZx3Wj+tU\nyuoLnZwGRiCJTUOVnONApnN1L1wQlz1c/gwJz1mJA7Nkal7l84Z89k5OoYgx\noK9DzjzSPoKtEDJ6bOMHu5ONgwxhWgYZJdVMsHQwGt0aw+BkZdzG6m+XIcpX\nE+sPg1eTNkQwt++1nYtQfrxF3Sc9l+Wm34pGEwUPAejOiGAnyFbhgPr8Og9T\nazmK\r\n=1Q3A\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBSO/MpEihNYnNL2Z87z2xPMw7CzZsoOM7Y1CqaZJV2DAiBXz1tBe+QiqEmd6iaw3Kwka4PHXhNVS21Z8U6rdY63FQ=="}]},"_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"},{"name":"anonymous","email":"sttk.xslet@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_3.0.1_1635715958983_0.10869332270750554"},"_hasShrinkwrap":false},"4.0.0":{"name":"copy-props","version":"4.0.0","description":"Copy properties deeply between two objects.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"nyc mocha --async-only"},"repository":{"type":"git","url":"git+https://github.com/gulpjs/copy-prop.git"},"keywords":["object","property","copy","deep","map","convert"],"license":"MIT","engines":{"node":">= 10.13.0"},"nyc":{"reporter":["lcov","text-summary"]},"prettier":{"singleQuote":true},"dependencies":{"each-props":"^3.0.0","is-plain-object":"^5.0.0"},"devDependencies":{"eslint":"^7.32.0","eslint-config-gulp":"^5.0.1","eslint-plugin-node":"^11.1.0","expect":"^27.5.1","mocha":"^8.4.0","nyc":"^15.1.0"},"gitHead":"24f78f743b049900594ed92e580d3c63276c3119","bugs":{"url":"https://github.com/gulpjs/copy-prop/issues"},"homepage":"https://github.com/gulpjs/copy-prop#readme","_id":"copy-props@4.0.0","_nodeVersion":"16.14.2","_npmVersion":"8.11.0","dist":{"integrity":"sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw==","shasum":"01d249198b8c2e4d8a5e87b90c9630f52c99a9c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/copy-props/-/copy-props-4.0.0.tgz","fileCount":4,"unpackedSize":14616,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDV1OeEc/ngmylTPpLz/KJssJzum7modoP4p1tzJll1aAiEA2h89d4fv0eIduofuKBDH6qTfyv2Yl/Lb3ACEhq6BlmM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQ01PACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfPg//aStVgC9cxUs5GfdYH30O3kCT+25qVHy1wwcuEO2BWvYMESIx\r\nMXOsBNWiktLpXbQfqc6JKNFED78Vt1bRQwtl1cNK/8agzJzhxPkfCY3hovNR\r\nHbGjq1wB5HMSV9K9kCkvChHOwvL/G2751zYM4C3Ir5dnxEjJKB3+PbBhi5KS\r\n1fEf4hqP2Tj4vaNy9YnH9sGz6nG55p7E2igyzh6G/IA6+t/gMJHYtL+8THM3\r\nfo2Xf01QxGBPtz1Oojrr1Aw7vkNgTPRZRSaJ4L3lI0Bcz1s/jK3ubVka7qX0\r\n2UZYTPVoEuwf+dUVYfm5JLPcfvIoHTvym8qKuy9+y4sAu5xZE0dmXVSm8Eeb\r\ncrY8jAEy9V5nkCzAxz4ewQWuYrKruyqhUrjZDHKEQGxiYZ1g+LUkWn9IZJtr\r\nYfhiRwJFJ3S94hpgCmbR0+5fF4zGDmPnHzGvQKR/KTq12yA4LCJ8U564Wtk0\r\nMbHagSUS3wsp1r5mZ8Oi21p1hKW3xVi+5BuMpARd6mBYd5RQomwO7D9m4WBv\r\nyowPrOBjaFLzZW10TaA6HcjEeQBUsEBqQpt3hsl296tS7jNR2ua7Et4AK98s\r\nuCrO2SISYEzvn8vVht6cnoyAzFkm41aX3ysasOVM0B6EGdZrf1JffTF20frc\r\nvSFRo7orrcT3lGI+kDUALOQyUc400Ks7GMQ=\r\n=8OKo\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"},{"name":"anonymous","email":"sttk.xslet@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/copy-props_4.0.0_1665355087091_0.8654108810802874"},"_hasShrinkwrap":false}},"name":"copy-props","time":{"modified":"2024-04-05T00:02:03.402Z","created":"2016-09-18T14:30:49.703Z","1.0.0":"2016-09-18T14:30:49.703Z","1.0.1":"2016-09-19T00:15:07.869Z","1.0.2":"2016-09-19T14:35:04.855Z","1.1.0":"2016-09-25T09:01:50.053Z","1.2.0":"2016-09-25T20:28:49.035Z","1.3.0":"2016-10-08T12:55:40.505Z","1.4.0":"2017-01-26T15:07:32.956Z","1.4.1":"2017-01-27T14:28:39.743Z","1.4.2":"2017-02-27T20:41:43.582Z","1.5.2":"2017-03-01T15:01:52.299Z","1.6.0":"2017-04-01T12:22:24.466Z","2.0.0":"2017-04-13T13:00:42.215Z","2.0.1":"2017-04-15T14:56:20.350Z","2.0.2":"2018-04-16T14:48:45.333Z","2.0.3":"2018-05-05T15:56:56.048Z","2.0.4":"2018-05-13T13:45:20.094Z","2.0.5":"2021-03-18T15:32:30.459Z","3.0.0":"2021-10-31T21:09:04.314Z","3.0.1":"2021-10-31T21:32:39.123Z","4.0.0":"2022-10-09T22:38:07.260Z"},"readmeFilename":"README.md","homepage":"https://github.com/gulpjs/copy-prop#readme"}