{"_id":"object-path","maintainers":[{"name":"mariocasciaro","email":"m@mario.fyi"}],"keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"dist-tags":{"latest":"0.11.8"},"author":{"name":"Mario Casciaro"},"description":"Access deep object properties using a path","readme":"\n\nobject-path\n===========\n\nAccess deep properties using a path\n\n[![NPM version](https://badge.fury.io/js/object-path.png)](http://badge.fury.io/js/object-path)\n[![Build Status](https://travis-ci.org/mariocasciaro/object-path.png)](https://travis-ci.org/mariocasciaro/object-path)\n[![Coverage Status](https://coveralls.io/repos/mariocasciaro/object-path/badge.png)](https://coveralls.io/r/mariocasciaro/object-path)\n[![devDependency Status](https://david-dm.org/mariocasciaro/object-path/dev-status.svg)](https://david-dm.org/mariocasciaro/object-path#info=devDependencies)\n![Downloads](http://img.shields.io/npm/dm/object-path.svg)\n\n## Changelog\n\n### 0.11.8\n\n* **SECURITY FIX**. Fix a prototype pollution vulnerability in the `del()`, `empty()`, `push()`, `insert()` functions when using the \"inherited props\" mode (e.g. when a new `object-path` instance is created with the `includeInheritedProps` option set to `true` or when using the `withInheritedProps` default instance. To help with preventing this type of vulnerability in the client code, also the `get()` function will now throw an exception if an object's magic properties are accessed. The vulnerability does not exist in the default instance exposed by object path (e.g `objectPath.del()`) if using version >= `0.11.0`.\n\n### 0.11.6\n\n* **SECURITY FIX**. Fix a circumvention of the security fix released in 0.11.5 when non-string/non-numeric values are used in the path (e.g. `op.withInheritedProps.set({}, [['__proto__'], 'polluted'], true)`)\n\n### 0.11.5\n\n* **SECURITY FIX**. Fix a prototype pollution vulnerability in the `set()` function when using the \"inherited props\" mode (e.g. when a new `object-path` instance is created with the `includeInheritedProps` option set to `true` or when using the `withInheritedProps` default instance. The vulnerability does not exist in the default instance exposed by object path (e.g `objectPath.set()`) if using version >= `0.11.0`.\n\n### 0.11.0\n\n* Introduce ability to specify options and create new instances of `object-path`\n* Introduce option to control the way `object-path` deals with inherited properties (`includeInheritedProps`)\n* New default `object-path` instance already configured to handle not-own object properties (`withInheritedProps`)\n\n### 0.10.0\n\n* Improved performance of `get`, `set`, and `push` by 2x-3x\n* Introduced a benchmarking test suite\n* **BREAKING CHANGE**: `del`, `empty`, `set` will not affect not-own object's properties (made them consistent with the other methods)\n\n## Install\n\n### Node.js\n\n```\nnpm install object-path --save\n```\n\n### Bower\n\n```\nbower install object-path --save\n```\n\n### Typescript typings\n\n```\ntypings install --save dt~object-path\n```\n\n## Usage\n\n```javascript\n\nvar obj = {\n  a: {\n    b: \"d\",\n    c: [\"e\", \"f\"],\n    '\\u1200': 'unicode key',\n    'dot.dot': 'key'\n  }\n};\n\nvar objectPath = require(\"object-path\");\n\n//get deep property\nobjectPath.get(obj, \"a.b\");  //returns \"d\"\nobjectPath.get(obj, [\"a\", \"dot.dot\"]);  //returns \"key\"\nobjectPath.get(obj, 'a.\\u1200');  //returns \"unicode key\"\n\n//get the first non-undefined value\nobjectPath.coalesce(obj, ['a.z', 'a.d', ['a','b']], 'default');\n\n//empty a given path (but do not delete it) depending on their type,so it retains reference to objects and arrays.\n//functions that are not inherited from prototype are set to null.\n//object instances are considered objects and just own property names are deleted\nobjectPath.empty(obj, 'a.b'); // obj.a.b is now ''\nobjectPath.empty(obj, 'a.c'); // obj.a.c is now []\nobjectPath.empty(obj, 'a'); // obj.a is now {}\n\n//works also with arrays\nobjectPath.get(obj, \"a.c.1\");  //returns \"f\"\nobjectPath.get(obj, [\"a\",\"c\",\"1\"]);  //returns \"f\"\n\n//can return a default value with get\nobjectPath.get(obj, [\"a.c.b\"], \"DEFAULT\");  //returns \"DEFAULT\", since a.c.b path doesn't exists, if omitted, returns undefined\n\n//set\nobjectPath.set(obj, \"a.h\", \"m\"); // or objectPath.set(obj, [\"a\",\"h\"], \"m\");\nobjectPath.get(obj, \"a.h\");  //returns \"m\"\n\n//set will create intermediate object/arrays\nobjectPath.set(obj, \"a.j.0.f\", \"m\");\n\n//will insert values in array\nobjectPath.insert(obj, \"a.c\", \"m\", 1); // obj.a.c = [\"e\", \"m\", \"f\"]\n\n//push into arrays (and create intermediate objects/arrays)\nobjectPath.push(obj, \"a.k\", \"o\");\n\n//ensure a path exists (if it doesn't, set the default value you provide)\nobjectPath.ensureExists(obj, \"a.k.1\", \"DEFAULT\");\nvar oldVal = objectPath.ensureExists(obj, \"a.b\", \"DEFAULT\"); // oldval === \"d\"\n\n//deletes a path\nobjectPath.del(obj, \"a.b\"); // obj.a.b is now undefined\nobjectPath.del(obj, [\"a\",\"c\",0]); // obj.a.c is now ['f']\n\n//tests path existence\nobjectPath.has(obj, \"a.b\"); // true\nobjectPath.has(obj, [\"a\",\"d\"]); // false\n\n//bind object\nvar model = objectPath({\n  a: {\n    b: \"d\",\n    c: [\"e\", \"f\"]\n  }\n});\n\n//now any method from above is supported directly w/o passing an object\nmodel.get(\"a.b\");  //returns \"d\"\nmodel.get([\"a.c.b\"], \"DEFAULT\");  //returns \"DEFAULT\"\nmodel.del(\"a.b\"); // obj.a.b is now undefined\nmodel.has(\"a.b\"); // false\n\n```\n### How `object-path` deals with inherited properties\n\nBy default `object-path` will only access an object's own properties. Look at the following example:\n\n```javascript\nvar proto = {\n  notOwn: {prop: 'a'}\n}\nvar obj = Object.create(proto);\n\n//This will return undefined (or the default value you specified), because notOwn is\n//an inherited property\nobjectPath.get(obj, 'notOwn.prop');\n\n//This will set the property on the obj instance and not the prototype.\n//In other words proto.notOwn.prop === 'a' and obj.notOwn.prop === 'b'\nobjectPath.set(obj, 'notOwn.prop', 'b');\n```\nTo configure `object-path` to also deal with inherited properties, you need to create a new instance and specify\nthe `includeInheritedProps = true` in the options object:\n\n```javascript\nvar objectPath = require(\"object-path\");\nvar objectPathWithInheritedProps = objectPath.create({includeInheritedProps: true})\n```\n\nAlternatively, `object-path` exposes an instance already configured to handle inherited properties (`objectPath.withInheritedProps`):\n```javascript\nvar objectPath = require(\"object-path\");\nvar objectPathWithInheritedProps = objectPath.withInheritedProps\n```\n\nOnce you have the new instance, you can access inherited properties as you access other properties:\n```javascript\nvar proto = {\n  notOwn: {prop: 'a'}\n}\nvar obj = Object.create(proto);\n\n//This will return 'a'\nobjectPath.withInheritedProps.get(obj, 'notOwn.prop');\n\n//This will set proto.notOwn.prop to 'b'\nobjectPath.set(obj, 'notOwn.prop', 'b');\n```\n\n**NOTE**: For security reasons `object-path` will throw an exception when trying to access an object's magic properties (e.g. `__proto__`, `constructor`) when in \"inherited props\" mode.\n\n### Immutability\n\nIf you are looking for an *immutable* alternative of this library, you can take a look at: [object-path-immutable](https://github.com/mariocasciaro/object-path-immutable)\n\n\n### Credits\n\n* [Mario Casciaro](https://github.com/mariocasciaro) - Author\n* [Paulo Cesar](https://github.com/pocesar) - Major contributor\n","repository":{"type":"git","url":"git://github.com/mariocasciaro/object-path.git"},"users":{"troyblank":true,"sirrah":true,"mid":true,"albsugy":true,"keelz":true,"hugojosefson":true,"hugov":true,"hachi-eiji":true,"waleedmkasem":true,"m80126colin":true,"detj":true,"joris-van-der-wel":true,"bjmin":true,"alanshaw":true,"karlitowhoelse":true,"htzhao200744":true,"cognivator":true,"pocesar":true,"erikvold":true,"danielo515":true,"dannowatts":true,"danielpavelic":true,"soenkekluth":true,"digitalsadhu":true,"den-dp":true,"z0mt3c":true,"craigdmckenna":true,"nicolasembleton":true,"hzapata":true,"riston":true,"speedornothing":true,"nisimjoseph":true,"justjavac":true,"steel1990":true,"lmammino":true,"michaelrodov":true,"jecoopr":true,"icognivator":true},"license":"MIT","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"versions":{"0.5.1":{"name":"object-path","version":"0.5.1","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.5.1","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"6d63038f85774c89a69738fc40902a1b2035ebeb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.5.1.tgz","integrity":"sha512-1BiubaN9f3aQDoU3Dt1JTUPrWtTgXMnWbr3oZX3kRI6IJwNtMjpq2wVGCUMuWhkV7gIn7X0rTKzhTK98Krogag==","signatures":[{"sig":"MEYCIQCnotvshjPl01EWtmZ5QOT9lH5EHUN7/Bl7OPOtTg6kDwIhAJqwTYJKo8Fkr6dx3cawFRcnub4gGAFJ8Jmrzz6UZDri","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6d63038f85774c89a69738fc40902a1b2035ebeb","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.9","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.6.0":{"name":"object-path","version":"0.6.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.6.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"b69a7d110937934f336ca561fd9be1ad7b7e0cb7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.6.0.tgz","integrity":"sha512-fxrwsCFi3/p+LeLOAwo/wyRMODZxdGBtUlWRzsEpsUVrisZbEfZ21arxLGfaWfcnqb8oHPNihIb4XPE8CQPN5A==","signatures":[{"sig":"MEUCIQDJNtuy9Y9fRgMx9YBh14QBHtjC82vsI+hbgXQWAOES+QIgND2okoNMQAYuO55e/GjJiVoRFTUjcWQZIMkXLpvRg4c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b69a7d110937934f336ca561fd9be1ad7b7e0cb7","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.9","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.7.0":{"name":"object-path","version":"0.7.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.7.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"5690da4accd6d059435633b7d7b4ec974a7289b7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.7.0.tgz","integrity":"sha512-f3V2S3G6eNO8pwQyy3NkYz32mlhZhbn4vfT04ufY4tOub4gfKIfJuZcXkSwmxjclky0fBIQMSag2w4HGa92cVQ==","signatures":[{"sig":"MEYCIQCiY3VpAoNfwGm4gUSiOhF3fJUpoFgsxJtp8BLnQc1eNgIhAP7DrfcK82jnEIwbDWw1PpcLab8SHi6Y6048G0Xkdgdp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5690da4accd6d059435633b7d7b4ec974a7289b7","engines":{"node":">=0.8.0"},"gitHead":"74732640218c6da9f75185f3f1bd79539ce23e54","scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.28","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.1.3":{"name":"object-path","version":"0.1.3","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.1.3","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"ec53266a31c24e3b1c06ad38a24e2be67afd96e1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.1.3.tgz","integrity":"sha512-mZY1+4WCcQoifr3wQr/dDTCANX62sHC+LgpNVcVl1xhJpKAaULmruFPq+V4ZS5BZtjbGjZYL7BotJ4xCwmGqsw==","signatures":[{"sig":"MEYCIQDcO+t6FqZ+/7HwcANJ/PS9zRRrwWPSdRJe7YOcna28NQIhAKiF/bhv00IZofF1q/AEnySBTA1LhR30fBvFFMb4dIKt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.3.14","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.8.0","mocha":"~1.13.0","istanbul":"~0.1.44","coveralls":"~2.3.0","mocha-lcov-reporter":"~0.0.1"}},"0.4.0":{"name":"object-path","version":"0.4.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.4.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"a31857528101da0461c41bb86f7f95f8314d8a97","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.4.0.tgz","integrity":"sha512-pZSNJ1SOx2KNb67Bq8R59XFkdAaUJNo1WpT4bHtD1lhylzmDoYLm1EVfcQTuEt2YIiqk2B9Hi3MWcHxxSMVRgQ==","signatures":[{"sig":"MEYCIQCC4UrEjFmzvGsKjqsRiyhdyo2fgCvU+kCewiF6Z0u5PgIhAIqFLhGYK9+TIRpvCJBzq0Ghs+8yqaM7Af8OQBLUj58j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.3.8","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","istanbul":"~0.2.7","coveralls":"~2.10.0","mocha-lcov-reporter":"~0.0.1"}},"0.5.0":{"name":"object-path","version":"0.5.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.5.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"9f270ca638909ca599112f839e10fb62ae85a4c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.5.0.tgz","integrity":"sha512-6jX08Dxp/FCc5o2qMH8ebcN12U8/sCGw5HoWbg03AhNNBgF8nNJQWbbuS+Ye3sEZaaxvBzoPVM9dQfcyh890BQ==","signatures":[{"sig":"MEYCIQCI5GkcJesrYRnHEpZXjERcMNUXx/sA3aiIipFQ1AwYlAIhANNqZwT7PGYPWb7dGtMlpyoXWeRON1DodOKonaTA1Nmj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.3.8","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","istanbul":"~0.2.7","coveralls":"~2.10.0","mocha-lcov-reporter":"~0.0.1"}},"0.9.1":{"name":"object-path","version":"0.9.1","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.9.1","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"456edf09afb3cc5c562b45e90dc473f07674b89c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.9.1.tgz","integrity":"sha512-fBnrOwi7YKrCUvsjCsYr54CMx5wBHWZKNQeTxpIszbck0xieytcMYicplQFdUvH98qXPE49cUQRmotyZIs9xEA==","signatures":[{"sig":"MEQCIGVhxNXe9o/D5KisjvLWSjNvaSNERQGTTGHLgXXfIaVDAiBFO2EUudNlmbFf/akdUrOAvDy+5wErc5ZNCJyL8xyWgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"456edf09afb3cc5c562b45e90dc473f07674b89c","engines":{"node":">=0.8.0"},"gitHead":"c79090a068ddc8647b4af2d381f2d4b854f9367c","scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.28","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.9.2":{"name":"object-path","version":"0.9.2","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.9.2","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.9.2.tgz","integrity":"sha512-hPv/mbCYtXOhhqstmodis0boF1ooA8yz3PDJwTnkZvOlaJkd5aCAgA9tq6BUjJW5w8jXHI2qi9+w5N0tz+AAaA==","signatures":[{"sig":"MEQCICwc03UdRtN1FDRoRk5A6ojqgmB7cAe5jwfvQHV9YmH6AiAQ5N2zxMZXfgVfS9h24GBESDVQ9lQQGTg03mPIKqIT0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5","engines":{"node":">=0.8.0"},"gitHead":"3f1e4ea93b9eef77236f0a3dce73dfcf89c780c0","scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.28","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.8.0":{"name":"object-path","version":"0.8.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.8.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"6b287e3f87760cea167422e317399f93eb650f84","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.8.0.tgz","integrity":"sha512-PkTzLDsMaOTqMPWO9JbLTObX+u5F5A2bVUrBZC5OwtEF9MIpgc+q2RzM5XEchOdYR8yBTlMo29lWrMCQib+IzQ==","signatures":[{"sig":"MEQCIBtAjR0Po3+8i9rhQRSyIIRejmE2t+NOsiDWTvjLpxwmAiBSQuJLPXlv8wgjbQX8tVh4UFHNbiMil9E6kN6ebrmgAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6b287e3f87760cea167422e317399f93eb650f84","engines":{"node":">=0.8.0"},"gitHead":"470993c54691c77decb667c3fd068fb76bd088be","scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.28","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.8.1":{"name":"object-path","version":"0.8.1","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.8.1","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"40691756e154372e55eef0f15f005e317e855c8c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.8.1.tgz","integrity":"sha512-O54nC0tVmvDvW1o8HCieHru8ahhh7jr3hnfqvoSY2NTWEYYJMJQLCNxSq6PwV5qd/TE2kOkpJjxFtk7DK3lw3g==","signatures":[{"sig":"MEUCIQDTyqt5RP6nBz/5BvFggQDzfJsiPWx/IZ9dQc7yiOzuPQIgBYDolg6z3VhPIxDfdMswEOzX5f1mBTzl92MGGqHyEZM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"40691756e154372e55eef0f15f005e317e855c8c","engines":{"node":">=0.8.0"},"gitHead":"57e379d14a32cd04c597f63182e7d54b695f9415","scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.28","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.9.0":{"name":"object-path","version":"0.9.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.9.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"6dfdd274305c366c95adf6731e95fbcd783ec07d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.9.0.tgz","integrity":"sha512-lGFKbJKDXVREezJ6ru6jPqPKO/4GpDzy/SaVcS+2ot8+mZDmuYQAdwzVKBH6Nn+V4ktKMULDKeH8HMMQgYFn+A==","signatures":[{"sig":"MEUCIE6jlIYp9yNnHsxnWmHcHTyecCv6oC43JTNyQoTWEFYNAiEAmLnSLtBLqRetnEptP9Xpj9JR0Mz5IyVWoYiycyHfC20=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6dfdd274305c366c95adf6731e95fbcd783ec07d","engines":{"node":">=0.8.0"},"gitHead":"4894644d9b8446aa6c93540c52473bd8982ea7f0","scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.28","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","istanbul":"~0.3.0","coveralls":"~2.11.1","mocha-lcov-reporter":"~0.0.1"}},"0.2.0":{"name":"object-path","version":"0.2.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.2.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"86c00a67e7c88729b6008de71fceadd90405b125","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.2.0.tgz","integrity":"sha512-3E8fSeemtCS8VtqhjgYUY2xGYNcBHOAax0v2GOL8pQGww2iSgnViq5vsAP3LUsboIfVW3Ka2wSUeeREd11MmRQ==","signatures":[{"sig":"MEYCIQDzKcEMtuL+Z8aBsrCkioykkGYY8uttI73CDpKanN1F4wIhAMC8r1Fwi+U0uP/rtApGDIT00vTZg5eSK6o2jWEk2FGx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.3","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","istanbul":"~0.2.7","coveralls":"~2.10.0","mocha-lcov-reporter":"~0.0.1"}},"0.1.2":{"name":"object-path","version":"0.1.2","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.1.2","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"471d15d5298283d388681be92a9f1885b1e7e951","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.1.2.tgz","integrity":"sha512-gYmisJoYOmKZgXumTMTcZenqJRseKvdLDC74cG0iCB0ExhX47tgxZnGn4aD6jL7Q+sRavgdUvncLi6kGO8WKLw==","signatures":[{"sig":"MEYCIQC4AuljRvr/CN3xIh0SsHAzgVvY0U077vkq5s9fHyNReQIhAPHhAdMPIxcoDaG7pQH/KzIqkomv5rMLyN/Dp6od/R0a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.3.8","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.8.0","mocha":"~1.13.0","istanbul":"~0.1.44","coveralls":"~2.3.0","mocha-lcov-reporter":"~0.0.1"}},"0.2.1":{"name":"object-path","version":"0.2.1","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.2.1","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"a2014f7d890cc5ac880be036a7e52e2232c582e0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.2.1.tgz","integrity":"sha512-8RTBkuSJ/Omr5QYtZXezYEfa/9gjT2zBO9A2DfcmNenox18Rv5Hniby6zWt8S3PJsuP459WHOAAV/JsGMCSMjw==","signatures":[{"sig":"MEUCICpaWzRCzAr+GYpraOzRH3d5PxkTl8j1wXLSPgZKr22cAiEA97OCnLKxll2Z4wVgwnZWUSHRQExX8O7e4WtSEGdSlgE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.3","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","istanbul":"~0.2.7","coveralls":"~2.10.0","mocha-lcov-reporter":"~0.0.1"}},"0.3.0":{"name":"object-path","version":"0.3.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.3.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"0cc7f24cb23ee5921b59ac10e926315efb732c0d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.3.0.tgz","integrity":"sha512-eAQSSXz8w1s2pfVWNbveXLOEnEart56PspJaWun4FGguNoNzDBL7UKYUiOmQsGtuxVEccOnRervPY/nWwCMrFQ==","signatures":[{"sig":"MEYCIQCFVol/lyGOF6DnANIGokx+2HEPkLWVbUFrsHVNxtQ7AgIhAO1fEc9MO4ylgbjWouX4TVZBqxzL3uzvKrZbOVJ3AkqX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","engines":{"node":">=0.8.0"},"scripts":{"test":"node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"testling":{"files":"test.js","harness":"mocha","browsers":{"ie":[8,9],"opera":[15],"chrome":[30,22],"iphone":[6],"safari":[5,6],"firefox":[10,24],"android-browser":[4.2]}},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.4.3","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","istanbul":"~0.2.7","coveralls":"~2.10.0","mocha-lcov-reporter":"~0.0.1"}},"0.0.1":{"name":"object-path","version":"0.0.1","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.0.1","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"146100c74b2f3f1103f197df356a9f78dd63f9d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.0.1.tgz","integrity":"sha512-7Zkjo2J8KryvcPJl6Liq6Wft4C8/oHuH12IgGo/LaAiuLtm4f3/ahiV4lqfHZhWU6FwXpXQU+6lI7NB4V8H+Xg==","signatures":[{"sig":"MEYCIQCrO26DMuvBPKN2iVOVBc8mapc6nvDGm3ADnuwr4vSuowIhAIGbOzAFRT9wuFNOyJZQolNh3IQcC6QA04/UZ16syo+y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"node_modules/.bin/mocha test.js --reporter spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.3.8","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.8.0","mocha":"~1.13.0"}},"0.1.0":{"name":"object-path","version":"0.1.0","keywords":["deep","path","access","bean"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.1.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"4a9fc158aa61bd84dc8d71ee1d5e8f935bcd108b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.1.0.tgz","integrity":"sha512-s4Zker2FrKB2sptf1Id/tCJsHsS7DyoeGSTNc0lhX+V3nHS7VLU6XO/ZMoiHC8txRnJLz571yM7tMiYVB5DILQ==","signatures":[{"sig":"MEUCIArro4qcoKatXbqTduFCfeoEN4bCsL7PcMPA3WhbevFcAiEAy/2oFBgT/8YBr0qtRdunhCBtK9wqNeakS7syIYf2kK8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","scripts":{"test":"node_modules/.bin/mocha test.js --reporter spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"1.3.8","description":"Access deep properties using a path","directories":{},"devDependencies":{"chai":"~1.8.0","mocha":"~1.13.0"}},"0.10.0":{"name":"object-path","version":"0.10.0","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.10.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"2d1d3de2d5937705c9078bb15f8fdd69ea936e86","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.10.0.tgz","integrity":"sha512-IsfGJnTd6aetX9FdAr1E/BMvkqLpg7PetWisyscAZZmCtKjQYMRtC7oiXGEg+t+Cc2U7t6+E1UYAnJoDdmDlBQ==","signatures":[{"sig":"MEUCICKrAGAgfABCpawYkv1tr/w/plTDK1iEeIVN5dhIuliSAiEA+Jp5FVlT8eHUVUIHUy93EzQI2lKxKlHEwtxc+/lRPXA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2d1d3de2d5937705c9078bb15f8fdd69ea936e86","engines":{"node":">=0.10.0"},"gitHead":"4bd4bbf06844a18cbc306f201f9ce4ad617b470f","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"2.14.12","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"chai":"^3.5.0","mocha":"^2.2.4","istanbul":"^0.4.4","coveralls":"^2.11.2","mocha-lcov-reporter":"^1.2.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path-0.10.0.tgz_1467123480970_0.04168023983947933","host":"packages-12-west.internal.npmjs.com"}},"0.11.7":{"name":"object-path","version":"0.11.7","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.7","maintainers":[{"name":"mariocasciaro","email":"m@mario.fyi"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"5f211161f34bb395e4b13a5f565b79d933b6f65d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.7.tgz","fileCount":9,"integrity":"sha512-T4evaK9VfGGQskXBDILcn6F90ZD+WO3OwRFFQ2rmZdUH4vQeDBpiolTpVlPY2yj5xSepyILTjDyM6UvbbdHMZw==","signatures":[{"sig":"MEUCIDTcJGvs8nkvC5+XW6dNBO0xkTMuYwEdzb9YPYxzAESpAiEA9lN65O+rUaPUw8TR/roakoa8NBpsa8GyeCF8lSTe3bo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKPtaCRA9TVsSAnZWagAAOrwP/R0ZT5RFrvmI/qO8B3Wb\n++UDkdeqYyLNtIOx7G1ta2QDbtmsRVSv6RaqpaIv+F6HW4oQKaUIsKGilk2Q\n2BnmXDYtHsO9epTbS+3Xdd6e3JuGiRNa0g2bJHGLZKzpxseoIsXy6ZJvsUt6\nlgkkmRFXWNyLAYPLGAZEgjZlFKkzvaDnkPBvLeB5QNmCScHGn1teO4DzrF15\nelBobcZ0YWpOG/5wBYF6vfCzd52zBxbgo8Vu5ZveTg0dBNE28hROAu9j6CNs\n6K3/FI7fY6i2LbCcKjC9tePHlaUEhHRUOdtXODVLI3pXuw6sUhJQtwuzsaGG\nglqFX2nd6Hz4kF5skBRGSxW+ysCWxls/UjKDYPwNXGbIJmMAgUXQ8FMam3U3\nNArQgg+WiVzHVfiWCzwwKqqDyAUBseoX2HvYQi55BrNPkbvl8jTK4iJjYBH9\n27t5rgQjzAMcmHxmG/VUGTYuwfvid2YsQS89UcjZ/Gz3ixNte694Wb5ldccO\nv47F2QvmWDfRZeCwTmpMEvqgH9dd0C25CSnHixJ1HYWqnqURnB6wu2fhdGZP\nMwdkVkwWCg6IneVro9CYKSz6ItlkWdyM8C2omZMT9vK0v3rsinsncLaflX/2\nsKAoA8VkJ5qjgEhr/bbQqgnSLOmCZdjGNiTY0nkdWUJgE0ef2N4jEzWB2ksz\n4Pna\r\n=Ml5g\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 10.12.0"},"gitHead":"43a926f5bcba44e522456b0e2b4b341de32c4a19","scripts":{"test":"mocha test.js","coverage":"nyc npm test","benchmark":"node benchmark.js","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"mariocasciaro","email":"m@mario.fyi"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"7.5.2","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"14.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","mocha":"^9.1.0","coveralls":"^3.1.1","mocha-lcov-reporter":"^1.3.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path_0.11.7_1630075738573_0.9510719576738014","host":"s3://npm-registry-packages"}},"0.11.6":{"name":"object-path","version":"0.11.6","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.6","maintainers":[{"name":"mariocasciaro","email":"m@mario.fyi"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"e53b6f19fc53a50c5009b3899a3e25a5b4e6de45","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.6.tgz","fileCount":9,"integrity":"sha512-IxOLx7DbXnrRHAhLRiL4Sg0383CGdo5k6F7sjYyeqVOEzctZFUHF3c4uh7EgqWoV0B3CCmgYwjOBgw9jrqyv/A==","signatures":[{"sig":"MEUCIBxJOhHv++pAwyga4YXU+JMsHvW+yhdASxGKaeqzHNn3AiEA83jxVjqfq2TqGpqx52Pd/Y6Psfj1cZf0fX27p6YPjAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKPkpCRA9TVsSAnZWagAATWEP/R+bzwImddk9WyxK8C/f\nriam/vZB1/yy4Ct/g/Ii/oFuZ/XhlSAzn5u/64Ea6uL6Pi859Eu0yzDO229R\n9l3XWfwyMDLB/3eXoBj/0vMdbGLW66FqtdlH1JOKy/93rFPfJIMQRkNn6YUj\ndK7hs6qyg0l+A9qq7NALeGA1ZhUM/sU4xu+G/VJCsDqYmBPb5MtEDkQKgyBN\n5yf7M811SXJQhSU4072Qu6LSBTHk4BEpKWFrPrSDMzNOE7LpVWrA9URtbfXT\n1lnr6EMIv/fuYC5nTFILIqYh+4hGXYyWUuMKu5lfGtIONRVgOXUDQAHFWg9f\n++hxQqS8h/lfaDBIs8hgYEonNNakikzReyy2HcEKWQmq3GU+sfhjOmMGAXKy\nYs7/PNeOZfkDnlA9ERxjmNv+pcwdNczxbhYAf86A+yc3ofiCDY4Dia6SEeV7\nTE62/11ABJ9Opi/O6Gg4OBHc1Y7VuL+AYzjRLLSrh9UR0AvrGM6IW0xqW+l2\nXQPVqgpMhB0SBCVho+xyXYSEWsi5VTZzZhojn7GcjcrP/r4u4zVY+fUtmcc7\nAD+3wYHyQ9TifYX47AsfNlGdFKJm3nwkAneRndFMyRbvFdeuIR9WyDZEzeDB\ngD578esLcxpmzSu/oGKiSS+GnpjSG2BHJpSrfVxWoZ4fXiy1B1ca28xVsPZB\nlMNY\r\n=RoIv\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 10.12.0"},"gitHead":"94f92d8932fce12eeff853116646160477c6ce11","scripts":{"test":"mocha test.js","coverage":"nyc npm test","benchmark":"node benchmark.js","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"mariocasciaro","email":"m@mario.fyi"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"7.5.2","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"14.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","mocha":"^9.1.0","coveralls":"^3.1.1","mocha-lcov-reporter":"^1.3.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path_0.11.6_1630075177244_0.5872270844911733","host":"s3://npm-registry-packages"}},"0.11.5":{"name":"object-path","version":"0.11.5","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.5","maintainers":[{"name":"mariocasciaro","email":"m@mario.fyi"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"d4e3cf19601a5140a55a16ad712019a9c50b577a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.5.tgz","fileCount":9,"integrity":"sha512-jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==","signatures":[{"sig":"MEYCIQCeYC2ndrrfMZkb6QRaj19M/+PkK/x56ho2V+IzWFUZygIhAP6cZ02/amPmJlK77160V25XbzN6nngv7JCuj9+O+3e2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgeXyCRA9TVsSAnZWagAAGz8P/01JG3PIqx8KEtaRjced\n+03PgyTLi6ga1MXSXnPmR41VjGmgoDDcoWEskeIv6G0AWrZqF9V7F23R04r9\n+LJpTfxmZ8h7hfb1ai9WoLx//Xj2w3gNm+QlkVZn7u3gHt8PuriEDdNHtNxJ\nQRmOlJbW6L4pi68Y+SGQT09c+obFcG/BDyY3AwLWWr4JHDNeAQ2XIJgBrBie\nTTUhCN8q1JfZSVDMlho0iW2YXNPZeJAEx5st/CjZGY+BG2/559573/BN3KVG\ntLfQ9orRaVZwtqsKjWVR8p91iZ0C2NaAxtlCRsLtpCDBIs2D9Y/kwFhbdZiM\nr4nVCqjcU+PEAbIpEOCo6OJPdaVhNTIovR7IAkR4mv8HpwcpBIiSxLRHyyUt\nP6TUnqQqcNx1NOYvvX+iGTF2dpK1fROqBbyhj6HtHu57jEczNu/wpK7hCDdm\nDGWVVpXot5nLif3CnYzXSF38DEfDuj52pFEZVWKYfCkOTF+MT8dRlOhR4M9i\nqgJs1DrmYgq59bxOgdCabaFJy3CQVGPfIMan8+KatUMfJQ+jHDFKt4NKvtHS\noOpf39mTV7mPuzCtL6ZTq7fbS9fjZTy4o6fwlLN+EWTBfy/xpym+a7jVppi1\nBi2lnPYTU752Up6kBaUJp9mD80MNZcs9CkECRkcKejPRIpS3c+pXcxda4sYs\nlumN\r\n=Jeyb\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 10.12.0"},"gitHead":"63324602658f0860a25bde311b0087625dfee439","scripts":{"test":"mocha test.js","coverage":"nyc npm test","benchmark":"node benchmark.js","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"mariocasciaro","email":"m@mario.fyi"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"6.14.8","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"14.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","mocha":"^8.1.3","coveralls":"^3.1.0","mocha-lcov-reporter":"^1.3.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path_0.11.5_1602348530432_0.24872902351771176","host":"s3://npm-registry-packages"}},"0.11.4":{"name":"object-path","version":"0.11.4","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.4","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"370ae752fbf37de3ea70a861c23bba8915691949","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.4.tgz","integrity":"sha512-ICbQN+aw/eAASDtaC7+SJXSAruz7fvvNjxMFfS3mTdvZaaiuuw81XXYu+9CSJeUVrS3YpRhTr862YGywMQUOWg==","signatures":[{"sig":"MEYCIQCSFNau+MXYut/pUH2LOotCf4TcvCy6Zr5unFtthyUwagIhAOQN319lHLAYAp91XvinBL4s43ueJQlRCktbLeGSZyGz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"370ae752fbf37de3ea70a861c23bba8915691949","engines":{"node":">=0.10.0"},"gitHead":"99d9d30087493f6def258ddfb45d34029f5ce4eb","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"3.10.10","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"6.9.4","devDependencies":{"chai":"^3.5.0","mocha":"^2.2.4","istanbul":"^0.4.4","coveralls":"^2.11.2","mocha-lcov-reporter":"^1.2.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path-0.11.4.tgz_1488193716681_0.5552614536136389","host":"packages-18-east.internal.npmjs.com"}},"0.11.3":{"name":"object-path","version":"0.11.3","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.3","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"3e21a42ad07234d815429ae9e15c1c5f38050554","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.3.tgz","integrity":"sha512-axNRbBQoeoDKL9gbT1JpJU5EVwslRObkg7+/nqGPf2+d7wv1iu2pHoszAoBm7vgZzKbZu1IIcZYh3DyiVlIbvA==","signatures":[{"sig":"MEYCIQDum6b3WoJoj3GyaR0BUzLc0Q5dZu3Lm0HyVXd9kOmZ9gIhAKb1aHTFOaCQ4kJp1QrDaRK5w5j2x8AjdGpAbKzrzLmc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"3e21a42ad07234d815429ae9e15c1c5f38050554","engines":{"node":">=0.10.0"},"gitHead":"2b80d6cf4e0939e59e525cc1f65da18ad8767beb","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"3.10.8","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"6.9.1","devDependencies":{"chai":"^3.5.0","mocha":"^2.2.4","istanbul":"^0.4.4","coveralls":"^2.11.2","mocha-lcov-reporter":"^1.2.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path-0.11.3.tgz_1479461842346_0.08666962035931647","host":"packages-12-west.internal.npmjs.com"}},"0.11.2":{"name":"object-path","version":"0.11.2","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.2","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"74bf3b3c5a7f2024d75e333f12021353fa9d485e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.2.tgz","integrity":"sha512-LOgXGkojmc2fHtvkbz4nVAHba5sDQBrnJIcvE9mjF6TkrZVX6PnY7LjZLSJoI+zq9tot3OGvA6MB3T+uVgEPfA==","signatures":[{"sig":"MEUCIFS0wZak8XVcuTTLGdxp50QKCpVGQ1dmrTUNnUbAecBXAiEA5qYizHbG4bg1PtOvRMcyEy7GATN7xdA90/jkGZk2zdU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"74bf3b3c5a7f2024d75e333f12021353fa9d485e","engines":{"node":">=0.10.0"},"gitHead":"f01ab7ce2c9ca09cf3e7ad39ca9f38a7f9cf9dc2","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"2.15.5","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"4.4.5","devDependencies":{"chai":"^3.5.0","mocha":"^2.2.4","istanbul":"^0.4.4","coveralls":"^2.11.2","mocha-lcov-reporter":"^1.2.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path-0.11.2.tgz_1472723253682_0.7585110168438405","host":"packages-16-east.internal.npmjs.com"}},"0.11.1":{"name":"object-path","version":"0.11.1","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.1","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"03dbdf5f71f77bfcdf0b831a3ab07094f4953291","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.1.tgz","integrity":"sha512-zcdeqVRKBDU1rJTF8lItMUs0sYVq8wZngBQXJcIMNhs/q13f3XZfTnze32HVZusOjNeUd+dfE5XcbqOH4+SvhA==","signatures":[{"sig":"MEUCIAdPbDmeoMxOKPzgR+1X5k2rAXqK8eNlTB4vs5Bk6tvRAiEAysHnJqAoR7hrv92nOrdEuLG98Jl9cdyP0fcE7jnSheA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"03dbdf5f71f77bfcdf0b831a3ab07094f4953291","engines":{"node":">=0.10.0"},"gitHead":"e75f78bcecec5801c32eb5e6e24bddbd0903f8d2","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"2.15.5","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"4.4.5","devDependencies":{"chai":"^3.5.0","mocha":"^2.2.4","istanbul":"^0.4.4","coveralls":"^2.11.2","mocha-lcov-reporter":"^1.2.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path-0.11.1.tgz_1467309647650_0.36038817442022264","host":"packages-12-west.internal.npmjs.com"}},"0.11.0":{"name":"object-path","version":"0.11.0","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.0","maintainers":[{"name":"mariocasciaro","email":"mariocasciaro@gmail.com"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"c3827b6f1efd00b4ea8224156567bdcb43a7c859","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.0.tgz","integrity":"sha512-S0wIhaiaJp64FUoBGk5HNVVdasfEkmcp3jM5NBwOGSQLE3eoYj7EUOzLj8ce2ymrrZ3VLczFcE2TIO5yOABtag==","signatures":[{"sig":"MEQCIAIMlHO0/c1jB9HfWh4bSvLu1nNZuu3oG6n5dme8zImtAiBhiswbhI5ksAQgZ5GaAhrKKcDxEZ/1wkvuEUbfdgR/Qg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c3827b6f1efd00b4ea8224156567bdcb43a7c859","engines":{"node":">=0.10.0"},"gitHead":"c3f8c68a1fd0504bb59c1f6ceca7ed8e0a63ef4b","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"},"_npmUser":{"name":"mariocasciaro","email":"contact@mariocasciaro.me"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"2.14.12","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"chai":"^3.5.0","mocha":"^2.2.4","istanbul":"^0.4.4","coveralls":"^2.11.2","mocha-lcov-reporter":"^1.2.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path-0.11.0.tgz_1467199073909_0.5393957255873829","host":"packages-16-east.internal.npmjs.com"}},"0.11.8":{"name":"object-path","version":"0.11.8","keywords":["deep","path","access","bean","get","property","dot","prop","object","obj","notation","segment","value","nested","key"],"author":{"name":"Mario Casciaro"},"license":"MIT","_id":"object-path@0.11.8","maintainers":[{"name":"mariocasciaro","email":"m@mario.fyi"}],"homepage":"https://github.com/mariocasciaro/object-path","bugs":{"url":"https://github.com/mariocasciaro/object-path/issues"},"dist":{"shasum":"ed002c02bbdd0070b78a27455e8ae01fc14d4742","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/object-path/-/object-path-0.11.8.tgz","fileCount":10,"integrity":"sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==","signatures":[{"sig":"MEYCIQDq5MtFQ+viyhpgbi5+sl+UP0R68D7+PsKzY1hdrWYhMgIhAOqHMYChP8p0sH1NIPpyL5ErM3IJObnG3RB9QkW3uC4f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60943,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQyPVCRA9TVsSAnZWagAAZioP/28Qby/SGqYv4eewGVf/\nXIl1kie2r9Szzv7Skx/FfKhc0wIu1bJqSTmXsbbNtN6oCLqht74Ej5ltiA7w\n8MT0Arsje8VgByPgop1JzEl/+aUENRZ7BYQ2a/b4JzVyjM3fRn+g3YvChEkt\nmH4IN0jWTp4QF6XiH0jJU92B4N2+DBkw6WVh6WSYT/FfG5J8KpyDZ7y0AqCj\n1Mfkv7otnodlG+geSG8C7pIMQ8HVV94E+8kbFtuP9BzNh+K7S4LBfmH1qDPl\n5QdJTJwnZzbWBnBt3hBVpErMihQQHq93YkE/TpeAOnaSz3y++LXHKxlYOSvh\nuxaPtH5kRhxON4sVmsMWPzJFB88ayrrDhPluoS1toLf42YbNhPNsvU09HQuj\nNc2MlI9+uU9PgQTMxFc+XNXzz7y7hbdKThSVxfqdyXXtntZzUaS5R86ic4gt\nI5VqY9P969GvulgLtVUgp4R69YqeqaqbtgEMoxKGYZ6e075xbLlDUVtxTgnF\nSMscxq/AdUyGKbv2yCa03Btn8GIshEF+HeoYsutuOQjQH9zt0/NHgZWRAkCt\nJ19A6bC6yPo0x9e4gE0STyxTKY7jEg9lezb+4h7Ki67KJVY0il1kpAdPkZ/m\n7E8SGcAtJhhIwtSI4AoCtZak/fM7C5uVDgwULBU2AtVSPHKMQHuS+yCvUWMv\neY3N\r\n=tO3u\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 10.12.0"},"gitHead":"e6bb638ffdd431176701b3e9024f80050d0ef0a6","scripts":{"test":"mocha test.js","coverage":"nyc npm test","benchmark":"node benchmark.js","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"mariocasciaro","email":"m@mario.fyi"},"repository":{"url":"git://github.com/mariocasciaro/object-path.git","type":"git"},"_npmVersion":"7.5.2","description":"Access deep object properties using a path","directories":{},"_nodeVersion":"14.9.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","mocha":"^9.1.0","coveralls":"^3.1.1","mocha-lcov-reporter":"^1.3.0","@mariocasciaro/benchpress":"^0.1.3"},"_npmOperationalInternal":{"tmp":"tmp/object-path_0.11.8_1631790037408_0.33794093106064604","host":"s3://npm-registry-packages"}}},"name":"object-path","time":{"0.5.1":"2014-07-09T07:32:08.725Z","0.6.0":"2014-07-15T17:02:23.854Z","0.7.0":"2014-11-17T10:40:42.834Z","0.1.3":"2014-04-02T18:54:19.198Z","0.4.0":"2014-05-17T22:16:12.829Z","0.5.0":"2014-05-24T14:28:36.795Z","0.9.1":"2015-03-19T13:28:24.340Z","0.9.2":"2015-04-16T08:50:23.849Z","0.8.0":"2014-11-20T10:29:25.950Z","0.8.1":"2014-11-26T13:52:44.408Z","0.9.0":"2015-01-29T10:11:31.029Z","0.1.1":"2013-10-08T18:29:46.043Z","0.2.0":"2014-04-14T20:58:52.350Z","0.1.2":"2013-11-11T19:52:41.872Z","0.2.1":"2014-04-15T17:33:40.460Z","0.3.0":"2014-04-22T18:15:21.726Z","0.0.1":"2013-09-20T01:00:44.619Z","0.1.0":"2013-09-23T17:47:57.227Z","0.10.0":"2016-06-28T14:18:03.279Z","modified":"2025-05-13T07:33:49.191Z","0.11.7":"2021-08-27T14:48:58.722Z","0.11.6":"2021-08-27T14:39:37.367Z","0.11.5":"2020-10-10T16:48:50.597Z","0.11.4":"2017-02-27T11:08:37.247Z","0.11.3":"2016-11-18T09:37:24.214Z","0.11.2":"2016-09-01T09:47:35.584Z","created":"2013-09-20T01:00:39.647Z","0.11.1":"2016-06-30T18:00:50.159Z","0.11.0":"2016-06-29T11:17:55.008Z","0.11.8":"2021-09-16T11:00:37.576Z"},"readmeFilename":"README.md","homepage":"https://github.com/mariocasciaro/object-path"}