Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Unified Diff: node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
new file mode 100644
index 0000000000000000000000000000000000000000..d902c6da001208babc9b13e328883c4667364aff
--- /dev/null
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/configstore/package.json
@@ -0,0 +1,54 @@
+{
+ "name": "configstore",
+ "version": "0.3.1",
+ "description": "Easily load and save config without having to think about where and how",
+ "keywords": [
+ "conf",
+ "config",
+ "configuration",
+ "settings",
+ "store",
+ "editable",
+ "yaml",
+ "yml"
+ ],
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "http://sindresorhus.com"
+ },
+ "main": "configstore.js",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/yeoman/configstore"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "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"
+ },
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "files": [
+ "configstore.js"
+ ],
+ "readme": "# configstore [![Build Status](https://secure.travis-ci.org/yeoman/configstore.svg?branch=master)](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",
+ "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"
+}

Powered by Google App Engine
This is Rietveld 408576698