| Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json
|
| diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json
|
| index d902c6da001208babc9b13e328883c4667364aff..132e5de83f6bb8b0abba252f1d2392423ddaa8df 100644
|
| --- a/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json
|
| +++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json
|
| @@ -1,6 +1,6 @@
|
| {
|
| "name": "configstore",
|
| - "version": "0.3.1",
|
| + "version": "0.3.2",
|
| "description": "Easily load and save config without having to think about where and how",
|
| "keywords": [
|
| "conf",
|
| @@ -17,7 +17,6 @@
|
| "email": "sindresorhus@gmail.com",
|
| "url": "http://sindresorhus.com"
|
| },
|
| - "main": "configstore.js",
|
| "repository": {
|
| "type": "git",
|
| "url": "git://github.com/yeoman/configstore"
|
| @@ -30,25 +29,31 @@
|
| },
|
| "license": "BSD",
|
| "dependencies": {
|
| - "graceful-fs": "~3.0.1",
|
| - "js-yaml": "~3.0.1",
|
| - "mkdirp": "~0.5.0",
|
| - "object-assign": "~0.3.1",
|
| - "osenv": "~0.1.0",
|
| - "uuid": "~1.4.1"
|
| + "graceful-fs": "^3.0.1",
|
| + "js-yaml": "^3.1.0",
|
| + "mkdirp": "^0.5.0",
|
| + "object-assign": "^2.0.0",
|
| + "osenv": "^0.1.0",
|
| + "user-home": "^1.0.0",
|
| + "uuid": "^2.0.1",
|
| + "xdg-basedir": "^1.0.0"
|
| },
|
| "devDependencies": {
|
| "mocha": "*"
|
| },
|
| "files": [
|
| - "configstore.js"
|
| + "index.js"
|
| ],
|
| - "readme": "# configstore [](http://travis-ci.org/yeoman/configstore)\n\nEasily load and persist config without having to think about where and how.\n\nConfig is stored in a YAML file to make it simple for users to edit the config directly themselves. The file is located in `$XDG_CONFIG_HOME` or `~/.config`. Eg: `~/.config/configstore/id-of-your-choosing.yml`\n\n\n## Example usage\n\n```js\nvar Configstore = require('configstore');\nvar packageName = require('./package').name;\n\n// Init a Configstore instance with an unique ID eg. package name\n// and optionally some default values\nvar conf = new Configstore(packageName, { foo: 'bar' });\n\nconf.set('awesome', true);\nconsole.log(conf.get('awesome')); // true\nconsole.log(conf.get('foo')); // bar\n\nconf.del('awesome');\nconsole.log(conf.get('awesome')); // undefined\n```\n\n\n## Documentation\n\n### Methods\n\n#### .set(key, val)\n\nSet an item\n\n#### .get(key)\n\nGet an item\n\n#### .del(key)\n\nDelete an item\n\n### Properties\n\n#### .all\n\nGet all items as an object or replace the current config with an object:\n\n```js\nconf.all = {\n\thello: 'world'\n};\n```\n\n#### .size\n\nGet the item count\n\n#### .path\n\nGet the path to the config file. Can be used to show the user where the config file is located or even better open it for them.\n\n\n## License\n\n[BSD license](http://opensource.org/licenses/bsd-license.php) \nCopyright Google\n",
|
| + "readme": "# configstore [](http://travis-ci.org/yeoman/configstore)\n\n> Easily load and persist config without having to think about where and how.\n\nConfig is stored in a YAML file to make it simple for users to edit the config directly themselves. The file is located in `$XDG_CONFIG_HOME` or `~/.config`. Eg: `~/.config/configstore/id-of-your-choosing.yml`\n\n\n## Usage\n\n```js\nvar Configstore = require('configstore');\nvar packageName = require('./package').name;\n\n// Init a Configstore instance with an unique ID eg. package name\n// and optionally some default values\nvar conf = new Configstore(packageName, { foo: 'bar' });\n\nconf.set('awesome', true);\nconsole.log(conf.get('awesome')); // true\nconsole.log(conf.get('foo')); // bar\n\nconf.del('awesome');\nconsole.log(conf.get('awesome')); // undefined\n```\n\n\n## Documentation\n\n### Methods\n\n#### .set(key, val)\n\nSet an item\n\n#### .get(key)\n\nGet an item\n\n#### .del(key)\n\nDelete an item\n\n### Properties\n\n#### .all\n\nGet all items as an object or replace the current config with an object:\n\n```js\nconf.all = {\n\thello: 'world'\n};\n```\n\n#### .size\n\nGet the item count\n\n#### .path\n\nGet the path to the config file. Can be used to show the user where the config file is located or even better open it for them.\n\n\n## License\n\n[BSD license](http://opensource.org/licenses/bsd-license.php) \nCopyright Google\n",
|
| "readmeFilename": "readme.md",
|
| "bugs": {
|
| "url": "https://github.com/yeoman/configstore/issues"
|
| },
|
| "homepage": "https://github.com/yeoman/configstore",
|
| - "_id": "configstore@0.3.1",
|
| - "_from": "configstore@^0.3.1"
|
| + "_id": "configstore@0.3.2",
|
| + "dist": {
|
| + "shasum": "aff5ca661066e24f1a1b81a2e6077e4df0af9918"
|
| + },
|
| + "_from": "configstore@^0.3.1",
|
| + "_resolved": "https://registry.npmjs.org/configstore/-/configstore-0.3.2.tgz"
|
| }
|
|
|