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:
authorisaacs <i@izs.me>2013-06-12 21:51:06 +0400
committerisaacs <i@izs.me>2013-06-12 21:51:06 +0400
commit754de8941cb52893ab53c3752571127cc6d31e4d (patch)
tree447c73c1be9b1cf0e7e5945a71e0c4df5d009ff1 /node_modules
parent475591b384a0de456d83ed61b5545ee84ea6a130 (diff)
couch-login@0.1.17
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/npm-registry-client/node_modules/couch-login/couch-login.js4
-rw-r--r--node_modules/npm-registry-client/node_modules/couch-login/package.json6
2 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/npm-registry-client/node_modules/couch-login/couch-login.js b/node_modules/npm-registry-client/node_modules/couch-login/couch-login.js
index 828a0e265..474f083b1 100644
--- a/node_modules/npm-registry-client/node_modules/couch-login/couch-login.js
+++ b/node_modules/npm-registry-client/node_modules/couch-login/couch-login.js
@@ -151,8 +151,8 @@ function makeReq (meth, body, f) { return function madeReq (p, d, cb) {
if (this.ca)
req.ca = this.ca
- if (this.strictSSL && this.strictSSL !== null)
- req.strictSSL = this.strictSSL
+ if (typeof this.strictSSL === 'boolean')
+ req.strictSSL = req.rejectUnauthorized = this.strictSSL
request(req, function (er, res, data) {
// update cookie.
diff --git a/node_modules/npm-registry-client/node_modules/couch-login/package.json b/node_modules/npm-registry-client/node_modules/couch-login/package.json
index fd28d575c..922ba0d82 100644
--- a/node_modules/npm-registry-client/node_modules/couch-login/package.json
+++ b/node_modules/npm-registry-client/node_modules/couch-login/package.json
@@ -6,7 +6,7 @@
},
"name": "couch-login",
"description": "A module for doing logged-in requests to a couchdb server",
- "version": "0.1.16",
+ "version": "0.1.17",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/couch-login.git"
@@ -26,6 +26,6 @@
"bugs": {
"url": "https://github.com/isaacs/couch-login/issues"
},
- "_id": "couch-login@0.1.16",
- "_from": "couch-login@~0.1.15"
+ "_id": "couch-login@0.1.17",
+ "_from": "couch-login@"
}