Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/readme.md |
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/readme.md b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/readme.md |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c1e6b45c53a8efcb17e1e0d6f2aa5eb77baa8683 |
--- /dev/null |
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/readme.md |
@@ -0,0 +1,34 @@ |
+# registry-url [](https://travis-ci.org/sindresorhus/registry-url) |
+ |
+> Get the set npm registry URL |
+ |
+It's usually `https://registry.npmjs.org/`, but [configurable](https://www.npmjs.org/doc/misc/npm-config.html#registry). |
+ |
+Use this if you do anything with the npm registry as users will expect it to use their configured registry. |
+ |
+ |
+## Install |
+ |
+```sh |
+$ npm install --save registry-url |
+``` |
+ |
+ |
+## Usage |
+ |
+```ini |
+# .npmrc |
+registry = 'https://custom-registry.com/' |
+``` |
+ |
+```js |
+var registryUrl = require('registry-url'); |
+ |
+console.log(registryUrl); |
+//=> https://custom-registry.com/ |
+``` |
+ |
+ |
+## License |
+ |
+MIT © [Sindre Sorhus](http://sindresorhus.com) |