{"_id":"data-store","maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"brian.woodward@gmail.com","name":"doowb"}],"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","kv","key-value","local","object","options","own","persist","save","set","storage","store","union","write"],"dist-tags":{"latest":"4.0.3"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Easily persist and load config data. No dependencies.","readme":"# data-store [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W8YFZ425KND68) [![NPM version](https://img.shields.io/npm/v/data-store.svg?style=flat)](https://www.npmjs.com/package/data-store) [![NPM monthly downloads](https://img.shields.io/npm/dm/data-store.svg?style=flat)](https://npmjs.org/package/data-store) [![NPM total downloads](https://img.shields.io/npm/dt/data-store.svg?style=flat)](https://npmjs.org/package/data-store) [![Build Status](https://travis-ci.org/jonschlinkert/data-store.svg?branch=master)](https://travis-ci.org/jonschlinkert/data-store)\n\n> Easily persist and load config data. No dependencies.\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- [Install](#install)\n- [Usage example](#usage-example)\n- [API](#api)\n- [Options](#options)\n- [Example: setting path options](#example-setting-path-options)\n- [About](#about)\n\n_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/) (requires [Node.js](https://nodejs.org/en/) >=8):\n\n```sh\n$ npm install --save data-store\n```\n\n## Usage example\n\nBy default a JSON file is created with the name of the store in the `~/.config/data-store/` directory. This is completely customizable via [options](#options).\n\n```js\n// create a config store (\"foo.json\") in the current working directory\nconst store = require('data-store')({ path: process.cwd() + '/foo.json' });\n\nstore.set('one', 'two'); \nconsole.log(store.data); //=> { one: 'two' }\n\nstore.set('x.y.z', 'boom!');\nstore.set({ c: 'd' });\n\nconsole.log(store.get('e.f'));\n//=> 'g'\n\nconsole.log(store.get());\n//=> { name: 'app', data: { a: 'b', c: 'd', e: { f: 'g' } } }\n\nconsole.log(store.data);\n//=> { a: 'b', c: 'd', e: { f: 'g' } }\n```\n\nYou may also access the `Store` class if you need to extend or modify the class:\n\n```js\nconst { Store } = require('data-store');\n\nclass MyClass extends Store {\n  constructor(...args) {\n    super(...args);\n  }\n}\n```\n\n## API\n\n### [Store](index.js#L34)\n\nInitialize a new `Store` with the given `name`, `options` and `default` data.\n\n**Params**\n\n* `name` **{String}**: Store name to use for the basename of the `.json` file.\n* `options` **{object}**: See all [available options](#options).\n* `defaults` **{object}**: An object to initialize the store with.\n\n**Example**\n\n```js\nconst store = require('data-store')('abc');\n//=> '~/data-store/a.json'\n\nconst store = require('data-store')('abc', { cwd: 'test/fixtures' });\n//=> './test/fixtures/abc.json'\n```\n\n### [.set](index.js#L76)\n\nAssign `value` to `key` and save to the file system. Can be a key-value pair, array of objects, or an object.\n\n**Params**\n\n* `key` **{String}**\n* `val` **{any}**: The value to save to `key`. Must be a valid JSON type: String, Number, Array or Object.\n* `returns` **{Object}** `Store`: for chaining\n\n**Example**\n\n```js\n// key, value\nstore.set('a', 'b');\n//=> {a: 'b'}\n\n// extend the store with an object\nstore.set({a: 'b'});\n//=> {a: 'b'}\n```\n\n### [.union](index.js#L113)\n\nAdd the given `value` to the array at `key`. Creates a new array if one doesn't exist, and only adds unique values to the array.\n\n**Params**\n\n* `key` **{String}**\n* `val` **{any}**: The value to union to `key`. Must be a valid JSON type: String, Number, Array or Object.\n* `returns` **{Object}** `Store`: for chaining\n\n**Example**\n\n```js\nstore.union('a', 'b');\nstore.union('a', 'c');\nstore.union('a', 'd');\nstore.union('a', 'c');\nconsole.log(store.get('a'));\n//=> ['b', 'c', 'd']\n```\n\n### [.get](index.js#L138)\n\nGet the stored `value` of `key`.\n\n**Params**\n\n* `key` **{String}**\n* `returns` **{any}**: The value to store for `key`.\n\n**Example**\n\n```js\nstore.set('a', {b: 'c'});\nstore.get('a');\n//=> {b: 'c'}\n\nstore.get();\n//=> {a: {b: 'c'}}\n```\n\n### [.has](index.js#L164)\n\nReturns `true` if the specified `key` has a value.\n\n**Params**\n\n* `key` **{String}**\n* `returns` **{Boolean}**: Returns true if `key` has\n\n**Example**\n\n```js\nstore.set('a', 42);\nstore.set('c', null);\n\nstore.has('a'); //=> true\nstore.has('c'); //=> true\nstore.has('d'); //=> false\n```\n\n### [.hasOwn](index.js#L191)\n\nReturns `true` if the specified `key` exists.\n\n**Params**\n\n* `key` **{String}**\n* `returns` **{Boolean}**: Returns true if `key` exists\n\n**Example**\n\n```js\nstore.set('a', 'b');\nstore.set('b', false);\nstore.set('c', null);\nstore.set('d', true);\nstore.set('e', undefined);\n\nstore.hasOwn('a'); //=> true\nstore.hasOwn('b'); //=> true\nstore.hasOwn('c'); //=> true\nstore.hasOwn('d'); //=> true\nstore.hasOwn('e'); //=> true\nstore.hasOwn('foo'); //=> false\n```\n\n### [.del](index.js#L212)\n\nDelete one or more properties from the store.\n\n**Params**\n\n* `keys` **{String|Array}**: One or more properties to delete.\n\n**Example**\n\n```js\nstore.set('foo.bar', 'baz');\nconsole.log(store.data); //=> { foo: { bar: 'baz' } }\nstore.del('foo.bar');\nconsole.log(store.data); //=> { foo: {} }\nstore.del('foo');\nconsole.log(store.data); //=> {}\n```\n\n### [.clone](index.js#L236)\n\nReturn a clone of the `store.data` object.\n\n* `returns` **{Object}**\n\n**Example**\n\n```js\nconsole.log(store.clone());\n```\n\n### [.clear](index.js#L251)\n\nClear `store.data` to an empty object.\n\n* `returns` **{undefined}**\n\n**Example**\n\n```js\nstore.clear();\n```\n\n### [.json](index.js#L269)\n\nStringify the store. Takes the same arguments as `JSON.stringify`.\n\n**Params**\n\n* `replacer` **{Function}**: Replacer function.\n* `indent` **{String}**: Indentation to use. Default is 2 spaces.\n* `returns` **{String}**\n\n**Example**\n\n```js\nconsole.log(store.json(null, 2));\n```\n\n### [.save](index.js#L303)\n\nCalls [.writeFile()](#writefile) to persist the store to the file system, after an optional [debounce](#options) period. This method should probably not be called directly as it's used internally by other methods.\n\n* `returns` **{undefined}**\n\n**Example**\n\n```js\nstore.save();\n```\n\n### [.unlink](index.js#L320)\n\nDelete the store from the file system.\n\n* `returns` **{undefined}**\n\n**Example**\n\n```js\nstore.unlink();\n```\n\n## Options\n\n| **Option** | **Type** | **Default** | **Description** |\n| --- | --- | --- | --- |\n| `debounce` | `number` | `undefined` | Disabled by default. Milliseconds to delay writing the JSON file to the file system. This can make the store more performant by preventing multiple subsequent writes after calling `.set` or setting/getting `store.data`, but comes with the potential side effect that the config file will be outdated during the timeout. To get around this, use data-store's API to [(re-)load](#load) the file instead of directly reading the file (using `fs.readFile` for example). |\n| `indent` | `number∣null` | `2` | The indent value to pass to `JSON.stringify()` when writing the file to the fs, or when [.json()](#json) is called |\n| `name` | `string` | `undefined` | The name to use for the store file stem (`name + '.json'` is the store's file name) |\n| `home` | `string` | `process.env.XDG_CONFIG_HOME` or `path.join(os.homedir(), '.config')` | The root home directory to use |\n| `base` | `string` | `path.join(home, 'data-store')` | The relative sub-folder to join to `home` for data-store config files. |\n| `path` | `string` | `...` | Absolute file path for the data-store JSON file. This is created by joining `base` to `name + '.json'`. Setting this value directly will override the `name`, `home` and `base` values. |\n\n## Example: setting path options\n\nYou can set the store path using `options.path`:\n\n```js\nconst os = require('os');\nconst path = require('path');\nconst store = new Store({\n  path: path.join(os.homedir(), '.config/my_app/settings.json')\n});\n\nconsole.log(store.path);\n// '~/.config/my_app/settings.json'\n```\n\nOr you can set the path using a combination of path parts. The following is equivalent to the previous example:\n\n```js\nconst os = require('os');\nconst store = new Store({\n  home: os.homedir(),\n  base: '.config/my_app',\n  name: 'settings'\n});\n\nconsole.log(store.path);\n// '~/.config/my_app/settings.json'\n```\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* [get-value](https://www.npmjs.com/package/get-value): Use property paths like 'a.b.c' to get a nested value from an object. Even works… [more](https://github.com/jonschlinkert/get-value) | [homepage](https://github.com/jonschlinkert/get-value \"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!).\")\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): Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths. | [homepage](https://github.com/jonschlinkert/set-value \"Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.\")\n* [write](https://www.npmjs.com/package/write): Write data to a file, replacing the file if it already exists and creating any… [more](https://github.com/jonschlinkert/write) | [homepage](https://github.com/jonschlinkert/write \"Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.\")\n\n### Contributors\n\n| **Commits** | **Contributor** |  \n| --- | --- |  \n| 168 | [jonschlinkert](https://github.com/jonschlinkert) |  \n| 4   | [doowb](https://github.com/doowb) |  \n| 3   | [nytamin](https://github.com/nytamin) |  \n| 2   | [tunnckoCore](https://github.com/tunnckoCore) |  \n| 1   | [jamen](https://github.com/jamen) |  \n| 1   | [ArtskydJ](https://github.com/ArtskydJ) |  \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 © 2019, [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 September 13, 2019._","repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"users":{"jian263994241":true,"rbecheras":true,"jonschlinkert":true,"fabioper":true},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","versions":{"0.3.3":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.3.3","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"clone-deep":"^0.1.1","delete":"^0.1.5","extend-shallow":"^0.2.0","graceful-fs":"^3.0.4","kind-of":"^0.1.2"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"1688b1ba3939bec14330effec299880be1e3c1fd","_id":"data-store@0.3.3","_shasum":"87d6b1347f39e6677f4118be1b5e2ec8cffaacae","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"87d6b1347f39e6677f4118be1b5e2ec8cffaacae","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.3.3.tgz","integrity":"sha512-xvSuvWD6wOFjZU3duFeuxx4TF8pqekggVBnTxiTHB3UFszpBXegH23dTMcHmwQ+f6Vfi0YktS9KpLpVh8Te/ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUG2RfKad9FOtAdegQ+TC9cDxkBPuAihK5aS0t9kyz+AIhANs0CyOfBGOL05tGDCeYwffaaRBgZXOlkC3X1bBook2t"}]},"directories":{}},"0.6.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.6.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^2.0.1","component-emitter":"^1.2.0","get-value":"^1.1.4","graceful-fs":"^3.0.6","has-value":"^0.2.0","kind-of":"^1.1.0","mixin-deep":"^1.1.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","set-value":"^0.1.6"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"7d77986388263d0d504f86f5da3c183d73e958b1","_id":"data-store@0.6.0","_shasum":"3184c9eabb05f64d535b1876476e55375e39f656","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"3184c9eabb05f64d535b1876476e55375e39f656","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.6.0.tgz","integrity":"sha512-lda1/bLjZPUIvgPSedGFLgixrIqDOT33WiShgjzexbRQI0nbDZC8xUx2JiKIUf3tPsg7r40jDTKY5lPuxWaAoQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtRyQv/ngjqjz7SVqaE58bUZW3YSy+iiXsIr2Qp1A8pgIgEnxUrRKzFroEK0/4j5JbZlFVqT8kkyz5sbD1Ds8VmrY="}]},"directories":{}},"0.3.4":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.3.4","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"clone-deep":"^0.1.1","delete":"^0.1.5","extend-shallow":"^0.2.0","graceful-fs":"^3.0.4","kind-of":"^0.1.2"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"4292152a787094a52ee533baba43de3163bb5d3d","_id":"data-store@0.3.4","_shasum":"dacf3fc7fd857b7b91a6a362d3eeb083e2959ab4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"dacf3fc7fd857b7b91a6a362d3eeb083e2959ab4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.3.4.tgz","integrity":"sha512-6KVeT2qGWppAfvkYooUm0zvGWvYYl/IcznzFdYEQhj98dlV8gqGe7p1m1HkJfvpKDs39r/AcsoL9Wd/SfetaVg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCahIirctJ0fzkmvS6tkfuIKgeW8Vpcn7ZWlQoZdfYnyAIhALDoZvYCsZYo4b/iyUnbg1LmDc10x6RmYwFnlx5U9jEF"}]},"directories":{}},"0.6.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.6.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^2.0.1","component-emitter":"^1.2.0","get-value":"^1.1.4","graceful-fs":"^3.0.6","has-value":"^0.2.0","kind-of":"^1.1.0","mixin-deep":"^1.1.0","mkdirp":"^0.5.0","rimraf":"^2.3.3","set-value":"^0.1.6"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"cc2c834202793204c6f8a31d3a0c629286dac88f","_id":"data-store@0.6.1","_shasum":"84f99d8b767f9f4923e6f9f993f554ff5bfc9fd9","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"84f99d8b767f9f4923e6f9f993f554ff5bfc9fd9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.6.1.tgz","integrity":"sha512-kxeWzpLU5Gw0y+CzGJ0syn2OxGyiZw4LOaNRb8sv7Uu/M8/Ye/6973fzKMcbVH/a5XpxrJcUCje6oq/4N2uJcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpQFXO1Jt5d8HK7Iu4A/knqgELMZRwuObaZejKKhzmeAIhAI71jCMe5a1/Zg31pO8/pXHbGLrQp9KXyTCx923EYFAC"}]},"directories":{}},"0.3.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.3.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE-MIT"},"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"dependencies":{"clone-deep":"^0.1.1","delete":"^0.1.5","extend-shallow":"^0.2.0","graceful-fs":"^3.0.4","kind-of":"^0.1.2"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"d091470774542c5cc17fd51b8eb5f7874b43179c","_id":"data-store@0.3.1","_shasum":"84c7d6952f0488441b2ea5898a32705231749fe8","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"84c7d6952f0488441b2ea5898a32705231749fe8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.3.1.tgz","integrity":"sha512-QXDYWRWbQaDfS3x4f8E08MO0zsG6G1V30O4LUCL5qTxV0d66ycVNql2bshLS4ZSWCocumb+uJr1lDu/DUlg3CQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbUmdk5KJukvqRyPuksa7MkOpu/SfK+1nFXBMEUNklpAIgXYjm90ehOen4D010wJScVVItBAtJ7Mr9ScT9BU8kpvY="}]},"directories":{}},"0.4.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.4.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"get-value":"^1.1.2","graceful-fs":"^3.0.6","has-value":"^0.2.0","kind-of":"^1.1.0","mixin-deep":"^1.0.1","mkdirp":"^0.5.0","rimraf":"^2.3.2","set-value":"^0.1.3"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"d68f40e6d4715b316b6c5b974ecb45a445e9a13d","_id":"data-store@0.4.0","_shasum":"5ab28f655f570390e553b7df66000b6e147cbf59","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"5ab28f655f570390e553b7df66000b6e147cbf59","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.4.0.tgz","integrity":"sha512-lRy4gfiIF6DO6jP/UYwnHTvhG6bu1OkTk8MJAevGYCGsGYSn5me0WLJQFpL70YO9+Xw0fb2LfzNFoSh+Bg+4ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCfGKLrUwsrq97Czkaz/IBVBTy94l6O7tqaJGHB7YGSJQIhALIH7BFtRoxkguNTplpKIujQRgQfQoUAf6jPTGFbPvVG"}]},"directories":{}},"0.3.2":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.3.2","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"clone-deep":"^0.1.1","delete":"^0.1.5","extend-shallow":"^0.2.0","graceful-fs":"^3.0.4","kind-of":"^0.1.2"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"7eadfd2b2b5f0f88e11e4a0a978d24159509f9b8","_id":"data-store@0.3.2","_shasum":"f3ab017d94e569f89570b55926a8e86ff8827e03","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f3ab017d94e569f89570b55926a8e86ff8827e03","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.3.2.tgz","integrity":"sha512-vznGbd+VWa43N5ctZRR2oPjnN40GW5Qg+8XryiXXto8agvt8lzNUErGEsiWhRqHQjOO+lEPyTxvUMHIzIdTvvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCe+pR0HFuMS9cNwRzacM5+z8H7WWRUN2B2I7p8x4CdMwIgGkoSiAoM2IzWL6kyYk+hlkFZ/0jhwlipCYeA+UgmEF4="}]},"directories":{}},"0.4.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.4.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"get-value":"^1.1.2","graceful-fs":"^3.0.6","has-value":"^0.2.0","kind-of":"^1.1.0","mixin-deep":"^1.0.1","mkdirp":"^0.5.0","rimraf":"^2.3.2","set-value":"^0.1.3"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"d68f40e6d4715b316b6c5b974ecb45a445e9a13d","_id":"data-store@0.4.1","_shasum":"f66014fbb4ec107685c0c13c513ac0762baa8062","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f66014fbb4ec107685c0c13c513ac0762baa8062","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.4.1.tgz","integrity":"sha512-UJlhl4KfeLUqGDACrbkBdZ1OBe1wV3Q8Z8UrRYuEEYtuH4hgX9gboWwU8q9oPJWs5FfZpT+c5ZZUOjvd4oWKyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUBQNzGZCCQw47w0aL8AiBeMTVOD3KiIQnjjLcn+b8WgIhANZ7GxBbudBqosnSeFM2J89eXLngpRZL6zg1JPf3rYpo"}]},"directories":{}},"0.5.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.5.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"arr-union":"^2.0.1","component-emitter":"^1.2.0","get-value":"^1.1.2","graceful-fs":"^3.0.6","has-value":"^0.2.0","kind-of":"^1.1.0","mixin-deep":"^1.0.1","mkdirp":"^0.5.0","rimraf":"^2.3.2","set-value":"^0.1.3"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"7d77986388263d0d504f86f5da3c183d73e958b1","_id":"data-store@0.5.0","_shasum":"77a8e4faede7c1bfd8b0066ca6aa3adc53eb6caf","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"77a8e4faede7c1bfd8b0066ca6aa3adc53eb6caf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.5.0.tgz","integrity":"sha512-CigkuHj0uRxjdTKa7W2z+L4GhZAFL/Gcv/JWlYDw9ObsNYH1NUINcoLhpELGQATigyGIJzsLWW1n9q3bNPE1yQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICzAG1gi3cJ6Oop/HU7Ysh9QIpKUcTFGssFM8Jwkd6viAiAGGVrchasI3uZPJu9tSO9EUBkhTJkCTcf34Mn3cVk93g=="}]},"directories":{}},"0.8.2":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.8.2","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"collection-visit":"^0.1.1","component-emitter":"^1.2.0","extend-shallow":"^2.0.1","get-value":"^1.1.5","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.0","lazy-cache":"^0.2.2","mkdirp":"^0.5.1","object.omit":"^2.0.0","rimraf":"^2.4.2","set-value":"^0.2.0","union-value":"^0.1.1"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"a874e18d407b0cee4c826573bc25e714d5eb9304","_id":"data-store@0.8.2","_shasum":"8c39c872520d07e8954d4ff0cf2d73b6299c5dfb","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"8c39c872520d07e8954d4ff0cf2d73b6299c5dfb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.8.2.tgz","integrity":"sha512-Rs2PM9oGRCotfSZJKXqjOPGSdc+1CYDCAnH3JlM6UfWX8Urjb9jYLkdB+zgjpBbPMlBAI5R/eHrhgs+ioJ5QbA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFsgi63FvYGw1YFDSXAqN6W2ix9F9pcKEqMXW7y1WNBSAiEAk8r8iEb9ommenCUnzaDSsasYEfyg9csysAn1RM5ZenY="}]},"directories":{}},"0.8.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.8.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"component-emitter":"^1.2.0","extend-shallow":"^2.0.0","get-value":"^1.1.4","graceful-fs":"^3.0.6","has-value":"^0.2.0","kind-of":"^1.1.0","lazy-cache":"^0.1.0","map-visit":"^0.1.0","mkdirp":"^0.5.0","object-visit":"^0.1.0","object.omit":"^1.1.0","rimraf":"^2.3.3","set-value":"^0.1.6","union-value":"^0.1.1"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["app","cache","cli","command","config","config-store","configstore","defaults","hash","json","local","object","options","save","storage","store","write"],"gitHead":"c8ca29847322cfc43bf8af0b24bbdacd6c195593","_id":"data-store@0.8.0","_shasum":"f098067855b8326ebb71e4c3e9612bf52bccee66","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f098067855b8326ebb71e4c3e9612bf52bccee66","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.8.0.tgz","integrity":"sha512-7duoBMSeiHzSWkCfNVEa0S/wNQdDnMLh2TkJNVyiNMUl1t3M8v2By8O9bUPWc91ha2ZrQkri+GkPW1SjCuBAPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB5DwvxCz1J9/whqTNoEGHxQnECVbM/LetX0bheqkBYHAiBYpo5O5gcIIOrjGWnLIf9FG65yObQC+jkXZ6QFVE34sw=="}]},"directories":{}},"0.8.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.8.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"collection-visit":"^0.1.0","component-emitter":"^1.2.0","extend-shallow":"^2.0.1","get-value":"^1.1.5","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.0","lazy-cache":"^0.1.0","mkdirp":"^0.5.1","object.omit":"^2.0.0","rimraf":"^2.4.2","set-value":"^0.2.0","union-value":"^0.1.1"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"48305e8a71076079ccdb4e2300446d12cd7af216","_id":"data-store@0.8.1","_shasum":"725d40a3a0a85e6e1b318edb366a3729417890b2","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"725d40a3a0a85e6e1b318edb366a3729417890b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.8.1.tgz","integrity":"sha512-XU5kRELIoL2FhamfySlqx+nQm3BpujPCMVRMSdhwdPa82MUuFNwkuTf/CUpH7lsJh9hzTAoxLRTuWH7j6j/s4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDr/ol4lgexZ8mJRMUGABzYmBGRRN1s3qAu1XTDkYg5fQIgQp3sJ4+NzQJGU/e8bXtbBRqxz3Bi/f5yOpWKboLPpNY="}]},"directories":{}},"0.9.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.9.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"collection-visit":"^0.2.0","component-emitter":"^1.2.0","extend-shallow":"^2.0.1","get-value":"^1.1.5","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.1","lazy-cache":"^0.2.3","mkdirp":"^0.5.1","object.omit":"^2.0.0","rimraf":"^2.4.3","set-value":"^0.2.0","union-value":"^0.1.1"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"1343230ccd56f3658f81adb7de1866707cf0726e","_id":"data-store@0.9.0","_shasum":"f73d8bd6159f640261840fb33f62ae28a81e7747","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f73d8bd6159f640261840fb33f62ae28a81e7747","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.9.0.tgz","integrity":"sha512-BmZqkJaC7Xmo///GFxVD3ZJahcWYMiph19ii8Msl8IKoXoTShChSFXMIBd1+q8+v0qNoIMIhZL3L8IebGS9a5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCN8BuMQAqPFl/vzg7OkM6B14TNv8Yj4ayd/J/eazB8cgIgRhtZbxxKzu5fAEU/9ogPbyS36IPGf9rZqVn4AFXP+p4="}]},"directories":{}},"4.0.2":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"4.0.2","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"dependencies":{"get-value":"^3.0.1","set-value":"^3.0.1"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^2.0.0","mocha":"^6.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","kv","key-value","local","object","options","own","persist","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"fa14476dea959782972221ab184df9b1264a69a7","_id":"data-store@4.0.2","_nodeVersion":"12.7.0","_npmVersion":"6.10.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-QGy9O9Ck8+3Lx6224Sqyhw3+R/r4SpFhAoOPxlomIhsz4aZQFOabKoRj9KzE3Uit4QHwXe+F3Ag30GlY7QMxWg==","shasum":"25b520bdf880b831c26bf83f2d94ca5fac4d5d3e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-4.0.2.tgz","fileCount":6,"unpackedSize":34241,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde2mgCRA9TVsSAnZWagAAmAUP/0xz/RHuEAAlIEDOytVo\nVvESJTfOZwR+c6XQYg7NIYr8dVVYMvUBa2LgKo4JF88KMkZ8BUEeQ2hCMT5y\nUo22zYpcQnerOmFWX/yLy5X4cQRx8H/vleT/spFXRUo5PPhF9tjt+qTs0zq7\nDKUy4XeEq7t9bbd/3P9f/NqPnbf2jxrKEyywiyetVcqffJE9sxfUw5NyUmZP\nARQJpXvkXvUqIHqbRgdpbC1NBZKNNUhaAS1Yin5Sn8VVDSXXbDND7F4EQb4x\nn77zUtUoaqLrIDShpx2Y/gbVDofum4IPQI9ONzObaFtelAV55up8sJgINxpY\nuKn9sC1k2bwsCBi7XUVTD8wwWB7WvD98i0ObocimLIDTwlgSdHpwfvnzwq8T\nj1JsQkWcRzrp5nwhywXdwDdIuQTEGOu7uvvnkr+9MfJcNn3NakjhBFh2V1/e\n98m5DrUOnndfvVkiMyfIX2cBXyubka2k6WHhyg+gvGZtSf80hGs/EzzpBSVZ\nf94ypUaQMmqgaJIvZJDWHKta9Lvd20JqoQqKWHuANPq1+tm/M84Un1Q+MSCx\nGK0HYM/L1tyYyD/YFakdHS9zz4xhGjd2HLQe+ar88MQ/qYEAvKxdspENYMzx\nC5XKZAIM0waA5k5Ax6h0by9t3HvhVXu13s2XHHRgd+uJHXRG69laTzYSqdBa\nPyZM\r\n=6py+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIl2GrgBR4mb5wT/leii52I/eatUD/ArhQVyL683ZZ6wIgC7B02d1e8DZU7+5T0sJQujHA/lBKvgsNfn22h8c2x7g="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_4.0.2_1568369056241_0.4537145503066724"},"_hasShrinkwrap":false},"4.0.3":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"4.0.3","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"dependencies":{"get-value":"^3.0.1","set-value":"^3.0.1"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^2.0.0","mocha":"^6.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","kv","key-value","local","object","options","own","persist","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"037d1b730646a2dc33dedc49b2248d35a76630e0","_id":"data-store@4.0.3","_nodeVersion":"12.7.0","_npmVersion":"6.10.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-AhPSqGVCSrFgi1PtkOLxYRrVhzbsma/drtxNkwTrT2q+LpLTG3AhOW74O/IMRy1cWftBx93SuLLKF19YsKkUMg==","shasum":"d055c55f3fa776daa3a5664cf715d3fe689c3afb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-4.0.3.tgz","fileCount":6,"unpackedSize":34292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde24SCRA9TVsSAnZWagAAPZsP/jRm0xGCIbJ6WhBhIXBe\nmWvZmYsbolsUT2HslEbPVOatC0S+one5W7h1P6wxavDz38nKepF2poOY+nuE\n2eHv8IysVo6/wAHMCFWTfe39R57hbcpcd8bJ8cwbSh019x0SR4rGUQM3+rQw\nbOEB5tGUqfpcMFEWfTpkaRjpBQ9hObM9z2k6B3tvSwPs4R2C8DZwV9T3lckb\nnXnlih01RD/7egvQaPR5zNnAfZHZvgmtP8Hs56XqB9tcedJBbizfMnQKJjCZ\nK92cjq5lcGBU4AG5B47HVDe5NLkCpo+nwsxmW5NcOTjc+5fopILIP6i+qKAz\nyphslGQYtz3MAtfshBIjM9/fgDRV62OCpo3aoKpecZKNrhLNordv6zaqNvFs\n8S1sCCc1jUUDIwAwRHnAUN+4KHBlPFX65X5/PFTofDRTJ5E7D+RX5CWwHeeq\nn/pWZibyjTb+YVPcXOvWqkc0XlxWkk65O5bniK2ZOnch3zVAJademB8hnvBu\nAM4m4qeUp2wbhMJ3pok44yMM5kl5mh/O4TphM5N6Zr+QLEDYTqrQtTRu6zQT\n5Ce8Jl1mFWCqsfimuueOdNaTd1XHlrcfOEXaJK78hB9cgbWa4Ydp5qTx4EV0\nuUencblI685QUn3yvktG36K7m904/aqFBw2IlD20vZldpF2R1Tnst2WZflwk\nWLWF\r\n=pKdy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDeaQUuD8kVxzpxN9DzCRqE1Ltuh56PzMKrk+5Ze81arAiEAzGNWxYlTuMFyf8L7iiQ9LvMYfrh9i48D9eJayluj2V4="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_4.0.3_1568370193345_0.3247698751441317"},"_hasShrinkwrap":false},"4.0.0":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"4.0.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"dependencies":{"get-value":"^3.0.1","set-value":"^3.0.1"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^2.0.0","mocha":"^6.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","kv","key-value","local","object","options","own","persist","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"fe391e3aa253b9cd662d3a06be29414d85ef93f7","_id":"data-store@4.0.0","_nodeVersion":"12.7.0","_npmVersion":"6.10.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-BKNXQUZIzTqc2Kgg148NDH766pI/tItOUaHsEmPhugRs3Yby1AKKaC7sNi4dDfEED4TtFtNkukVKzJqtVlRXPQ==","shasum":"9cda4f9351c4250a6e591a50ccf0e6a91ea35959","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-4.0.0.tgz","fileCount":5,"unpackedSize":30712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde2dvCRA9TVsSAnZWagAA5AIP+wWmhgHkRDYHpEI/Cxzs\nX5eiyRy5ycZBeztJsZ/7rCB904br8PkVUNgTJTcxHVhhvq8Y/4w32zss3pA/\nKft5oXFtF8Fkzs+8dBSUn9g619t33JvtH5jWqQvi/Zqtc6sHDrJKHjtHxpkP\ns2AGs/3Fpni2jsETK21XHcmi1NAj2WKUfrKKgfQBmWr/LhHUrqbbjwQpPeLK\ntrsailybccNjefzpl1nkQecg/Jd2SxWK5FhYYLvcbxJgVdE3HWFHuWb8yglf\naYRYXBUJ7TYBOAdzMLy6McmpxU4dATlrfxg1yLAqAfNhclLWZ1EDf5ph6qCn\nfq/t+SToIPrZTsLQPjckaUlb1okRoDatpdDtnpj63GACpRhDi/PmWKYiV9yU\n/Bs3t0vOlJhi+GFzsejAZvlT0hHanKPl3Zql5CVnXvnF2fiT39wKPO95XgDL\nrRGbX7kI2Q6gJAYXYfAgiQTcHFJy8uEnog/08FJdc1C2lSXgZpCeAKOO8Xtr\neGBXMVfzIfd8+GsQGEJuekuYhByw9rFH/bqWa6cVI10QZM58BSkJyv3sPO/w\nOhuBHdUMeuwMuXCafqwRg/NzHw/Jzq2+aZ9szs59DvD/JcIfwoDwAgVKg/py\npXoH5C6gX3/HwOtMUiqValUeqqhsMr7edhXtXceB3hS07f9ZId3LYXyvNrOz\nM1T0\r\n=eIQ9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGzwoZ7G1zT6IB3VV0Xypq8PHe/symt/rUmTL9vtC6A8AiEAuRtYtmYGuiLIb3wvIHm2YTMpzqHM68Djizv00eLXJJ8="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_4.0.0_1568368495122_0.013316054997240423"},"_hasShrinkwrap":false},"4.0.1":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"4.0.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"dependencies":{"get-value":"^3.0.1","set-value":"^3.0.1"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^2.0.0","mocha":"^6.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","kv","key-value","local","object","options","own","persist","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"c8a24d557b1074e75b1fce4a8708db58a09234e9","_id":"data-store@4.0.1","_nodeVersion":"12.7.0","_npmVersion":"6.10.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-WEMHMeP4EOYoU4i6LibapxC/q4XZANGdRMSvBACrk4esD/RR53DY1GibTkqulPEYNeypznSN63Pxr1dEcgwhYA==","shasum":"f43b4f84b16c757d50c562bc4a6da510cec1a7d0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-4.0.1.tgz","fileCount":6,"unpackedSize":34218,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde2fmCRA9TVsSAnZWagAAh6MP/2+afjcup5sKLYu97gQP\naFxdfTXDTOXlELX/1yU7Rv6kh76w9KjqggNZdOZmulFrH5+HSaxHsV4A55Vh\nvBmw5U06J4n8jPSKZL6EV3ggKZPntx5nIYZIPzFSxBrqOZ8w8et109jg1ICl\nIim+mu2jylQ2Rbc23/OIiFOv13K6R7EV2t2/lHieeITCIH38JbpzGWuZW3hq\nrrR1lwETkRVuinTF2Ek0feVhAleMm+WxwMc1AMREH253AkB5VfJmQ/PxnD1n\nV224rF6bJTYVjSELVjQp4ZG7Bx/T8JRsNsVGhL9uc7diDIxKkxM0m1KWT4+r\nNu7JvUickkSdNmnu0HCHbBf2Y9gdjCy49q9OkzcA87gAsMqA9jW+MJw+owMZ\n2AD+jSa4ypRVbM6hk0eK91RUmLMKNWcIvg4lwGUl+q0M9wYfDJGYjbGVM3Xc\n/jOhKT+tPT3QI5ZnRxnEL+Ojpw1gc59qNk9u8rNi+iCE3hDZis2rUC0S4uyY\n0dYdnjztg+6tfrXHbW2CahRQxSBZ/i+rCs8U6ly0/rFLXBhJDoGypngcRJ9C\nhQZ2xzUhvOuwlNlK9LkM1MPKbvgDEqxoUw0duzgPokDw5ubxcyzjxRGhCNAK\nMKnqjLrns1++ig2SZxDGNChJ0kBfg40vzBDNyEmqhmhQA/QKySg4uHa1pvZd\nYg/k\r\n=aWhi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6KVVYlV/ACMMuQr7EHy+9wtJD9ey10zYhHEJBjaunRAIhALniqR1DpUu3nO9jpTmPt0zE/C6KHpwqcFTlIE+uCcM1"}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_4.0.1_1568368614179_0.3131894039662497"},"_hasShrinkwrap":false},"0.1.1":{"name":"data-store","description":"Store data from YAML front matter in HTML data-attributes.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE-MIT"}],"keywords":["docs","documentation","generate","generator","markdown","templates","verb"],"main":"index.js","engines":{"node":">=0.8"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"verb":"~0.2.0","chai":"~1.9.1","mocha":"~1.18.2"},"dependencies":{"cheerio":"~0.15.0","fs-utils":"~0.4.1","gray-matter":"~0.3.5","lodash":"~2.4.1"},"_id":"data-store@0.1.1","dist":{"shasum":"4b3a2646bddc254ac97630287768ee89e565d875","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.1.1.tgz","integrity":"sha512-prLGN+XR9AHENZBO2g2pLg8nZCcygOeikJzP1s1QZf4xhU7C54CwuXG4iKCdUkd+ZILcf3032vGT7Wq9/4O9gg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH55SEbvVgdLusIBuiJwGDr9ZzMa7ocFsnF+B5Y3grAeAiA0GQtzPgOitxsXfCYWLNHS3jT90wfX8y+MJhTPjOYoDw=="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{}},"0.2.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.2.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","should":"*"},"keywords":["docs","documentation","generate","generator","markdown","templates","verb"],"dependencies":{"graceful-fs":"^3.0.4","kind-of":"^0.1.2","lodash":"^2.4.1"},"_id":"data-store@0.2.0","_shasum":"f08f8cf7ecdf4aaaecef8c96ecf64041ddec1b65","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f08f8cf7ecdf4aaaecef8c96ecf64041ddec1b65","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.2.0.tgz","integrity":"sha512-V1nsKSH6SK0d2usKzd35NaNcN7zxQNAZjP6sri3RJ2qpdCdrkk1tVlN23ga5GUwT0yY0BFSlegaDGfdXAPRdMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEW3BIpGqeYgxf+o99VYZ247NYcoArqEoYRN8osvwfukAiAHIhMz5WFnDppoLn6UmDuPEVnkzaD7N2u2VESIIx4WLw=="}]},"directories":{}},"0.3.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.3.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE-MIT"},"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"mocha":"*","should":"*"},"dependencies":{"clone-deep":"^0.1.1","delete":"^0.1.5","extend-shallow":"^0.2.0","graceful-fs":"^3.0.4","kind-of":"^0.1.2"},"keywords":["cache","config","defaults","fs","json","local","save","storage","store","write"],"gitHead":"59a5ea4a14d9484d4c309088f38d463a088c7b56","_id":"data-store@0.3.0","_shasum":"0dce96f0acaed8e3e5ac4b1f6396db3c1d123214","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"0dce96f0acaed8e3e5ac4b1f6396db3c1d123214","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.3.0.tgz","integrity":"sha512-qKX2BkzPIwV4EOgy/U49DGnNZZZzZoz3lNjAw+Cbvg//6/QdqSemUbgIpFf5Y1UnjxhjtljNcZU85BkoC6BA2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDMxWZeg/pbbLsO7Qofxlx61fvQ/OW3RDYCzgl3wMfYnAiEArZHuYTihS86xA7ELSX/HzSeurTKzfRK+Vy4bFZW5QE0="}]},"directories":{}},"0.1.0":{"name":"data-store","description":"Store data from YAML front matter in HTML data-attributes.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/data-store/blob/master/LICENSE-MIT"}],"keywords":["docs","documentation","generate","generator","markdown","templates","verb"],"main":"index.js","engines":{"node":">=0.8"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"verb":"~0.2.0","chai":"~1.9.1","mocha":"~1.18.2"},"dependencies":{"cheerio":"~0.15.0","fs-utils":"~0.4.1","gray-matter":"~0.3.5","lodash":"~2.4.1"},"_id":"data-store@0.1.0","dist":{"shasum":"76eedeab8d01b6e9da085ad29b4e358656489eb4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.1.0.tgz","integrity":"sha512-DEIM/fu4zWqH/oSEBOehUN2NQVzTvALvAx01x9Q1fGgGw4LlC4zhfcE6BmWDwtpPdExbr+NhzfpvbTiVzs2umw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCiRte/W1GBPyLknOtXMrmi2t7aIfYJG91E+qjlbEVLywIhAP64+hW5aBOWYSlSjpWVkndfa0aCbXg2uHywgSj6pDQj"}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{}},"3.0.0":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"3.0.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^3.5.3"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"8dadd48cc3ca9474f85d95120643be1e9948f104","_id":"data-store@3.0.0","_npmVersion":"6.0.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-O+OixtzxPU+Ck0NE0cuOHf50YvGUcW+BAnMJz8BBQoSL7jfSuM4LI5NSmjG+JsDM6WmmT1YYE6CrnZCjIB1wrA==","shasum":"1799c1f525095e460732f268de3f14c695b474a9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-3.0.0.tgz","fileCount":5,"unpackedSize":31803,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9PZ7CRA9TVsSAnZWagAAnM4P/2FiOQCmYNlZSbA25NAU\nX2rBaHQdofbQHwJINNcqaJxABWWJUKH614l0M0r37PfNosPfRNX5RcxMF5C1\nsOHHvQQImofyL9MdN6axI/NURVvNxbpYwcPjWe2tYAiPKey7evmsayQ7U8F9\nkSO1/BNL5GAxQZfGq4EH18Z7vruyZh+7P2/bYMAf0arcnYfQOIcuy3pARFMl\nV0OlEUF9NJQvOVrRnfXKDLKUpBHuDcUMnLCYCc1WuSli9wv6QWiVJmg/k7/i\nCnnlrfErDrAts2wMYC5RlIT7/VJhxsAPwAo3FJP1pW4tU8NLQdIxc9DOZJqh\napnQmkcI2SNGoLhl8jWRYl1TFTySkVABVgzzVrUBTBE4GW42EFb1Vn0sG5RS\nfyewYMPQ7No2YttGmDP/8whuklL74U1r2gs7Ie3cUWk6hx0qYRIs+sN29hR3\np38d5Z5XvLAtywmIbWmm0X4zlmurcOdy/YK1ON46MA5G2DfcMgqi6YRl/vYH\nvk2tVrS9cnzE+Emo1dm5lR2uWdPE3Z+I5zuL99yUJRvCfOHb4oSwPfXKJVoF\njHBsk3Fovq81NrqiDSSHdDfbZU6GMnuQKBYX2TvpVk8e85PE13UIv5dN6uVK\n+ZXp9tXETohlBn+Xcn2D0wKrb8zOXZcS3+w2egglGJMNS6WejgAeVcr2xobs\nRWMf\r\n=xqs+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCvnpBYSlb4iZ1nnnzMHBMTs3NlYIUxU/CZ1ujVKCfwpQIgSdhndKdcQ7Nkv1TkeGvebTNvycyJrQHvOATueYq6R5Q="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_3.0.0_1526003321488_0.4451554454208069"},"_hasShrinkwrap":false},"0.10.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.10.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-methods":"^0.2.14","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.1","lazy-cache":"^0.2.3","mkdirp":"^0.5.1","rimraf":"^2.4.3","union-value":"^0.1.1"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"a3518859977ddef06fd3cde623ebd0762a0ed3aa","_id":"data-store@0.10.0","_shasum":"ec832600ff709900c879f43bfc674f415f02d149","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ec832600ff709900c879f43bfc674f415f02d149","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.10.0.tgz","integrity":"sha512-BIz2NielIs9YYVSXwL7etvMHScXPccMhL9ScgbR6tGJ3pE2zjCb07X8JXvOI+jsGA/W8oAQgcTReul2kqY1SZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF40ofq/wh9JUvGgWTavqayDapyMDC442evaSJwHaBlcAiEAwnMkhfe3XayKe9JnmRWl3rDMGTosmuvQWNpFNjp2PdU="}]},"directories":{}},"3.0.1":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"3.0.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^3.5.3"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"ee65caadd670281b33c5f93eeccae549bf9a29d8","_id":"data-store@3.0.1","_npmVersion":"6.0.1","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-YAZ3vo9tbJ9brKZ9m4KidlrOXQESNd1OxNHCNeG7JdFVx+70UjG9faDnwfPUavE/xU3Ed/ioDevcwytCGQ/aOA==","shasum":"bf96dfac67b1c5153ef43592f3c74cbe185b9636","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-3.0.1.tgz","fileCount":5,"unpackedSize":32016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHZTXCRA9TVsSAnZWagAASCoP/iKUKeCSHM+IdNDCMQYt\nX1whtXEq2/VPqZskJXPSnsh7kzbNs4ipto5hFUSVUzUIQiFhILuNm1G6csGV\nZWnAKRao4VR9N7Jzbsy6Z365Mn+42ei1vgzL7A3hlxboPDFXWqofu2pf+kY2\n3Ror6TC/9jMQ0yUVN1fAXno5UMx34nT4MyJq1nRXI/9EU5mbmJoHWvtHCayQ\nyX2tw8fQDV2Zp89RkG84q55BZwhpY8kxsub16kLadFGyXM80LyikUAXgX36z\n2Zx88/Xj29cCaAm88Zx0TMIqQmzqZ90I5P3SxAZygwj7hpHHpwXNHpPSRAIZ\nZTbHgUzphpvgoTlWhviqiAko2YOK7gaTFPaTJTWMLqOkrK9FrQAmpG6T6PKy\nJ7DUa0BrmlCI4B8HAgXEWhzktt8qTc6X2UUWV/7u0iLzFq02dZzffcSVcBPR\nhbDGhxPqACtTrDuyWMe5FdfXZjxoi7kgMZ0+rmkfKkL2sRVaD2lfEIokhC19\nDb5Hue7fyp1wnwgKFKDoicwD08TR5I+g3pDgeGL0BoaILPj3XS2Q/Byyr/Mt\nuJLN62/jyAX3cPhCaJFqPXB4LGr1kzZCUxV/OiIcNizsn5VWX6DhsggDTSvu\nbZJl6O01aMLP11WWjYQ0r97KDY2fBwumKbEEoWSFrTmpmVCPZAiZ8pKElilQ\n/oOo\r\n=y+Zd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHb9Hm9rHGI5Uf96ZnxcMzhZPYaYDwc1J5jhJkJTKSv2AiAGkX3Db83KOBF8WujdBVE1wmQM5FnWaJdtGbOlogg2vA=="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_3.0.1_1528665302110_0.6587439847951229"},"_hasShrinkwrap":false},"3.1.0":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"3.1.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^5.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"de38f1721ba21e63ec6d36aab60f13bfde2dacb4","_id":"data-store@3.1.0","_npmVersion":"6.4.1","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-MjbLiqz5IJFD/NZLztrrxc2LZ8KMc42kHWAUSxD/kp2ekzHE8EZfkYP4nQy15aPMwV5vac2dW21Ni72okNAwTQ==","shasum":"9464f2c8ac8cad5cd0ebb6992eaf354d7ea8c35c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-3.1.0.tgz","fileCount":5,"unpackedSize":32269,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjmaOCRA9TVsSAnZWagAA9BwP/RJ2rIzvjSztU57YCg3Q\n13mafJyE67y2vQMp3CCHP812q7gSJnNFf7CPA0Qmh28PijspggwPcCtGTBsw\nzW5aGW0arWP5cZ7N0e9DHM5RCBgIxCVxLPg+/hiP83Tpu6vkUqrOMELr5WAe\n5Or51Hu8d+0mQ/SORByzozlSoWUGWqiQqbu1BvfBz5h9zhqY4OEX6Iom6mMB\n9bXyn3oDX9lTEXnEXAsRjF0AFDM/oIuSH5d1JM3BheUQBDOkJwY6epAYkC/K\nFWAAp6X1TFV/Q456j7PZeXxnUNm87RQ9UtqsgYwlWxVTthfXCya9Aw7pIn1b\nlvIDkVGkfBqn1AOds4484TLO2Axq1FvvrfJZuxES3a+ezcX9AbO0hNp58J4Y\noITDEYstaH5ofz0A41FuRP/qtymzjeQ9NeVTxqZuzA69SjU/Ex9e9zVFyt5l\nWJogCP02c5BXLI8rXKeRHnkDbaDOyyB2Wk8cwroK1BIfRa/V7E7UH0hIwWPx\nS0xmqpszlq2cdC31A7CSY+YxKac0/FBk45yv7v8VM/BDYkLWpgnasqh4e8mi\nhHI5zGav9ZjoPCFKVaKsxXRyWfLSWoozy6eczo/a5gLL+OFayiulmZ9udHcq\n2i+sWcODoMqZspHdwHyUk86lWlNllryFsRevF/6ForXYkbsZmvHMe9UrL5aU\nVzyv\r\n=tAVl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBrKTksj2a+T7GFj0KtlY5GJOUFZyAZ0gJSaLuiUrMltAiBKbaanENEBAQl3ffTj0MXDkLLzUfzrHXzorAfim7llTw=="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_3.1.0_1536059022376_0.10908178435444937"},"_hasShrinkwrap":false},"3.0.2":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"3.0.2","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^5.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"45c95d353176b712439e49ecb1df846bfe99d635","_id":"data-store@3.0.2","_npmVersion":"6.1.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-rRZkuwwwZSEifoseK23fdV7gFHxjK2uYU3Ma1r8vHxl1qO4cByppESIhtTmDMQ4wmVeQGEWPqxjY0y7kjoYvKw==","shasum":"736ff2cc81b3af76bc9818965ee0ad5238a69abe","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-3.0.2.tgz","fileCount":5,"unpackedSize":32197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOLXPCRA9TVsSAnZWagAASZAP/iV34B09gxfNlsqN7qCu\niYGzhDi6h1405ehgOds2CW9wieQ5ZJrpzTil+yvgitEDjMktd0YSK6sodpxg\nUgIGqgFeav+EaOFY6tOck6PlAooE6zwxbIxmb1AawUk3uKb4duudETe5VLOj\n3ZHEll1D40M3PhPM5F2Zp7hdI/f3qOsHZE4L4a+ApRf28Demtm3VuB8Tcvcd\nVj25eB8wKdozT5SJLbup5M8PPK+8zHxrAiu1Xj5TUFYl3b+YhIRS5WVJnl5k\nVXf8VfrzjApIndG3wNklK0Sh5z8jheW9J/Mcq1Fmk4ZOPm5VfFEwKm+MQzLK\nBXFUZLNxMfQEzPWbCywsIVve1emTfcM4wO7qVpurlZXzl/06LV9Z3AjkDg3c\nGv/jv6aTeqgylA6Q9pP2Ajds9vdrK5dqTy3pzw4dimDGA404xZFSDX9jabvY\nzhTzzyac+f3ycapgEFAJUaYPG/LMSgvpveIyxLy6Pe72dHa8K8JfXxNkgTj3\njPlfV/oYVGq200XTLO2KggdVtNBEzhQQBRrlHS7DplXEJj4VTX4hBAwahdrW\nKF3s/s45QWE/scfsuKZjXduHrrVfWZ7d8anarBnARun88EPNFJ8l8DmX2x8l\n30gl3gH4WzlvLw4ykY+jhZMYukOLYVXlLBxBKmU0OJAwkXJI//XPf9D23BEw\njXS+\r\n=nj8q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKNo+DpGUnLPEioUxOU0TaYRNbr79p4cJaf7jcQ0UatgIhAMh4cSrlw9CxSGMej6jcRnOVvxYSLTYBnBDZoNsqINl6"}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_3.0.2_1530443215604_0.8394254068884659"},"_hasShrinkwrap":false},"3.0.3":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"3.0.3","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^5.2.0"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"de5ab2f9f7090f6d7cfa35d903d4d455fa48bcba","_id":"data-store@3.0.3","_npmVersion":"6.1.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-iQTz99tl30PwpU09dq7m7fvCFXCAlH8AgKQDwAqt+O4pjQ+cTNCLyhPSsv+IpSdlnaqDu71W3rg/ZNCHpavdEA==","shasum":"0adbbd40516678e2fd93a8875d9f3fd0e50cc717","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-3.0.3.tgz","fileCount":5,"unpackedSize":31901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOQLhCRA9TVsSAnZWagAAmJgP/AvKX/9/H2feD1PN9UGu\n1kEG/QRSb9+6pszgsS684Ww3x4s0x/T976UIFrPd/QL1aQ5FlST3WPhz/Od5\nPUk9XqhxH8MQoptRuV4O7XHGCT7DD3Ws16drDSKw1NqZSJUChFOQZjvd+fX1\nkWbQVwDkpLfTQZKO9bQ+YyinEMdyKyc3evBXD3GyYizqqU5aY5hKLJ/iPwDL\n5UwEvAXyAQCL6NqsiO9Y7kFLMW2kxX3cXWD9ZQ+dzmlxBEPZ4Xt9paAyeQej\nZOsQy1X1bc3Bbbkuw0NvJt1FXLSK1cqUgK05xVGp+9pQdk+MkSp8r5hJdIQI\nCrK0mpIMjaqJEn0zqst+uuq9Mi0lM0J0t+14gC3MIIIlMKniG66TKNEy+22L\nCfc14dmUZ4VQrb47Z5nCq164sZGRaBxh8VZdGVxIN1Sy+chBuOB+A1aYD3lL\noz+npwTNnE+ltRoEe+ZxyXJdUxVBzMUPh0aZIUSqBJu8hCojuzmRPNdd84Oy\n8UsjgCPiBjIdN77tNJSIMI/G3p0wvOH2L4k53yPXEwWkC3i29pewfe+nv3ts\nUz1T3lC2ddp/z6te8tZ3Sg8LNprkJv8CL3dhSP78VrHU1ST7qMSVyYhEC1Pl\nqRJMyRnjUcuwanMYnvyWFJxLwPIP53tZrIfOM5xTKZ0+WFAAvJdfM1Z1GmiK\nJTh/\r\n=KdYx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWd+TLyBFoxAK/n2H2ibgFqiW0cCIIjKpXAQM0oNyEXwIhAPFnW5O5oINndPGxpU7o+WGpIEHxhbHE90Emt5cKKPTB"}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_3.0.3_1530462945761_0.8531132679174998"},"_hasShrinkwrap":false},"0.15.3":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.15.3","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.0","clone-deep":"^0.2.4","define-property":"^0.2.5","graceful-fs":"^4.1.3","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","cache-base","base-store","get-value","set-value","union-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"a6fda384baf8db64dc78e080533aaad4df0fed41","_id":"data-store@0.15.3","_shasum":"10ba3ebb898da561842fee06aff0f937a3c7dd1d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"10ba3ebb898da561842fee06aff0f937a3c7dd1d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.15.3.tgz","integrity":"sha512-HMj2xybPX2oM2lQzn1ryGmNVpVbPOkulsUzDfEmS+UMcWMwVhQ/9vc7ph9IPpbOYeTY+0SiVRaqonTXIU37MbA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBedbprOOti+V7usl7pHUJrNElpeZ56YTTDUbARfgwS+AiEA8R+7LSlVp89+ZNlZPZjorNmQeww1qdRDSAsyq/nMdGQ="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/data-store-0.15.3.tgz_1456577614261_0.20699238078668714"},"directories":{}},"2.0.0":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"2.0.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^3.5.3"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"03ddf4658138b5837064a829ed13866fd68cce5c","_id":"data-store@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-v3q7nvkXm2/MJojhqzJtfBcLk1CUt7arvIj0S6bW1sOIf1t0bT/K+yfVGXwWYL+BPDYn74/8vepn/iLOgTKk6w==","shasum":"74374fd5a1f34fcde51f7736c8ba6433b224eaa7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-2.0.0.tgz","fileCount":5,"unpackedSize":31788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6FQMCRA9TVsSAnZWagAAZNEP/iEUc5jFrnYE/CXZNTxF\n4iKqy4IL/0jt/OTUShPKeSVSUyCfYdf0VQbkr5ju/71I6NJl1WqofOm9ln+i\nDrVg4u49QV2NsXN7BG5rZRGNZ1grKKFzvjkSOCpYSvL4oiLWWg/zggnObBZy\nnAD5MATxzpUUgG8mpZ7wOKZLhIKHUuFpkrTX+tnZUtZhg0Hl2k1Xxs97Cclj\nfKdDiwvnlP5GNpcUkPTvDIw0l28cg348y1rMjW1kHNNB2cmhELsbe2Jvs/be\noT5ZoJHeIef0Ki17IT2+vTNhmN/+/UKA+bE2vEtup6yxar1SAbUcMRvn20h5\nIvYFfYs3liwgEZAMEsh/iQr+eyQqdFiw5vwRvX9Vc/+IsQsA4o13FDXYZOvG\nwvPG1a/t+d2OPnD0ey/XMQPnlb0ZFjgNO3Ky6+PDuqfzVcPg7Ite1U4pVJz/\nXlO+ZZo8gdDdE6bz6QvYwVLqs6fy2LxmVoM3xDdLc/WuPkrEzFGevsELs0Q7\nX+r+GBrur1ExEhuvXnwbLjCNwQ7mGF7KegY/Z44LRJmgcfuDH8f3Z1Cjre0y\npQnV+B4OL7z5lQqNNx7HdlrichutuAkSvw5Mwt0RsSImjjx7HVPxL7zVrlYY\n/hQgdaujf273pzVDZCPqyOSVp3AeRr7mpv8oVug/mxr6vaKnLFH1rLpuvCSt\nVHU8\r\n=fsa3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmhxCA7M26M+W8tTLNQ3HxxuKEvSgi4CfRWOO6VDfvuAIhAL70DyxayCM6IGZJD5ammIEVK+3JxmMxGHasxF2hq+UL"}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_2.0.0_1525175306936_0.9914323356896364"},"_hasShrinkwrap":false},"0.15.2":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.15.2","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.0","clone-deep":"^0.2.4","define-property":"^0.2.5","graceful-fs":"^4.1.3","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","cache-base","base-store","get-value","set-value","union-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"fb16cb8320050b37b0ea9bb5c1ed1e2849a8147d","_id":"data-store@0.15.2","_shasum":"c214fd5a5e4709a5f04f4594c881bb3a9eb2b505","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"c214fd5a5e4709a5f04f4594c881bb3a9eb2b505","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.15.2.tgz","integrity":"sha512-xP4b7liGJNipi+oEwOC/Ax68BTjv7Q9oBj2cvxi78R0OoDCJ6sdolOeis7hq3bATIuhm39s/BFK/GpVftOqPnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCouoxnn30t12+Pw74t7M8JdoFU6YnYVZt4Cwj4Zhu9YAIgGpLJc/Ra+QHaw6oQUZQ3iG3ZfMw26pjmplDMooRo33w="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/data-store-0.15.2.tgz_1456577017455_0.40615412034094334"},"directories":{}},"0.16.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.16.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","LICENSE","README.md","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.4","clone-deep":"^0.2.4","debug":"^2.2.0","define-property":"^0.2.5","extend-shallow":"^2.0.1","graceful-fs":"^4.1.4","has-own-deep":"^0.1.4","lazy-cache":"^2.0.1","mkdirp":"^0.5.1","project-name":"^0.2.5","resolve-dir":"^0.1.0","rimraf":"^2.5.3","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.9","gulp-istanbul":"^1.0.0","gulp-mocha":"^2.2.0","verb-generate-readme":"^0.1.21"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"base-store","list":["base-store","cache-base","get-value","set-value"]},"reflinks":["verb","verb-readme-generator"],"lint":{"reflinks":true}},"gitHead":"9b94eaac24d53a269e0ce39966c49c282de08b8f","_id":"data-store@0.16.1","_shasum":"e69c03a5cac15d1ff33f0254c96783653e688304","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"e69c03a5cac15d1ff33f0254c96783653e688304","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.16.1.tgz","integrity":"sha512-tGbl4oVi9UPysie6y6+fuCjUNhaR3KxnuIRV0OMUCwq/wvikmWHXQYALbW/IVQvmxBNbrxUwjG5BWsrjx5v55w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBdF/TZTr+8wUOn1kUcPaswmlAPnRrShECnVivHegpX6AiEApHTQ3+8wq0JciIIlKExelHOamxi1auTMTCzXsqQUjEc="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/data-store-0.16.1.tgz_1468212358383_0.7170273209922016"},"directories":{}},"2.0.1":{"name":"data-store","description":"Easily persist and load config data. No dependencies.","version":"2.0.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=8"},"scripts":{"test":"mocha"},"devDependencies":{"delete":"^1.1.0","gulp-format-md":"^1.0.0","mocha":"^3.5.3"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["get-value","has-value","set-value","write"]},"lint":{"reflinks":true}},"gitHead":"67fc8ba80906af756afd87ce5588c6c5e11fbfe6","_id":"data-store@2.0.1","_npmVersion":"6.0.0","_nodeVersion":"10.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"integrity":"sha512-QwiJkdELYSNBj0grNFB1aPmE6L2mRJrrZpjYlsz4tVYw+nFrWcymIHqKlbpgmWiLJrFCouHPhXkcwRaXShPH/A==","shasum":"e0936f755be379ea3b2eea4da977013ae3c41e46","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-2.0.1.tgz","fileCount":5,"unpackedSize":31803,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6FvGCRA9TVsSAnZWagAAI0QQAJ3bCQODtb8YBAFSHxeP\nFQCwub5I6Cx1s933MsHBNjhorzRZtiIPW7tQglsSrU5R8xaohppmmWGESesL\nPGok+sEBFJXSWrIGJ9Z019k5SpRCeoMd20nJg62Q5KX4vI6K5YFCpA7ef48t\n8/pgHunGtMLZiTlj9x8hzSFWp6of7Amg42OsjTiDZ9lZ/Nld1kPET8Hsc/Zh\nkZEBQpabwCBc2GraDWKzJLECXz6sCGMY7Gbz2HZzzdIAc4Rm1mPgOaPMU6Ga\nQ2xdO8ESk0zT14vtzosoSQJsKePlPo2NUZLU0nGQPS3/Y6NC+pIL6o3hYYrb\nVEkAEwl9IcEBFjB/ZU/NJG/dv0yxp673lWGCQf3XozSvk7bd+V8o1aA1LDJV\nidzTSFBEn2bbSBUnUEJ1dwQ6o8vOB1b5Vh8bUfQmkxyWaFwUV0R+Y8fBfJJf\nh1mUDjxdLY9hwZ+a1/0rGJisE6EEX370xKRiBwHVlmjJAGJ5WqVajF5zWf70\nk2wLhOtdyOdlweUwkNftNhiEIH9jHjKwTzZAb3WzidlBVOEF6aNE2/qUfqJH\njP4eVoYr703zsr0225Jwo8AMa140VATsWUn7BztwmRBZFEmBC5/NdjjtkZ0W\nwfb+/sFyPaVGnwPzjy+ABhaDso8FMFLWH8i2gVPpYozS0FiAHQ0Bh6qRcO+A\n9sLW\r\n=pegp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDQHPDOJnpC4m60lofLeHtmsryoBg2dPYHSrCyCvG/jgAiEAo1+5fWzxQFkZObTV7CnnXzVMjaMm+/COJJRnZPGBmxs="}]},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store_2.0.1_1525177284996_0.14307564034755127"},"_hasShrinkwrap":false},"0.15.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.15.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.0","clone-deep":"^0.2.4","define-property":"^0.2.5","graceful-fs":"^4.1.3","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","cache-base","base-store","get-value","set-value","union-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"7838f1b55ee085aa0ef28d3ddacc3ce692cf4e69","_id":"data-store@0.15.1","_shasum":"ae758196743cba4ce14c6d971408743a9c99e851","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ae758196743cba4ce14c6d971408743a9c99e851","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.15.1.tgz","integrity":"sha512-iOtZarBk8rw6oBLEwfTQMLieueec0hfow1cr9RkGS6hOK6KYBfIpfV5GmBWSonQJO/Re1Nmq+kvpbNEYRjB9cA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQCo546+5hqQnzbeFXLFfEFR5yjUVfDz+4d/aUqjnElwIhAJRBDbqKMDyY5KgoEYM36icdmBnRH2NihBYypSZNV53w"}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/data-store-0.15.1.tgz_1456570520669_0.5444894589018077"},"directories":{}},"0.16.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.16.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.3","clone-deep":"^0.2.4","define-property":"^0.2.5","extend-shallow":"^2.0.1","graceful-fs":"^4.1.4","has-own-deep":"^0.1.4","lazy-cache":"^2.0.1","mkdirp":"^0.5.1","project-name":"^0.2.5","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"base-store","list":["cache-base","base-store","get-value","set-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"a6b72f7e19d32bd83002ba6a11cd658983f6c49b","_id":"data-store@0.16.0","_shasum":"9e2a74c35fa43937e06543412300d1fc440339fc","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"9e2a74c35fa43937e06543412300d1fc440339fc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.16.0.tgz","integrity":"sha512-/qjbmAL1nePKX38uMdbVWiChGDE3SqNFvKduVOLqp37qJA4c5E5NKZIgrJbYAvpdeQxpxuYvstI6I3u4HjOdQA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQ2ino//HC+6enp88tBUUYBm1vx16FMECWRsqCwPdpUgIge/z57LHMMOdVlYzy7d75weVTqMniEJaGQ/bPas72JSE="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/data-store-0.16.0.tgz_1463643831880_0.777568613179028"},"directories":{}},"0.15.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.15.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.0","clone-deep":"^0.2.4","define-property":"^0.2.5","graceful-fs":"^4.1.3","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","cache-base","base-store","get-value","set-value","union-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"22c024688e910da9e945983727837bd1251de49d","_id":"data-store@0.15.0","_shasum":"2904ab4b96d6f75f285016f4cfcf321b920ad1de","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"2904ab4b96d6f75f285016f4cfcf321b920ad1de","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.15.0.tgz","integrity":"sha512-z4woDdhgU5xqHeICg0N8EnC35QDf6qxqfGlfizsq8NhLsSUWDq1AmSBz0v5bVUOLKq8+pyMqf7l0jWA48SH7Fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJJnW8D3epTdok1cXBt4CusxJ1kCaimaZhhiQydaPNlQIgWvCUN5PfmTEVHhA6VcrxgJlTlkwze7cVEm1zb6RRq2I="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/data-store-0.15.0.tgz_1456569279591_0.3556011749897152"},"directories":{}},"0.14.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.14.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base":"^0.6.4","clone-deep":"^0.2.4","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.1","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.4","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["base-methods","get-value","set-value","union-value"]},"plugins":["gulp-format-md"],"layout":"default"},"gitHead":"efd9a65b812db060af5651f8bad22b9b26c0b4cd","_id":"data-store@0.14.0","_shasum":"bc7365d86ed87feea5becd417a61286ca2e68ec6","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"bc7365d86ed87feea5becd417a61286ca2e68ec6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.14.0.tgz","integrity":"sha512-ZkdJHtl/VKtuQN8xM37hhPiz8qa1fUnDZierQnvPcOHlad3u+MDx4FiBbIm33zuTiiKJaGFbzjpOvvgGp6B2YA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHhXI5Dq5X+kkxiHElinoDmt04FgRIkv8bgi3/5dRZ7lAiEA2d+quLLAnxUq5az3Axv4P940r1t8+o8WnB0W4fN448g="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/data-store-0.14.0.tgz_1454569994739_0.7083410560153425"},"directories":{}},"0.12.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.12.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-methods":"^0.6.2","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.3.0","kind-of":"^3.0.2","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","resolve-dir":"^0.1.0","rimraf":"^2.5.0","union-value":"^0.2.1"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.4","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["base-methods","get-value","set-value","union-value"]},"plugins":["gulp-format-md"]},"gitHead":"ec07428a3a966a72209ec88d58d8c84cdc82f452","_id":"data-store@0.12.1","_shasum":"229e72678e369fb88a06727c40e9f105d9d2eefd","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"229e72678e369fb88a06727c40e9f105d9d2eefd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.12.1.tgz","integrity":"sha512-m2MHqODb1GY8+dCmbV73ZA8PWuOUK9yVtnP8+RG2vXzL1G6ulfG7AE5tuUgFfnlX5a9yni/fiENsbwB6qyFgGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICZFj3dCi9Z6ZlBiRfogbYFVgf2TTMlWVaA4vVYEg3DDAiEAjqeXSOfLT65JG4I3Mn6ZJOLs0H7vCVUFkwgS8dVUvrk="}]},"directories":{}},"0.13.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.13.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base":"^0.6.4","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.1","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.4","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["base-methods","get-value","set-value","union-value"]},"plugins":["gulp-format-md"],"layout":"default"},"gitHead":"efd9a65b812db060af5651f8bad22b9b26c0b4cd","_id":"data-store@0.13.0","_shasum":"216918240b10b59870dda8b18a92966e37132501","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"216918240b10b59870dda8b18a92966e37132501","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.13.0.tgz","integrity":"sha512-KS5XOnG3b/dm8gpximORPsVVW7xizKsjj3PlVfZrSjof2az4wv8fvA5E1w0Nk3L2I0aDycH5pBazDI4oAkQXWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIQC+1+ZL9bw6JITC1e4lb0EXM2+G9HwqAOJupdDMTR4EwgIfBCfZu7HkIVr0iA/pa/+kQr9jQLJKo8c9iGsDXjkP0g=="}]},"directories":{}},"0.11.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.11.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-methods":"^0.3.0","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.1","lazy-cache":"^0.2.3","mkdirp":"^0.5.1","resolve-dir":"^0.1.0","rimraf":"^2.4.3","union-value":"^0.1.1"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"a13b0b9954e086eb4d65e648b82a659682e4432c","_id":"data-store@0.11.1","_shasum":"b9647254154385cc26b54399eb9c030c5af82a5a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"b9647254154385cc26b54399eb9c030c5af82a5a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.11.1.tgz","integrity":"sha512-50aPshSWDWxYd1IplvHC0Cva1pPVCAhHNKdRN5HF/W+hmpm4Ce/cdnAQpNtpRPS/ZzoFmxRSrWYzoxuwdrGxZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHDwkp5fL55uFeVr3QBbWAY0JHbtBBBEXmC1wZ95CNtgIhAJjBHYJN3bY9vA+mlVhrC3V62ZoI38XN0RQ8MeA6STNU"}]},"directories":{}},"0.12.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.12.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-methods":"^0.4.1","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.1","kind-of":"^2.0.1","lazy-cache":"^0.2.4","mkdirp":"^0.5.1","resolve-dir":"^0.1.0","rimraf":"^2.4.3","union-value":"^0.2.1"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["base-methods","set-value","get-value","union-value"]}},"gitHead":"25afbc82de0137f1c3341e62cd5305326221a9f9","_id":"data-store@0.12.0","_shasum":"290cad350f16ef7009ae78d855f3537d63572d98","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"290cad350f16ef7009ae78d855f3537d63572d98","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.12.0.tgz","integrity":"sha512-UJ3PCO7wE2cLXYO135uGX8WDFL5Q4NYyMAsfc0rKwYbIXCx4fn34cS1J2CvnVrh3HknpgRFZWJf39YiyYcBWFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAI3kTfouk1eVPOJi5Tdamg2FgzKpSFwm+lATQjQLTIXAiEAqLWnCoHyzqD+qJfwt4Y5ekpfuXM8h3pdpLaT3ZskvAM="}]},"directories":{}},"0.10.1":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.10.1","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-methods":"^0.2.14","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.1","lazy-cache":"^0.2.3","mkdirp":"^0.5.1","resolve-dir":"^0.1.0","rimraf":"^2.4.3","union-value":"^0.1.1"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"a3518859977ddef06fd3cde623ebd0762a0ed3aa","_id":"data-store@0.10.1","_shasum":"7d2d8fa223905d6b4be202e518f929b58c4c163b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"7d2d8fa223905d6b4be202e518f929b58c4c163b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.10.1.tgz","integrity":"sha512-LHE5+LmOd9TuU1XYy9h+fz02FdZKefbGzbwp2BOuFqUU2mF7IHD9k7/1X9PD4hfn8DodSNpJ/EMzqnzqTVETVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGNcgYwIvIMRa99dnvYy8yA/teHJXowWn6sB3UF90HCQAiBYOJmCb4YeOzqWbp+eAYx7vV57i8JVQAmleiRwzkjOFA=="}]},"directories":{}},"0.11.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.11.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"base-methods":"^0.2.14","graceful-fs":"^4.1.2","has-own-deep":"^0.1.4","has-value":"^0.2.0","kind-of":"^2.0.1","lazy-cache":"^0.2.3","mkdirp":"^0.5.1","resolve-dir":"^0.1.0","rimraf":"^2.4.3","union-value":"^0.1.1"},"devDependencies":{"gulp":"^3.9.0","gulp-istanbul":"^0.10.1","gulp-jshint":"^1.11.2","gulp-mocha":"^2.1.3","jshint-stylish":"^2.0.1","mocha":"*","should":"*"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"related":{"list":["has-own-deep","assign-value","union-value","get-value","set-value","has-value"]}},"gitHead":"643750a6355596298198e2863b96ce5effe50389","_id":"data-store@0.11.0","_shasum":"2087bf6e151aaef032126077c18bbb50bcf70ccb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"2087bf6e151aaef032126077c18bbb50bcf70ccb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.11.0.tgz","integrity":"sha512-UEExYWgTiB27RhBxVE4ZY8rDK6eYh+gX3SD17bTRZJg7f9qa4ulCcemaVJelroqhN2lVC8IA2sGqKRYx9LqKJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjvFYOGDIUvuDKjcasZ84uGw0SoiqgZtDPEcU6L10UhwIhAOZA99gR8GzPy187apyVER/ayFbBcvBNMXwhAodfgC44"}]},"directories":{}},"0.15.5":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.15.5","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.0","clone-deep":"^0.2.4","define-property":"^0.2.5","graceful-fs":"^4.1.3","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","cache-base","base-store","get-value","set-value","union-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"e825c254c29c7231b2b519b8e4dd05b5fa28bf80","_id":"data-store@0.15.5","_shasum":"ae1226f72998715c887f53b46c9edfa0f2f8a17d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ae1226f72998715c887f53b46c9edfa0f2f8a17d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.15.5.tgz","integrity":"sha512-tTKSb4cCSn47PPz+RqwYTj2V9I1TXHSxfJa5atNShbOVI398Q4rsijiK1J2YnNMVj/pk+YlF3K6w4JPdLfDI8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDJkT2/ppe2+SyLVBVbkUIVIj6/faiPnxxp95Mmso1yXAiEA6ysykOKVXxFPZxmVXtehdC2MQ/Hdz4FmhfvcmDxQdO0="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/data-store-0.15.5.tgz_1456953538685_0.5568904231768101"},"directories":{}},"0.15.4":{"name":"data-store","description":"Easily get, set and persist config data.","version":"0.15.4","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^0.8.0","clone-deep":"^0.2.4","define-property":"^0.2.5","graceful-fs":"^4.1.3","has-own-deep":"^0.1.4","lazy-cache":"^1.0.3","mkdirp":"^0.5.1","project-name":"^0.2.4","resolve-dir":"^0.1.0","rimraf":"^2.5.2","union-value":"^0.2.3"},"devDependencies":{"gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-format-md":"^0.1.7","gulp-istanbul":"^0.10.2","gulp-mocha":"^2.1.3","mocha":"*","verb-readme-generator":"^0.1.3"},"keywords":["app","cache","config","config-store","configstore","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["base","cache-base","base-store","get-value","set-value","union-value"]},"reflinks":["verb"],"lint":{"reflinks":true}},"gitHead":"fef645149450f883010da8d3ba99085db21dce70","_id":"data-store@0.15.4","_shasum":"ca5c745a9f7b97a08c01584e40c7b24bb58c46e5","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ca5c745a9f7b97a08c01584e40c7b24bb58c46e5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-0.15.4.tgz","integrity":"sha512-E8pi4Yj65+9t/lhW/lhWpOYxvGOO12dK0MpPNhSQS69eqLeP5JHi6fG4+3NvMC0Bbh5Kg5tCPdBthsHLRN/Cyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGPZGB+p1nBitggFe5Uv5fq3nH4/B34LonVdPDQ8Rb69AiEA0Wk7Ax809230oDMq6fQxSi1Ry0csCstYtdxZScvxrrI="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/data-store-0.15.4.tgz_1456608056538_0.25043256976641715"},"directories":{}},"1.0.0":{"name":"data-store","description":"Easily get, set and persist config data.","version":"1.0.0","homepage":"https://github.com/jonschlinkert/data-store","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Charlike Mike Reagent","url":"https://i.am.charlike.online"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/data-store.git"},"bugs":{"url":"https://github.com/jonschlinkert/data-store/issues"},"license":"MIT","files":["index.js","utils.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"cache-base":"^1.0.0","clone-deep":"^0.3.0","debug":"^2.6.8","define-property":"^1.0.0","extend-shallow":"^2.0.1","graceful-fs":"^4.1.11","has-own-deep":"^0.1.4","lazy-cache":"^2.0.2","mkdirp":"^0.5.1","project-name":"^0.2.6","resolve-dir":"^1.0.0","rimraf":"^2.6.1","union-value":"^1.0.0"},"devDependencies":{"gulp":"^3.9.1","gulp-eslint":"^3.0.1","gulp-format-md":"^0.1.12","gulp-istanbul":"^1.1.1","gulp-mocha":"^3.0.1","mocha":"^3.4.1"},"keywords":["app","cache","config","config-store","configstore","data","defaults","get","has","has-own","hash","json","local","object","options","own","save","set","storage","store","union","write"],"verb":{"run":true,"toc":true,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"highlight":"base-store","list":["base-store","cache-base","get-value","set-value"]},"reflinks":[],"lint":{"reflinks":true}},"gitHead":"b43052ed19f059ca1ca667ef90241d52d364bdb0","_id":"data-store@1.0.0","_shasum":"088e761db8b534f2b6a6429953623a2a50462f95","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"088e761db8b534f2b6a6429953623a2a50462f95","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/data-store/-/data-store-1.0.0.tgz","integrity":"sha512-p90QtytSmVdfXIr9LEvFqIwqSGeHYTCQQ1gvv6t5Yd/B5TCT55kraaTtq/xFUQuIzGyQGvYLWXWjBEkIGq18zg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGhbGXHPsPkrxEk6b4qzlXAYCYY62V9kDg2snUki34juAiEAvGDHcrwXciuI1VLSSoY3NdWJnDtRdD7bkcX5VVAkxeo="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/data-store-1.0.0.tgz_1495432801358_0.5378729195799679"},"directories":{}}},"name":"data-store","time":{"0.3.3":"2015-02-09T06:59:43.789Z","0.6.0":"2015-05-07T11:28:48.008Z","0.3.4":"2015-02-09T07:01:37.317Z","0.6.1":"2015-05-07T11:33:51.477Z","0.3.1":"2014-12-17T05:32:11.475Z","0.4.0":"2015-03-28T20:29:31.755Z","0.3.2":"2015-02-09T00:09:05.584Z","0.4.1":"2015-03-29T00:11:03.590Z","0.5.0":"2015-04-19T04:38:48.989Z","0.8.2":"2015-08-19T17:50:02.839Z","0.8.0":"2015-07-05T05:30:05.103Z","0.8.1":"2015-08-01T14:00:46.331Z","0.9.0":"2015-08-30T06:16:46.441Z","4.0.2":"2019-09-13T10:04:16.414Z","4.0.3":"2019-09-13T10:23:13.513Z","4.0.0":"2019-09-13T09:54:55.283Z","4.0.1":"2019-09-13T09:56:54.353Z","0.1.1":"2014-05-01T10:20:17.437Z","0.2.0":"2014-11-15T15:13:41.069Z","0.3.0":"2014-12-17T05:27:58.429Z","0.1.0":"2014-05-01T09:42:29.249Z","3.0.0":"2018-05-11T01:48:41.757Z","0.10.0":"2015-10-14T13:13:58.880Z","modified":"2025-05-07T15:11:31.995Z","3.0.1":"2018-06-10T21:15:02.234Z","3.1.0":"2018-09-04T11:03:42.526Z","3.0.2":"2018-07-01T11:06:55.683Z","3.0.3":"2018-07-01T16:35:45.819Z","0.15.3":"2016-02-27T12:53:36.917Z","2.0.0":"2018-05-01T11:48:26.994Z","0.15.2":"2016-02-27T12:43:40.300Z","0.16.1":"2016-07-11T04:45:59.826Z","2.0.1":"2018-05-01T12:21:25.093Z","0.15.1":"2016-02-27T10:55:23.518Z","0.16.0":"2016-05-19T07:43:54.943Z","0.15.0":"2016-02-27T10:34:42.607Z","0.14.0":"2016-02-04T07:13:17.513Z","0.12.1":"2016-01-02T18:39:06.630Z","0.13.0":"2016-01-23T09:13:54.297Z","created":"2014-05-01T09:42:29.249Z","0.11.1":"2015-10-23T20:37:46.445Z","0.12.0":"2015-11-09T22:42:35.613Z","0.10.1":"2015-10-19T18:08:58.343Z","0.11.0":"2015-10-21T19:56:46.687Z","0.15.5":"2016-03-02T21:19:01.379Z","0.15.4":"2016-02-27T21:20:59.568Z","1.0.0":"2017-05-22T06:00:02.466Z"},"readmeFilename":"README.md","contributors":[{"name":"Brian Woodward","url":"https://twitter.com/doowb"},{"name":"Jamen Marz","url":"jamenmarz.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Olsten Larck","url":"https://i.am.charlike.online"}],"homepage":"https://github.com/jonschlinkert/data-store"}