Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorForrest L Norvell <forrest@npmjs.com>2014-07-19 10:11:57 +0400
committerForrest L Norvell <forrest@npmjs.com>2014-07-19 10:11:57 +0400
commit77de5a1ef92e47de049e37614db93731d96b72da (patch)
treea17f49bdb71ede765bcde3de150733474754933e
parentbe06213415f2d51a50d2c792b4cd0d3412a9a7b1 (diff)
npmconf@2.0.3
-rw-r--r--node_modules/npmconf/.npmignore2
-rw-r--r--node_modules/npmconf/config-defs.js2
-rw-r--r--node_modules/npmconf/package.json33
-rw-r--r--package.json2
4 files changed, 30 insertions, 9 deletions
diff --git a/node_modules/npmconf/.npmignore b/node_modules/npmconf/.npmignore
index baa471ca8..485007791 100644
--- a/node_modules/npmconf/.npmignore
+++ b/node_modules/npmconf/.npmignore
@@ -1 +1,3 @@
/test/fixtures/userconfig-with-gc
+.eslintrc
+.jshintrc
diff --git a/node_modules/npmconf/config-defs.js b/node_modules/npmconf/config-defs.js
index 76c12f973..0d74bb7f3 100644
--- a/node_modules/npmconf/config-defs.js
+++ b/node_modules/npmconf/config-defs.js
@@ -266,7 +266,7 @@ exports.types =
// local-address must be listed as an IP for a local network interface
// must be IPv4 due to node bug
, "local-address" : getLocalAddresses()
- , loglevel : ["silent","win","error","warn","http","info","verbose","silly"]
+ , loglevel : ["silent","error","warn","http","info","verbose","silly"]
, logstream : Stream
, long : Boolean
, message: String
diff --git a/node_modules/npmconf/package.json b/node_modules/npmconf/package.json
index d4af915bc..30aaeca18 100644
--- a/node_modules/npmconf/package.json
+++ b/node_modules/npmconf/package.json
@@ -1,6 +1,6 @@
{
"name": "npmconf",
- "version": "2.0.2",
+ "version": "2.0.3",
"description": "The config thing npm uses",
"main": "npmconf.js",
"directories": {
@@ -40,14 +40,33 @@
"url": "http://blog.izs.me"
},
"license": "BSD",
- "readme": "# npmconf\n\nThe config thing npm uses\n\nIf you are interested in interacting with the config settings that npm\nuses, then use this module.\n\nHowever, if you are writing a new Node.js program, and want\nconfiguration functionality similar to what npm has, but for your\nown thing, then I'd recommend using [rc](https://github.com/dominictarr/rc),\nwhich is probably what you want.\n\nIf I were to do it all over again, that's what I'd do for npm. But,\nalas, there are many systems depending on many of the particulars of\nnpm's configuration setup, so it's not worth the cost of changing.\n\n## USAGE\n\n```javascript\nvar npmconf = require('npmconf')\n\n// pass in the cli options that you read from the cli\n// or whatever top-level configs you want npm to use for now.\nnpmconf.load({some:'configs'}, function (er, conf) {\n // do stuff with conf\n conf.get('some', 'cli') // 'configs'\n conf.get('username') // 'joebobwhatevers'\n conf.set('foo', 'bar', 'user')\n conf.save('user', function (er) {\n // foo = bar is now saved to ~/.npmrc or wherever\n })\n})\n```\n",
- "readmeFilename": "README.md",
- "gitHead": "24ba74843e66a0994ad6c91d5b6420e75deffd0f",
+ "gitHead": "df12c6dffb0d5894afded0bc662f98c1320793d7",
"bugs": {
"url": "https://github.com/isaacs/npmconf/issues"
},
"homepage": "https://github.com/isaacs/npmconf",
- "_id": "npmconf@2.0.2",
- "_shasum": "81c1df84a2396e487e55586ebac474d090919583",
- "_from": "npmconf@latest"
+ "_id": "npmconf@2.0.3",
+ "_shasum": "b1bf8e47972e859e93d84873efea89cab6251344",
+ "_from": "npmconf@2.0.3",
+ "_npmVersion": "1.5.0-alpha-3",
+ "_npmUser": {
+ "name": "othiym23",
+ "email": "ogd@aoaioxxysz.net"
+ },
+ "maintainers": [
+ {
+ "name": "isaacs",
+ "email": "i@izs.me"
+ },
+ {
+ "name": "othiym23",
+ "email": "ogd@aoaioxxysz.net"
+ }
+ ],
+ "dist": {
+ "shasum": "b1bf8e47972e859e93d84873efea89cab6251344",
+ "tarball": "http://registry.npmjs.org/npmconf/-/npmconf-2.0.3.tgz"
+ },
+ "_resolved": "https://registry.npmjs.org/npmconf/-/npmconf-2.0.3.tgz",
+ "readme": "ERROR: No README data found!"
}
diff --git a/package.json b/package.json
index eeedda078..bbf0bea2a 100644
--- a/package.json
+++ b/package.json
@@ -69,7 +69,7 @@
"npm-package-arg": "~2.0.0",
"npm-registry-client": "~3.0.2",
"npm-user-validate": "~0.1.0",
- "npmconf": "~2.0.2",
+ "npmconf": "~2.0.3",
"npmlog": "~0.1.1",
"once": "~1.3.0",
"opener": "~1.3.0",