{"maintainers":[{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"brian.woodward@gmail.com"}],"keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"dist-tags":{"latest":"4.0.1"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library we tested does this, or does it correctly).","readme":"# get-value [![NPM version](https://img.shields.io/npm/v/get-value.svg?style=flat)](https://www.npmjs.com/package/get-value) [![NPM monthly downloads](https://img.shields.io/npm/dm/get-value.svg?style=flat)](https://npmjs.org/package/get-value) [![NPM total downloads](https://img.shields.io/npm/dt/get-value.svg?style=flat)](https://npmjs.org/package/get-value)\n\n> Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library we tested does this, or does it correctly).\n\nPlease consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.\n\n## Table of Contents\n\n<details>\n<summary><strong>Details</strong></summary>\n\n- [Install](#install)\n- [Usage](#usage)\n  * [Supports keys with dots](#supports-keys-with-dots)\n  * [Supports arrays](#supports-arrays)\n  * [Supports functions](#supports-functions)\n  * [Supports passing object path as an array](#supports-passing-object-path-as-an-array)\n- [Options](#options)\n  * [options.default](#optionsdefault)\n  * [options.isValid](#optionsisvalid)\n  * [options.split](#optionssplit)\n  * [options.separator](#optionsseparator)\n  * [options.join](#optionsjoin)\n  * [options.joinChar](#optionsjoinchar)\n- [Benchmarks](#benchmarks)\n  * [Running the benchmarks](#running-the-benchmarks)\n- [Release history](#release-history)\n  * [v4.0.0](#v400)\n  * [v3.0.0](#v300)\n- [About](#about)\n\n</details>\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save get-value\n```\n\n## Usage\n\nSee the [unit tests](test/test.js) for many more examples.\n\n```js\nconst get = require('get-value');\nconst obj = { a: { b: { c: { d: 'foo' } } } };\n\nconsole.log(get(obj));            //=> { a: { b: { c: { d: 'foo' } } } };\nconsole.log(get(obj, 'a'));       //=> { b: { c: { d: 'foo' } } }\nconsole.log(get(obj, 'a.b'));     //=> { c: { d: 'foo' } }\nconsole.log(get(obj, 'a.b.c'));   //=> { d: 'foo' }\nconsole.log(get(obj, 'a.b.c.d')); //=> 'foo'\n```\n\n### Supports keys with dots\n\nUnlike other dot-prop libraries, get-value works when keys have dots in them:\n\n```js\nconsole.log(get({ 'a.b': { c: 'd' } }, 'a.b.c'));\n//=> 'd'\n\nconsole.log(get({ 'a.b': { c: { 'd.e': 'f' } } }, 'a.b.c.d.e'));\n//=> 'f'\n```\n\n### Supports arrays\n\n```js\nconsole.log(get({ a: { b: { c: { d: 'foo' } } }, e: [{ f: 'g' }, { f: 'h' }] }, 'e.1.f'));\n//=> 'h'\n\nconsole.log(get({ a: { b: [{ c: 'd' }] } }, 'a.b.0.c'));\n//=> 'd'\n\nconsole.log(get({ a: { b: [{ c: 'd' }, { e: 'f' }] } }, 'a.b.1.e'));\n//=> 'f'\n```\n\n### Supports functions\n\n```js\nfunction foo() {}\nfoo.bar = { baz: 'qux' };\n\nconsole.log(get(foo));\n//=> { [Function: foo] bar: { baz: 'qux' } }\n\nconsole.log(get(foo, 'bar'));\n//=> { baz: 'qux' }\n\nconsole.log(get(foo, 'bar.baz'));\n//=> qux\n```\n\n### Supports passing object path as an array\n\nSlighly improve performance by passing an array of strings to use as object path segments (this is also useful when you need to dynamically build up the path segments):\n\n```js\nconsole.log(get({ a: { b: 'c' } }, ['a', 'b']));\n//=> 'c'\n```\n\n## Options\n\n### options.default\n\n**Type**: `any`\n\n**Default**: `undefined`\n\nThe default value to return when get-value cannot resolve a value from the given object.\n\n```js\nconst obj = { foo: { a: { b: { c: { d: 'e' } } } } };\nconsole.log(get(obj, 'foo.a.b.c.d', { default: true }));  //=> 'e'\nconsole.log(get(obj, 'foo.bar.baz', { default: true }));  //=> true\nconsole.log(get(obj, 'foo.bar.baz', { default: false })); //=> false\nconsole.log(get(obj, 'foo.bar.baz', { default: null }));  //=> null\n\n// you can also pass the default value as the last argument\n// (this is necessary if the default value is an object)\nconsole.log(get(obj, 'foo.a.b.c.d', true));  //=> 'e'\nconsole.log(get(obj, 'foo.bar.baz', true));  //=> true\nconsole.log(get(obj, 'foo.bar.baz', false)); //=> false\nconsole.log(get(obj, 'foo.bar.baz', null));  //=> null\n```\n\n### options.isValid\n\n**Type**: `function`\n\n**Default**: `true`\n\nIf defined, this function is called on each resolved value. Useful if you want to do `.hasOwnProperty` or `Object.prototype.propertyIsEnumerable`.\n\n```js\nconst isEnumerable = Object.prototype.propertyIsEnumerable;\nconst options = {\n  isValid: (key, obj) => isEnumerable.call(obj, key)\n};\n\nconst obj = {};\nObject.defineProperty(obj, 'foo', { value: 'bar', enumerable: false });\n\nconsole.log(get(obj, 'foo', options));           //=> undefined\nconsole.log(get({}, 'hasOwnProperty', options)); //=> undefined\nconsole.log(get({}, 'constructor', options));    //=> undefined\n\n// without \"isValid\" check\nconsole.log(get(obj, 'foo', options));           //=> bar\nconsole.log(get({}, 'hasOwnProperty', options)); //=> [Function: hasOwnProperty]\nconsole.log(get({}, 'constructor', options));    //=> [Function: Object]\n```\n\n### options.split\n\n**Type**: `function`\n\n**Default**: `String.split()`\n\nCustom function to use for splitting the string into object path segments.\n\n```js\nconst obj = { 'a.b': { c: { d: 'e' } } };\n\n// example of using a string to split the object path\nconst options = { split: path => path.split('/') };\nconsole.log(get(obj, 'a.b/c/d', options)); //=> 'e'\n\n// example of using a regex to split the object path\n// (removing escaped dots is unnecessary, this is just an example)\nconst options = { split: path => path.split(/\\\\?\\./) };\nconsole.log(get(obj, 'a\\\\.b.c.d', options)); //=> 'e'\n```\n\n### options.separator\n\n**Type**: `string|regex`\n\n**Default**: `.`\n\nThe separator to use for spliting the string (this is probably not needed when `options.split` is used).\n\n```js\nconst obj = { 'a.b': { c: { d: 'e' } } };\n\nconsole.log(get(obj, 'a.b/c/d', { separator: '/' }));\n//=> 'e'\n\nconsole.log(get(obj, 'a\\\\.b.c.d', { separator: /\\\\?\\./ }));\n//=> 'e'\n```\n\n### options.join\n\n**Type**: `function`\n\n**Default**: `Array.join()`\n\nCustomize how the object path is created when iterating over path segments.\n\n```js\nconst obj = { 'a/b': { c: { d: 'e' } } };\nconst options = {\n  // when segs === ['a', 'b'] use a \"/\" to join, otherwise use a \".\"\n  join: segs => segs.join(segs[0] === 'a' ? '/' : '.')\n};\n\nconsole.log(get(obj, 'a.b.c.d', options));\n//=> 'e'\n```\n\n### options.joinChar\n\n**Type**: `string`\n\n**Default**: `.`\n\nThe character to use when re-joining the string to check for keys with dots in them (this is probably not needed when `options.join` is used). This can be a different value than the separator, since the separator can be a string or regex.\n\n```js\nconst target = { 'a-b': { c: { d: 'e' } } };\nconst options = { joinChar: '-' };\nconsole.log(get(target, 'a.b.c.d', options));\n//=> 'e'\n```\n\n## Benchmarks\n\n_(benchmarks were run on a MacBook Pro 2.5 GHz Intel Core i7, 16 GB 1600 MHz DDR3)_.\n\nget-value is more reliable and has more features than dot-prop, without sacrificing performance.\n\n```\n# deep (338 bytes)\n  dot-prop x 2,524,501 ops/sec ±3.47% (90 runs sampled)\n  dotty x 1,990,042 ops/sec ±1.10% (91 runs sampled)\n  get-value x 3,776,247 ops/sec ±0.71% (98 runs sampled)\n  getobject x 1,166,194 ops/sec ±2.94% (94 runs sampled)\n  object-path x 975,380 ops/sec ±0.27% (97 runs sampled)\n\n  fastest is get-value (by 50% avg)\n\n# root (215 bytes)\n  dot-prop x 18,774,512 ops/sec ±0.67% (95 runs sampled)\n  dotty x 16,732,378 ops/sec ±0.66% (95 runs sampled)\n  get-value x 35,516,146 ops/sec ±1.16% (92 runs sampled)\n  getobject x 7,743,671 ops/sec ±2.99% (95 runs sampled)\n  object-path x 11,955,285 ops/sec ±0.48% (95 runs sampled)\n\n  fastest is get-value (by 89% avg)\n\n# shallow (91 bytes)\n  dot-prop x 10,195,874 ops/sec ±0.88% (95 runs sampled)\n  dotty x 8,383,019 ops/sec ±0.81% (97 runs sampled)\n  get-value x 9,891,229 ops/sec ±0.88% (90 runs sampled)\n  getobject x 4,333,202 ops/sec ±1.52% (99 runs sampled)\n  object-path x 4,568,894 ops/sec ±1.60% (94 runs sampled)\n\n  fastest is dot-prop (by 3% avg)\n\n```\n\n### Running the benchmarks\n\nClone this library into a local directory:\n\n```sh\n$ git clone https://github.com/jonschlinkert/get-value.git\n```\n\nThen install devDependencies and run benchmarks:\n\n```sh\n$ npm install && node benchmark\n```\n\n## Release history\n\n### v4.0.0\n\n* Refactored to typescript\n* Added support for handling deep property paths with arrays\n* Improved performance on large nested objects\n* Fixed edge case issues with keys containing special characters.\n* Updated benchmarks\n* Updated documentation to reflect new features and bug fixes.\n\n### v3.0.0\n\n* Improved support for escaping. It's no longer necessary to use backslashes to escape keys.\n* Adds `options.default` for defining a default value to return when no value is resolved.\n* Adds `options.isValid` to allow the user to check the object after each iteration.\n* Adds `options.separator` for customizing character to split on.\n* Adds `options.split` for customizing how the object path is split.\n* Adds `options.join` for customizing how the object path is joined when iterating over path segments.\n* Adds `options.joinChar` for customizing the join character.\n\n## About\n\n<details>\n<summary><strong>Contributing</strong></summary>\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n</details>\n\n<details>\n<summary><strong>Running Tests</strong></summary>\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n</details>\n\n<details>\n<summary><strong>Building docs</strong></summary>\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n</details>\n\n### Related projects\n\nYou might also be interested in these projects:\n\n* [has-any-deep](https://www.npmjs.com/package/has-any-deep): Return true if `key` exists deeply on the given object.  | [homepage](https://github.com/jonschlinkert/has-any-deep \"Return true if `key` exists deeply on the given object. \")\n* [has-any](https://www.npmjs.com/package/has-any): Returns true if an object has any of the specified keys. | [homepage](https://github.com/jonschlinkert/has-any \"Returns true if an object has any of the specified keys.\")\n* [has-value](https://www.npmjs.com/package/has-value): Returns true if a value exists, false if empty. Works with deeply nested values using… [more](https://github.com/jonschlinkert/has-value) | [homepage](https://github.com/jonschlinkert/has-value \"Returns true if a value exists, false if empty. Works with deeply nested values using object paths.\")\n* [set-value](https://www.npmjs.com/package/set-value): Set nested properties on an object using dot notation. | [homepage](https://github.com/jonschlinkert/set-value \"Set nested properties on an object using dot notation.\")\n* [unset-value](https://www.npmjs.com/package/unset-value): Delete nested properties from an object using dot notation. | [homepage](https://github.com/jonschlinkert/unset-value \"Delete nested properties from an object using dot notation.\")\n\n### Contributors\n\n| **Commits** | **Contributor** |  \n| --- | --- |  \n| 93 | [jonschlinkert](https://github.com/jonschlinkert) |  \n| 2  | [doowb](https://github.com/doowb) |  \n| 2  | [felladrin](https://github.com/felladrin) |  \n| 1  | [onokumus](https://github.com/onokumus) |  \n| 1  | [joepie91](https://github.com/joepie91) |  \n| 1  | [sonofmagic](https://github.com/sonofmagic) |  \n\n### Author\n\n**Jon Schlinkert**\n\n* [GitHub Profile](https://github.com/jonschlinkert)\n* [Twitter Profile](https://twitter.com/jonschlinkert)\n* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)\n\n### License\n\nCopyright © 2025, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on February 05, 2025._","repository":{"type":"git","url":"git+https://github.com/jonschlinkert/get-value.git"},"users":{"cr8tiv":true,"den-dp":true,"isayme":true,"ninozhang":true,"rbecheras":true,"rocket0191":true,"flumpus-dev":true,"knownasilya":true},"bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"license":"MIT","versions":{"0.1.0":{"name":"get-value","version":"0.1.0","keywords":["key","nested","object","path","paths","prop","properties","property","props","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.1.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"a07411896d764f45082483114368787883adcc32","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.1.0.tgz","integrity":"sha512-rVtY/UvsKYut51GPnjwje1gG4G7OjBJfU/78FfED0PqDQV5QXm7O5BxXuOSWxqJ85xapU7m4WR2+SJVuoLycxg==","signatures":[{"sig":"MEUCIEeg++fbMRE2AJBJeATyJahGiVdX2WGH6yHgJa30tw1lAiEAh+YK3nKUidePl9NG0O4rjsamQVLyeKXsDtc4XHiHqAA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a07411896d764f45082483114368787883adcc32","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","verb-tag-jscomments":">= 0.2.0"}},"0.1.2":{"name":"get-value","version":"0.1.2","keywords":["key","nested","object","path","paths","prop","properties","property","props","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.1.2","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"66c81f361bc99e14be549b24174596d0c68dd305","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.1.2.tgz","integrity":"sha512-Wenfkl8gvVnNWcRSCgen8QZoauN4WenMzYEIyhGHZzTeTLog2B3TyODl0Ed8D6ncLBvMCYsYs5JQ83raYWbDRQ==","signatures":[{"sig":"MEUCIQCTjxSJDl0k7xNAFWAO9zg/9lC0TEaWMMRq87idQI63/wIgMCAcdldP/0I3+jErrEJ0bUKj/Q6QJuI7oOav+14IQvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"66c81f361bc99e14be549b24174596d0c68dd305","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","verb-tag-jscomments":">= 0.2.0"}},"0.2.0":{"name":"get-value","version":"0.2.0","keywords":["key","nested","object","path","paths","prop","properties","property","props","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.2.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"6d4e3be73979a4732c78a980c4501bf1b1fc29fd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.2.0.tgz","integrity":"sha512-QsR0MhKJ6ylnbL5rFpq7wNHxFLKWP+Z/9HxPZ+zPpfwHZ93RVHfJjxe+s9XgXT/2rI+fNe9KWl9XuDulZ7G4xQ==","signatures":[{"sig":"MEUCIQCJDANMRyGOI7EKhtxt3nbSk8oUYq2jHS+T1qpfO/pJHQIgaDoFkJ3Z3Mqj8tHMHdkhJN/vc04N4jKCkxvlICqgzWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6d4e3be73979a4732c78a980c4501bf1b1fc29fd","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","verb-tag-jscomments":">= 0.2.0"}},"0.2.1":{"name":"get-value","version":"0.2.1","keywords":["key","nested","object","path","paths","prop","properties","property","props","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.2.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"0279ca54122126dafbbe1fad13b05063ae40d969","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.2.1.tgz","integrity":"sha512-DjJvcJeD2tgL3CIpcre6B3qjcK6BfBsKQF0w+FLlIDa0H5G6bKjZBTcNYA2t9i6xbI07lE113QYrb966lHvTBA==","signatures":[{"sig":"MEUCIQCPdDNFrXaLbQt9cHLbmk38g0PqlTCv0HAxB84O5Ln+ywIgcHQAS/3XurshAQhHAn68A7xDU5yJHAJb8pKS4bL/c1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0279ca54122126dafbbe1fad13b05063ae40d969","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","verb-tag-jscomments":">= 0.2.0"}},"0.2.2":{"name":"get-value","version":"0.2.2","keywords":["key","nested","object","path","paths","prop","properties","property","props","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.2.2","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"dd4b70f7f5a85e972059a99a181aef4de32b169f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.2.2.tgz","integrity":"sha512-oUVOhhiPwfFrKUa8uOzVh5b916M3mUSYWRlXYvVMigLEQL1dBGo7rsYfjE1wd8qkONejG2Pw66zcMRU+WYtA/A==","signatures":[{"sig":"MEUCIHsDdPm5lqjd6VwXU5Rflp1aXTiMM3rajkFqbvcqtqsaAiEAnEaKkKTXmHZ50pKcjjfrBRYjwFj8RoossVAcHcC59Ok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dd4b70f7f5a85e972059a99a181aef4de32b169f","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","verb-tag-jscomments":">= 0.2.0"}},"0.3.0":{"name":"get-value","version":"0.3.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.3.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"02a571ec9c89d1be5d6f9299af55ee0f9d680964","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.3.0.tgz","integrity":"sha512-otmpfwSGCBgxs+r5SYDDicW5pkg+rYCVL75WXeXUWJxWfxqzmlDbiuzAklWOc6G4hWqjpAQnR7urY4OkAUYDrw==","signatures":[{"sig":"MEUCIDPAatBGKaLSv4mDLFLRg1ZrwtR8qf+c7dl8pTDoMbwVAiEA+5OwrozTSYVzT+Pp0/iwhNY/TR8RFjn79wlamNhdwWA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"02a571ec9c89d1be5d6f9299af55ee0f9d680964","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","verb-tag-jscomments":">= 0.2.0"}},"0.3.1":{"name":"get-value","version":"0.3.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.3.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"75f4c5561ac0f880ebb586b4fbd178d40ed936a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.3.1.tgz","integrity":"sha512-B4oSb9QsgtZ2CE6JvZ7faM9Pco3m29ARRYIkXUgxP5AnJdqf92WbR0qEo71VDA0rn5n8ZmTbKfU6+BSPQKlMwA==","signatures":[{"sig":"MEYCIQDSCNCraD3kQ/7Yeqj9JyRcw+E7GuiGtE1q+AFa4GXYBAIhAK11lXhs13d9/8lIi4erjufxerRdUeXdinAyVizZoAko","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"75f4c5561ac0f880ebb586b4fbd178d40ed936a0","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","getobject":"^0.1.0","benchmarked":"^0.1.1","verb-tag-jscomments":">= 0.2.0"}},"0.3.2":{"name":"get-value","version":"0.3.2","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"_id":"get-value@0.3.2","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"d52e793355ee75e4b8b04decbe2a330942ccc845","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-0.3.2.tgz","integrity":"sha512-G2RtIaOepMVLobMvKHqpzPeBwmoigH1qML6wvQzhqonryemA5rpOHWr41/9GjqP7FNV88YqyFzjwRTu2zNDSGA==","signatures":[{"sig":"MEUCIQCUSl5nDfJ78SLgWTonI02HEiel7oi5jDjZ+pz9CFPxxAIgJcfhBCZ2wIBCHCs5GFmbCZc3BVSZAOTVS5jwHOqoAEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d52e793355ee75e4b8b04decbe2a330942ccc845","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"licenses":[{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE-MIT","type":"MIT"}],"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.9","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"verb":">= 0.2.6","mocha":"*","should":"^4.0.4","getobject":"^0.1.0","benchmarked":"^0.1.1","verb-tag-jscomments":">= 0.2.0"}},"1.0.0":{"name":"get-value","version":"1.0.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.0.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"009e1d6e404926d3ab315ae785314b2e944311d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.0.0.tgz","integrity":"sha512-0pDV31de5pHtLZNWAFSFv0KcMoOR3ZWyhMpkV8gO+YNXqNaE7dVFH9t16BZQqosoDeuhzNb+95s5NIauPdLkLQ==","signatures":[{"sig":"MEQCICWm2RM0+euk1ZmlM6y2G0+rh4Y8G7G6XqYIe76s+7eZAiAbeAqmdLlithLwTGxAhXzgPFxHk3YatkORp0/GD2RHLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"009e1d6e404926d3ab315ae785314b2e944311d5","engines":{"node":">=0.10.0"},"gitHead":"47d14599797900aaf01828ba9a8f95374ab81a02","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.28","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.0.1":{"name":"get-value","version":"1.0.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","util","utilities","utility","utils","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.0.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"e16357e6fcbc6ecec022f5f87e8db7682b65d14c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.0.1.tgz","integrity":"sha512-YNFI1goaPPCaGMO00iaN4pqXyBrqTHq0KDKK0bNZALsfwZsj429GkejBxJM7UZuMzvROlewiGSxfu4aDAyBHjg==","signatures":[{"sig":"MEUCIBRJP14UdasyEWifnOdpq/l1FCrfRWMX7PK5tQIh8Hu2AiEAmja4IMBFDGwXYWeyA2rNAAY/v0p4mi1Mhr3beUeNW1I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"e16357e6fcbc6ecec022f5f87e8db7682b65d14c","engines":{"node":">=0.10.0"},"gitHead":"c76fc1af9c8943abe6f42b51acdfd4f497c7e1fb","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.28","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.0.2":{"name":"get-value","version":"1.0.2","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.0.2","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"6df09e3bfce55b44fbb1ceac5b35e3801cf26a69","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.0.2.tgz","integrity":"sha512-98B4PV+Ent0C7b15Ly4NdLU0vsuSxElpH0nn1+v1g4eunaxrXFHJjst8C/OmOnPTFUjiRP9IwsGT0qO+T2txqQ==","signatures":[{"sig":"MEYCIQDTEBBZIHpWgY4zJP+FQQEn3mNXi19GLW1CstWNgnMRewIhAL+7VrncGCdr19aFNxxU6B2KVUJMvj/Hjs6K73ltGMxH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"6df09e3bfce55b44fbb1ceac5b35e3801cf26a69","engines":{"node":">=0.10.0"},"gitHead":"f0cdb46a2898f455991540de031317788e9125e4","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"1.4.28","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.0.3":{"name":"get-value","version":"1.0.3","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.0.3","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"8746cf0e20b1dd5eb4e760b61ea56b485dcb2d8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.0.3.tgz","integrity":"sha512-cci9a54haWBoP4BYIY3h4L9ih6fUsaUaDOkBDl1KN0f6/SqQllpTjFLd8k3/ZpoO0K1usFAw0cdR6RzBd7dCcg==","signatures":[{"sig":"MEUCIDl+OJXkPlAyv6YtYO84Fm2gpCiTHGW6nyiVEXrLPcKEAiEAtRRXFK5z47RWb4RsKjRT899xOjsGIQ2FxwWUXefK0Ag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"8746cf0e20b1dd5eb4e760b61ea56b485dcb2d8a","engines":{"node":">=0.10.0"},"gitHead":"acaecc3c34b8d06f6a7366e8487a74637a7344de","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.5.1","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isobject":"^0.2.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.0.4":{"name":"get-value","version":"1.0.4","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.0.4","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"4f2d51c1fd393ab83b267138a84a189b1846c105","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.0.4.tgz","integrity":"sha512-dVKUCryvSlen96iMTD8ECtRa0r/TwR+PFQygA5Cmk+fmwpAzeZ6X+Aa7QTthXom4FE1f/FSsfji8shobSEw2Zg==","signatures":[{"sig":"MEUCIHWrOPiyixCRym9M7MtNoMGUHFGakOwlkQvRGDH9lT4pAiEAhqUZ7Cd9XzfSmr0EkmF7IqOQP8G/oHgARnTxRTpFeBs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"4f2d51c1fd393ab83b267138a84a189b1846c105","engines":{"node":">=0.10.0"},"gitHead":"c0e7bffc585a09400a00250c16f7897461e82201","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.5.1","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isobject":"^0.2.0","noncharacters":"^1.0.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.1.1":{"name":"get-value","version":"1.1.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.1.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"370f92421db312410dd7c6253a63a869099f85dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.1.1.tgz","integrity":"sha512-ZK4NKqK+aY2eqtOJPfFLlvT+70klPSZ+YclTorZlAkIo1PYY6urrbzN5Uu8gY6gfM9G3jKENBFnXW6gV4fUKsw==","signatures":[{"sig":"MEMCIHjvUyruoGc4c03HhzrVsQj9jnXdvOgxaBL+/JvLFDAvAh9ZBzPnQ2t+XOaRTA8XHgQ7axFzCM04v80kZSkK13bl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"370f92421db312410dd7c6253a63a869099f85dd","engines":{"node":">=0.10.0"},"gitHead":"6fd670b1d48cd72a48fc3c27179e2ed3b39be5df","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.5.1","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isobject":"^0.2.0","noncharacters":"^1.0.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.1.2":{"name":"get-value","version":"1.1.2","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.1.2","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"bafe82b38ade9ebce7dbf41e93e7bf18a5611679","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.1.2.tgz","integrity":"sha512-UohMrHWh4856yr0a5ePulHbDVlID3gILhk7geOjllzrMuEMyliDU9knyFppKwaKiK9NWcyljLl4UdS1NIDxUtw==","signatures":[{"sig":"MEYCIQDKWkW26sLKCTe/IK51Eqol1GeyhUEnrRgvFT4ea9srWAIhAIcs97FUqg3EpxI8rO+8G1gdLoys+hlforkC5O93Lw0Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"bafe82b38ade9ebce7dbf41e93e7bf18a5611679","engines":{"node":">=0.10.0"},"gitHead":"8c0bdc2bf341cc67f898e921e6e4c6abfa819358","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.7.1","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"_nodeVersion":"1.6.2","dependencies":{"isobject":"^0.2.0","noncharacters":"^1.0.0"},"devDependencies":{"glob":"^4.3.5","chalk":"^0.5.1","mocha":"*","should":"^4.0.4","dot-prop":"^1.0.1","minimist":"^1.1.0","getobject":"^0.1.0","arr-reduce":"^1.0.0","benchmarked":"^0.1.1"}},"1.1.3":{"name":"get-value","version":"1.1.3","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.1.3","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"6894a37f833b75acb3be02b811f00cae699d9f14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.1.3.tgz","integrity":"sha512-zczCQXIgk4wbZnK0Ehyu2GkBUzP4EyC5XVDTRxlmNoUo4sBDSLbH/pJgjz95jrLkVoa0jUI/jgIxZeqlbNJ3Fg==","signatures":[{"sig":"MEUCIQCRfBH8lH5eE4HOHkgSC+u7Ny/D0kagIIRrT2mCjvS6CAIgbU2FRiptF5N8O8ZfL8YhxhVkXYkhUxnyKyAzwFFHBVM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"6894a37f833b75acb3be02b811f00cae699d9f14","engines":{"node":">=0.10.0"},"gitHead":"4d237f003fd744694b293cc936083d424c1abe5b","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.5.1","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isobject":"^1.0.0","noncharacters":"^1.1.0"},"devDependencies":{"glob":"^5.0.3","chalk":"^1.0.0","mocha":"^2.2.1","should":"^5.2.0","minimist":"^1.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"1.1.4":{"name":"get-value","version":"1.1.4","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":{"url":"https://github.com/jonschlinkert/get-value/blob/master/LICENSE","type":"MIT"},"_id":"get-value@1.1.4","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"514801d69a62c741d9d15deafeb603e3ac38c564","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.1.4.tgz","integrity":"sha512-V4Nw4l+IiVkqr6atkYeXbXX2ysszQEG+cJ1/10Y76BOaVHx5VzOi6pg3nk4IHRX7KZhL53zxOPvzN7cE2QLF4w==","signatures":[{"sig":"MEUCIGUgWXbHN7GufRTDVJrjw98oOWJt5Z9FWFPJp3UKZLl+AiEApFJoXmHAESOQ4yvDQl70A8su5xmpnANWQXm2MNlqZPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"514801d69a62c741d9d15deafeb603e3ac38c564","engines":{"node":">=0.10.0"},"gitHead":"183afbc4ebef07bbba66d2263f42c3f1be7c1d7d","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.5.1","description":"Use property paths (`a.b.c`) get a nested value from an object.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"isobject":"^1.0.0","noncharacters":"^1.1.0"},"devDependencies":{"glob":"^5.0.5","chalk":"^1.0.0","mocha":"^2.2.4","should":"^6.0.1","minimist":"^1.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"1.1.5":{"name":"get-value","version":"1.1.5","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@1.1.5","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"59ad9bf9004b2a900761ead3b72dc42ee161a6a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.1.5.tgz","integrity":"sha512-eZA8hKmg6WT99VnZi7SZ1FC1ZEgX6g/9yDgWaeinZ8zwXUZG4T/AkHwuLG9hN27u12K8S8Eblvv1rgdPFJSd3w==","signatures":[{"sig":"MEUCIQD/S9htakueVdPeKZYGUrPZCGPM3dIdJF/wZaLx7fNSTAIgOddTMP40u2Z7sWCWgmArlj2kjlb3A4Iv7cIwjQnajI8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js"],"_shasum":"59ad9bf9004b2a900761ead3b72dc42ee161a6a6","engines":{"node":">=0.10.0"},"gitHead":"183afbc4ebef07bbba66d2263f42c3f1be7c1d7d","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.10.1","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"0.12.4","dependencies":{"isobject":"^1.0.0","noncharacters":"^1.1.0"},"devDependencies":{"glob":"^5.0.5","chalk":"^1.0.0","mocha":"^2.2.4","should":"^6.0.1","minimist":"^1.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"1.2.0":{"name":"get-value","version":"1.2.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@1.2.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"731f451320e1428bdccaa0e510223e25f62bfe49","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.2.0.tgz","integrity":"sha512-CDrRfgM0xpASvNu4UzSIIYRe7Kji1W+Qns4x47C6zRDjcp1B6DvTOeiavY5zv5SAvrX08pdYaiFAHlTbTQb0ug==","signatures":[{"sig":"MEUCIGoPq6S1pqDXPZKYHPiuRRdYSrTaRTRh8YnGHoeu72uCAiEA3g9WJDpIcHuvwD8iu2ZBVfOItuZ45NeViw+TZVB/vIw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"731f451320e1428bdccaa0e510223e25f62bfe49","engines":{"node":">=0.10.0"},"gitHead":"1948c93122235f7e14a5f55c7bfde64728bdb692","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.10.1","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"0.12.4","dependencies":{"isobject":"^1.0.0","is-extendable":"^0.1.1","noncharacters":"^1.1.0"},"devDependencies":{"glob":"^5.0.5","chalk":"^1.0.0","mocha":"^2.2.4","should":"^6.0.1","minimist":"^1.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"1.2.1":{"name":"get-value","version":"1.2.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@1.2.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"b309beebce2f4ae0945b77767c611a5a6af3ff6f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.2.1.tgz","integrity":"sha512-Je06N36Zi/5vatN1gP2CUe4QhgHkfY4FM+G0hXTdxLfb+OC1WZ2RD33WdviUPRKuUEeXBR+KTQJ1W7ki4dPC8w==","signatures":[{"sig":"MEYCIQCdQrAobGJij3WCNbWooSkbg09AqbXnbKXu1vwwVKLjUwIhAKsTK0cD73LNIK4NarG5pOglUitHwVXlo3l0OF7dNnCd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"b309beebce2f4ae0945b77767c611a5a6af3ff6f","engines":{"node":">=0.10.0"},"gitHead":"1948c93122235f7e14a5f55c7bfde64728bdb692","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.10.1","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"0.12.4","dependencies":{"isobject":"^1.0.0","is-extendable":"^0.1.1","noncharacters":"^1.1.0"},"devDependencies":{"glob":"^5.0.5","chalk":"^1.0.0","mocha":"^2.2.4","should":"^6.0.1","minimist":"^1.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"1.3.0":{"name":"get-value","version":"1.3.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@1.3.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"0cb41d0bc435559b482a629d0192529ce02aff8b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.3.0.tgz","integrity":"sha512-t+BxGEtsMR+tuxa/Y4UbvfTOhAjYxcj3etYmmXJQZw33jt/mN30eS+sSFUxkRDtLiUGpxNXayKSgnLTIPLDaJA==","signatures":[{"sig":"MEUCIGrFnj6OYzjnePSAL4R2qQkRrsvcPTiFjiUlx+yGh4V0AiEA9bOTtkh1Cmq0sBH3V2lnFmLSHx5YLc6VJCmr/Und2N8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"0cb41d0bc435559b482a629d0192529ce02aff8b","engines":{"node":">=0.10.0"},"gitHead":"72eacd9f6fb5aa4dd1eed500832f479be875d116","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.14.7","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"4.2.1","dependencies":{"lazy-cache":"^0.2.4","arr-flatten":"^1.0.1","is-extendable":"^0.1.1","noncharacters":"^1.1.0"},"devDependencies":{"mocha":"^2.3.3","should":"^7.1.1","matched":"^0.3.2","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"1.3.1":{"name":"get-value","version":"1.3.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@1.3.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"8ac7ef4f20382392b2646548f9b9ad2dc6c89642","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-1.3.1.tgz","integrity":"sha512-TrDxHI5wqgpM5Guhoz7xmblwy7kzhDauSs4df3NP907yFmLtCkOau8YtGo087jZXKDwP22NG6fCo0UA4EFLjOw==","signatures":[{"sig":"MEUCIQCqj5lgVLGVhVvbkU6jGs0NfAPwkgVSTgbcdyQ//N4CZQIga2Ngk38psJZomMHeq3CZHwUGLXSs21rJ302PrClHGZA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js","utils.js"],"_shasum":"8ac7ef4f20382392b2646548f9b9ad2dc6c89642","engines":{"node":">=0.10.0"},"gitHead":"72eacd9f6fb5aa4dd1eed500832f479be875d116","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.14.7","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"4.2.1","dependencies":{"lazy-cache":"^0.2.4","arr-flatten":"^1.0.1","is-extendable":"^0.1.1","noncharacters":"^1.1.0"},"devDependencies":{"mocha":"^2.3.3","should":"^7.1.1","matched":"^0.3.2","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","benchmarked":"^0.1.4"}},"2.0.0":{"name":"get-value","version":"2.0.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"de1d3ba0714ebce2d807977e48a616187fd94809","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.0.tgz","integrity":"sha512-um2TnkHnd7R/QU+9Uc2ehe8y2iqDinxfdn4Otpw3E7aLjMVMrG0Wz0uHwmrYgga4mcqDtjoU4bLEBNwpvNSyHQ==","signatures":[{"sig":"MEUCICBX6ekyS/nsNwyouWEfpU9uVtRcTZ8fMALijegvSbj6AiEAusbwDM5oG4AKA2gKxBN+/FgS8kMqPHPg+1zRPqB9jbE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"de1d3ba0714ebce2d807977e48a616187fd94809","engines":{"node":">=0.10.0"},"gitHead":"df1e88cf5ddb5353f12fbc11ed63243585376445","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"2.14.7","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"gulp":"^3.9.0","mocha":"^2.3.3","should":"^7.1.1","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-jshint":"^1.11.2","gulp-istanbul":"^0.10.2","jshint-stylish":"^2.0.1"}},"2.0.1":{"name":"get-value","version":"2.0.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.1","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"b6daee9249910c1d14fdbb7468906a775f43439a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.1.tgz","integrity":"sha512-icFUievHpqMQoO6Q8AegztJYY0Hiwu+sXYIe5hnlqQwdd1bSmv5LpDgNvIl9Y+Sesvy3gdBDglo6DRu3/wvR+g==","signatures":[{"sig":"MEQCICcV8e16Rk6uZLqG68g/UVNTUQXjWTTjk/7H/v1B6tEtAiAk//kgCT+mRvAbSjxftKHxWxtGjpogp2qX+buahn/DrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"plugins":["gulp-format-md"],"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"b6daee9249910c1d14fdbb7468906a775f43439a","engines":{"node":">=0.10.0"},"gitHead":"e7eb881af2d58224f36f4f1974f360d5c3a87018","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"3.3.6","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"5.0.0","devDependencies":{"gulp":"^3.9.0","mocha":"*","should":"*","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.2"}},"2.0.2":{"name":"get-value","version":"2.0.2","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.2","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"1cdcafe16cd02ac4a44b58a155adf227b83b150d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.2.tgz","integrity":"sha512-6WtpLyeUd7xbmMhuf+hzRkUCG6LnTj01aWMw09n7LFzQWe5OoQI7yupoLJOmtOgOkWxEDNvpsyKvFArJhyooOw==","signatures":[{"sig":"MEUCIQC8j2aBUeJjFBIAwwvZS0g/VsMBDz0LWXavzBn9yWbuhwIgCXfbTTWXNny0bda5bkjctI8hcNwlVpIDqYXzGrYfZfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"plugins":["gulp-format-md"],"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"1cdcafe16cd02ac4a44b58a155adf227b83b150d","engines":{"node":">=0.10.0"},"gitHead":"87c35de815c35ee151d06397472ad0fb65938466","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"3.3.6","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"5.0.0","devDependencies":{"gulp":"^3.9.0","mocha":"*","should":"*","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.2"}},"2.0.3":{"name":"get-value","version":"2.0.3","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.3","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"13a50f0faf69a201c1f0aabdb52c21edd48f105d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.3.tgz","integrity":"sha512-Lh/2ZtJYOTuZo+durXjJxxLBQKkQTYDhjs75SluaMG/flMWrvG6sC/B/ZHCPPq9uCVEMKsgeWFkiOI2SGBzdyg==","signatures":[{"sig":"MEMCIAXIPevUi5oBDAMW5YrWd6s6Vn/+eD/MC/zrdLapdWr5Ah80K7akIslnD1lKIfSUQJQFqfbElXSfKgtNeBl+HTSg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"plugins":["gulp-format-md"],"related":{"list":["unset-value","has-value","set-value","has-any","has-any-deep"]}},"_from":".","files":["index.js"],"_shasum":"13a50f0faf69a201c1f0aabdb52c21edd48f105d","engines":{"node":">=0.10.0"},"gitHead":"85507d3fc907c37dcdb84619766e5655407c542a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"3.3.12","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"5.3.0","devDependencies":{"gulp":"^3.9.0","mocha":"*","should":"*","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.2","gulp-format-md":"^0.1.5"}},"2.0.4":{"name":"get-value","version":"2.0.4","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.4","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"d73104aba3f6413610eded22113379cfdf8247d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.4.tgz","integrity":"sha512-wIzGZanDYVU8FpxX6VCami+/2C+ZAHg2Ga5Ld1LC0RpB203i1Czg4BG5k7i8FTYlItAPLTlueZqsXiuyxmaAAw==","signatures":[{"sig":"MEUCIQDXpe8Szhet3+NxM4BmZEDBzaIuTg/+bQNaCSR+prm6kgIgbEY7u4YgpPiDRUNAY1oyBvUL5ne4KzCfbaiiIG+SiQM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"run":true,"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":"default","plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]},"reflinks":["verb"]},"_from":".","files":["index.js"],"_shasum":"d73104aba3f6413610eded22113379cfdf8247d0","engines":{"node":">=0.10.0"},"gitHead":"d96b39593d3eecfa4a56cec0220d5e8640db8f10","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"3.6.0","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"gulp":"^3.9.0","mocha":"*","should":"*","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.2","gulp-format-md":"^0.1.5"},"_npmOperationalInternal":{"tmp":"tmp/get-value-2.0.4.tgz_1459092174622_0.320156384492293","host":"packages-12-west.internal.npmjs.com"}},"2.0.5":{"name":"get-value","version":"2.0.5","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.5","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"af917a37935e88aa548f5fd0e1a8745d914046db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.5.tgz","integrity":"sha512-UrS9OhiSBA2mrvjVhIR9lAfLmIkiTdTGh+IWs5ZDLnq/rFoHLVDwb+5/lNVdvgFPtu0n7mn175u/D3pgveCDjQ==","signatures":[{"sig":"MEUCIFO4QBdzmpdJY3Uf6pi5REaCZ7DosKOt+WSYfM0m/zvMAiEA+ypB07YC1chjIDoVvQpLXOMuTwb1sPqVr2UWIK9w1As=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"run":true,"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":"default","plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]},"reflinks":["verb"]},"_from":".","files":["index.js"],"_shasum":"af917a37935e88aa548f5fd0e1a8745d914046db","engines":{"node":">=0.10.0"},"gitHead":"14c43971784c0ef94f20a2be2edd9fa9e44a35a1","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"3.6.0","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"gulp":"^3.9.0","mocha":"*","should":"*","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.2","gulp-format-md":"^0.1.5"},"_npmOperationalInternal":{"tmp":"tmp/get-value-2.0.5.tgz_1459092249587_0.9073094315826893","host":"packages-12-west.internal.npmjs.com"}},"2.0.6":{"name":"get-value","version":"2.0.6","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@2.0.6","maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"dc15ca1c672387ca76bd37ac0a395ba2042a2c28","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-2.0.6.tgz","integrity":"sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==","signatures":[{"sig":"MEUCIQD2YxMcEPC9UFN0b/CAEjHAQzmfcSStGazCbicW1hS5dAIgRryVqvytrwjciNT9LHkMY8JeSlftXDkWA/41FHeRzCM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"run":true,"toc":false,"lint":{"reflinks":true},"tasks":["readme"],"layout":"default","plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]},"reflinks":["verb","verb-readme-generator"]},"_from":".","files":["index.js"],"_shasum":"dc15ca1c672387ca76bd37ac0a395ba2042a2c28","engines":{"node":">=0.10.0"},"gitHead":"5dc7466a65eec37e3b9e3d94f274b7aba193ea60","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"3.8.9","description":"Use property paths (`a.b.c`) to get a nested value from an object.","directories":{},"_nodeVersion":"6.2.0","devDependencies":{"gulp":"^3.9.0","matched":"^0.3.2","dot-prop":"^2.2.0","isobject":"^2.0.0","minimist":"^1.2.0","ansi-bold":"^0.1.1","getobject":"^0.1.0","arr-reduce":"^1.0.1","gulp-mocha":"^2.1.3","benchmarked":"^0.1.4","gulp-eslint":"^1.1.1","gulp-istanbul":"^0.10.2","gulp-format-md":"^0.1.5"},"_npmOperationalInternal":{"tmp":"tmp/get-value-2.0.6.tgz_1466238467647_0.5326845925301313","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"get-value","version":"3.0.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@3.0.0","maintainers":[{"name":"anonymous","email":"brian.woodward@gmail.com"},{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"dd1442206a3bd100109ebbbb79c3b2425b2a7bcb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-3.0.0.tgz","integrity":"sha512-AvQx2mGq9phwebBJBScxxEXlPBVwi7Fz8Pt0wcvtGv7cun4Roipt6FwQkN7lMSg6Wcavw0+3GC1zSe+XaroJJg==","signatures":[{"sig":"MEUCIE5DeWscAewOWwxQqQtQ7qD4feXNFaGgtYb5pH0PYu0kAiEAvuizD4v/sROS/0tbferW5c8FpZ/yW4KkK0kbC8CZWvA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","verb":{"run":true,"toc":"collapsible","lint":{"reflinks":true},"tasks":["readme"],"layout":"default","plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]}},"files":["index.js"],"engines":{"node":">=6.0"},"gitHead":"61143e59a1553ef703d15a27f5f1397e743dbee0","scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"5.6.0","description":"Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library can do this!).","directories":{},"_nodeVersion":"9.1.0","dependencies":{"isobject":"^3.0.1"},"devDependencies":{"nyc":"^11.4.1","mocha":"^3.5.3","dot-prop":"^4.2.0","minimist":"^1.2.0","getobject":"^0.1.0","arr-reduce":"^1.0.1","micromatch":"^3.1.5","benchmarked":"^2.0.0","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-value-3.0.0.tgz_1517339205284_0.6575652312021703","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"get-value","version":"3.0.1","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@3.0.1","maintainers":[{"name":"anonymous","email":"brian.woodward@gmail.com"},{"name":"anonymous","email":"github@sellside.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"5efd2a157f1d6a516d7524e124ac52d0a39ef5a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-3.0.1.tgz","fileCount":4,"integrity":"sha512-mKZj9JLQrwMBtj5wxi6MH8Z5eSKaERpAwjg43dPtlGI1ZVEgH/qC7T8/6R2OBSUA+zzHBZgICsVJaEIV2tKTDA==","signatures":[{"sig":"MEQCIFaQ32De4h/Ifbsld2SS/50nLSHfwit8aQfVEA9vL4SOAiBv/2x2cbO7VdU0dBCc82OegaxvMRqw2y5+RyAmOqziYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16889},"main":"index.js","verb":{"run":true,"toc":"collapsible","lint":{"reflinks":true},"tasks":["readme"],"layout":"default","plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]}},"files":["index.js"],"engines":{"node":">=6.0"},"gitHead":"f703b744ac60592ca5a8d3dee8cb7de6fbb88a9c","scripts":{"test":"nyc --reporter=text --reporter=html mocha"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"5.7.1","description":"Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library can do this!).","directories":{},"_nodeVersion":"9.7.1","dependencies":{"isobject":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.4.1","glob":"^7.1.2","mocha":"^3.5.3","write":"^1.0.3","dot-prop":"^4.2.0","minimist":"^1.2.0","getobject":"^0.1.0","arr-reduce":"^1.0.1","micromatch":"^3.1.5","benchmarked":"^2.0.0","object-path":"^0.11.4","gulp-format-md":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-value_3.0.1_1520400473888_0.8710185921842548","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"get-value","version":"4.0.0","keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"author":{"url":"https://github.com/jonschlinkert","name":"Jon Schlinkert"},"license":"MIT","_id":"get-value@4.0.0","maintainers":[{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"brian.woodward@gmail.com"}],"homepage":"https://github.com/jonschlinkert/get-value","bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"dist":{"shasum":"53db88d9c2801d313053e8c109bc8aaa81f38363","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-4.0.0.tgz","fileCount":4,"integrity":"sha512-sjJCQJnc9r3cN4+3+SYyqI9wf67BzgDwr/P59b2rbHUcF/1I//GjJCMhXvYYGL6ACjHzCYBFVLAYIzT433s2Tg==","signatures":[{"sig":"MEQCIA+Kq0LlJq5R/XTf2YFSOG2u5PQqMZotT86YmxxXOuvJAiAMzg2bauqZ9+u1Z4d34U5wZWX0QdOMxu/9X6QQelXj6Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":19131},"main":"dist/index.js","verb":{"run":true,"toc":"collapsible","lint":{"reflinks":true},"tasks":["readme"],"layout":"default","plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]}},"module":"dist/index.mjs","exports":{".":{"import":"./dist/index.mjs","require":"./dist/index.js"}},"gitHead":"3f47500df34bd7a2077098b7dd7ae54ff17f1add","scripts":{"test":"ts-mocha -r esbuild-register 'test/**/*.ts'","tsup":"npx tsup","bench":"node benchmark","eslint":"npx eslint --ext .ts .","coverage":"nyc --reporter=text --reporter=html"},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"repository":{"url":"git+https://github.com/jonschlinkert/get-value.git","type":"git"},"_npmVersion":"10.9.2","description":"Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library we tested does this, or does it correctly).","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^17.1.0","tsup":"^8.3.5","dotty":"^0.1.2","eslint":"^8.57.0","ts-node":"^10.9.2","dot-prop":"^9.0.0","minimist":"^1.2.8","prettier":"^3.4.2","ts-mocha":"^10.0.0","getobject":"^1.1.1","arr-reduce":"^1.0.1","micromatch":"^4.0.5","typescript":"^5.4.5","@types/node":"^22.10.7","object-path":"^0.11.8","gulp-format-md":"^2.0.0","tsconfig-paths":"^4.2.0","esbuild-register":"^3.5.0","@typescript-eslint/parser":"^6.2.0","@typescript-eslint/eslint-plugin":"^6.2.0"},"_npmOperationalInternal":{"tmp":"tmp/get-value_4.0.0_1738076532980_0.7387388728884501","host":"s3://npm-registry-packages-npm-production"}},"4.0.1":{"name":"get-value","description":"Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library we tested does this, or does it correctly).","version":"4.0.1","homepage":"https://github.com/jonschlinkert/get-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/get-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/get-value/issues"},"license":"MIT","scripts":{"bench":"node benchmark","eslint":"npx eslint --ext .ts .","coverage":"nyc --reporter=text --reporter=html","test":"ts-mocha -r esbuild-register 'test/**/*.ts'","tsup":"npx tsup"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","exports":{".":{"types":"./index.d.ts","import":"./dist/index.mjs","require":"./dist/index.js"}},"devDependencies":{"@types/node":"^22.10.7","@typescript-eslint/eslint-plugin":"^6.2.0","@typescript-eslint/parser":"^6.2.0","arr-reduce":"^1.0.1","dot-prop":"^9.0.0","dotty":"^0.1.2","esbuild-register":"^3.5.0","eslint":"^8.57.0","getobject":"^1.1.1","gulp-format-md":"^2.0.0","micromatch":"^4.0.5","minimist":"^1.2.8","nyc":"^17.1.0","object-path":"^0.11.8","prettier":"^3.4.2","ts-mocha":"^10.0.0","ts-node":"^10.9.2","tsconfig-paths":"^4.2.0","tsup":"^8.3.5","typescript":"^5.4.5"},"keywords":["get","key","nested","object","path","paths","prop","properties","property","props","segment","value","values"],"verb":{"run":true,"toc":"collapsible","layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["has-any","has-any-deep","has-value","set-value","unset-value"]},"lint":{"reflinks":true}},"_id":"get-value@4.0.1","gitHead":"b91c776fd91af3bc6afd0dd73ebba8e9de2ba660","_nodeVersion":"22.13.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-QTDzwunK3V+VlJJlL0BlCzebAaE8OSlUC+UVd80PiekTw1gpzQSb3cfEQB2LYFWr1lbWfbdqL4pjAoJDPCLxhQ==","shasum":"4a1a61eb56db3832ad525f71350355f951815c56","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/get-value/-/get-value-4.0.1.tgz","fileCount":6,"unpackedSize":23826,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCo1EWAnwBFkEQi97Nneo6XNzNTPGUzfO1esqvnh/cY2gIgECelAVlKXdmqQqtqGTlBYX1Vi4uFx66raKDZ439HcUg="}]},"_npmUser":{"name":"anonymous","email":"github@sellside.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"brian.woodward@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/get-value_4.0.1_1738732209464_0.7251381892128761"},"_hasShrinkwrap":false}},"name":"get-value","time":{"created":"2014-10-06T16:49:43.142Z","modified":"2025-02-05T05:10:09.811Z","0.1.1":"2014-10-06T16:49:43.142Z","0.1.0":"2014-10-07T20:49:47.984Z","0.1.2":"2014-10-07T20:50:53.592Z","0.2.0":"2014-10-08T06:33:47.548Z","0.2.1":"2014-10-08T06:44:25.198Z","0.2.2":"2014-10-08T14:47:42.044Z","0.3.0":"2014-10-18T20:37:49.687Z","0.3.1":"2014-10-26T12:19:53.648Z","0.3.2":"2014-11-02T01:54:55.176Z","1.0.0":"2015-01-26T12:31:14.445Z","1.1.0":"2015-02-13T08:39:54.029Z","1.0.1":"2015-02-13T08:40:41.452Z","1.0.2":"2015-02-13T09:26:45.295Z","1.0.3":"2015-02-23T03:07:50.256Z","1.0.4":"2015-02-23T03:54:44.779Z","1.1.1":"2015-03-12T02:06:09.041Z","1.1.2":"2015-03-25T09:55:54.883Z","1.1.3":"2015-03-29T00:23:50.138Z","1.1.4":"2015-05-03T18:48:09.629Z","1.1.5":"2015-06-02T21:19:16.614Z","1.2.0":"2015-09-02T10:50:26.319Z","1.2.1":"2015-09-02T10:56:13.066Z","1.3.0":"2015-10-29T03:28:50.244Z","1.3.1":"2015-10-29T03:46:15.492Z","2.0.0":"2015-10-29T07:30:40.184Z","2.0.1":"2015-12-11T00:50:19.996Z","2.0.2":"2015-12-11T01:36:17.515Z","2.0.3":"2016-01-19T13:31:00.895Z","2.0.4":"2016-03-27T15:22:57.068Z","2.0.5":"2016-03-27T15:24:12.030Z","2.0.6":"2016-06-18T08:27:49.973Z","3.0.0":"2018-01-30T19:06:46.294Z","3.0.1":"2018-03-07T05:27:53.926Z","4.0.0":"2025-01-28T15:02:13.144Z","4.0.1":"2025-02-05T05:10:09.661Z"},"readmeFilename":"README.md","homepage":"https://github.com/jonschlinkert/get-value"}