{"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"keywords":["urllib","http","urlopen","curl","wget","request","https"],"dist-tags":{"latest":"2.24.0"},"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","readme":"# urllib\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![appveyor build status][appveyor-image]][appveyor-url]\n[![Test coverage][codecov-image]][codecov-url]\n[![David deps][david-image]][david-url]\n[![Known Vulnerabilities][snyk-image]][snyk-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: https://img.shields.io/npm/v/urllib.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/urllib\n[travis-image]: https://img.shields.io/travis/node-modules/urllib.svg?style=flat-square\n[travis-url]: https://travis-ci.org/node-modules/urllib\n[appveyor-image]: https://ci.appveyor.com/api/projects/status/wpnl7r1llxyruja9?svg=true\n[appveyor-url]: https://ci.appveyor.com/project/eggjs/urllib-54ds2\n[codecov-image]: https://codecov.io/gh/node-modules/urllib/branch/master/graph/badge.svg\n[codecov-url]: https://codecov.io/gh/node-modules/urllib\n[david-image]: https://img.shields.io/david/node-modules/urllib.svg?style=flat-square\n[david-url]: https://david-dm.org/node-modules/urllib\n[snyk-image]: https://snyk.io/test/npm/urllib/badge.svg?style=flat-square\n[snyk-url]: https://snyk.io/test/npm/urllib\n[download-image]: https://img.shields.io/npm/dm/urllib.svg?style=flat-square\n[download-url]: https://npmjs.org/package/urllib\n\nRequest HTTP URLs in a complex world — basic\nand digest authentication, redirections, cookies, timeout and more.\n\n## Install\n\n```bash\n$ npm install urllib --save\n```\n\n## Usage\n\n### callback\n\n```js\nvar urllib = require('urllib');\n\nurllib.request('http://cnodejs.org/', function (err, data, res) {\n  if (err) {\n    throw err; // you need to handle error\n  }\n  console.log(res.statusCode);\n  console.log(res.headers);\n  // data is Buffer instance\n  console.log(data.toString());\n});\n```\n\n### Promise\n\nIf you've installed [bluebird][bluebird],\n[bluebird][bluebird] will be used.\n`urllib` does not install [bluebird][bluebird] for you.\n\nOtherwise, if you're using a node that has native v8 Promises (v0.11.13+),\nthen that will be used.\n\nOtherwise, this library will crash the process and exit,\nso you might as well install [bluebird][bluebird] as a dependency!\n\n```js\nvar urllib = require('urllib');\n\nurllib.request('http://nodejs.org').then(function (result) {\n  // result: {data: buffer, res: response object}\n  console.log('status: %s, body size: %d, headers: %j', result.res.statusCode, result.data.length, result.res.headers);\n}).catch(function (err) {\n  console.error(err);\n});\n```\n\n### co & generator\n\nIf you are using [co](https://github.com/visionmedia/co) or [koa](https://github.com/koajs/koa):\n\n```js\nvar co = require('co');\nvar urllib = require('urllib');\n\nco(function* () {\n  var result = yield urllib.requestThunk('http://nodejs.org');\n  console.log('status: %s, body size: %d, headers: %j',\n    result.status, result.data.length, result.headers);\n})();\n```\n\n## Global `response` event\n\nYou should create a urllib instance first.\n\n```js\nvar httpclient = require('urllib').create();\n\nhttpclient.on('response', function (info) {\n  error: err,\n  ctx: args.ctx,\n  req: {\n    url: url,\n    options: options,\n    size: requestSize,\n  },\n  res: res\n});\n\nhttpclient.request('http://nodejs.org', function (err, body) {\n  console.log('body size: %d', body.length);\n});\n```\n\n## API Doc\n\n### Method: `http.request(url[, options][, callback])`\n\n#### Arguments\n\n- **url** String | Object - The URL to request, either a String or a Object that return by [url.parse](http://nodejs.org/api/url.html#url_url_parse_urlstr_parsequerystring_slashesdenotehost).\n- ***options*** Object - Optional\n    - ***method*** String - Request method, defaults to `GET`. Could be `GET`, `POST`, `DELETE` or `PUT`. Alias 'type'.\n    - ***data*** Object - Data to be sent. Will be stringify automatically.\n    - ***dataAsQueryString*** Boolean - Force convert `data` to query string.\n    - ***content*** String | [Buffer](http://nodejs.org/api/buffer.html) - Manually set the content of payload. If set, `data` will be ignored.\n    - ***stream*** [stream.Readable](http://nodejs.org/api/stream.html#stream_class_stream_readable) - Stream to be pipe to the remote. If set, `data` and `content` will be ignored.\n    - ***writeStream*** [stream.Writable](http://nodejs.org/api/stream.html#stream_class_stream_writable) - A writable stream to be piped by the response stream. Responding data will be write to this stream and `callback` will be called with `data` set `null` after finished writing.\n    - ***consumeWriteStream*** [true] - consume the writeStream, invoke the callback after writeStream close.\n    - ***contentType*** String - Type of request data. Could be `json`. If it's `json`, will auto set `Content-Type: application/json` header.\n    - ***nestedQuerystring*** Boolean - urllib default use querystring to stringify form data which don't support nested object, will use [qs](https://github.com/ljharb/qs) instead of querystring to support nested object by set this option to true.\n    - ***dataType*** String - Type of response data. Could be `text` or `json`. If it's `text`, the `callback`ed `data` would be a String. If it's `json`, the `data` of callback would be a parsed JSON Object and will auto set `Accept: application/json` header. Default `callback`ed `data` would be a `Buffer`.\n    - **fixJSONCtlChars** Boolean - Fix the control characters (U+0000 through U+001F) before JSON parse response. Default is `false`.\n    - ***headers*** Object - Request headers.\n    - ***timeout*** Number | Array - Request timeout in milliseconds for connecting phase and response receiving phase. Defaults to `exports.TIMEOUT`, both are 5s. You can use `timeout: 5000` to tell urllib use same timeout on two phase or set them seperately such as `timeout: [3000, 5000]`, which will set connecting timeout to 3s and response 5s.\n    - ***auth*** String - `username:password` used in HTTP Basic Authorization.\n    - ***digestAuth*** String - `username:password` used in HTTP [Digest Authorization](http://en.wikipedia.org/wiki/Digest_access_authentication).\n    - ***agent*** [http.Agent](http://nodejs.org/api/http.html#http_class_http_agent) - HTTP Agent object.\n      Set `false` if you does not use agent.\n    - ***httpsAgent*** [https.Agent](http://nodejs.org/api/https.html#https_class_https_agent) - HTTPS Agent object.\n      Set `false` if you does not use agent.\n    - ***ca*** String | Buffer | Array - An array of strings or Buffers of trusted certificates.\n      If this is omitted several well known \"root\" CAs will be used, like VeriSign.\n      These are used to authorize connections.\n      **Notes**: This is necessary only if the server uses the self-signed certificate\n    - ***rejectUnauthorized*** Boolean - If true, the server certificate is verified against the list of supplied CAs.\n      An 'error' event is emitted if verification fails. Default: true.\n    - ***pfx*** String | Buffer - A string or Buffer containing the private key,\n      certificate and CA certs of the server in PFX or PKCS12 format.\n    - ***key*** String | Buffer - A string or Buffer containing the private key of the client in PEM format.\n      **Notes**: This is necessary only if using the client certificate authentication\n    - ***cert*** String | Buffer - A string or Buffer containing the certificate key of the client in PEM format.\n      **Notes**: This is necessary only if using the client certificate authentication\n    - ***passphrase*** String - A string of passphrase for the private key or pfx.\n    - ***ciphers*** String - A string describing the ciphers to use or exclude.\n    - ***secureProtocol*** String - The SSL method to use, e.g. SSLv3_method to force SSL version 3.\n    - ***followRedirect*** Boolean - follow HTTP 3xx responses as redirects. defaults to false.\n    - ***maxRedirects*** Number - The maximum number of redirects to follow, defaults to 10.\n    - ***formatRedirectUrl*** Function - Format the redirect url by your self. Default is `url.resolve(from, to)`.\n    - ***beforeRequest*** Function - Before request hook, you can change every thing here.\n    - ***streaming*** Boolean - let you get the `res` object when request  connected, default `false`. alias `customResponse`\n    - ***gzip*** Boolean - Accept gzip response content and auto decode it, default is `false`.\n    - ***timing*** Boolean - Enable timing or not, default is `false`.\n    - ***enableProxy*** Boolean - Enable proxy request, efault is `false`.\n    - ***proxy*** String | Object - proxy agent uri or options, default is `null`.\n- ***callback(err, data, res)*** Function - Optional callback.\n    - **err** Error - Would be `null` if no error accured.\n    - **data** Buffer | Object - The data responsed. Would be a Buffer if `dataType` is set to `text` or an JSON parsed into Object if it's set to `json`.\n    - **res** [http.IncomingMessage](http://nodejs.org/api/http.html#http_http_incomingmessage) - The response.\n\n#### Returns\n\n[http.ClientRequest](http://nodejs.org/api/http.html#http_class_http_clientrequest) - The request.\n\nCalling `.abort()` method of the request stream can cancel the request.\n\n#### Options: `options.data`\n\nWhen making a request:\n\n```js\nurllib.request('http://example.com', {\n  method: 'GET',\n  data: {\n    'a': 'hello',\n    'b': 'world'\n  }\n});\n```\n\nFor `GET` request, `data` will be stringify to query string, e.g. `http://example.com/?a=hello&b=world`.\n\nFor others like `POST`, `PATCH` or `PUT` request,\nin defaults, the `data` will be stringify into `application/x-www-form-urlencoded` format\nif `Content-Type` header is not set.\n\nIf `Content-type` is `application/json`, the `data` will be `JSON.stringify` to JSON data format.\n\n#### Options: `options.content`\n\n`options.content` is useful when you wish to construct the request body by yourself,\nfor example making a `Content-Type: application/json` request.\n\nNotes that if you want to send a JSON body, you should stringify it yourself:\n\n```js\nurllib.request('http://example.com', {\n  method: 'POST',\n  headers: {\n    'Content-Type': 'application/json'\n  },\n  content: JSON.stringify({\n    a: 'hello',\n    b: 'world'\n  })\n});\n```\n\nIt would make a HTTP request like:\n\n```http\nPOST / HTTP/1.1\nHost: example.com\nContent-Type: application/json\n\n{\n  \"a\": \"hello\",\n  \"b\": \"world\"\n}\n```\n\nThis exmaple can use `options.data` with `application/json` content type:\n\n```js\nurllib.request('http://example.com', {\n  method: 'POST',\n  headers: {\n    'Content-Type': 'application/json'\n  },\n  data: {\n    a: 'hello',\n    b: 'world'\n  }\n});\n```\n\n#### Options: `options.stream`\n\nUploads a file with [formstream](https://github.com/node-modules/formstream):\n\n```js\nvar urllib = require('urllib');\nvar formstream = require('formstream');\n\nvar form = formstream();\nform.file('file', __filename);\nform.field('hello', '你好urllib');\n\nvar req = urllib.request('http://my.server.com/upload', {\n  method: 'POST',\n  headers: form.headers(),\n  stream: form\n}, function (err, data, res) {\n  // upload finished\n});\n```\n\n### Response Object\n\nResponse is normal object, it contains:\n\n* `status` or `statusCode`: response status code.\n  * `-1` meaning some network error like `ENOTFOUND`\n  * `-2` meaning ConnectionTimeoutError\n* `headers`: response http headers, default is `{}`\n* `size`: response size\n* `aborted`: response was aborted or not\n* `rt`: total request and response time in ms.\n* `timing`: timing object if timing enable.\n* `remoteAddress`: http server ip address\n* `remotePort`: http server ip port\n\n#### Response: `res.aborted`\n\nIf the underlaying connection was terminated before `response.end()` was called,\n`res.aborted` should be `true`.\n\n```js\nrequire('http').createServer(function (req, res) {\n  req.resume();\n  req.on('end', function () {\n    res.write('foo haha\\n');\n    setTimeout(function () {\n      res.write('foo haha 2');\n      setTimeout(function () {\n        res.socket.end();\n      }, 300);\n    }, 200);\n    return;\n  });\n}).listen(1984);\n\nurllib.request('http://127.0.0.1:1984/socket.end', function (err, data, res) {\n  data.toString().should.equal('foo haha\\nfoo haha 2');\n  should.ok(res.aborted);\n  done();\n});\n```\n\n### HttpClient2\n\nHttpClient2 is a new instance for future. request method only return a promise, compatible with `async/await` and generator in co.\n\n#### Options\n\noptions extends from urllib, besides below\n\n- ***retry*** Number - a retry count, when get an error, it will request again until reach the retry count.\n- ***retryDelay*** Number - wait a delay(ms) between retries.\n- ***isRetry*** Function - determine whether retry, a response object as the first argument. it will retry when status >= 500 by default. Request error is not included.\n\n## Proxy\n\nSupport both `http` and `https` protocol.\n\n**Notice: Only support on Node.js >= 4.0.0**\n\n### Programming\n\n```js\nurllib.request('https://twitter.com/', {\n  enableProxy: true,\n  proxy: 'http://localhost:8008',\n}, (err, data, res) => {\n  console.log(res.status, res.headers);\n});\n```\n\n### System environment variable\n\n- http\n\n```bash\nHTTP_PROXY=http://localhost:8008\nhttp_proxy=http://localhost:8008\n```\n\n- https\n\n```bash\nHTTP_PROXY=http://localhost:8008\nhttp_proxy=http://localhost:8008\nHTTPS_PROXY=https://localhost:8008\nhttps_proxy=https://localhost:8008\n```\n\n```bash\n$ http_proxy=http://localhost:8008 node index.js\n```\n\n## TODO\n\n* [ ] Support component\n* [ ] Browser env use Ajax\n* [√] Support Proxy\n* [√] Upload file like form upload\n* [√] Auto redirect handle\n* [√] https & self-signed certificate\n* [√] Connection timeout & Response timeout\n* [√] Support `Accept-Encoding=gzip` by `options.gzip = true`\n* [√] Support [Digest access authentication](http://en.wikipedia.org/wiki/Digest_access_authentication)\n\n## License\n\n[MIT](LICENSE.txt)\n\n\n[bluebird]: https://github.com/petkaantonov/bluebird\n","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"users":{"306766053":true,"fengmk2":true,"alexyan":true,"chengen":true,"wangxingyun":true,"minghe":true,"nickeljew":true,"atian25":true,"peng.jiesi":true,"yokubee":true,"xgheaven":true,"princetoad":true,"kankungyip":true,"lnsoo":true,"wuyangwang":true,"shangsinian":true,"mecal":true,"micate":true,"modood":true,"alphatr":true,"bryan.ygf":true},"bugs":{"url":"https://github.com/node-modules/urllib/issues"},"license":"MIT","versions":{"0.0.1":{"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.cnblogs.com"},"name":"urllib","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","version":"0.0.1","homepage":"http://github.com/fengmk2/urllib","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"engines":{"node":">=v0.4.0"},"dependencies":{"iconv":"*"},"devDependencies":{},"_id":"urllib@0.0.1","_engineSupported":true,"_npmVersion":"1.0.5","_nodeVersion":"v0.4.7","_defaultsLoaded":true,"dist":{"shasum":"db8b80dad4bc3cdd195b0ca1db37f9c435d2ac2c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.0.1.tgz"},"scripts":{},"directories":{}},"0.1.0":{"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"name":"urllib","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","version":"0.1.0","homepage":"http://github.com/fengmk2/urllib","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"engines":{"node":">=v0.4.0"},"dependencies":{"iconv":"*"},"devDependencies":{},"_id":"urllib@0.1.0","_engineSupported":true,"_npmVersion":"1.0.5","_nodeVersion":"v0.4.7","_defaultsLoaded":true,"dist":{"shasum":"e6c560db4ac35532a4d1ded60a16ab88d5eaf8f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.1.0.tgz"},"scripts":{},"directories":{}},"0.2.0":{"name":"urllib","version":"0.2.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"./lib/urllib.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"iconv":">=1.1.3"},"devDependencies":{"should":">=0.4.2","mocha":">=0.7.1"},"engines":{"node":">=v0.6.10"},"license":"MIT","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"_id":"urllib@0.2.0","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"a6fc6c0793fef8db2907e800f865ed13ea8bda48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.1":{"name":"urllib","version":"0.2.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"./lib/urllib.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"iconv":">=1.1.3"},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1","jscoverage":"0.1.0"},"engines":{"node":">=v0.6.10"},"license":"MIT","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"_id":"urllib@0.2.1","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"1ad66a92993d45f867e6753d7348398ea133becf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.1.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.2":{"name":"urllib","version":"0.2.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"./lib/urllib.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"iconv":">=1.1.3"},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1","jscoverage":"0.1.0"},"engines":{"node":">=v0.6.10"},"license":"MIT","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"_id":"urllib@0.2.2","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"304daf6b01d56b84c1968ca369f4f9051e5e702c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.2.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.3":{"name":"urllib","version":"0.2.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"./lib/urllib.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1","jscoverage":"~0.1.0"},"engines":{"node":">=v0.6.10"},"license":"MIT","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"_id":"urllib@0.2.3","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"3e2d072600eaa0d1744da56b5c4696b0ae691b80","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.3.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.4":{"name":"urllib","version":"0.2.4","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"./lib/urllib.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1","jscoverage":"~0.1.0"},"engines":{"node":">=v0.6.10"},"license":"MIT","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"_id":"urllib@0.2.4","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"854c5a425f96bca6c3ad83378a47779808b855a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.4.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.5":{"name":"urllib","version":"0.2.5","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"_id":"urllib@0.2.5","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.21","_nodeVersion":"v0.6.17","_defaultsLoaded":true,"dist":{"shasum":"ba1fe8c787708786cd0eb20dd259116531d3eb16","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.5.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.6":{"name":"urllib","version":"0.2.6","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","_id":"urllib@0.2.6","dist":{"shasum":"2d6d07ce5d08232541062a3d9ffd0bb58ac32f4e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.6.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.7":{"name":"urllib","version":"0.2.7","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.2.7","dist":{"shasum":"3f66aaefaadaafa98784188f0e3a7629eb1e679e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.7.tgz"},"_npmVersion":"1.1.59","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.8":{"name":"urllib","version":"0.2.8","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"should":">=0.4.2","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.2.8","dist":{"shasum":"5bcd24eded366f5ad8b88f15fac86731f15ee65e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.8.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.2.9":{"name":"urllib","version":"0.2.9","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"devDependencies":{"should":">=0.4.2","pedding":"*","agentkeepalive":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.2.9","dist":{"shasum":"7d4f1ce0be16e6338cdaf16b33909417e9a5a255","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.2.9.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.0":{"name":"urllib","version":"0.3.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"devDependencies":{"should":">=0.4.2","pedding":"*","agentkeepalive":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.3.0","dist":{"shasum":"45068ddba43cbdccc1b66a23a509d189bea5058c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.0.tgz"},"_npmVersion":"1.1.61","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.1":{"name":"urllib","version":"0.3.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","jscover":"*","formstream":"*","agentkeepalive":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.3.1","dist":{"shasum":"727149cb28db9a90895062090bad4e4c6f2dbe60","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.2":{"name":"urllib","version":"0.3.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","jscover":"*","formstream":"*","agentkeepalive":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.3.2","dist":{"shasum":"d873c7b4157db8bc0a4c21fe1f31214acc249b08","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.2.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.3":{"name":"urllib","version":"0.3.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","jscover":"*","formstream":"*","agentkeepalive":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.3.3","dist":{"shasum":"3499800a19fea08698b67c05f79ca82318c3b088","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.3.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.4":{"name":"urllib","version":"0.3.4","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test"},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","jscover":"*","formstream":"*","agentkeepalive":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.3.4","dist":{"shasum":"537b144b54b8c4730bfafa7cea7edf477d2c4e02","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.4.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.5":{"name":"urllib","version":"0.3.5","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all","blanket":{"pattern":"urllib/lib"},"travis-cov":{"threshold":98}},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"_id":"urllib@0.3.5","dist":{"shasum":"080ef4e6ff72d6d73c709ff6bf367e428cfb59fa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.5.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.6":{"name":"urllib","version":"0.3.6","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.3.6","dist":{"shasum":"da6f86bba98733da72bbd02c794f8dd21ed89a8f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.6.tgz"},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.7":{"name":"urllib","version":"0.3.7","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1"},"devDependencies":{"should":">=0.4.2","pedding":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.3.7","dist":{"shasum":"9d408ec6427d7a4e75b19a6b8147dc208233c8b9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.7.tgz"},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.3.8":{"name":"urllib","version":"0.3.8","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.3.8","dist":{"shasum":"678e3ee2975c5738e8a524e92ec7407fa7cec991","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.3.8.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.4.0":{"name":"urllib","version":"0.4.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.4.0","dist":{"shasum":"5c2957a50303a5a7f0716b459678dc50b051d30f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.4.0.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.4.1":{"name":"urllib","version":"0.4.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.4.1","dist":{"shasum":"fff9a947ab6bd3120a998b846155fc54af46509a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.4.1.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.4.2":{"name":"urllib","version":"0.4.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.4.2","dist":{"shasum":"1e69a8ba6d699c78210e363868ec19de9a7d35e0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.4.2.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.4.3":{"name":"urllib","version":"0.4.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.4.3","dist":{"shasum":"23e2fc22757761e7c78c32ba28de623cf4d4ecef","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.4.3.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.4.4":{"name":"urllib","version":"0.4.4","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.4.4","dist":{"shasum":"4140cf6e958a4221d38442ef4cab8f52e72ca34c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.4.4.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.0":{"name":"urllib","version":"0.5.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.5.0","dist":{"shasum":"ebbc45333877436fa052ba076ffaca8ef5cb5aaf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.0.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.1":{"name":"urllib","version":"0.5.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.5.1","dist":{"shasum":"9e256b2b703dfe0a59637cb0dbb4308ed571971b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.2":{"name":"urllib","version":"0.5.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all","blanket":{"pattern":"urllib/lib"},"travis-cov":{"threshold":98}},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.5.2","dist":{"shasum":"fe3bbf2a78bbf3626b16ce75f5c5a92358230970","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.2.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.3":{"name":"urllib","version":"0.5.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.5.3","dist":{"shasum":"05101a2f05afae7d9b389d96bc9ce15214ef39ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.3.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.4":{"name":"urllib","version":"0.5.4","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.5.4","dist":{"shasum":"92c981c71da745e53a64526dbfb0ead2f26ffb6d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.4.tgz"},"_from":".","_npmVersion":"1.3.13","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.5":{"name":"urllib","version":"0.5.5","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/TBEDP/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/TBEDP/urllib.git"},"scripts":{"test":"make test-all"},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.2"},"devDependencies":{"should":">=0.4.2","pedding":"*","formstream":"*","agentkeepalive":"*","node-patch":"*","blanket":"*","travis-cov":"*","coveralls":"*","mocha-lcov-reporter":"*","mocha":">=0.14.1"},"engines":{"node":">= 0.6.10"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"}],"bugs":{"url":"https://github.com/TBEDP/urllib/issues"},"_id":"urllib@0.5.5","dist":{"shasum":"61e4c9da92c0d83dc88e4837e70f84d6537fe4bf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.5.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.6":{"name":"urllib","version":"0.5.6","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"blanket":{"pattern":"urllib/lib","data-cover-flags":{"debug":false}},"travis-cov":{"threshold":95}},"dependencies":{"buffer-concat":"0.0.1","debug":"0.7.4"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","blanket":"*","coveralls":"*","formstream":"0.0.8","mocha":">=0.14.1","mocha-lcov-reporter":"*","pedding":"0.0.3","should":"3.1.3","travis-cov":"*"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.6","dist":{"shasum":"b083011b175e369a43d93417b0004035039a3382","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.6.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.8":{"name":"urllib","version":"0.5.8","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://github.com/fengmk2"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"blanket":{"pattern":"urllib/lib","data-cover-flags":{"debug":false}},"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.7.4"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","blanket":"*","coveralls":"*","formstream":"0.0.8","jshint":"*","mocha":">=0.14.1","mocha-lcov-reporter":"*","pedding":"0.0.3","should":"3.1.3","travis-cov":"*"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.8","dist":{"shasum":"b387c4bb0e42006d97fbf464b2c522db44667d5e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.8.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.9":{"name":"urllib","version":"0.5.9","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.7.4"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.1.3"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.9","dist":{"shasum":"08243377192ae4178fd6568fc61f3eb212aaa5e9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.9.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.10":{"name":"urllib","version":"0.5.10","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.7.4"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.1.3"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.10","dist":{"shasum":"c732999a53b49e423d40d85d246f839900f3b30e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.10.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.11":{"name":"urllib","version":"0.5.11","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.7.4","default-user-agent":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.1.3"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.11","dist":{"shasum":"ad444ec5fadc02bab03b047f487271214cbd6842","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.11.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.12":{"name":"urllib","version":"0.5.12","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.7.4","default-user-agent":"0.0.1","utility":"0.1.11"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.2.0-beta1"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.12","dist":{"shasum":"61e14c9b6e7155f0126ee686e42fa3204ab9a1ea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.12.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.13":{"name":"urllib","version":"0.5.13","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.8.0","default-user-agent":"0.0.1","digest-header":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.2.0"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.13","dist":{"shasum":"bad3b034d20edfd0c5a24c621e8c4ea4a01e24e8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.13.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.14":{"name":"urllib","version":"0.5.14","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/fengmk2/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/fengmk2/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.8.0","default-user-agent":"0.0.1","digest-header":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.2.0"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/fengmk2/urllib/issues"},"_id":"urllib@0.5.14","dist":{"shasum":"9ccc4e492d08d80707a37ed1a4c05e9eedeffff3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.14.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.15":{"name":"urllib","version":"0.5.15","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.8.1","default-user-agent":"0.0.1","digest-header":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.3.1"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"}],"bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@0.5.15","dist":{"shasum":"97868a028dc54133707fdd2afb52883c8bc768d6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.15.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.16":{"name":"urllib","version":"0.5.16","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.8.1","default-user-agent":"0.0.1","digest-header":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.3.1"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"}],"bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@0.5.16","dist":{"shasum":"aa76a4bc5bbd384884a1a893266dd24bced4348d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.16.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"directories":{}},"0.5.17":{"name":"urllib","version":"0.5.17","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.8.1","default-user-agent":"0.0.1","digest-header":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.3.1"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"b7cc164fb1b1066259e81307816a4bf9c254b1e4","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@0.5.17","_shasum":"a8ca14eb4e8b7f6f2b04a0bdd0ed4f8236641075","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"a8ca14eb4e8b7f6f2b04a0bdd0ed4f8236641075","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.17.tgz"},"directories":{}},"1.0.0":{"name":"urllib","version":"1.0.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"bluebird":"*","agentkeepalive":"~0.2.0","autod":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"824894589cd4339d7b1580e95746a0312f587d4e","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.0.0","_shasum":"7826815c1d6671729809954c86620560bb28d36b","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"7826815c1d6671729809954c86620560bb28d36b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"urllib","version":"1.1.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"bluebird":"*","agentkeepalive":"~0.2.0","autod":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"d3eafbebdc877a4c9dc355a49ca492f959fdbe2b","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.1.0","_shasum":"a8f278e9f13464d7b1024b60528aa196ec32673c","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"a8f278e9f13464d7b1024b60528aa196ec32673c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"urllib","version":"1.2.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"bluebird":"*","agentkeepalive":"~0.2.0","autod":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"0eeded6e4c753770683537a6cb30b0f0c8691f17","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.2.0","_shasum":"90a102d33694c41352738543408b28148a38d0f4","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"90a102d33694c41352738543408b28148a38d0f4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"urllib","version":"1.2.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"bluebird":"*","agentkeepalive":"~0.2.0","autod":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"3cff62d10e73a19b5682090b49018d3c515b2255","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.2.1","_shasum":"3282b46250d921163dfffc17479a8cd3723ce2e3","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"3282b46250d921163dfffc17479a8cd3723ce2e3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.2.1.tgz"},"directories":{}},"1.3.0":{"name":"urllib","version":"1.3.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"bluebird":"*","agentkeepalive":"~0.2.0","autod":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"bc5ba354e1fb48c84d2ec45607f29d31f16109bd","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.3.0","_shasum":"94daaaa8001ec6081792ab28999f240092137069","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"94daaaa8001ec6081792ab28999f240092137069","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"urllib","version":"1.3.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"097b51a211866c85d0d616f54a0bcbf07ac43b1e","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.3.1","_shasum":"bcf11a21cff633442017d0008ebaf054bc801da4","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"bcf11a21cff633442017d0008ebaf054bc801da4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.3.1.tgz"},"directories":{}},"1.4.0":{"name":"urllib","version":"1.4.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"3de0b6e1c512a58b8c5fa72f15a4021e31a2ca93","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.4.0","_shasum":"453571215bb32edc203baa98df709e8126fa798a","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"453571215bb32edc203baa98df709e8126fa798a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.4.0.tgz"},"directories":{}},"1.4.1":{"name":"urllib","version":"1.4.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"fe775b4d9e8ea1bca32c9876e1270d879b2ac99d","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.4.1","_shasum":"41c84356a544521911b830a645e43e2ebbc03690","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"41c84356a544521911b830a645e43e2ebbc03690","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.4.1.tgz"},"directories":{}},"1.5.0":{"name":"urllib","version":"1.5.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"84af624b40e7993e57e03cab62b39b5c925bb0a8","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.5.0","_shasum":"c658ff72a884e94ac0baeccb84ffc881e725c4f2","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"c658ff72a884e94ac0baeccb84ffc881e725c4f2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.5.0.tgz"},"directories":{}},"1.5.1":{"name":"urllib","version":"1.5.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"badb68c822fdfeea082f7ee14e992282310c72bf","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.5.1","_shasum":"176b3d0dd2edd96685236c57bd2423aedaf86cee","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"176b3d0dd2edd96685236c57bd2423aedaf86cee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.5.1.tgz"},"directories":{}},"1.5.2":{"name":"urllib","version":"1.5.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"}],"gitHead":"4b92a21e951734ec134e2e1ab3c3c8de906bfc45","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@1.5.2","_shasum":"7eaf11567b3ce780dfb52bdd691e10007c3b2edd","_from":".","_npmVersion":"2.0.0-beta.3","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"7eaf11567b3ce780dfb52bdd691e10007c3b2edd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-1.5.2.tgz"},"directories":{}},"0.5.18":{"name":"urllib","version":"0.5.18","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"make test-all"},"config":{"travis-cov":{"threshold":95}},"dependencies":{"debug":"0.8.1","default-user-agent":"0.0.1","digest-header":"0.0.1"},"devDependencies":{"agentkeepalive":"0.2.2","autod":"*","formstream":"0.0.8","istanbul":"*","jshint":"*","mocha":">=0.14.1","pedding":"0.0.3","should":"3.3.1"},"engines":{"node":">= 0.8.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com"},{"name":"alsotang","email":"alsotang@gmail.com"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com"}],"gitHead":"810052815c370ab2bf48ee6de26e0c44add49ccc","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@0.5.18","_shasum":"87041af0834f1adbb472d0029ad0acd80b0a5fa2","_from":".","_npmVersion":"2.0.0-beta.3","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"}],"dist":{"shasum":"87041af0834f1adbb472d0029ad0acd80b0a5fa2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-0.5.18.tgz"},"directories":{}},"2.0.0":{"name":"urllib","version":"2.0.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0","media-typer":"~0.3.0","iconv-lite":"~0.4.4"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"}],"gitHead":"89c8fac76a316f0390d4caee19baea0b871d03c5","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.0.0","_shasum":"b7ca5b828f2a5f8becb6cf55e5a240a66362fb5a","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"b7ca5b828f2a5f8becb6cf55e5a240a66362fb5a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"urllib","version":"2.0.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js","jshint":"jshint .","cov":"npm run test-cov","autod":"autod -w --prefix '~' -t test -e examples && npm run cnpm","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~1.0.4","default-user-agent":"~0.0.1","digest-header":"~0.0.1","native-or-bluebird":"~1.0.0","media-typer":"~0.3.0","iconv-lite":"~0.4.4"},"devDependencies":{"agentkeepalive":"~0.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","should":"~4.0.4","should-http":"0.0.2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"}],"gitHead":"6d421c1d808ab327c026aaa2804f7d0f58f0b4e3","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.0.1","_shasum":"c69251430fb945121a26669def2fdb1baed3724d","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"c69251430fb945121a26669def2fdb1baed3724d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.0.1.tgz"},"directories":{}},"2.0.2":{"name":"urllib","version":"2.0.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"*","should":"~4.0.4","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"}],"gitHead":"ece354667315fcd096982cb9354234a4df7ad378","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.0.2","_shasum":"d28b88c6de3af44621881e847a1c449ee5fbf25c","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"d28b88c6de3af44621881e847a1c449ee5fbf25c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.0.2.tgz"},"directories":{}},"2.1.0":{"name":"urllib","version":"2.1.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"}],"gitHead":"c734c6141331baee32808fb789e453505523b6ad","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.1.0","_shasum":"f2dc85b2b8e851663452360611c318cac9456552","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.11.14","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"f2dc85b2b8e851663452360611c318cac9456552","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.1.0.tgz"},"directories":{}},"2.2.0":{"name":"urllib","version":"2.2.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"db25e91aeded9659ef0ff2eb1db450a265ffe2d7","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.2.0","_shasum":"a5bdd975007c5d0246c9dd38081dfb68c51b0f81","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.11.14","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"a5bdd975007c5d0246c9dd38081dfb68c51b0f81","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.2.0.tgz"},"directories":{}},"2.2.1":{"name":"urllib","version":"2.2.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"4076a7b736e2fad57c29882927ba39928dd8fdc9","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.2.1","_shasum":"8c032438248d0e2399c63271a174b5d1eff29fc5","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.11.14","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"8c032438248d0e2399c63271a174b5d1eff29fc5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.2.1.tgz"},"directories":{}},"2.2.2":{"name":"urllib","version":"2.2.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"242e3f277a715f749905e3eb0e956e533a7c51ae","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.2.2","_shasum":"c3fafb2effcde123c24b4b661dbc3b05d94d01bb","_from":".","_npmVersion":"2.2.0","_nodeVersion":"1.0.3","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"c3fafb2effcde123c24b4b661dbc3b05d94d01bb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.2.2.tgz"},"directories":{}},"2.3.0":{"name":"urllib","version":"2.3.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"8f393545a3b7031a338e4309aa6ba2bb557ee201","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.0","_shasum":"760e083bffc287493b4ecf39e9aaf54b4ea009d2","_from":".","_npmVersion":"2.5.1","_nodeVersion":"1.2.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"760e083bffc287493b4ecf39e9aaf54b4ea009d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.0.tgz"},"directories":{}},"2.0.3":{"name":"urllib","version":"2.0.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~0.0.8","istanbul":"*","jshint":"*","mocha":"*","pedding":"*","should":"~4.0.4","should-http":"*"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"}],"gitHead":"4d867b59021f0a6823d13161d6f70d2d00162c6c","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.0.3","_shasum":"d1ff92628e885e45b3ef033886f379aa01bca4f5","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"d1ff92628e885e45b3ef033886f379aa01bca4f5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.0.3.tgz"},"directories":{}},"2.3.1":{"name":"urllib","version":"2.3.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"20d086cb6c01282ed11454836427ccac5371a0a2","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.1","_shasum":"e68d439cf9fcb96e9b2cd69c47ddf31d7022c701","_from":".","_npmVersion":"2.7.0","_nodeVersion":"1.5.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"e68d439cf9fcb96e9b2cd69c47ddf31d7022c701","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.1.tgz"},"directories":{}},"2.3.2":{"name":"urllib","version":"2.3.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"5175866b558f5dde30edb2b76bbdb26b6a6264b7","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.2","_shasum":"f5e8cebc7c3dbd415d9fa10379c02dcda1519eff","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"f5e8cebc7c3dbd415d9fa10379c02dcda1519eff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.2.tgz"},"directories":{}},"2.3.3":{"name":"urllib","version":"2.3.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"index.js","repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.0","iconv-lite":"~0.4.4","media-typer":"~0.3.0","native-or-bluebird":"~1.1.2"},"devDependencies":{"agentkeepalive":"~1.2.0","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.1.0","should":"~4.3.0","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"dba6df390265a8afef98b47c3d1ffb8993f232f6","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.3","_shasum":"5cc63598ca5a979b560a069386bb02f4fd57f53d","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"5cc63598ca5a979b560a069386bb02f4fd57f53d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.3.tgz"},"directories":{}},"2.3.4":{"name":"urllib","version":"2.3.4","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.3","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.8","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0"},"devDependencies":{"agentkeepalive":"~2.0.1","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.3.3","should":"~6.0.1","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"cc64a45380c19e8937033d845b597cb74972256f","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.4","_shasum":"72906ec4f72fca4e239c8087168aa20195a811c5","_from":".","_npmVersion":"2.7.6","_nodeVersion":"1.7.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"72906ec4f72fca4e239c8087168aa20195a811c5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.4.tgz"},"directories":{}},"2.3.5":{"name":"urllib","version":"2.3.5","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org","contributors":"contributors -f plain -o AUTHORS"},"dependencies":{"debug":"~2.1.3","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.8","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0"},"devDependencies":{"agentkeepalive":"~2.0.1","autod":"*","bluebird":"*","co":"*","contributors":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.3.3","should":"~6.0.1","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"}],"gitHead":"a23717fadf513e7386d6a79c08e374de4aa4b1ec","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.5","_shasum":"97b508f789a8dfe34312ec3eaeeaa7113292b7e0","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"97b508f789a8dfe34312ec3eaeeaa7113292b7e0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.5.tgz"},"directories":{}},"2.3.6":{"name":"urllib","version":"2.3.6","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"~2.0.2","autod":"*","bluebird":"*","co":"*","formstream":"~1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"~1.0.0","semver":"~4.3.3","should":"~6.0.3","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"4e0b1bb24dcee10d118101a971cd306792eafcdd","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.6","_shasum":"f58a3fd49fcb438f8ddd1a3f849b843fe59b53b1","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"f58a3fd49fcb438f8ddd1a3f849b843fe59b53b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.6.tgz"},"directories":{}},"2.3.7":{"name":"urllib","version":"2.3.7","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"ee1b646ed558c6b7792053656ebec2dc2503b1b3","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.7","_shasum":"599151c50ae8e0287cf57fc0c462e7ad0e47c0b7","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"599151c50ae8e0287cf57fc0c462e7ad0e47c0b7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.7.tgz"},"directories":{}},"2.3.8":{"name":"urllib","version":"2.3.8","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.github.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"d739ca9cfcc8d8abfc048c01ba0ba4679065980a","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.8","_shasum":"9a65d632ec13da4e4611758ad49e484e5c1f187f","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead-horse","email":"dead_horse@qq.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"9a65d632ec13da4e4611758ad49e484e5c1f187f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.8.tgz"},"directories":{}},"2.3.9":{"name":"urllib","version":"2.3.9","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 20000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"c18188b3d4109b69259d0e3058a147c3069d4e4b","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.9","_shasum":"d28a64a63af193b6ded0ed18b45128326c7e2a04","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"d28a64a63af193b6ded0ed18b45128326c7e2a04","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.9.tgz"},"directories":{}},"2.3.10":{"name":"urllib","version":"2.3.10","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"34d6276b6c91046cc045357ed839af69f77e8ce8","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.10","_shasum":"5af00e7363907b32322601c34fb2cb0030d07207","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"5af00e7363907b32322601c34fb2cb0030d07207","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.10.tgz"},"directories":{}},"2.3.11":{"name":"urllib","version":"2.3.11","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"d130e3308e6ff9b470716c85fdbf6790f086a277","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.3.11","_shasum":"d41a8880db68857523a66c3abc0a440e14c8367b","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"d41a8880db68857523a66c3abc0a440e14c8367b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.3.11.tgz"},"directories":{}},"2.4.0":{"name":"urllib","version":"2.4.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","test-travis":"node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0","iojs":">= 1.0.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"c26253d2581112df375ea3613541219b63625434","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.4.0","_shasum":"2fb2ff943a8535ae32fda8439f1a0a9f10823055","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"2fb2ff943a8535ae32fda8439f1a0a9f10823055","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.4.0.tgz"},"directories":{}},"2.5.0":{"name":"urllib","version":"2.5.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"4","should":"6","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"dd16c828b83421902073b922829116b652d7e0de","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.5.0","_shasum":"4a6e9b80ed84320face2aaed3a41ed87ebb5f487","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"4a6e9b80ed84320face2aaed3a41ed87ebb5f487","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.5.0.tgz"},"directories":{}},"2.6.0":{"name":"urllib","version":"2.6.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5.1.0","should":"7.1.1","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"f4d909df2a1ab9baea75bb4535958334f08c55f6","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.6.0","_shasum":"42d438597c3a9981bcd2f2f6ef0d502c33445175","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.1.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"42d438597c3a9981bcd2f2f6ef0d502c33445175","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.6.0.tgz"},"directories":{}},"2.7.0":{"name":"urllib","version":"2.7.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5.1.0","should":"7.1.1","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"}],"gitHead":"feb5ba66641ec3e1dc5590a9c02f1dfb40004ef6","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.7.0","_shasum":"29f9bd5e818c0f256a989f6cb079f8446c204a20","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"29f9bd5e818c0f256a989f6cb079f8446c204a20","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.7.0.tgz"},"directories":{}},"2.7.1":{"name":"urllib","version":"2.7.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/.bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","jshint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples","cnpm":"npm install --registry=https://registry.npm.taobao.org"},"dependencies":{"debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","native-or-bluebird":"~1.2.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5.1.0","should":"7.1.1","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"c52b0f678df1803d2053f871d81a7ca02b7a813f","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.7.1","_shasum":"5f0beaa5e282862216f627dbd6b89fb560ebee71","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"5f0beaa5e282862216f627dbd6b89fb560ebee71","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.7.1.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/urllib-2.7.1.tgz_1454392860194_0.11714427941478789"},"directories":{}},"2.7.2":{"name":"urllib","version":"2.7.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples"},"dependencies":{"any-promise":"~1.0.0","debug":"~2.2.0","default-user-agent":"~0.0.1","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.10","media-typer":"~0.3.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5","should":"7","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"0b750094391451b2842fc6bf0c11db800b975053","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.7.2","_shasum":"8fda68f63e628b389b8ecf026d2a719c7c5c6c58","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"8fda68f63e628b389b8ecf026d2a719c7c5c6c58","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.7.2.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/urllib-2.7.2.tgz_1456340937064_0.5319506442174315"},"directories":{}},"2.7.3":{"name":"urllib","version":"2.7.3","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples"},"dependencies":{"any-promise":"~1.1.0","debug":"~2.2.0","default-user-agent":"~1.0.0","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.13","media-typer":"~0.3.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5","should":"7","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"78c45ebb4ddd07894fbb0e60b06af47e2293014d","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.7.3","_shasum":"dc2ce30a7ea8f823ef58a0101df55703b358bcbe","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"dc2ce30a7ea8f823ef58a0101df55703b358bcbe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.7.3.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/urllib-2.7.3.tgz_1456577318982_0.9517722190357745"},"directories":{}},"2.8.0":{"name":"urllib","version":"2.8.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib/"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '~' -t test -e examples"},"dependencies":{"any-promise":"~1.1.0","debug":"~2.2.0","default-user-agent":"~1.0.0","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.13","media-typer":"~0.3.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5","should":"7","should-http":"*","tar":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"460961dd2864ea5fd83584dd9e5d4a405f602071","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.8.0","_shasum":"22b20a2e764e3166f473772f4442dd1908d534b6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"22b20a2e764e3166f473772f4442dd1908d534b6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.8.0.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/urllib-2.8.0.tgz_1456580627140_0.6928963684476912"},"directories":{}},"2.9.0":{"name":"urllib","version":"2.9.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '~' --devprefix '^' -t test -e examples"},"dependencies":{"any-promise":"~1.1.0","debug":"~2.2.0","default-user-agent":"~1.0.0","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.13","media-typer":"~0.3.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"^2.1.1","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"^1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"^1.0.0","semver":"5","should":"^8.2.2","should-http":"*","tar":"^2.2.1"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"71e7beec9b4e2319e9ce6d48c48b24f45b60189e","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.9.0","_shasum":"3f0884b37fac7d7ddcb347c44b38d1ff95ac07a6","_from":".","_npmVersion":"3.8.3","_nodeVersion":"4.4.2","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"3f0884b37fac7d7ddcb347c44b38d1ff95ac07a6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.9.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.9.0.tgz_1461205289534_0.2517331005074084"},"directories":{}},"2.9.1":{"name":"urllib","version":"2.9.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '~' --devprefix '^' -t test -e examples"},"dependencies":{"any-promise":"~1.2.0","debug":"~2.2.0","default-user-agent":"~1.0.0","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.13","media-typer":"~0.3.0","statuses":"~1.2.1"},"devDependencies":{"agentkeepalive":"^2.1.1","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"^1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"^1.0.0","semver":"5","should":"^8.2.2","should-http":"*","tar":"^2.2.1"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"a16d560d74bc60dd9914efc686a22d6acb6b8fe9","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.9.1","_shasum":"63208573734d3ff9bdaba4c8d9c0367022731709","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"63208573734d3ff9bdaba4c8d9c0367022731709","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.9.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.9.1.tgz_1462763781106_0.850320465862751"},"directories":{}},"2.10.0":{"name":"urllib","version":"2.10.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '~' --devprefix '^' -t test -e examples"},"dependencies":{"any-promise":"~1.2.0","debug":"~2.2.0","default-user-agent":"~1.0.0","digest-header":"~0.0.1","humanize-ms":"~1.0.1","iconv-lite":"~0.4.13","media-typer":"~0.3.0","statuses":"~1.3.0"},"devDependencies":{"agentkeepalive":"^2.1.1","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"^1.0.0","istanbul":"*","jshint":"*","mocha":"*","pedding":"^1.0.0","semver":"5","should":"^8.4.0","should-http":"*","tar":"^2.2.1","through2":"^2.0.1"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"c7efa001c6c47b959ccfbf44d392c86f1bff1d43","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.10.0","_shasum":"cb2f4eb120229cde1bc900c743781fa2a636c5eb","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"cb2f4eb120229cde1bc900c743781fa2a636c5eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.10.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.10.0.tgz_1466493756889_0.16933523188345134"},"directories":{}},"2.11.0":{"name":"urllib","version":"2.11.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"68ea16ef91f62db90692c882759a135e0893efc5","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.11.0","_shasum":"359e95bb16509f6f030f38a5b18fed3946f497a9","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"359e95bb16509f6f030f38a5b18fed3946f497a9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.11.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.11.0.tgz_1466931169559_0.2710736943408847"},"directories":{}},"2.11.1":{"name":"urllib","version":"2.11.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"}],"gitHead":"d88b63b1308014511bc297bf2b5a780e14fc1e48","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.11.1","_shasum":"e45d579f1bbe42c9fae21cdff72568f3c8c8c945","_from":".","_npmVersion":"3.10.3","_nodeVersion":"4.4.7","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"e45d579f1bbe42c9fae21cdff72568f3c8c8c945","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.11.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.11.1.tgz_1470279789374_0.8408756679855287"},"directories":{}},"2.12.0":{"name":"urllib","version":"2.12.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"4703f2d6534c4cda10299659995f8c20bf0cc382","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.12.0","_shasum":"53ac1d55b098e6a1b27ccf03f0130008dcb50069","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"53ac1d55b098e6a1b27ccf03f0130008dcb50069","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.12.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.12.0.tgz_1470660304434_0.11488679214380682"},"directories":{}},"2.13.0":{"name":"urllib","version":"2.13.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"b2aed404be82500b671793287adc4dd66bf029d9","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.13.0","_shasum":"d7b0152b2f377fecdce7c32fb209c4aab9bd9eae","_from":".","_npmVersion":"3.10.3","_nodeVersion":"4.4.7","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"d7b0152b2f377fecdce7c32fb209c4aab9bd9eae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.13.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.13.0.tgz_1470715833075_0.6456980833318084"},"directories":{}},"2.13.1":{"name":"urllib","version":"2.13.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"7d45bc0930e5c207fa1a68e7f1bc4df071549d2b","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.13.1","_shasum":"e03cbeef2daf23a8add1d21fe6defb696540e24c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"e03cbeef2daf23a8add1d21fe6defb696540e24c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.13.1.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.13.1.tgz_1473478049298_0.438415493350476"},"directories":{}},"2.13.2":{"name":"urllib","version":"2.13.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"f2d963e9f63c5f09197b67ac0d8f8875d339faa5","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.13.2","_shasum":"c547fb278e03d0d77f14186dce0ca5cc3c09220d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"c547fb278e03d0d77f14186dce0ca5cc3c09220d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.13.2.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.13.2.tgz_1474167017223_0.948891774751246"},"directories":{}},"2.14.0":{"name":"urllib","version":"2.14.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"e4fc3e75b52c3517b79a82ab27fd03a1cc34d783","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.14.0","_shasum":"07fb6bbc27a8bcb3ff83e5a414c51aa37904f2fc","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"07fb6bbc27a8bcb3ff83e5a414c51aa37904f2fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.14.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.14.0.tgz_1474250069767_0.3134183536749333"},"directories":{}},"2.15.0":{"name":"urllib","version":"2.15.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"c0940f10b6f08e447703e3c3522a1d7a296c8ce3","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.15.0","_shasum":"e86b0e3a5578bd56f116c6b2741f8768d12c206e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"e86b0e3a5578bd56f116c6b2741f8768d12c206e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.15.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.15.0.tgz_1474438778000_0.8342920632567257"},"directories":{}},"2.15.1":{"name":"urllib","version":"2.15.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"38f8e9f964e9e469fb27cb799aff0ce0c2c89561","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.15.1","_shasum":"956d9af83d4e640dc3435f9de3ffab8c3485f956","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"956d9af83d4e640dc3435f9de3ffab8c3485f956","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.15.1.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.15.1.tgz_1474866750419_0.43798389309085906"},"directories":{}},"2.16.0":{"name":"urllib","version":"2.16.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","media-typer":"^0.3.0","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"af334381df90e1767f9aba33e391de165807d8ec","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.16.0","_shasum":"8edcc90950ba4f8e3b4804b0831ddba3ecfeb356","_from":".","_npmVersion":"3.10.3","_nodeVersion":"4.4.7","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"8edcc90950ba4f8e3b4804b0831ddba3ecfeb356","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.16.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.16.0.tgz_1474955610787_0.9315043613314629"},"directories":{}},"2.16.1":{"name":"urllib","version":"2.16.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","content-type":"^1.0.2","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"11c42a0fe73e4ec25ba43ab40beced2e8527c765","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.16.1","_shasum":"4ba88bbac7709e8b6270cb1132cdafc49e186002","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.6.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"4ba88bbac7709e8b6270cb1132cdafc49e186002","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.16.1.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.16.1.tgz_1476066576786_0.6217750357463956"},"directories":{}},"2.17.0":{"name":"urllib","version":"2.17.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","content-type":"^1.0.2","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"13662ea1367bc7fac6bff9950c638f53a6d9207b","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.17.0","_shasum":"062264d52f1713deddecc7dd8e0e9000864099a9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"4.4.7","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"dist":{"shasum":"062264d52f1713deddecc7dd8e0e9000864099a9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.17.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/urllib-2.17.0.tgz_1476348057935_0.42674178583547473"},"directories":{}},"2.17.1":{"name":"urllib","version":"2.17.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/urllib.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","content-type":"^1.0.2","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"20894d4e6dee0d45637839aacb8d85f3919eb4e0","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.17.1","_shasum":"6bf357839c41761121a640d220acd07a38209d72","_from":".","_npmVersion":"3.10.3","_nodeVersion":"4.4.7","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"dist":{"shasum":"6bf357839c41761121a640d220acd07a38209d72","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.17.1.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.17.1.tgz_1480065369317_0.9001144364010543"},"directories":{}},"2.18.0":{"name":"urllib","version":"2.18.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","content-type":"^1.0.2","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"409ccf9275ed9b099ca4baadef49bf2202ddcccc","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.18.0","_shasum":"4b4f3afda30554887ae0bd1c5f1c167eea7e4777","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"4b4f3afda30554887ae0bd1c5f1c167eea7e4777","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.18.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/urllib-2.18.0.tgz_1481106260758_0.5610044512432069"},"directories":{}},"2.19.0":{"name":"urllib","version":"2.19.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.2.0","content-type":"^1.0.2","debug":"^2.2.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.13","statuses":"^1.3.0"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"1","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"1","power-assert":"^1.4.1","semver":"5","should":"8","should-http":"*","tar":"2","through2":"2"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"b2e0ca7a40b52686f7a314a70770ada7ba1c7e34","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.19.0","_shasum":"55833c3b8a227fe497606afb7ee6c35cf58c9f2b","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"55833c3b8a227fe497606afb7ee6c35cf58c9f2b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.19.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.19.0.tgz_1481694492316_0.9364927869755775"},"directories":{}},"2.20.0":{"name":"urllib","version":"2.20.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"m@fengmk2.com","url":"http://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r should -r should-http -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","statuses":"^1.3.1"},"devDependencies":{"agentkeepalive":"2","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"^1.1.0","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","should":"8","should-http":"*","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"997d887c77cfa9cff4836862395fd9dde0529d1f","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.20.0","_shasum":"4afac4a1f348d4b4a74f9e138c6327874b7a95ea","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"4afac4a1f348d4b4a74f9e138c6327874b7a95ea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.20.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/urllib-2.20.0.tgz_1486366750382_0.5374918803572655"},"directories":{}},"2.21.0":{"name":"urllib","version":"2.21.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","statuses":"^1.3.1"},"devDependencies":{"agentkeepalive":"^2.2.0","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"^1.1.0","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"acb306df765fe15adb08c84778980802f435a7f0","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.21.0","_shasum":"00b64ff159f09a2ade3cc2baf8a1a54ccb8ce70f","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"00b64ff159f09a2ade3cc2baf8a1a54ccb8ce70f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.21.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.21.0.tgz_1488203788531_0.5017128470353782"},"directories":{}},"2.21.1":{"name":"urllib","version":"2.21.1","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","ee-first":"~1.1.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","statuses":"^1.3.1"},"devDependencies":{"agentkeepalive":"^2.2.0","autod":"*","bluebird":"*","co":"*","coffee":"1","formstream":"^1.1.0","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"bf5394194d2b9ad12a98a41eb14b2ffed2c89c7f","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.21.1","_shasum":"98cfc4f960ee783e576a4dcea4537971d99eb701","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"98cfc4f960ee783e576a4dcea4537971d99eb701","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.21.1.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.21.1.tgz_1489634251105_0.763929468812421"},"directories":{}},"2.21.2":{"name":"urllib","version":"2.21.2","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","ee-first":"~1.1.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","statuses":"^1.3.1"},"devDependencies":{"agentkeepalive":"^2.2.0","autod":"*","bluebird":"*","busboy":"^0.2.14","co":"*","coffee":"1","formstream":"^1.1.0","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"2aceabdae24c2a1aca67e9485c3e6b684eaa81f8","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.21.2","_shasum":"ecd7306224aae99fab3744fab707a43417f8abc5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.9.1","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"dist":{"shasum":"ecd7306224aae99fab3744fab707a43417f8abc5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.21.2.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.21.2.tgz_1489932752718_0.27092051156796515"},"directories":{}},"2.22.0":{"name":"urllib","version":"2.22.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test":"npm run lint && mocha -R spec -t 30000 -r intelli-espower-loader test/*.test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","ee-first":"~1.1.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","qs":"^6.4.0","statuses":"^1.3.1"},"devDependencies":{"agentkeepalive":"^2.2.0","autod":"*","bluebird":"*","busboy":"^0.2.14","co":"*","coffee":"1","formstream":"^1.1.0","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"677e2ef90b3c0e0f26889696ca6eb88e2c4f5ded","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.22.0","_shasum":"2965dc4ae127a6fb695b7db27d3184f17d82cb42","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"dead_horse","email":"dead_horse@qq.com"},"dist":{"shasum":"2965dc4ae127a6fb695b7db27d3184f17d82cb42","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.22.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/urllib-2.22.0.tgz_1491796717621_0.27652639243751764"},"directories":{}},"2.23.0":{"name":"urllib","version":"2.23.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test-local":"mocha -t 30000 -r intelli-espower-loader test/*.test.js","test":"npm run lint && npm run test-local","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","ee-first":"~1.1.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","qs":"^6.4.0","statuses":"^1.3.1","utility":"^1.12.0"},"devDependencies":{"agentkeepalive":"^2.2.0","autod":"*","bluebird":"*","busboy":"^0.2.14","co":"*","coffee":"1","formstream":"^1.1.0","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"92808adbd73aa488138eb8e7b8b507a5ff35f80a","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.23.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"integrity":"sha512-SjWt2Sii7BYxIUSKN9pZaI0lXmXCTEAURnNbSpQRRcMYhCoFCsQBPrTXedq0aSwVK7LlRFQx3DLUejO7wlCGxw==","shasum":"fde63c494d7c9d1f12dbca4fd236939a7b788c44","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.23.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/urllib-2.23.0.tgz_1500358535101_0.849988296860829"},"directories":{}},"2.24.0":{"name":"urllib","version":"2.24.0","description":"Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more.","keywords":["urllib","http","urlopen","curl","wget","request","https"],"author":{"name":"fengmk2","email":"fengmk2@gmail.com","url":"https://fengmk2.com"},"homepage":"http://github.com/node-modules/urllib","main":"lib/index.js","files":["lib"],"repository":{"type":"git","url":"git://github.com/node-modules/urllib.git"},"scripts":{"test-local":"mocha -t 30000 -r intelli-espower-loader test/*.test.js","test":"npm run lint && npm run test-local","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -t 30000 -r intelli-espower-loader test/*.test.js","ci":"npm run lint && npm run test-cov","lint":"jshint .","autod":"autod -w --prefix '^' -t test -e examples"},"dependencies":{"any-promise":"^1.3.0","content-type":"^1.0.2","debug":"^2.6.0","default-user-agent":"^1.0.0","digest-header":"^0.0.1","ee-first":"~1.1.1","humanize-ms":"^1.2.0","iconv-lite":"^0.4.15","proxy-agent":"^2.1.0","qs":"^6.4.0","statuses":"^1.3.1","utility":"^1.12.0"},"devDependencies":{"agentkeepalive":"^2.2.0","autod":"*","bluebird":"*","busboy":"^0.2.14","co":"*","coffee":"1","formstream":"^1.1.0","http-proxy":"^1.16.2","intelli-espower-loader":"^1.0.1","istanbul":"*","jshint":"*","mocha":"*","muk":"^0.4.0","pedding":"^1.1.0","power-assert":"^1.4.2","semver":"5","tar":"^2.2.1","through2":"^2.0.3"},"engines":{"node":">= 0.10.0"},"license":"MIT","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"gitHead":"64d872911e60bc12439b83db21d8768f8a55befb","bugs":{"url":"https://github.com/node-modules/urllib/issues"},"_id":"urllib@2.24.0","_shasum":"c18959ae7a9b6d24bc979583745e4f5b65f0206c","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.4","_npmUser":{"name":"fengmk2","email":"fengmk2@gmail.com"},"dist":{"shasum":"c18959ae7a9b6d24bc979583745e4f5b65f0206c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/urllib/-/urllib-2.24.0.tgz"},"maintainers":[{"name":"fengmk2","email":"fengmk2@gmail.com"},{"name":"dead_horse","email":"dead_horse@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/urllib-2.24.0.tgz_1501488030814_0.6380630803760141"},"directories":{}}},"name":"urllib","contributors":[{"name":"fengmk2","email":"fengmk2@gmail.com","url":"http://fengmk2.com"},{"name":"aleafs","email":"zhangxc83@gmail.com","url":"https://github.com/aleafs"},{"name":"Jackson Tian","email":"shyvo1987@gmail.com","url":"https://github.com/JacksonTian"},{"name":"ibigbug","email":"x1aoba@icloud.com","url":"https://github.com/ibigbug"},{"name":"XiNGRZ","email":"chenxingyu92@gmail.com","url":"https://github.com/XiNGRZ"},{"name":"dead_horse","email":"dead_horse@qq.com","url":"http://deadhorse.me/"},{"name":"coderhaoxin","email":"coderhaoxin@outlook.com","url":"https://github.com/coderhaoxin"},{"name":"alsotang","email":"alsotang@gmail.com","url":"https://github.com/alsotang"},{"name":"Jonathan Dahan","email":"jonathan@jedahan.com","url":"https://github.com/jedahan"},{"name":"popomore","email":"sakura9515@gmail.com","url":"https://github.com/popomore"},{"name":"fishbar","email":"zhengxinlin@gmail.com","url":"https://github.com/fishbar"},{"name":"coolme200","email":"tangyao@taobao.com","url":"https://github.com/coolme200"},{"name":"amunu","email":"panyilinlove@qq.com","url":"https://github.com/Amunu"},{"name":"Yuwei Ba","email":"xiaobayuwei@gmail.com","url":"https://github.com/ibigbug"}],"time":{"modified":"2017-07-31T08:00:31.004Z","created":"2011-05-16T02:11:39.183Z","0.0.1":"2011-05-16T02:11:40.905Z","0.1.0":"2011-05-16T07:32:55.750Z","0.2.0":"2012-02-29T07:30:26.137Z","0.2.1":"2012-03-23T05:59:34.993Z","0.2.2":"2012-03-23T15:46:03.988Z","0.2.3":"2012-03-26T16:30:59.009Z","0.2.4":"2012-03-27T08:52:38.459Z","0.2.5":"2012-05-25T15:01:00.788Z","0.2.6":"2012-07-22T14:19:55.481Z","0.2.7":"2012-08-24T16:32:25.941Z","0.2.8":"2012-09-17T12:22:47.325Z","0.2.9":"2012-09-26T16:00:08.703Z","0.3.0":"2012-10-10T06:44:25.348Z","0.3.1":"2012-11-05T10:45:55.273Z","0.3.2":"2012-11-07T16:05:54.146Z","0.3.3":"2012-12-14T06:38:51.034Z","0.3.4":"2013-03-06T09:13:30.114Z","0.3.5":"2013-07-10T01:10:00.296Z","0.3.6":"2013-07-11T01:09:38.739Z","0.3.7":"2013-07-11T01:34:52.834Z","0.3.8":"2013-08-02T03:57:54.063Z","0.4.0":"2013-08-05T04:23:27.507Z","0.4.1":"2013-08-05T08:09:18.468Z","0.4.2":"2013-08-10T09:29:35.634Z","0.4.3":"2013-08-10T10:46:41.564Z","0.4.4":"2013-08-10T15:06:36.680Z","0.5.0":"2013-08-11T13:57:27.218Z","0.5.1":"2013-08-23T04:54:56.867Z","0.5.2":"2013-09-23T03:00:33.512Z","0.5.3":"2013-10-18T05:53:01.692Z","0.5.4":"2013-11-08T17:40:14.121Z","0.5.5":"2013-12-10T01:38:46.876Z","0.5.6":"2014-03-05T14:53:12.027Z","0.5.7":"2014-03-07T10:13:11.967Z","0.5.8":"2014-03-07T10:20:29.028Z","0.5.9":"2014-03-10T03:12:39.417Z","0.5.10":"2014-03-11T01:58:46.430Z","0.5.11":"2014-03-13T01:33:29.238Z","0.5.12":"2014-03-29T02:36:59.577Z","0.5.13":"2014-03-31T03:38:58.226Z","0.5.14":"2014-04-21T13:10:05.490Z","0.5.15":"2014-05-04T05:55:31.166Z","0.5.16":"2014-05-15T05:31:01.842Z","0.5.17":"2014-08-08T02:43:50.295Z","1.0.0":"2014-08-25T08:49:01.572Z","1.1.0":"2014-08-25T10:13:43.851Z","1.2.0":"2014-08-26T02:20:07.230Z","1.2.1":"2014-08-26T03:33:53.453Z","1.3.0":"2014-08-26T07:39:23.250Z","1.3.1":"2014-08-27T03:32:34.787Z","1.4.0":"2014-08-27T11:17:40.049Z","1.4.1":"2014-08-28T10:48:18.857Z","1.5.0":"2014-09-10T05:38:19.216Z","1.5.1":"2014-09-10T08:33:03.239Z","1.5.2":"2014-09-15T14:57:01.340Z","0.5.18":"2014-09-15T15:00:18.216Z","2.0.0":"2014-10-13T09:23:25.539Z","2.0.1":"2014-10-15T07:55:56.851Z","2.0.2":"2014-10-31T16:42:36.071Z","2.1.0":"2014-11-15T15:49:56.513Z","2.2.0":"2014-11-28T07:08:53.338Z","2.2.1":"2014-12-10T07:35:04.157Z","2.2.2":"2015-01-20T16:45:06.852Z","2.3.0":"2015-02-16T07:19:28.506Z","2.0.3":"2015-03-08T13:29:13.496Z","2.3.1":"2015-03-08T13:51:05.403Z","2.3.2":"2015-03-29T11:38:35.879Z","2.3.3":"2015-03-30T04:00:46.399Z","2.3.4":"2015-04-19T12:06:50.998Z","2.3.5":"2015-05-11T15:09:18.707Z","2.3.6":"2015-06-03T02:55:38.432Z","2.3.7":"2015-06-04T09:07:47.543Z","2.3.8":"2015-06-05T23:43:12.778Z","2.3.9":"2015-07-23T01:16:43.431Z","2.3.10":"2015-08-12T12:21:24.053Z","2.3.11":"2015-08-12T13:22:59.698Z","2.4.0":"2015-08-20T09:58:00.263Z","2.5.0":"2015-09-30T09:34:26.223Z","2.6.0":"2015-12-09T06:13:20.866Z","2.7.0":"2016-01-13T17:29:20.674Z","2.7.1":"2016-02-02T06:01:01.448Z","2.7.2":"2016-02-24T19:08:58.354Z","2.7.3":"2016-02-27T12:48:40.302Z","2.8.0":"2016-02-27T13:43:50.039Z","2.9.0":"2016-04-21T02:21:32.167Z","2.9.1":"2016-05-09T03:16:23.578Z","2.10.0":"2016-06-21T07:22:39.528Z","2.11.0":"2016-06-26T08:52:51.948Z","2.11.1":"2016-08-04T03:03:10.848Z","2.12.0":"2016-08-08T12:45:06.773Z","2.13.0":"2016-08-09T04:10:34.997Z","2.13.1":"2016-09-10T03:27:30.905Z","2.13.2":"2016-09-18T02:50:18.999Z","2.14.0":"2016-09-19T01:54:31.815Z","2.15.0":"2016-09-21T06:19:39.772Z","2.15.1":"2016-09-26T05:12:32.654Z","2.16.0":"2016-09-27T05:53:32.365Z","2.16.1":"2016-10-10T02:29:37.545Z","2.17.0":"2016-10-13T08:40:58.960Z","2.17.1":"2016-11-25T09:16:11.436Z","2.18.0":"2016-12-07T10:24:21.597Z","2.19.0":"2016-12-14T05:48:14.382Z","2.20.0":"2017-02-06T07:39:12.368Z","2.21.0":"2017-02-27T13:56:28.944Z","2.21.1":"2017-03-16T03:17:31.354Z","2.21.2":"2017-03-19T14:12:33.034Z","2.22.0":"2017-04-10T03:58:37.953Z","2.23.0":"2017-07-18T06:15:35.279Z","2.24.0":"2017-07-31T08:00:31.004Z"},"readmeFilename":"README.md","homepage":"http://github.com/node-modules/urllib"}