{"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"keywords":["chromedriver","selenium"],"dist-tags":{"latest":"2.31.0"},"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"description":"ChromeDriver for Selenium","readme":"ChromeDriver\n=======\n[![Build status](https://travis-ci.org/giggio/node-chromedriver.svg)](https://travis-ci.org/giggio/node-chromedriver/) [![Build status](https://ci.appveyor.com/api/projects/status/wr4c16rs5q113vy3?svg=true)](https://ci.appveyor.com/project/giggio/node-chromedriver)\n[![npm](https://img.shields.io/npm/dt/chromedriver.svg)](https://www.npmjs.com/package/chromedriver)\n\nAn NPM wrapper for Selenium [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/).\n\nBuilding and Installing\n-----------------------\n\n```shell\nnpm install chromedriver\n```\n\nOr grab the source and\n\n```shell\nnode ./install.js\n```\n\nWhat this is really doing is just grabbing a particular \"blessed\" (by\nthis module) version of ChromeDriver. As new versions are released\nand vetted, this module will be updated accordingly.\n\nThe package has been set up to fetch and run ChromeDriver for MacOS (darwin),\nLinux based platforms (as identified by nodejs), and Windows.  If you\nspot any platform weirdnesses, let us know or send a patch.\n\n### Custom binaries url\n\nTo use a mirror of the ChromeDriver binaries use npm config property `chromedriver_cdnurl`.\nDefault is `http://chromedriver.storage.googleapis.com`.\n\n```shell\nnpm install chromedriver --chromedriver_cdnurl=https://npm.taobao.org/mirrors/chromedriver\n```\n\nOr add property into your [`.npmrc`](https://docs.npmjs.com/files/npmrc) file.\n\n```\nchromedriver_cdnurl=https://npm.taobao.org/mirrors/chromedriver\n```\n\nAnother option is to use PATH variable `CHROMEDRIVER_CDNURL`.\n\n```shell\nCHROMEDRIVER_CDNURL=https://npm.taobao.org/mirrors/chromedriver npm install chromedriver\n```\n\n### Custom binaries file\n\nTo get the chromedriver from the filesystem instead of a web request use the npm config property `chromedriver_filepath`.\n\n```shell\nnpm install chromedriver --chromedriver_filepath=/path/to/chromedriver_mac64.zip\n```\n\nOr add property into your [`.npmrc`](https://docs.npmjs.com/files/npmrc) file.\n\n```\nchromedriver_filepath=/path/to/chromedriver_mac64.zip\n```\n\nAnother option is to use the PATH variable `CHROMEDRIVER_FILEPATH`\n\n```shell\nCHROMEDRIVER_FILEPATH=/path/to/chromedriver_mac64.zip\n```\n\nRunning\n-------\n\n```shell\nbin/chromedriver [arguments]\n```\n\nAnd npm will install a link to the binary in `node_modules/.bin` as\nit is wont to do.\n\nRunning with Selenium WebDriver\n-------------------------------\n\n```javascript\nrequire('chromedriver');\nvar webdriver = require('selenium-webdriver');\nvar driver = new webdriver.Builder()\n  .forBrowser('chrome')\n  .build();\n```\n\n(Tested for selenium-webdriver version `2.48.2`)\n\nThe path will be added to the process automatically, you don't need to configure it.\nBut you can get it from `require('chromedriver').path` if you want it.\n\nRunning via node\n----------------\n\nThe package exports a `path` string that contains the path to the\nchromdriver binary/executable.\n\nBelow is an example of using this package via node.\n\n```javascript\nvar childProcess = require('child_process');\nvar chromedriver = require('chromedriver');\nvar binPath = chromedriver.path;\n\nvar childArgs = [\n  'some argument'\n];\n\nchildProcess.execFile(binPath, childArgs, function(err, stdout, stderr) {\n  // handle results\n});\n\n```\n\nYou can also use the start and stop methods:\n\n```javascript\nvar chromedriver = require('chromedriver');\n\nargs = [\n\t// optional arguments\n];\nchromedriver.start(args);\n// run your tests\nchromedriver.stop();\n\n```\nNote: if your tests are ran asynchronously, chromedriver.stop() will have to be\nexecuted as a callback at the end of your tests\n\nVersioning\n----------\n\nThe NPM package version tracks the version of chromedriver that will be installed,\nwith an additional build number that is used for revisions to the installer.\nYou can use the package version number to install a specific version, or use the\nsetting to a specific version. To always install the latest version of Chromedriver,\nuse `LATEST` as the version number:\n\n```shell\nnpm install chromedriver --chromedriver_version=LATEST\n```\n\nOr add property into your [`.npmrc`](https://docs.npmjs.com/files/npmrc) file.\n\n```\nchromedriver_version=LATEST\n```\n\nAnother option is to use env variable `CHROMEDRIVER_VERSION`.\n\n```shell\nCHROMEDRIVER_VERSION=LATEST npm install chromedriver\n```\n\nA Note on chromedriver\n-------------------\n\nChromedriver is not a library for NodeJS.\n\nThis is an _NPM wrapper_ and can be used to conveniently make ChromeDriver available\nIt is not a Node JS wrapper.\n\nContributing\n------------\n\nQuestions, comments, bug reports, and pull requests are all welcome.  Submit them at\n[the project on GitHub](https://github.com/giggio/node-chromedriver/).\n\nBug reports that include steps-to-reproduce (including code) are the\nbest. Even better, make them in the form of pull requests.\n\nAuthor\n------\n\n[Giovanni Bassi](https://github.com/giggio)\n\nThanks for Obvious and their PhantomJS project for heavy inspiration! Check their project on [Github](https://github.com/Obvious/phantomjs/tree/master/bin).\n\nLicense\n-------\n\nLicensed under the Apache License, Version 2.0.\n","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"users":{"285858315":true,"arif_iq":true,"knownasilya":true,"parkerproject":true,"huangkai":true,"octalmage":true,"acollins-ts":true,"bogdanlivadariu":true,"zeljkofilipin":true,"drazisil":true,"mohamedrm":true,"po":true,"yokubee":true,"scabrerao":true,"coalesce":true,"jakubzitny":true,"ivan.marquez":true,"zdying":true,"vassiliy.pimkin":true,"appsparkler":true,"lgh06":true,"lhg861":true,"superchenney":true,"jamesbedont":true,"tamer1an":true,"walnut":true},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"license":"Apache-2.0","versions":{"2.0.0":{"name":"chromedriver","version":"2.0.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.0.0","dist":{"shasum":"65c4d610d9226d4e101bdef8db1542415da26f7a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.0.0.tgz"},"_from":".","_npmVersion":"1.2.19","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"directories":{}},"2.0.1":{"name":"chromedriver","version":"2.0.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.0.1","dist":{"shasum":"4d3814feaedb5ecc48fcbf1e4df864068b30691e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.0.1.tgz"},"_from":".","_npmVersion":"1.2.19","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.2.0":{"name":"chromedriver","version":"2.2.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.2.0","dist":{"shasum":"d0de54a5d628e846ef69de6e6ab3341b109030bd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.2.0.tgz"},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.3.0":{"name":"chromedriver","version":"2.3.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.3.0","dist":{"shasum":"6cabe3ef801d0aa67e1a51ca9fb9cbacefb73daf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.3.0.tgz"},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.6.0":{"name":"chromedriver","version":"2.6.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.6.0","dist":{"shasum":"4615a8a21861a94a1283cb80158200bd5e580f0f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.6.0.tgz"},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.8.0":{"name":"chromedriver","version":"2.8.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.8.0","dist":{"shasum":"bb0f2ea46c20c7f649a84594b83b33ca6a3bdb52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.8.0.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.8.1":{"name":"chromedriver","version":"2.8.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.8.1","dist":{"shasum":"9495b441a036c84232ead5ae091a11999079aa40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.8.1.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.9.0":{"name":"chromedriver","version":"2.9.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.9.0","dist":{"shasum":"37e72c6b7595dbbd1e3da69863494d55eb173757","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.9.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.9.1-0":{"name":"chromedriver","version":"2.9.1-0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.9.1-0","dist":{"shasum":"2f3f03dd4a94f3872de89ba65d255a9a2096865a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.9.1-0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.9.1-1":{"name":"chromedriver","version":"2.9.1-1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.9.1-1","dist":{"shasum":"88760d39a8a3f90da9fc88a6a159509fec1b9317","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.9.1-1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.10.0":{"name":"chromedriver","version":"2.10.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.10.0","dist":{"shasum":"48d4a40404e33b87368d889dd83a9c512616a0bd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.10.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"directories":{}},"2.10.0-1":{"name":"chromedriver","version":"2.10.0-1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"gitHead":"a959d0c3b22e0d9d2bd29dcc9465e30a035608ec","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.10.0-1","_shasum":"0af4ef72014750fe802ca602a01b09ea975c842e","_from":".","_npmVersion":"1.4.15","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"0af4ef72014750fe802ca602a01b09ea975c842e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.10.0-1.tgz"},"directories":{}},"2.11.0":{"name":"chromedriver","version":"2.11.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"gitHead":"faa1c466d4121b15408335b2518da78af52847f6","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.11.0","_shasum":"b1a92eb1088c68c2fe4ef4c6ad5dfda630376f51","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"b1a92eb1088c68c2fe4ef4c6ad5dfda630376f51","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.11.0.tgz"},"directories":{}},"2.12.0":{"name":"chromedriver","version":"2.12.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"gitHead":"3393c3c77932c26f08e2aa245d98d6235907446d","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.12.0","_shasum":"c1f2f8429a3980eac124afd9eaca8cc55fc85596","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"c1f2f8429a3980eac124afd9eaca8cc55fc85596","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.12.0.tgz"},"directories":{}},"2.13.0":{"name":"chromedriver","version":"2.13.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"gitHead":"637378dee39c28de831b640f88fbb93dca16a975","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.13.0","_shasum":"84f5a671c1fc4ea41c85952c7f82ae3c30a83a01","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"84f5a671c1fc4ea41c85952c7f82ae3c30a83a01","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.13.0.tgz"},"directories":{}},"2.14.0":{"name":"chromedriver","version":"2.14.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"gitHead":"40569fa00ae1dd48a88d8252a2728fc3475a5238","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.14.0","_shasum":"50ece29ca90e23db94813c9a0336ada07b6a19aa","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"50ece29ca90e23db94813c9a0336ada07b6a19aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.14.0.tgz"},"directories":{}},"2.14.1":{"name":"chromedriver","version":"2.14.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"gitHead":"92fd800bddf34f185be649eb05e819fff2ace957","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.14.1","_shasum":"f40263efea906a2688956a220f99b8abe08d2334","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"f40263efea906a2688956a220f99b8abe08d2334","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.14.1.tgz"},"directories":{}},"2.15.0":{"name":"chromedriver","version":"2.15.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"0b1f6fa244fae2098d9427c867e3516488d7b071","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.15.0","_shasum":"5f4c8ba6b8d7ee15f8e077b2566bed875de03a2d","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"5f4c8ba6b8d7ee15f8e077b2566bed875de03a2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.15.0.tgz"},"directories":{}},"2.15.1":{"name":"chromedriver","version":"2.15.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","request":"^2.55.0","rimraf":"^2.0.3"},"gitHead":"0679bfdfb06ae8fb2a567e356dc229edcce6819e","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.15.1","_shasum":"eafafbc71dabd537eceffb603ff9b349110cf792","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"eafafbc71dabd537eceffb603ff9b349110cf792","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.15.1.tgz"},"directories":{}},"2.15.2":{"name":"chromedriver","version":"2.15.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"c01a6c66fea1341179b741df4c7ef5f921745ef6","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.15.2","_shasum":"7f89274bdb270a29d32453864fb7b6b27de4af56","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"7f89274bdb270a29d32453864fb7b6b27de4af56","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.15.2.tgz"},"directories":{}},"2.16.0":{"name":"chromedriver","version":"2.16.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"6688dc9a2dd5b36b0dd19611600f9250f91e0656","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.16.0","_shasum":"75b065ce6a9b6634f96123803b0dc128066b8a7a","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"75b065ce6a9b6634f96123803b0dc128066b8a7a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.16.0.tgz"},"directories":{}},"2.18.0":{"name":"chromedriver","version":"2.18.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"08378ef455a6248220b321ef552b53e60339b94d","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.18.0","_shasum":"5b71659027793bfb44c9765c572dac97b8bc8184","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.6","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"5b71659027793bfb44c9765c572dac97b8bc8184","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.18.0.tgz"},"directories":{}},"2.19.0":{"name":"chromedriver","version":"2.19.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"8090de0355a5ac6e1da9441641e328759c9125fb","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.19.0","_shasum":"ea022b3f22aa0732f11430946101703aa4a004c4","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"ea022b3f22aa0732f11430946101703aa4a004c4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.19.0.tgz"},"directories":{}},"2.20.0":{"name":"chromedriver","version":"2.20.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"5ed7466f9367d3fd84d055b42bd5ef649d2f6b49","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.20.0","_shasum":"5052fefa740408ab68df28216f2bd65f6ca267cb","_from":".","_npmVersion":"3.3.1","_nodeVersion":"0.12.7","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"5052fefa740408ab68df28216f2bd65f6ca267cb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.20.0.tgz"},"directories":{}},"2.21.0":{"name":"chromedriver","version":"2.21.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"fed06172c108c32897e1c14ad211853473d02065","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.21.0","_shasum":"b8b72d85704530298a4875204f32f1a36b163c42","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"b8b72d85704530298a4875204f32f1a36b163c42","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.21.0.tgz"},"directories":{}},"2.21.1":{"name":"chromedriver","version":"2.21.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"5c64fda7ae63afaaaa24e3cef1025ff2c211a47e","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.21.1","_shasum":"4956c6a497c2bc7342bc91d12a41536a9b225bcb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"4956c6a497c2bc7342bc91d12a41536a9b225bcb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.21.1.tgz"},"directories":{}},"2.21.2":{"name":"chromedriver","version":"2.21.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"0447b5d116b8cfb527e02205a398a395920f7016","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.21.2","_shasum":"f4dab2ab58b35f70209ffcd1d2bc13e26fb2ed64","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"dist":{"shasum":"f4dab2ab58b35f70209ffcd1d2bc13e26fb2ed64","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.21.2.tgz"},"directories":{}},"2.22.0":{"name":"chromedriver","version":"2.22.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"ff8fd40ad5e1c46a45b73096d6263566d526dfac","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.22.0","_shasum":"1bd696f9197ab0e49c0a6a761d54033404a47028","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"1bd696f9197ab0e49c0a6a761d54033404a47028","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.22.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.22.0.tgz_1470016660678_0.5711901758331805"},"directories":{}},"2.22.1":{"name":"chromedriver","version":"2.22.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"1e05226962fcaaa112e1ede784c88a28bf5fef76","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.22.1","_shasum":"c3ee7a4ac852598029ae5c4944bdbe4421b9744d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"c3ee7a4ac852598029ae5c4944bdbe4421b9744d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.22.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.22.1.tgz_1470018225444_0.1490584381390363"},"directories":{}},"2.22.2":{"name":"chromedriver","version":"2.22.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"23a3c605da5d26252d202e6a69ce142114620faa","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.22.2","_shasum":"2c34e054bd8828213c41b9ba4fca1022643f1f49","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"2c34e054bd8828213c41b9ba4fca1022643f1f49","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.22.2.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.22.2.tgz_1470375137482_0.049509285017848015"},"directories":{}},"2.23.0":{"name":"chromedriver","version":"2.23.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"368f84283d47cef86d1d6f2df03b01743fe0c16b","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.23.0","_shasum":"4220d47a09361b9b7f9428dde650986258546c2a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"4220d47a09361b9b7f9428dde650986258546c2a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.23.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.23.0.tgz_1470959773743_0.4101735963486135"},"directories":{}},"2.23.1":{"name":"chromedriver","version":"2.23.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"aa325e82d4988d7931a7e4a440c954ef0b610d84","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.23.1","_shasum":"660514c00eab855555823b2a5784e717ae2bcb25","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"660514c00eab855555823b2a5784e717ae2bcb25","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.23.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.23.1.tgz_1471492009835_0.8250106330960989"},"directories":{}},"2.24.0":{"name":"chromedriver","version":"2.24.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"023ac0cc7aa1631e5ea760e0d5053cd2641c0d59","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.24.0","_shasum":"8a1b360f6db5b2c5544eb53cb4388aa69255f9d2","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"8a1b360f6db5b2c5544eb53cb4388aa69255f9d2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.24.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.24.0.tgz_1473643178065_0.0070378046948462725"},"directories":{}},"2.24.1":{"name":"chromedriver","version":"2.24.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"14317a9db2250b47f60242fb30c989ad525e6efa","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.24.1","_shasum":"e7fb2e2a6cd6ae754ef0ae11f0813ca2bd993e92","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"e7fb2e2a6cd6ae754ef0ae11f0813ca2bd993e92","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.24.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.24.1.tgz_1473644015217_0.10144601296633482"},"directories":{}},"2.25.0":{"name":"chromedriver","version":"2.25.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"38238c32c4f33f5f9ac884095205373be97fbc5f","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.25.0","_shasum":"6d9984b50d20dba5cf1c83aa4372c25fc8b84271","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"6d9984b50d20dba5cf1c83aa4372c25fc8b84271","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.25.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.25.0.tgz_1477766624093_0.1076429772656411"},"directories":{}},"2.25.1":{"name":"chromedriver","version":"2.25.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"5e7fd13bdbfc355f506746866b052501d302ab39","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.25.1","_shasum":"04de1a9242ffe3182786410dbefaae147435e67e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"04de1a9242ffe3182786410dbefaae147435e67e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.25.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.25.1.tgz_1477769437845_0.9622262739576399"},"directories":{}},"2.25.2":{"name":"chromedriver","version":"2.25.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"71981099216b7c15ec01e50baaacb15fe1b85e56","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.25.2","_shasum":"20bfcf1f84ede626be39abf94454a87c1a2ef0b5","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"20bfcf1f84ede626be39abf94454a87c1a2ef0b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.25.2.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.25.2.tgz_1481065592748_0.42707445309497416"},"directories":{}},"2.25.3":{"name":"chromedriver","version":"2.25.3","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"5ad68a36c3260760f1eb40d9c7906c6ea19c05b3","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.25.3","_shasum":"1abe235c2fff91100ef122db59843f2c618ad8e9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"1abe235c2fff91100ef122db59843f2c618ad8e9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.25.3.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.25.3.tgz_1481499289323_0.9898805820848793"},"directories":{}},"2.26.0":{"name":"chromedriver","version":"2.26.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"b6ac0a8e9f31660dc65e54ee0fa070ffc81f8723","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.26.0","_shasum":"9eeb07f183d70ab3641152588814f4b0aaa6db72","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"9eeb07f183d70ab3641152588814f4b0aaa6db72","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.26.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.26.0.tgz_1481911011924_0.7137424862012267"},"directories":{}},"2.26.1":{"name":"chromedriver","version":"2.26.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"fd4dca8c98e931677bf6b72280f2d37b8b34a197","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.26.1","_shasum":"60036732224580d2699afd2626f5f26ea1f6c9fe","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"60036732224580d2699afd2626f5f26ea1f6c9fe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.26.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.26.1.tgz_1482253176518_0.45788537501357496"},"directories":{}},"2.26.2":{"name":"chromedriver","version":"2.26.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"c359faa2fd00469f38379b1232aff284af4e7895","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.26.2","_shasum":"ba069e808e799e3aa79cbf47206a4f0a53699df7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"ba069e808e799e3aa79cbf47206a4f0a53699df7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.26.2.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.26.2.tgz_1483845211088_0.9484489213209599"},"directories":{}},"2.27.0":{"name":"chromedriver","version":"2.27.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","npmconf":"^2.1.1","rimraf":"^2.0.3"},"gitHead":"549071389f3100566ceb732040d417704b731cd0","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.27.0","_shasum":"76e9c32e895638969674293e56094419544ccfcd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"76e9c32e895638969674293e56094419544ccfcd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.27.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.27.0.tgz_1483845676679_0.3205249747261405"},"directories":{}},"2.27.1":{"name":"chromedriver","version":"2.27.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.5.0","mkdirp":"^0.5.0","rimraf":"^2.0.3"},"gitHead":"494e7231f69cd9276357676a8302cd0c400ef447","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.27.1","_shasum":"b4f2fbace4309e7cf705e9c0af64c0c21c88fae9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"b4f2fbace4309e7cf705e9c0af64c0c21c88fae9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.27.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.27.1.tgz_1483846804454_0.8037451345007867"},"directories":{}},"2.27.2":{"name":"chromedriver","version":"2.27.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.7.0","mkdirp":"^0.5.1","rimraf":"^2.5.4"},"gitHead":"20a1f0d1b6a10d12d12a63ca3d7d6161ba9213c9","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.27.2","_shasum":"fd8ee03e6f8dde47d83b951bf99ea268538179c3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"fd8ee03e6f8dde47d83b951bf99ea268538179c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.27.2.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.27.2.tgz_1484144759107_0.3507750672288239"},"directories":{}},"2.27.3":{"name":"chromedriver","version":"2.27.3","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.7.0","mkdirp":"^0.5.1","rimraf":"^2.5.4"},"gitHead":"d208e6db02380c384876cc43a5c8e254619b3041","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.27.3","_shasum":"00674dad4058643a4ad99a8015264449f736a644","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"00674dad4058643a4ad99a8015264449f736a644","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.27.3.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.27.3.tgz_1486994540772_0.7345185251906514"},"directories":{}},"2.28.0":{"name":"chromedriver","version":"2.28.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.7.0","mkdirp":"^0.5.1","rimraf":"^2.5.4"},"gitHead":"4d1f06f2908f69f044f81bd241d5d4d8e26f2461","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.28.0","_shasum":"ea0c383621dd27db340c612b85fe39414c16ec79","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"ea0c383621dd27db340c612b85fe39414c16ec79","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.28.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chromedriver-2.28.0.tgz_1489263485583_0.2907456047832966"},"directories":{}},"2.29.0":{"name":"chromedriver","version":"2.29.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.7.0","mkdirp":"^0.5.1","rimraf":"^2.5.4"},"gitHead":"b4cbf91deb3716b457dc669755f54d0048179c08","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.29.0","_shasum":"e3fd8b3c08dce2562b80ef1b0b846597659d0cc3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"e3fd8b3c08dce2562b80ef1b0b846597659d0cc3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.29.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/chromedriver-2.29.0.tgz_1491515686534_0.10293860733509064"},"directories":{}},"2.29.1":{"name":"chromedriver","version":"2.29.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"licenses":[{"type":"Apache 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.html"}],"author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"adm-zip":"^0.4.7","kew":"^0.7.0","mkdirp":"^0.5.1","request":"^2.81.0","rimraf":"^2.5.4"},"gitHead":"2e46e28bd6e1b47f284bc3ab6c5474de3c0b8b26","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.29.1","_shasum":"c65f78b66bf038365339dfc617afb61f7fc9838e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"c65f78b66bf038365339dfc617afb61f7fc9838e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.29.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chromedriver-2.29.1.tgz_1496881307895_0.4352222587913275"},"directories":{}},"2.29.2":{"name":"chromedriver","version":"2.29.2","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"license":"Apache-2.0","author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"extract-zip":"^1.6.5","kew":"^0.7.0","mkdirp":"^0.5.1","request":"^2.81.0","rimraf":"^2.5.4"},"gitHead":"d1a40841f4fb47edadedee49b0beb4102985d104","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.29.2","_shasum":"c28bb9c2d756531ad277ee4e5368732949049c7e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"c28bb9c2d756531ad277ee4e5368732949049c7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.29.2.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chromedriver-2.29.2.tgz_1496929433300_0.9362162675242871"},"directories":{}},"2.30.0":{"name":"chromedriver","version":"2.30.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"license":"Apache-2.0","author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"extract-zip":"^1.6.5","kew":"^0.7.0","mkdirp":"^0.5.1","request":"^2.81.0","rimraf":"^2.5.4"},"gitHead":"8e6a1959c67414d6d5f4af791c887f6883c964c6","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.30.0","_shasum":"5452f11db8c4ea2b86b7fe5f0d943b5673ea3454","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"5452f11db8c4ea2b86b7fe5f0d943b5673ea3454","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.30.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chromedriver-2.30.0.tgz_1497281232951_0.37153867445886135"},"directories":{}},"2.30.1":{"name":"chromedriver","version":"2.30.1","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"license":"Apache-2.0","author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"extract-zip":"^1.6.5","kew":"^0.7.0","mkdirp":"^0.5.1","request":"^2.81.0","rimraf":"^2.5.4"},"gitHead":"3a4ad86f369c94690c096efe21672f2a76e20ee9","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.30.1","_shasum":"18cb6c61ca8eb8b32c25dd62a1308e4598d01c26","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"18cb6c61ca8eb8b32c25dd62a1308e4598d01c26","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.30.1.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chromedriver-2.30.1.tgz_1497284168646_0.5428038109093904"},"directories":{}},"2.31.0":{"name":"chromedriver","version":"2.31.0","keywords":["chromedriver","selenium"],"description":"ChromeDriver for Selenium","homepage":"https://github.com/giggio/node-chromedriver","repository":{"type":"git","url":"git://github.com/giggio/node-chromedriver.git"},"license":"Apache-2.0","author":{"name":"Giovanni Bassi","email":"giggio@giggio.net","url":"http://www.lambda3.com.br"},"main":"lib/chromedriver","bin":{"chromedriver":"./bin/chromedriver"},"scripts":{"install":"node install.js"},"dependencies":{"extract-zip":"^1.6.5","kew":"^0.7.0","mkdirp":"^0.5.1","request":"^2.81.0","rimraf":"^2.5.4"},"gitHead":"122347e9e49ef9affaf5bcdee1c9ed280b4c08b6","bugs":{"url":"https://github.com/giggio/node-chromedriver/issues"},"_id":"chromedriver@2.31.0","_shasum":"82c758ee4015aa880f45008bba346433cf9db14a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"giggio","email":"giggio@giggio.net"},"dist":{"shasum":"82c758ee4015aa880f45008bba346433cf9db14a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/chromedriver/-/chromedriver-2.31.0.tgz"},"maintainers":[{"name":"giggio","email":"giggio@giggio.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chromedriver-2.31.0.tgz_1501007302902_0.6588209352921695"},"directories":{}}},"name":"chromedriver","time":{"modified":"2017-08-08T07:48:52.064Z","created":"2013-06-07T17:45:32.027Z","2.0.0":"2013-06-07T17:45:36.578Z","2.0.1":"2013-06-07T23:34:45.840Z","2.2.0":"2013-08-14T04:08:36.315Z","2.3.0":"2013-09-30T12:49:10.273Z","2.6.0":"2013-11-06T23:48:12.494Z","2.8.0":"2014-01-06T18:08:38.083Z","2.8.1":"2014-01-28T00:25:55.399Z","2.9.0":"2014-03-30T23:10:20.334Z","2.9.1-0":"2014-04-10T18:32:46.217Z","2.9.1-1":"2014-05-07T13:57:35.225Z","2.10.0":"2014-05-07T14:11:30.502Z","2.10.0-1":"2014-06-17T01:48:21.234Z","2.11.0":"2014-11-15T15:38:29.356Z","2.12.0":"2014-11-15T15:40:54.244Z","2.13.0":"2015-01-17T15:30:56.672Z","2.14.0":"2015-02-18T16:54:19.306Z","2.14.1":"2015-02-18T17:41:42.381Z","2.15.0":"2015-04-26T03:02:36.809Z","2.15.1":"2015-05-22T23:28:06.833Z","2.15.2":"2015-07-05T03:00:54.044Z","2.16.0":"2015-07-05T03:04:59.443Z","2.18.0":"2015-08-24T02:36:29.796Z","2.19.0":"2015-09-05T17:15:50.399Z","2.20.0":"2015-11-16T15:02:03.996Z","2.21.0":"2016-01-30T12:33:19.505Z","2.21.1":"2016-01-30T12:50:27.687Z","2.21.2":"2016-01-30T13:22:47.458Z","2.22.0":"2016-08-01T01:57:42.412Z","2.22.1":"2016-08-01T02:23:45.689Z","2.22.2":"2016-08-05T05:32:20.045Z","2.23.0":"2016-08-11T23:56:15.772Z","2.23.1":"2016-08-18T03:46:51.571Z","2.24.0":"2016-09-12T01:19:42.466Z","2.24.1":"2016-09-12T01:33:35.449Z","2.25.0":"2016-10-29T18:43:44.324Z","2.25.1":"2016-10-29T19:30:38.086Z","2.25.2":"2016-12-06T23:06:34.711Z","2.25.3":"2016-12-11T23:34:49.551Z","2.26.0":"2016-12-16T17:56:52.653Z","2.26.1":"2016-12-20T16:59:36.759Z","2.26.2":"2017-01-08T03:13:33.162Z","2.27.0":"2017-01-08T03:21:19.093Z","2.27.1":"2017-01-08T03:40:06.464Z","2.27.2":"2017-01-11T14:25:59.343Z","2.27.3":"2017-02-13T14:02:22.598Z","2.28.0":"2017-03-11T20:18:05.842Z","2.29.0":"2017-04-06T21:54:47.237Z","2.29.1":"2017-06-08T00:21:48.916Z","2.29.2":"2017-06-08T13:43:54.318Z","2.30.0":"2017-06-12T15:27:13.958Z","2.30.1":"2017-06-12T16:16:09.693Z","2.31.0":"2017-07-25T18:28:23.059Z"},"readmeFilename":"README.md","homepage":"https://github.com/giggio/node-chromedriver"}