{"_attachments":{},"_id":"phantomjs","_rev":"6618-61f159d323990e8a8132029c","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"description":"Headless WebKit with JS API","dist-tags":{"latest":"2.1.7","latest-1.9.8":"1.9.20"},"license":"Apache-2.0","maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"},{"name":"nichelle","email":"nhall@medium.com"}],"name":"phantomjs","readme":"phantomjs\n==================\n\nAn NPM installer for [PhantomJS](http://phantomjs.org/), headless webkit with JS API.\n\n### DEPRECATED\n\n**Pre-2.0, this package was published to NPM as [phantomjs](https://www.npmjs.com/package/phantomjs).\nWe changed the name to [phantomjs-prebuilt](https://www.npmjs.com/package/phantomjs-prebuilt) at\nthe request of PhantomJS team.**\n\n**Please update your package references from `phantomjs` to `phantomjs-prebuilt`**\n\n[![Build Status](https://travis-ci.org/Medium/phantomjs.svg?branch=master)](https://travis-ci.org/Medium/phantomjs)\n\nBuilding and Installing\n-----------------------\n\n```shell\nnpm install phantomjs\n```\n\nOr grab the source and\n\n```shell\nnode ./install.js\n```\n\nWhat this installer is really doing is just grabbing a particular \"blessed\" (by\nthis module) version of Phantom. As new versions of Phantom are released\nand vetted, this module will be updated accordingly.\n\nRunning\n-------\n\n```shell\nbin/phantomjs [phantom arguments]\n```\n\nAnd npm will install a link to the binary in `node_modules/.bin` as\nit is wont to do.\n\nRunning via node\n----------------\n\nThe package exports a `path` string that contains the path to the\nphantomjs binary/executable.\n\nBelow is an example of using this package via node.\n\n```javascript\nvar path = require('path')\nvar childProcess = require('child_process')\nvar phantomjs = require('phantomjs')\nvar binPath = phantomjs.path\n\nvar childArgs = [\n  path.join(__dirname, 'phantomjs-script.js'),\n  'some other argument (passed to phantomjs script)'\n]\n\nchildProcess.execFile(binPath, childArgs, function(err, stdout, stderr) {\n  // handle results\n})\n\n```\n\nVersioning\n----------\n\nThe major and minor number tracks the version of PhantomJS that will be\ninstalled. The patch number is incremented when there is either an installer\nupdate or a patch build of the phantom binary.\n\nPre-2.0, this package was published to NPM as [phantomjs](https://www.npmjs.com/package/phantomjs).\nWe changed the name to [phantomjs-prebuilt](https://www.npmjs.com/package/phantomjs-prebuilt) at\nthe request of PhantomJS team.\n\nDeciding Where To Get PhantomJS\n-------------------------------\n\nBy default, this package will download phantomjs from our [releases](https://github.com/Medium/phantomjs/releases/).\nThis should work fine for most people.\n\n##### Downloading from a custom URL\n\nIf github is down, or the Great Firewall is blocking github, you may need to use\na different download mirror. To set a mirror, set npm config property `phantomjs_cdnurl`.\n\nAlternatives include `https://bitbucket.org/ariya/phantomjs/downloads` (the official download site)\nand `http://cnpmjs.org/downloads`.\n\n```Shell\nnpm install phantomjs --phantomjs_cdnurl=https://bitbucket.org/ariya/phantomjs/downloads\n```\n\nOr add property into your `.npmrc` file (https://www.npmjs.org/doc/files/npmrc.html)\n\n```\nphantomjs_cdnurl=https://bitbucket.org/ariya/phantomjs/downloads\n```\n\nAnother option is to use PATH variable `PHANTOMJS_CDNURL`.\n```shell\nPHANTOMJS_CDNURL=https://bitbucket.org/ariya/phantomjs/downloads npm install phantomjs\n```\n\n##### Using PhantomJS from disk\n\nIf you plan to install phantomjs many times on a single machine, you can\ninstall the `phantomjs` binary on PATH. The installer will automatically detect\nand use that for non-global installs.\n\nCross-Platform Repositories\n---------------------------\n\nPhantomJS needs to be compiled separately for each platform. This installer\nfinds a prebuilt binary for your operating system, and downloads it.\n\nIf you check your dependencies into git, and work on a cross-platform\nteam, then you need to tell NPM to rebuild any platform-specific dependencies. Run\n\n```shell\nnpm rebuild\n```\n\nas part of your build process. This problem is not specific to PhantomJS, and this\nsolution will work for any NodeJS package with native or platform-specific code.\n\nIf you know in advance that you want to install PhantomJS for a specific architecture,\nyou can set the environment variables: `PHANTOMJS_PLATFORM`\n(to set target platform) and `PHANTOMJS_ARCH` (to set target\narch), where `platform` and `arch` are valid values for\n[process.platform and process.arch](https://nodejs.org/api/process.html).\n\nA Note on PhantomJS\n-------------------\n\nPhantomJS is not a library for NodeJS.  It's a separate environment and code\nwritten for node is unlikely to be compatible.  In particular PhantomJS does\nnot expose a Common JS package loader.\n\nThis is an _NPM wrapper_ and can be used to conveniently make Phantom available\nIt is not a Node JS wrapper.\n\nI have had reasonable experiences writing standalone Phantom scripts which I\nthen drive from within a node program by spawning phantom in a child process.\n\nRead the PhantomJS FAQ for more details: http://phantomjs.org/faq.html\n\n### Linux Note\n\nAn extra note on Linux usage, from the PhantomJS download page:\n\n > There is no requirement to install Qt, WebKit, or any other libraries. It\n > however still relies on Fontconfig (the package fontconfig or libfontconfig,\n > depending on the distribution).\n\nTroubleshooting\n---------------\n\n##### Installation fails with `spawn ENOENT`\n\nThis is NPM's way of telling you that it was not able to start a process. It usually means:\n\n- `node` is not on your PATH, or otherwise not correctly installed.\n- `tar` is not on your PATH. This package expects `tar` on your PATH on Linux-based platforms.\n\nCheck your specific error message for more information.\n\n##### Installation fails with `Error: EPERM` or `operation not permitted` or `permission denied`\n\nThis error means that NPM was not able to install phantomjs to the file system. There are three\nmajor reasons why this could happen:\n\n- You don't have write access to the installation directory.\n- The permissions in the NPM cache got messed up, and you need to run `npm cache clean` to fix them.\n- You have over-zealous anti-virus software installed, and it's blocking file system writes.\n\n##### Installation fails with `Error: read ECONNRESET` or `Error: connect ETIMEDOUT`\n\nThis error means that something went wrong with your internet connection, and the installer\nwas not able to download the PhantomJS binary for your platform. Please try again.\n\n##### I tried again, but I get `ECONNRESET` or `ETIMEDOUT` consistently.\n\nDo you live in China, or a country with an authoritarian government? We've seen problems where\nthe GFW or local ISP blocks github, preventing the installer from downloading the binary.\n\nTry visiting [the download page](https://bitbucket.org/ariya/phantomjs/downloads) manually.\nIf that page is blocked, you can try using a different CDN with the `PHANTOMJS_CDNURL`\nenv variable described above.\n\n##### I am behind a corporate proxy that uses self-signed SSL certificates to intercept encrypted traffic.\n\nYou can tell NPM and the PhantomJS installer to skip validation of ssl keys with NPM's \n[strict-ssl](https://www.npmjs.org/doc/misc/npm-config.html#strict-ssl) setting:\n\n```\nnpm set strict-ssl false\n```\n\nWARNING: Turning off `strict-ssl` leaves you vulnerable to attackers reading\nyour encrypted traffic, so run this at your own risk!\n\n##### I tried everything, but my network is b0rked. What do I do?\n\nIf you install PhantomJS manually, and put it on PATH, the installer will try to\nuse the manually-installed binaries.\n\n##### I'm on Debian or Ubuntu, and the installer failed because it couldn't find `node`\n\nSome Linux distros tried to rename `node` to `nodejs` due to a package\nconflict. This is a non-portable change, and we do not try to support this. The\n[official documentation](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#ubuntu-mint-elementary-os)\nrecommends that you run `apt-get install nodejs-legacy` to symlink `node` to `nodejs` \non those platforms, or many NodeJS programs won't work properly.\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/Medium/phantomjs/).  If you haven't contributed to an\n[Medium](http://github.com/Medium/) project before please head over to the\n[Open Source Project](https://github.com/Medium/open-source#note-to-external-contributors) and fill\nout an OCLA (it should be pretty painless).\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[Dan Pupius](https://github.com/dpup)\n([personal website](http://pupius.co.uk)) and\n[Nick Santos](https://github.com/nicks), supported by\n[A Medium Corporation](http://medium.com/).\n\nLicense\n-------\n\nCopyright 2012 [A Medium Corporation](http://medium.com/).\n\nLicensed under the Apache License, Version 2.0.\nSee the top-level file `LICENSE.txt` and\n(http://www.apache.org/licenses/LICENSE-2.0).\n","time":{"created":"2022-01-26T14:25:23.898Z","modified":"2023-08-06T14:38:43.248Z","2.1.7":"2016-04-07T14:53:32.881Z","1.9.20":"2016-03-31T17:15:52.434Z","2.1.3":"2016-01-28T04:47:36.212Z","2.1.3-deprecated":"2016-01-28T04:40:16.968Z","2.1.2":"2016-01-25T22:56:39.530Z","2.1.1":"2016-01-25T21:14:13.978Z","1.9.19":"2015-11-24T16:38:01.520Z","1.9.18":"2015-08-10T15:18:06.022Z","1.9.17":"2015-05-21T16:16:42.140Z","1.9.16":"2015-03-03T18:09:10.075Z","1.9.15":"2015-01-28T17:27:00.692Z","1.9.13":"2014-12-19T18:04:51.425Z","1.9.12":"2014-10-27T19:56:22.319Z","1.9.11":"2014-10-16T16:12:51.603Z","1.9.10":"2014-09-24T16:51:36.980Z","1.9.9":"2014-09-17T18:39:37.958Z","1.9.8":"2014-09-17T16:10:46.127Z","1.8.2-3":"2014-09-04T16:04:48.529Z","1.9.7-15":"2014-07-23T13:41:58.649Z","1.9.7-14":"2014-07-09T23:17:00.072Z","1.9.7-13":"2014-07-09T16:13:46.312Z","1.9.7-12":"2014-06-28T17:17:28.396Z","1.9.7-11":"2014-06-28T17:12:54.414Z","1.9.7-10":"2014-06-24T00:25:47.391Z","1.9.7-9":"2014-06-18T17:36:58.571Z","1.9.7-8":"2014-05-24T02:04:04.492Z","1.9.7-7":"2014-05-23T17:13:28.038Z","1.9.7-6":"2014-05-21T22:38:55.460Z","1.9.7-5":"2014-04-28T19:16:18.014Z","1.9.7-4":"2014-04-22T02:36:06.409Z","1.9.7-3":"2014-04-02T15:39:45.058Z","1.9.7-1":"2014-01-27T18:35:27.589Z","1.9.6-0":"2014-01-24T17:31:26.811Z","1.9.2-6":"2013-12-20T22:38:14.840Z","1.9.2-5":"2013-12-05T22:01:04.817Z","1.9.2-4":"2013-11-20T17:05:26.182Z","1.9.2-3":"2013-11-19T17:12:37.974Z","1.9.2-2":"2013-10-01T21:08:44.045Z","1.9.2-1":"2013-09-19T14:45:24.535Z","1.9.2-0":"2013-09-09T15:02:28.321Z","1.9.1-9":"2013-09-03T16:11:27.773Z","1.9.1-8":"2013-08-19T21:52:02.245Z","1.9.1-7":"2013-08-19T18:38:35.809Z","1.9.1-6":"2013-08-18T00:02:49.951Z","1.9.1-5":"2013-08-14T22:26:37.156Z","1.9.1-4":"2013-08-13T21:35:53.854Z","1.9.1-3":"2013-08-13T18:28:06.605Z","1.9.1-2":"2013-08-12T18:54:37.546Z","1.9.1-0":"2013-06-13T14:36:23.725Z","1.9.0-6":"2013-05-29T01:28:41.884Z","1.9.0-5":"2013-05-28T17:07:58.448Z","1.9.0-4":"2013-05-17T17:11:53.792Z","1.9.0-3":"2013-04-23T02:34:18.031Z","1.9.0-2":"2013-04-14T17:05:08.611Z","1.9.0-1":"2013-04-02T23:17:19.755Z","1.9.0-0":"2013-03-25T21:11:04.917Z","1.8.2-2":"2013-03-20T16:17:53.889Z","1.8.2-1":"2013-03-19T23:42:45.137Z","1.8.2-0":"2013-03-11T20:18:36.049Z","1.8.1-3":"2013-01-30T22:33:48.349Z","1.8.1-2":"2013-01-30T21:19:47.459Z","1.8.1-1":"2013-01-29T23:53:13.691Z","1.8.0-1":"2012-12-23T17:52:58.992Z","0.2.6":"2012-12-19T21:48:48.979Z","0.2.5":"2012-12-19T21:25:48.485Z","0.2.4":"2012-12-19T21:01:48.682Z","0.2.3":"2012-11-25T18:36:35.168Z","0.2.2":"2012-10-25T22:47:43.583Z","0.2.1":"2012-10-22T15:45:28.130Z","0.2.0":"2012-10-11T18:53:01.613Z","0.1.1":"2012-10-11T16:52:56.784Z","0.1.0":"2012-10-07T18:06:05.370Z","0.0.9":"2012-10-05T14:53:30.020Z","0.0.8":"2012-09-10T22:36:54.702Z","0.0.7":"2012-09-10T22:32:11.921Z","0.0.6":"2012-09-10T22:30:35.467Z","0.0.5":"2012-09-10T22:28:26.579Z","0.0.4":"2012-09-10T22:24:36.647Z","0.0.3":"2012-09-10T22:23:34.127Z","0.0.2":"2012-09-10T21:54:55.359Z","0.0.1":"2012-09-10T21:20:31.171Z"},"versions":{"2.1.7":{"name":"phantomjs","version":"2.1.7","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"extract-zip":"~1.5.0","fs-extra":"~0.26.4","hasha":"^2.2.0","kew":"~0.7.0","progress":"~1.1.8","request":"~2.67.0","request-progress":"~2.0.1","which":"~1.2.2"},"devDependencies":{"eslint":"1.10.3","nodeunit":"0.9.1"},"gitHead":"21e7232131b60f2573e110cf89d156a33e8f293c","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@2.1.7","_shasum":"c6910f67935c37285b6114329fc2f27d5f3e3134","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"c6910f67935c37285b6114329fc2f27d5f3e3134","size":15181,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-2.1.7.tgz","integrity":"sha512-hw9ShqlOOeBD7qXTB7HAPJzqscG15AUymngJFRJt4gex3MVdBykWrGV1Js21CsnZ35A6/x3KFbHxZd3xu6boBA=="},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/phantomjs-2.1.7.tgz_1460040810265_0.5564068194944412"},"deprecated":"Package renamed to phantomjs-prebuilt. Please update 'phantomjs' package references to 'phantomjs-prebuilt'","directories":{},"publish_time":1460040812881,"_hasShrinkwrap":false,"_cnpm_publish_time":1460040812881,"_cnpmcore_publish_time":"2021-12-13T07:22:07.431Z","hasInstallScript":true},"1.9.20":{"name":"phantomjs","version":"1.9.20","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"extract-zip":"~1.5.0","fs-extra":"~0.26.4","hasha":"^2.2.0","kew":"~0.7.0","progress":"~1.1.8","request":"~2.67.0","request-progress":"~2.0.1","which":"~1.2.2"},"devDependencies":{"eslint":"1.10.3","nodeunit":"0.9.1"},"gitHead":"017ec0c8d9960100723b6bc1a5c69c9592a427db","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@1.9.20","_shasum":"4424aca20e14d255c0b0889af6f6b8973da10e0d","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"4424aca20e14d255c0b0889af6f6b8973da10e0d","size":15107,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.20.tgz","integrity":"sha512-uja26qe+aIP4ptuCCAk0HNTJXoFIf+7l6RZ9OwCH0lbHpQtcS9VhEeirSqytsarg78wA+Zb5rKwiJK8KezrIcA=="},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/phantomjs-1.9.20.tgz_1459444551435_0.5592230197507888"},"directories":{},"publish_time":1459444552434,"_hasShrinkwrap":false,"_cnpm_publish_time":1459444552434,"_cnpmcore_publish_time":"2021-12-13T07:22:07.722Z","hasInstallScript":true},"2.1.3":{"name":"phantomjs","version":"2.1.3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"adm-zip":"~0.4.7","fs-extra":"~0.26.4","kew":"~0.7.0","md5":"~2.0.0","progress":"~1.1.8","request":"~2.67.0","request-progress":"~2.0.1","which":"~1.2.2"},"devDependencies":{"eslint":"1.10.3","nodeunit":"0.9.1"},"gitHead":"1c3cb052b3e4c318aaf6e0102d9a900af41f5f7b","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@2.1.3","_shasum":"330c254837c474ec022b70fa1e9b6202309e7556","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"330c254837c474ec022b70fa1e9b6202309e7556","size":14840,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-2.1.3.tgz","integrity":"sha512-b6r2ikTylxjNve4pNlzHESriuCJxn31E9hEWPKX1bMcIzcyrgF+vMd75uGukBkxNhduDmhCOkVrR3L988C+P/w=="},"deprecated":"Package renamed to phantomjs-prebuilt. Please update 'phantomjs' package references to 'phantomjs-prebuilt'","directories":{},"publish_time":1453956456212,"_hasShrinkwrap":false,"_cnpm_publish_time":1453956456212,"_cnpmcore_publish_time":"2021-12-13T07:22:08.014Z","hasInstallScript":true},"2.1.3-deprecated":{"name":"phantomjs","version":"2.1.3-deprecated","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"adm-zip":"~0.4.7","fs-extra":"~0.26.4","kew":"~0.7.0","md5":"~2.0.0","progress":"~1.1.8","request":"~2.67.0","request-progress":"~2.0.1","which":"~1.2.2"},"devDependencies":{"eslint":"1.10.3","nodeunit":"0.9.1"},"gitHead":"282f70a5cc6194f7548ba33b4ba3272672779cd4","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@2.1.3-deprecated","_shasum":"7fbb14b7603f6c87d04568aac917d4b71d20e679","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"7fbb14b7603f6c87d04568aac917d4b71d20e679","size":14836,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-2.1.3-deprecated.tgz","integrity":"sha512-FfHN2Hhk71iT7pgOKFmQG6QO4Jy6fchw00JnXPebVIaOLpv6QOrg+YrInpfr0XoOeDVvhonpNJ8z9v1cM9zQqA=="},"directories":{},"publish_time":1453956016968,"_hasShrinkwrap":false,"_cnpm_publish_time":1453956016968,"_cnpmcore_publish_time":"2021-12-13T07:22:08.329Z","hasInstallScript":true},"2.1.2":{"name":"phantomjs","version":"2.1.2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"adm-zip":"~0.4.7","fs-extra":"~0.26.4","kew":"~0.7.0","md5":"~2.0.0","progress":"~1.1.8","request":"~2.67.0","request-progress":"~2.0.1","which":"~1.2.2"},"devDependencies":{"eslint":"1.10.3","nodeunit":"0.9.1"},"gitHead":"353399a66b842f2ffe36bf6548cba3cc8d6b9cdc","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@2.1.2","_shasum":"6765163d0fd373bed909dc1b3dbf94de01ca4eba","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"6765163d0fd373bed909dc1b3dbf94de01ca4eba","size":14703,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-2.1.2.tgz","integrity":"sha512-BnFpY+tSWOvrsDAfP6HSno5PJ9EJAyRrc0Lulw4NjL6D1vPnuS51E+zapaxmWL8pAK9HyB7eX4KcIDpZPaCeNA=="},"directories":{},"publish_time":1453762599530,"deprecated":"Package renamed to phantomjs-prebuilt. Please update 'phantomjs' package references to 'phantomjs-prebuilt'","_hasShrinkwrap":false,"_cnpm_publish_time":1453762599530,"_cnpmcore_publish_time":"2021-12-13T07:22:08.669Z","hasInstallScript":true},"2.1.1":{"name":"phantomjs","version":"2.1.1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"adm-zip":"~0.4.7","fs-extra":"~0.26.4","kew":"~0.7.0","md5":"~2.0.0","progress":"~1.1.8","request":"~2.67.0","request-progress":"~2.0.1","which":"~1.2.2"},"devDependencies":{"eslint":"1.10.3","nodeunit":"0.9.1"},"gitHead":"143e05751b8f81bbb0e88fb22314504dd60d4987","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@2.1.1","_shasum":"32dcde0ba0e03b8b762f58a03775a58e788b14ff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"32dcde0ba0e03b8b762f58a03775a58e788b14ff","size":14696,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-2.1.1.tgz","integrity":"sha512-RG1xcdeZKW7kUwp62jFuNvHp+70hsp6/m8+N+V6HBSdv28E99JwHlMpEUH2SDzt2GTnDJ614+3avoZwgdxa9Gw=="},"directories":{},"publish_time":1453756453978,"deprecated":"Package renamed to phantomjs-prebuilt. Please update 'phantomjs' package references to 'phantomjs-prebuilt'","_hasShrinkwrap":false,"_cnpm_publish_time":1453756453978,"_cnpmcore_publish_time":"2021-12-13T07:22:09.019Z","hasInstallScript":true},"1.9.19":{"name":"phantomjs","version":"1.9.19","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js && eslint install.js"},"dependencies":{"adm-zip":"0.4.4","fs-extra":"~0.23.1","kew":"0.4.0","md5":"~2.0.0","npmconf":"2.1.1","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","which":"~1.0.5"},"devDependencies":{"eslint":"1.5.1","nodeunit":"0.9.0"},"gitHead":"3ad7dad059c7b51acda95af3b8c2869253712bc4","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@1.9.19","_shasum":"a7f2cef5eba7343e1a729ce9922a95a6d0a11c07","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"a7f2cef5eba7343e1a729ce9922a95a6d0a11c07","size":14932,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.19.tgz","integrity":"sha512-cgKnd7ZB99jRUSONNNzy36FQ1pST0tvN2IZvLzEWVT30MvEXNsQdk/sjHfZBnfcfzFDpIqRpN+yq1vxS6PKv1A=="},"directories":{},"publish_time":1448383081520,"_hasShrinkwrap":false,"_cnpm_publish_time":1448383081520,"_cnpmcore_publish_time":"2021-12-13T07:22:09.424Z","hasInstallScript":true},"1.9.18":{"name":"phantomjs","version":"1.9.18","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"license":"Apache-2.0","author":{"name":"Dan Pupius","email":"dan@obvious.com","url":"http://pupius.co.uk"},"maintainers":[{"name":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","fs-extra":"~0.23.1","kew":"0.4.0","npmconf":"2.1.1","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"5819192400c4b18b6803a79e8672b42bc9f2649d","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@1.9.18","_shasum":"e876fce89b143a6c01c24e0332ef3822851cace1","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"e876fce89b143a6c01c24e0332ef3822851cace1","size":13083,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.18.tgz","integrity":"sha512-GKrDhA8QLUYhNzt8sRobins/08wioDV9Terhn3BgSTIng0zPMoZF4RIKlNRFLiMzvFD4sz+SG2g0nKtRXDrWMw=="},"directories":{},"publish_time":1439219886022,"_hasShrinkwrap":false,"_cnpm_publish_time":1439219886022,"_cnpmcore_publish_time":"2021-12-13T07:22:09.825Z","hasInstallScript":true},"1.9.17":{"name":"phantomjs","version":"1.9.17","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","fs-extra":"~0.18","kew":"0.4.0","npmconf":"2.1.1","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"0d8bea7405694884717c59a286252a81c9f11d90","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@1.9.17","_shasum":"80e18e6a6270230456197e8a23416e687140cdc0","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"80e18e6a6270230456197e8a23416e687140cdc0","size":13086,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.17.tgz","integrity":"sha512-vJKca3eWJBHtScI282/rJpABNe29DWUedKawGw0BocyQyBExOmVR39z4+UPPl5fSaBigjPspAnqK8qXuYbqwzQ=="},"directories":{},"publish_time":1432225002140,"_hasShrinkwrap":false,"_cnpm_publish_time":1432225002140,"_cnpmcore_publish_time":"2021-12-13T07:22:10.198Z","hasInstallScript":true},"1.9.16":{"name":"phantomjs","version":"1.9.16","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","fs-extra":"~0.16.0","kew":"0.4.0","npmconf":"2.1.1","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"71b26b9c64679976528b7c86dac1b480f8986e2b","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@1.9.16","_shasum":"989256190c00f987fc96b7067bdb5cd2e420bac9","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"989256190c00f987fc96b7067bdb5cd2e420bac9","size":12788,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.16.tgz","integrity":"sha512-bu+igCVUc0Bm43c/dgZPF61V8OzRDZL98tTicqx16Xm9lsWkEeaC0fmXojSESA8aQCZSt43ZcsAEiSNr4dplpg=="},"directories":{},"publish_time":1425406150075,"_hasShrinkwrap":false,"_cnpm_publish_time":1425406150075,"_cnpmcore_publish_time":"2021-12-13T07:22:10.631Z","hasInstallScript":true},"1.9.15":{"name":"phantomjs","version":"1.9.15","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Medium/phantomjs","repository":{"type":"git","url":"git://github.com/Medium/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","fs-extra":"~0.16.0","kew":"0.4.0","npmconf":"2.0.9","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"1bc7553b2063b2e1efb3dce1c7a44802fcd76ff9","bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"_id":"phantomjs@1.9.15","_shasum":"10032c8b36bd3541ecef953e764d5d177c33f72f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"10032c8b36bd3541ecef953e764d5d177c33f72f","size":12557,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.15.tgz","integrity":"sha512-C1MlwCLd7PYMVxVHOBHHtlYp7AvK2Ha/iCQr2lRRS4k7syYsHDl2RZNp2bhDI9GX/o6d4f/Rr81ixo/oxDKQvA=="},"directories":{},"publish_time":1422466020692,"_hasShrinkwrap":false,"_cnpm_publish_time":1422466020692,"_cnpmcore_publish_time":"2021-12-13T07:22:11.083Z","hasInstallScript":true},"1.9.13":{"name":"phantomjs","version":"1.9.13","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","kew":"0.4.0","ncp":"~1.0.1","npmconf":"2.0.9","mkdirp":"0.5.0","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","rimraf":"~2.2.8","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"e4bb0d659dfe7e91a9658d5d28e4d5350099629d","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.13","_shasum":"2f9afca241eaf17cad5a137bf9eade948a4d7ef5","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"2f9afca241eaf17cad5a137bf9eade948a4d7ef5","size":12522,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.13.tgz","integrity":"sha512-A6LjMQ0zjUaR4Ft/oGZz6UCA1YLO9RFBLsCmx8RspMmTuouN21n+kWqP+W6B5cMDnRNJ2e+K9eC9+3Mpcx9Z1A=="},"directories":{},"publish_time":1419012291425,"_hasShrinkwrap":false,"_cnpm_publish_time":1419012291425,"_cnpmcore_publish_time":"2021-12-13T07:22:11.534Z","hasInstallScript":true},"1.9.12":{"name":"phantomjs","version":"1.9.12","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","kew":"0.4.0","ncp":"~1.0.1","npmconf":"2.0.9","mkdirp":"0.5.0","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","rimraf":"~2.2.8","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"bf1ec7ae211b8162779be59e945b92613ffe8d4e","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.12","_shasum":"812b137654585413ecb82bf3db9dcd39d8f85f91","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"812b137654585413ecb82bf3db9dcd39d8f85f91","size":12463,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.12.tgz","integrity":"sha512-EqmW61O3aYlGtNlfFkUhujH6ODW8oeHZt40pYrbTTHJv+wjSGQbuepdrLnUylGhUx9WX7uu7fN6RpJmpfG3Xrw=="},"directories":{},"publish_time":1414439782319,"_hasShrinkwrap":false,"_cnpm_publish_time":1414439782319,"_cnpmcore_publish_time":"2021-12-13T07:22:11.977Z","hasInstallScript":true},"1.9.11":{"name":"phantomjs","version":"1.9.11","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","kew":"0.4.0","ncp":"0.6.0","npmconf":"2.0.9","mkdirp":"0.5.0","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","rimraf":"~2.2.8","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"e2786a23bc2b33b81848b3c1d39c7afd6918c145","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.11","_shasum":"de822affca7858382b6ab9c931ba4541e5b8a0ae","_from":".","_npmVersion":"1.4.24","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"de822affca7858382b6ab9c931ba4541e5b8a0ae","size":12367,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.11.tgz","integrity":"sha512-LmLdd63cWyapL5RajzpbObn/Ngm6rCsmDgBMe6Gs15YtnmBMXvTrPDgPP/IhaGDaVQgPsXc2i4Uq/FLu7BRO/w=="},"directories":{},"publish_time":1413475971603,"_hasShrinkwrap":false,"_cnpm_publish_time":1413475971603,"_cnpmcore_publish_time":"2021-12-13T07:22:12.448Z","hasInstallScript":true},"1.9.10":{"name":"phantomjs","version":"1.9.10","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","kew":"0.4.0","ncp":"0.6.0","npmconf":"2.0.9","mkdirp":"0.5.0","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"2666f7a311f68679914ef2f3e6d47c4b3aca7d8f","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.10","_shasum":"be174e20b03f42c39beaaf84cc153fb65b225a4a","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"dist":{"shasum":"be174e20b03f42c39beaaf84cc153fb65b225a4a","size":12346,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.10.tgz","integrity":"sha512-H+lnlwmo2/zfNjlAa0GfyidlQ8bGpXz/5LGQVSTDzGca9v5C0eaSzUagWWGHzSRUbIJmN0Yv8ipeJUAZoMkkEA=="},"directories":{},"publish_time":1411577496980,"_hasShrinkwrap":false,"_cnpm_publish_time":1411577496980,"_cnpmcore_publish_time":"2021-12-13T07:22:12.900Z","hasInstallScript":true},"1.9.9":{"name":"phantomjs","version":"1.9.9","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.4.4","kew":"0.4.0","ncp":"0.6.0","npmconf":"2.0.9","mkdirp":"0.5.0","progress":"1.1.8","request":"2.42.0","request-progress":"0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"0.9.0"},"gitHead":"9132de888b448e7ed49656efb1e63d2b56e29d24","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.9","_shasum":"fc10dbe8e33c2e0c5bcedfff80a2e9b63d957445","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"dist":{"shasum":"fc10dbe8e33c2e0c5bcedfff80a2e9b63d957445","size":12242,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.9.tgz","integrity":"sha512-E4ychk8eqqseVPhhzbypyE2Qbk6eOKInp4ybMGYMUJnhhaVI3UckCYZaMFcje7300bhbEQ5mq1OwRRG1wqPq9A=="},"directories":{},"publish_time":1410979177958,"_hasShrinkwrap":false,"_cnpm_publish_time":1410979177958,"_cnpmcore_publish_time":"2021-12-13T07:22:13.349Z","hasInstallScript":true},"1.9.8":{"name":"phantomjs","version":"1.9.8","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"^2.40.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"gitHead":"26985ef3c95938088cd9f9caf6b78e82a456c646","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.8","_shasum":"9cbea8b0105d338d1808b6dfb2f3bb2bd98575cd","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"dist":{"shasum":"9cbea8b0105d338d1808b6dfb2f3bb2bd98575cd","size":12246,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.8.tgz","integrity":"sha512-nbWpsqRgLpOT3NwA7MIdLKuxtB4gXQgZWgJu2crCcW38NUOew2TIHNnjEuwPs/v3v0brU23tnzneVVmhW+AKXA=="},"directories":{},"publish_time":1410970246127,"_hasShrinkwrap":false,"_cnpm_publish_time":1410970246127,"_cnpmcore_publish_time":"2021-12-13T07:22:13.784Z","hasInstallScript":true},"1.8.2-3":{"name":"phantomjs","version":"1.8.2-3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"2.36.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"gitHead":"a1a876bddb7e2c134356f3a7d0d3cdf45347281a","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.8.2-3","_shasum":"d31a45b01caa4ebb130078656872bce95ab07f9f","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"d31a45b01caa4ebb130078656872bce95ab07f9f","size":12277,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.2-3.tgz","integrity":"sha512-tTTcWSPAInjZjXeeUsyOg7Bu95PRMXJ9cKoVlaagyetNPMO6LttQIzHcvgX/2LwG8XV3IiJSu+hGtCWJ0eb5mw=="},"directories":{},"publish_time":1409846688529,"_hasShrinkwrap":false,"_cnpm_publish_time":1409846688529,"_cnpmcore_publish_time":"2021-12-13T07:22:14.293Z","hasInstallScript":true},"1.9.7-15":{"name":"phantomjs","version":"1.9.7-15","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"2.36.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"gitHead":"0f21f4f0d2a24bc6f40ec557bb2038ba4e5919ef","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-15","_shasum":"0b3a7ce630486a83be91ff4e832eee20e971115b","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"0b3a7ce630486a83be91ff4e832eee20e971115b","size":12262,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-15.tgz","integrity":"sha512-s4PSN1L0iVwgv9ZkrSKcfojyPAtwGWhXxjn2p1P/ljuw3cx+FW3hKP00x247mIYbKeKSMylOd4euDQOMpUIAsg=="},"directories":{},"publish_time":1406122918649,"_hasShrinkwrap":false,"_cnpm_publish_time":1406122918649,"_cnpmcore_publish_time":"2021-12-13T07:22:14.779Z","hasInstallScript":true},"1.9.7-14":{"name":"phantomjs","version":"1.9.7-14","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"2.36.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"gitHead":"1ef8551f84571ff86876c6a0fd94eaba1b19748d","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-14","_shasum":"7b7b8039fd3a66ece587b8b707065c575039faab","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"7b7b8039fd3a66ece587b8b707065c575039faab","size":11428,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-14.tgz","integrity":"sha512-tq+Cw1DdffD6uf9CMGvQPnmYx/dZ5ZB7rFI0NzriB7vdz38PSI5zwSkLWbj7OuGKBPMtToJJOLfOiyIMTlUmsw=="},"directories":{},"publish_time":1404947820072,"_hasShrinkwrap":false,"_cnpm_publish_time":1404947820072,"_cnpmcore_publish_time":"2021-12-13T07:22:15.281Z","hasInstallScript":true},"1.9.7-13":{"name":"phantomjs","version":"1.9.7-13","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"2.36.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"gitHead":"bf015cdee75f702cdb7a0cdc2afbb8ed149b1714","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-13","_shasum":"d1728ed1399d572843a70b5ab6857be6cb48aa5a","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"nicks","email":"nicholas.j.santos@gmail.com"},"dist":{"shasum":"d1728ed1399d572843a70b5ab6857be6cb48aa5a","size":11416,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-13.tgz","integrity":"sha512-1LSxjkVQWzfx2gZX5aXK242iN1c5Xt8Tn4vVA6OfPrvmG8DHXIn9xSwp7TwdDlCxJiEMfFdVMHgPHQRhK6zQDQ=="},"directories":{},"publish_time":1404922426312,"_hasShrinkwrap":false,"_cnpm_publish_time":1404922426312,"_cnpmcore_publish_time":"2021-12-13T07:22:15.854Z","hasInstallScript":true},"1.9.7-12":{"name":"phantomjs","version":"1.9.7-12","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"2.36.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-12","dist":{"shasum":"b6d1f76b5a81689ff8acbce01468d04b103b860c","size":11449,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-12.tgz","integrity":"sha512-y/era6go6tW6SXJd+/1JO2KhvNfBFNTbgMY/B/p8aJ2j4ojWdMSFJkj9iGA5Wt8h/WR9I1xYQ3kjrLEl+Vr3Qg=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1403975848396,"_hasShrinkwrap":false,"_cnpm_publish_time":1403975848396,"_cnpmcore_publish_time":"2021-12-13T07:22:16.410Z","hasInstallScript":true},"1.9.7-11":{"name":"phantomjs","version":"1.9.7-11","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","progress":"^1.1.5","request":"2.36.0","request-progress":"^0.3.1","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-11","dist":{"shasum":"16e8ed4c0a06bd8625d4baeba10e18f512f7e40a","size":11446,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-11.tgz","integrity":"sha512-hwzRHP9pPNEYU3S9p44Pd4/24hxlxhC7eEoYRMny/PMY5i+CTqiZM0XNJGjRXUs+pnn2365JJXA7jIIO1ov5mQ=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1403975574414,"_hasShrinkwrap":false,"_cnpm_publish_time":1403975574414,"_cnpmcore_publish_time":"2021-12-13T07:22:16.992Z","hasInstallScript":true},"1.9.7-10":{"name":"phantomjs","version":"1.9.7-10","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","request":"2.36.0","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-10","dist":{"shasum":"b064e12de3b52cb6f50928056095e790147043c0","size":11308,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-10.tgz","integrity":"sha512-+Ewh71Iwv64g68tzbnvjy4X/+fm0s5uluQwlmPQVoNcI2bEDliK1hzVl7iBGVKZPnD57Kjzv63r3Xp/ZbI3CJQ=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1403569547391,"_hasShrinkwrap":false,"_cnpm_publish_time":1403569547391,"_cnpmcore_publish_time":"2021-12-13T07:22:17.572Z","hasInstallScript":true},"1.9.7-9":{"name":"phantomjs","version":"1.9.7-9","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","request":"2.36.0","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-9","dist":{"shasum":"a25237d0d8b61404aacc69179fdbe0d4b2264985","size":11178,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-9.tgz","integrity":"sha512-3rMOxIxSPr7ugytIDk0wJ8uBGFwx/N9hiVO9/IlUclIltfY8WLuqG7I+kiWyoVhgeqUZ687l0NKbu5KtuoS4Rw=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1403113018571,"_hasShrinkwrap":false,"_cnpm_publish_time":1403113018571,"_cnpmcore_publish_time":"2021-12-13T07:22:18.062Z","hasInstallScript":true},"1.9.7-8":{"name":"phantomjs","version":"1.9.7-8","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","request":"2.36.0","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-8","dist":{"shasum":"f1858d1626bb62f8bbb2a06e733ea95c50c2deb5","size":11186,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-8.tgz","integrity":"sha512-B5l5TpfwU9uQhN1XD4713YeD+7as7XFToRea4JCsNzY/ZyQpkvjdjTJ+blMAk6l27bZCrKK7u0HDK3HO0H/OOg=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1400897044492,"_hasShrinkwrap":false,"_cnpm_publish_time":1400897044492,"_cnpmcore_publish_time":"2021-12-13T07:22:18.608Z","hasInstallScript":true},"1.9.7-7":{"name":"phantomjs","version":"1.9.7-7","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","request":"2.36.0","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-7","dist":{"shasum":"7e984c942f03adef8b437a0215b8acab42f66c06","size":11181,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-7.tgz","integrity":"sha512-4+2ZC7P95Gwxe/eqB8s9nKkKnkIPYa1J3cgOZJGhjJusNswt0ZZDKZr/4Zqt+/7aN5dw4w0FbJnWLb0ChhvQkw=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1400865208038,"_hasShrinkwrap":false,"_cnpm_publish_time":1400865208038,"_cnpmcore_publish_time":"2021-12-13T07:22:19.205Z","hasInstallScript":true},"1.9.7-6":{"name":"phantomjs","version":"1.9.7-6","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-6","dist":{"shasum":"cd798e29d73b7e72619b7853f0c6d6241196adc8","size":11135,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-6.tgz","integrity":"sha512-mdXPhmAIr/niNVdu2Aabctg2FajS3lItiaij3BA4f7ahXodtRgiYZNanMOikQ9BdMuhp6n5hKBebMJOvXAXlYQ=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1400711935460,"_hasShrinkwrap":false,"_cnpm_publish_time":1400711935460,"_cnpmcore_publish_time":"2021-12-13T07:22:19.780Z","hasInstallScript":true},"1.9.7-5":{"name":"phantomjs","version":"1.9.7-5","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-5","dist":{"shasum":"7ac13fdc618c861dd34f7e5636bfa5bae30d3820","size":11063,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-5.tgz","integrity":"sha512-YEfVl+5bYalc/aN0cdqZ8KEKSnMu/VmPGeuv85EfOpzrpDw91bTgDeQ+fAKW6JVRRCxfm3HKastXYJ/Wkx7f5A=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1398712578014,"_hasShrinkwrap":false,"_cnpm_publish_time":1398712578014,"_cnpmcore_publish_time":"2021-12-13T07:22:20.424Z","hasInstallScript":true},"1.9.7-4":{"name":"phantomjs","version":"1.9.7-4","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-4","dist":{"shasum":"975b84f17b4b3bb28161d28303cb793b98c9d0dd","size":11022,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-4.tgz","integrity":"sha512-OFSsbC8l7DHUZr6Y5DEzGlU1Xp0swZCCeJhgtEkI47lK212j4MXYvzBu8JQdDhgV2xYvHcnSnS0c9RgCOms6WQ=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1398134166409,"_hasShrinkwrap":false,"_cnpm_publish_time":1398134166409,"_cnpmcore_publish_time":"2021-12-13T07:22:21.103Z","hasInstallScript":true},"1.9.7-3":{"name":"phantomjs","version":"1.9.7-3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-3","dist":{"shasum":"5deffc801452c4a44e65b02c26e8672617b9bdbf","size":10958,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-3.tgz","integrity":"sha512-AtnvtIC95xMiOaB53i1W2Xjs7hUSZqm0RL6VACY26k4OSRtF9h0j86doDmkBI7BxRHxdvzT4L9VVk3kQ0vaI3w=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1396453185058,"_hasShrinkwrap":false,"_cnpm_publish_time":1396453185058,"_cnpmcore_publish_time":"2021-12-13T07:22:21.754Z","hasInstallScript":true},"1.9.7-1":{"name":"phantomjs","version":"1.9.7-1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.7-1","dist":{"shasum":"57a191c908de74d27ac4948bd66100ae88222f47","size":10930,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.7-1.tgz","integrity":"sha512-OCuuew2vP75ot3cqLT2FTDTelYf+R0CUuO0mgrV0z9JQW4ZreqwJHBBa0dIBdM6xpEvhY3Cz0WnfFNmrS/kdog=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1390847727589,"_hasShrinkwrap":false,"_cnpm_publish_time":1390847727589,"_cnpmcore_publish_time":"2021-12-13T07:22:22.495Z","hasInstallScript":true},"1.9.6-0":{"name":"phantomjs","version":"1.9.6-0","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.6-0","dist":{"shasum":"9f05d1629659a0d8ac802c457c4ca1d53f8d46a9","size":10920,"noattachment":false,"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.6-0.tgz","integrity":"sha512-CbnOKZj2Bqr19Trwqmjgi1kOPsmnZA88wvjsOwhUN4LCWCtp6QEbcfe2M3gtZXUUjZQHIIJtz+08n4eLIFdj2Q=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1390584686811,"_hasShrinkwrap":false,"_cnpm_publish_time":1390584686811,"_cnpmcore_publish_time":"2021-12-13T07:22:23.237Z","hasInstallScript":true},"1.9.2-6":{"name":"phantomjs","version":"1.9.2-6","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.2-6","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-6.tgz","shasum":"71db87e5275489570560a744dbaa649c2f9da0a0","size":10917,"noattachment":false,"integrity":"sha512-mDH7G9g4nXRMcmHKTKX0kOEIreeWRQu7QUYhpfAtH/tGW1AA235xHf2R7BDfSj0mXJGerx/RcwEj3OU1voSjBA=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1387579094840,"_hasShrinkwrap":false,"_cnpm_publish_time":1387579094840,"_cnpmcore_publish_time":"2021-12-13T07:22:23.862Z","hasInstallScript":true},"1.9.2-5":{"name":"phantomjs","version":"1.9.2-5","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.2-5","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-5.tgz","shasum":"455f8fb45bab776715e016fea3086ccc34ff102b","size":10665,"noattachment":false,"integrity":"sha512-ctfrFZClIRwrOxKmsYctehM/IAu6nQY1mqmX2o/MVtwrKGVfMex2g2KPRchksZp8EMAzmznGA3vqjpLvN3/yMA=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1386280864817,"_hasShrinkwrap":false,"_cnpm_publish_time":1386280864817,"_cnpmcore_publish_time":"2021-12-13T07:22:24.601Z","hasInstallScript":true},"1.9.2-4":{"name":"phantomjs","version":"1.9.2-4","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.2-4","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-4.tgz","shasum":"fbf6c8df9dc963f9a4020764495152e0099d6d42","size":10661,"noattachment":false,"integrity":"sha512-wJWvpSZF0Cjm+123Y+Q6sSLlgBAPYU5tAYVcKUvwgwI2mnO7pDzXO2jD/RhE8zOuf+ErGAMN4ulr8yFwF4osDA=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1384967126182,"_hasShrinkwrap":false,"_cnpm_publish_time":1384967126182,"_cnpmcore_publish_time":"2021-12-13T07:22:25.413Z","hasInstallScript":true},"1.9.2-3":{"name":"phantomjs","version":"1.9.2-3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.2.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","bugs":{"url":"https://github.com/Obvious/phantomjs/issues"},"_id":"phantomjs@1.9.2-3","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-3.tgz","shasum":"621d95c8888234b76b2a626940b0d7c4462a5780","size":10591,"noattachment":false,"integrity":"sha512-CEUEbWNWHKrG6GREcnbGNo5RE6tzqJwwhvbfvpMwib0UbvEsT4bjSopPkmKRBN2AOFH9lcnS9J7ELJUbJoQVUg=="},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1384881157974,"_hasShrinkwrap":false,"_cnpm_publish_time":1384881157974,"_cnpmcore_publish_time":"2021-12-13T07:22:26.175Z","hasInstallScript":true},"1.9.2-2":{"name":"phantomjs","version":"1.9.2-2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.2-2","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-2.tgz","shasum":"256228800bc18292395eb0f54b14cd42c8093889","size":10624,"noattachment":false,"integrity":"sha512-COGGyQX5asLfZ/ofY6AbIIwZEvM5tnOU2R+2JF+HmxpfaE5+m08pt/PYt8HlouLaK2iCcI64sppv9s/fvdpfZw=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1380661724045,"_hasShrinkwrap":false,"_cnpm_publish_time":1380661724045,"_cnpmcore_publish_time":"2021-12-13T07:22:26.891Z","hasInstallScript":true},"1.9.2-1":{"name":"phantomjs","version":"1.9.2-1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.2-1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-1.tgz","shasum":"698d3fab823320a32516c27a1055c36e8ee25df3","size":10511,"noattachment":false,"integrity":"sha512-IspPGaJ5W4SUNTgz29dHxLM8fBShAI1kk8CTeApBYFA30WvINehbzk3NylpOv08cQJRkXKhAa4Y/1/9NlZPlow=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1379601924535,"_hasShrinkwrap":false,"_cnpm_publish_time":1379601924535,"_cnpmcore_publish_time":"2021-12-13T07:22:27.699Z","hasInstallScript":true},"1.9.2-0":{"name":"phantomjs","version":"1.9.2-0","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.2-0","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.2-0.tgz","shasum":"36f265d99f8e5b40b1f3c92ddf94cbae66db7ebc","size":10477,"noattachment":false,"integrity":"sha512-sTvby1eVkfuoI4bf4+d76qg0BLIUH96wxxQpyFQ85b3s4qFBkQ1OCR78tP1bdcVCr5SEA1kuixel3C2ZjGJZWQ=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1378738948321,"_hasShrinkwrap":false,"_cnpm_publish_time":1378738948321,"_cnpmcore_publish_time":"2021-12-13T07:22:28.467Z","hasInstallScript":true},"1.9.1-9":{"name":"phantomjs","version":"1.9.1-9","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-9","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-9.tgz","shasum":"f18671f4bcbbb5d5fc4a20ddcd6800ab0edc4453","size":10469,"noattachment":false,"integrity":"sha512-C2J2QmTYiJMFTw1nKcseU8C5OkWbTo9iUu92m4BEvu0holg0yDuHHm8WS0OzVrKehauD5RTkaefJC6j6QfMl+g=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1378224687773,"_hasShrinkwrap":false,"_cnpm_publish_time":1378224687773,"_cnpmcore_publish_time":"2021-12-13T07:22:29.409Z","hasInstallScript":true},"1.9.1-8":{"name":"phantomjs","version":"1.9.1-8","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-8","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-8.tgz","shasum":"1fb7a800b403474974a696afebfbaa20b616e040","size":10443,"noattachment":false,"integrity":"sha512-crRerCrEZF7d3qlQlZ6b0DDKKw5kFN+UUH3SyTgN2s/Wy9BIds4dJUjftHocQIepocbuNi5N44h4vjCkk6Je4Q=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376949122245,"_hasShrinkwrap":false,"_cnpm_publish_time":1376949122245,"_cnpmcore_publish_time":"2021-12-13T07:22:30.282Z","hasInstallScript":true},"1.9.1-7":{"name":"phantomjs","version":"1.9.1-7","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-7","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-7.tgz","shasum":"b481a57bad454e425aacbacf6b4b13af3aaa68df","size":10414,"noattachment":false,"integrity":"sha512-xv179HXwVOLin4XWjuDNLLJSNA0HU+cZgJy8Koolvq+YP/hJEHSyvDHSGSEG7X2DH5UHTYBE48O+tsUiolwCFQ=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376937515809,"_hasShrinkwrap":false,"_cnpm_publish_time":1376937515809,"_cnpmcore_publish_time":"2021-12-13T07:22:31.197Z","hasInstallScript":true},"1.9.1-6":{"name":"phantomjs","version":"1.9.1-6","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-6","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-6.tgz","shasum":"9afa4f52b807309275eb97ec693c91ffd71b774b","size":10350,"noattachment":false,"integrity":"sha512-XLdrH467nHqw47tCENVjZHsHbbW2Vs4KsISlWNd+s0cctmCOUO6TsMttP4dEEeANwjktwoLbLvx/FONULh+/NQ=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376784169951,"_hasShrinkwrap":false,"_cnpm_publish_time":1376784169951,"_cnpmcore_publish_time":"2021-12-13T07:22:32.008Z","hasInstallScript":true},"1.9.1-5":{"name":"phantomjs","version":"1.9.1-5","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-5","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-5.tgz","shasum":"52cc1dfb2b7af015ae0a17dc8e54f21e622a78f1","size":10331,"noattachment":false,"integrity":"sha512-v89IzZsRIN6RfBgSiE6XWkxzxpXzgo5slvpyptbzln7AbkQ/x7GJpYy1SKyS1Ky/gCh8orbCb9EnJpejXxDpqg=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376519197156,"_hasShrinkwrap":false,"_cnpm_publish_time":1376519197156,"_cnpmcore_publish_time":"2021-12-13T07:22:32.846Z","hasInstallScript":true},"1.9.1-4":{"name":"phantomjs","version":"1.9.1-4","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-4","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-4.tgz","shasum":"79adc5650ff0a51a43744820720360f0afeb4b79","size":10307,"noattachment":false,"integrity":"sha512-SiYLMsCPEb4yNWf/rmPn/iK90Ke4c3e6wKNXN3Ahr/vgHpan4U+FnckKSHNm9KPmIZQ4uwZ3BvJbe1pW+SpCEg=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376429753854,"_hasShrinkwrap":false,"_cnpm_publish_time":1376429753854,"_cnpmcore_publish_time":"2021-12-13T07:22:33.835Z","hasInstallScript":true},"1.9.1-3":{"name":"phantomjs","version":"1.9.1-3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-3","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-3.tgz","shasum":"8794843e3eeaffed2d6906f221389939c925bd09","size":10054,"noattachment":false,"integrity":"sha512-cEnaMqJiF0ZxiLWi9fmQbWsshMxY3kSoz1dAUbHmopYO4KDmd9D7nau8pWoEMPuJ7VQEwOqpLQXhdj0kuKilPQ=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376418486605,"_hasShrinkwrap":false,"_cnpm_publish_time":1376418486605,"_cnpmcore_publish_time":"2021-12-13T07:22:34.706Z","hasInstallScript":true},"1.9.1-2":{"name":"phantomjs","version":"1.9.1-2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2","which":"~1.0.5"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-2","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-2.tgz","shasum":"5907e9cc44cd8ad48c43d7f0069d9ae45ad64e7d","size":9348,"noattachment":false,"integrity":"sha512-Fkt0nimseEWR0hAnNPFjQT+T/g3DS9MIkDoyFGoVu84lMRWlp8XrLOBPhp8atR5rgsSIGE+QIIrywu/l0lGy6g=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1376333677546,"_hasShrinkwrap":false,"_cnpm_publish_time":1376333677546,"_cnpmcore_publish_time":"2021-12-13T07:22:35.542Z","hasInstallScript":true},"1.9.1-0":{"name":"phantomjs","version":"1.9.1-0","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.1-0","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.1-0.tgz","shasum":"08b8a5ad7b81325c1e4fe072a37edbc16db7723f","size":8801,"noattachment":false,"integrity":"sha512-SgxJiFiBw9daQwRi4Z85Xy+ZW7N0KHU/vva8UxQ+qZuCzXi2ridliK0b9CJGJmHgPe/YKBm0psRwbkvihWwFqg=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1371134183725,"_hasShrinkwrap":false,"_cnpm_publish_time":1371134183725,"_cnpmcore_publish_time":"2021-12-13T07:22:36.385Z","hasInstallScript":true},"1.9.0-6":{"name":"phantomjs","version":"1.9.0-6","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-6","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-6.tgz","shasum":"b66716d0789ddfde0c5600a308febcaef46240f8","size":8797,"noattachment":false,"integrity":"sha512-4zf6cPQh09M+9HQJ8Tf4ZT0KHbJqxxJ1bt4ZXoFs3CDczuU/uX7s2vpASovjEQmVUP39P/Ud1yZfVWwKbwiMmA=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1369790921884,"_hasShrinkwrap":false,"_cnpm_publish_time":1369790921884,"_cnpmcore_publish_time":"2021-12-13T07:22:37.169Z","hasInstallScript":true},"1.9.0-5":{"name":"phantomjs","version":"1.9.0-5","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","mkdirp":"0.3.5","rimraf":"~2.0.2"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-5","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-5.tgz","shasum":"88905dd5b026ced7f8143e9c254c36bc210b4c29","size":8558,"noattachment":false,"integrity":"sha512-LXuNpy2XOIOKHQvFbOoycaPsbdEZTVl8e7S9sMtaT2wk80dYc+Yppphrrffvu96lAQEmMv7S2RXfnftmSPeZvg=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1369760878448,"_hasShrinkwrap":false,"_cnpm_publish_time":1369760878448,"_cnpmcore_publish_time":"2021-12-13T07:22:38.116Z","hasInstallScript":true},"1.9.0-4":{"name":"phantomjs","version":"1.9.0-4","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"adm-zip":"0.2.1","kew":"~0.1.7","ncp":"0.4.2","npmconf":"0.0.24","rimraf":"~2.0.2"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-4","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-4.tgz","shasum":"645d9ce3138dc5178207dfecdebd9d84e0e4e45f","size":8557,"noattachment":false,"integrity":"sha512-61B/cStX8zWeetMtTat6KYjcf/Gz46zWjjNBFgLQwpDUM/kZi9aH41/2cXUjkjKkkPxuAUPnOd6w1rwJrLptow=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1368810713792,"_hasShrinkwrap":false,"_cnpm_publish_time":1368810713792,"_cnpmcore_publish_time":"2021-12-13T07:22:39.166Z","hasInstallScript":true},"1.9.0-3":{"name":"phantomjs","version":"1.9.0-3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","adm-zip":"0.2.1"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-3","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-3.tgz","shasum":"da482b73417fb69bc2a3af828bd6cb2cc6215f32","size":8698,"noattachment":false,"integrity":"sha512-SAJY8x4axmLRSoXG2ZHneF8eIazfWt0/ktS01R63tiTEpN66iVIh2CSYwh5SFdQPRNiSy8Xg6aG8wNEd2Dd4gg=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1366684458031,"_hasShrinkwrap":false,"_cnpm_publish_time":1366684458031,"_cnpmcore_publish_time":"2021-12-13T07:22:40.210Z","hasInstallScript":true},"1.9.0-2":{"name":"phantomjs","version":"1.9.0-2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","adm-zip":"0.2.1"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-2","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-2.tgz","shasum":"22c7c086ee0b19bbf1657fe8b2ff5db169ddd41a","size":8682,"noattachment":false,"integrity":"sha512-E3Nf7jKgQ7I5V0dPF1h7vUP0nKb05mA7kcnaANbgqBxDWzb88ZFl7AW8gvOM8V+4zAK3fW4Owo3DNcy0VNfECA=="},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1365959108611,"_hasShrinkwrap":false,"_cnpm_publish_time":1365959108611,"_cnpmcore_publish_time":"2021-12-13T07:22:41.261Z","hasInstallScript":true},"1.9.0-1":{"name":"phantomjs","version":"1.9.0-1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","adm-zip":"0.2.1"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-1.tgz","shasum":"0c2c4e82ff6fdd196459d3522ed27fd19405969a","size":8530,"noattachment":false,"integrity":"sha512-7pg1oBFdzVqz0CkP+o2V/s8YaKv8lczOt9QZMS7noy+qBZXXYVMJn7pcTSvuaWCz9kgDmDINkPVLyZd6GR6dPw=="},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1364944639755,"_hasShrinkwrap":false,"_cnpm_publish_time":1364944639755,"_cnpmcore_publish_time":"2021-12-13T07:22:42.170Z","hasInstallScript":true},"1.9.0-0":{"name":"phantomjs","version":"1.9.0-0","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"0.1.6-alpha"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.9.0-0","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.9.0-0.tgz","shasum":"8d9cbcdb839d22cd962edc85c1c6868129c4f3a5","size":8562,"noattachment":false,"integrity":"sha512-SVqCzqwVoS+cn3APRUlozXw7J/VfMXDrH9YNKu9Mx/R1WBwVPtJHM023iNuUl8NGpN9sb+RLRcJqojvvVkniUQ=="},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1364245864917,"_hasShrinkwrap":false,"_cnpm_publish_time":1364245864917,"_cnpmcore_publish_time":"2021-12-13T07:22:43.403Z","hasInstallScript":true},"1.8.2-2":{"name":"phantomjs","version":"1.8.2-2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"0.1.6-alpha"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.2-2","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.2-2.tgz","shasum":"8aa26cf2996242a825ef226aeca208ee5ff37474","size":8558,"noattachment":false,"integrity":"sha512-OgPKXg9ovVfk8dX33Q93FerL+/wQEE1zgdEosq1gDcaYcDGnLB5yKxz8PVz9KOhxFCdK0sE8fB1nQBMHDSeRPA=="},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1363796273889,"_hasShrinkwrap":false,"_cnpm_publish_time":1363796273889,"_cnpmcore_publish_time":"2021-12-13T07:22:44.516Z","hasInstallScript":true},"1.8.2-1":{"name":"phantomjs","version":"1.8.2-1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"0.1.6-alpha"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.2-1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.2-1.tgz","shasum":"156f97b676792195ce83d07dd051c6339841334c","size":8540,"noattachment":false,"integrity":"sha512-7B4jJi6fha/EK8Nwy8kwrOxP5tQ+Jhb6HVYfgUkragPvaxn35ZPG25SIfi78JxFmRWL244vngdUENSN51+2f3g=="},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1363736565137,"_hasShrinkwrap":false,"_cnpm_publish_time":1363736565137,"_cnpmcore_publish_time":"2021-12-13T07:22:45.642Z","hasInstallScript":true},"1.8.2-0":{"name":"phantomjs","version":"1.8.2-0","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.1.0"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.2-0","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.2-0.tgz","shasum":"883d36577d2d5fa494a4a546c4b95da1c635b5fe","size":8143,"noattachment":false,"integrity":"sha512-hpejFACh4iGRhhpr9FCtBMHsfp4tCRLXAEC3npNYDgLgnAKnaR1dcU/FqZu1T8cjkc4kIAn1koF9wUrtcKi8AA=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1363033116049,"_hasShrinkwrap":false,"_cnpm_publish_time":1363033116049,"_cnpmcore_publish_time":"2021-12-13T07:22:46.645Z","hasInstallScript":true},"1.8.1-3":{"name":"phantomjs","version":"1.8.1-3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.1.0"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.1-3","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.1-3.tgz","shasum":"650569df037e929d7e6e9aab4ee1bc23417b2e16","size":8136,"noattachment":false,"integrity":"sha512-2wHxGzXq0XPZ8akkeFV2864HutiXvm8FIRi9U/Pth3qkEagdjDjKKBehpAV/yR+SNDHpnJZCpQSvn26oZvChLw=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1359585228349,"_hasShrinkwrap":false,"_cnpm_publish_time":1359585228349,"_cnpmcore_publish_time":"2021-12-13T07:22:47.734Z","hasInstallScript":true},"1.8.1-2":{"name":"phantomjs","version":"1.8.1-2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.1.0"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.1-2","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.1-2.tgz","shasum":"0779bb09578c40bcba86def3571dac0c79cd5e4b","size":8390,"noattachment":false,"integrity":"sha512-4bK75yxHwLZrB4mX/Lk/RrLlLBn4DfOHssqSv91VfA1PLDvnvJbyBaPL8ym1Ptl1rIJvFTJpxWTlK68+sIYWsw=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1359580787459,"_hasShrinkwrap":false,"_cnpm_publish_time":1359580787459,"_cnpmcore_publish_time":"2021-12-13T07:22:48.839Z","hasInstallScript":true},"1.8.1-1":{"name":"phantomjs","version":"1.8.1-1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.1.0"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.1-1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.1-1.tgz","shasum":"3d072370f69e86753dd320cfc5da480676fcf588","size":8133,"noattachment":false,"integrity":"sha512-rj5DEwAqQRJwnFY28IqEQri6a+APm+GjtTGI5cxUHygf87N/pfAB9wcbRzYDWYdWqg6BeGsGYFcecKLQaMI07Q=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1359503593691,"_hasShrinkwrap":false,"_cnpm_publish_time":1359503593691,"_cnpmcore_publish_time":"2021-12-13T07:22:49.768Z","hasInstallScript":true},"1.8.0-1":{"name":"phantomjs","version":"1.8.0-1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.1.0"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@1.8.0-1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-1.8.0-1.tgz","shasum":"7ef7ee44a69f2ddab29a18af774c6747eca303f2","size":8154,"noattachment":false,"integrity":"sha512-aDNWqM3qNCy+cOuW+4ULnxWYqmn9Na3fLXSWbqwSXSARPhqx3NBzM8NRMCDOMOZro5oinwy5B9apRD3D5PCoeA=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1356285178992,"_hasShrinkwrap":false,"_cnpm_publish_time":1356285178992,"_cnpmcore_publish_time":"2021-12-13T07:22:50.930Z","hasInstallScript":true},"0.2.6":{"name":"phantomjs","version":"0.2.6","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.1.0"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@0.2.6","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.6.tgz","shasum":"562fd68926cde221752c46868c15778965e2ea71","size":8031,"noattachment":false,"integrity":"sha512-Vs3mUOnQ51p4XRkBktc5SPdnBS+KZZqYhF779mneRrBXNLyeSWBaErqh5efzKCKYXAU16kfbn6/jGotC+0VLeA=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1355953728979,"_hasShrinkwrap":false,"_cnpm_publish_time":1355953728979,"_cnpmcore_publish_time":"2021-12-13T07:22:52.087Z","hasInstallScript":true},"0.2.5":{"name":"phantomjs","version":"0.2.5","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.0.4"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@0.2.5","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.5.tgz","shasum":"b55bbc0974b1b6500c7b078395a68e41fce99332","size":8041,"noattachment":false,"integrity":"sha512-qFf6PFloLW471qkF1KXGCxHNux+8foLQ7GkMmaiNMbFywZX9SFgl7GWCyDn1ouel0n1/jCQksQqvtWSUuuvtag=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1355952348485,"_hasShrinkwrap":false,"_cnpm_publish_time":1355952348485,"_cnpmcore_publish_time":"2021-12-13T07:22:53.201Z","hasInstallScript":true},"0.2.4":{"name":"phantomjs","version":"0.2.4","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.0.4"},"devDependencies":{"nodeunit":"~0.7.4"},"readmeFilename":"README.md","_id":"phantomjs@0.2.4","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.4.tgz","shasum":"f94e4d432fb5f3b9b0e66c7c1103393140993112","size":8009,"noattachment":false,"integrity":"sha512-+sg3KnaI6755mJ8mXdN2vojvTqYxzTeeAxoWVgvsZ8hXK9PNbOQJZ8eid8/QUxuY3eJCpfyHi0rIUtmxIk0/4A=="},"_npmVersion":"1.1.65","_npmUser":{"name":"dpup","email":"dan@pupi.us"},"directories":{},"publish_time":1355950908682,"_hasShrinkwrap":false,"_cnpm_publish_time":1355950908682,"_cnpmcore_publish_time":"2021-12-13T07:22:54.229Z","hasInstallScript":true},"0.2.3":{"name":"phantomjs","version":"0.2.3","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.0.4"},"devDependencies":{"nodeunit":"~0.7.4"},"_id":"phantomjs@0.2.3","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.3.tgz","shasum":"61e9a58aee1f8a0fb3d1414f1d46425233a602da","size":7873,"noattachment":false,"integrity":"sha512-aaehag1bUaClyc9PpQXHp0tRaDQkTGidmAvx3xwWJQaOKwwRvoD5U/vfLiJU0Kp6Usbfvr8b5dTY8X2G0Nsfig=="},"directories":{},"publish_time":1353868595168,"_hasShrinkwrap":false,"_cnpm_publish_time":1353868595168,"_cnpmcore_publish_time":"2021-12-13T07:22:55.334Z","hasInstallScript":true},"0.2.2":{"name":"phantomjs","version":"0.2.2","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.0.4"},"devDependencies":{"nodeunit":"~0.7.4"},"_id":"phantomjs@0.2.2","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.2.tgz","shasum":"8217f23c6e25c8ebf934b8b721edad8161232897","size":7845,"noattachment":false,"integrity":"sha512-F4SAmFCcrNIwt3P+gGuNTr4llYmV4PxJBGON2hlTZLlkT2J3g3XPlABzBDiY/uzgk0Y10H/6z6cEap2xzo3rSQ=="},"directories":{},"publish_time":1351205263583,"_hasShrinkwrap":false,"_cnpm_publish_time":1351205263583,"_cnpmcore_publish_time":"2021-12-13T07:22:56.582Z","hasInstallScript":true},"0.2.1":{"name":"phantomjs","version":"0.2.1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"main":"lib/phantomjs","bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js","test":"nodeunit --reporter=minimal test/tests.js"},"dependencies":{"rimraf":"~2.0.2","unzip":"~0.0.4"},"devDependencies":{"nodeunit":"~0.7.4"},"_id":"phantomjs@0.2.1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.1.tgz","shasum":"8e2b0ad904364792e465b276a4a692a8950c97dc","size":7686,"noattachment":false,"integrity":"sha512-nLAqxmQqNpc4XznQaVTVimwq1O8mWCJDp1nUv+Y1mKNlnwmKCC4O00trWos4KKQPZh0p+tdEZISKxiq7TLj3vA=="},"directories":{},"publish_time":1350920728130,"_hasShrinkwrap":false,"_cnpm_publish_time":1350920728130,"_cnpmcore_publish_time":"2021-12-13T07:22:57.804Z","hasInstallScript":true},"0.2.0":{"name":"phantomjs","version":"0.2.0","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js"},"dependencies":{"unzip":"~0.0.4"},"_id":"phantomjs@0.2.0","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.2.0.tgz","shasum":"9720fb8ed1438fdcf5518ddfeb046355a6fc0ae4","size":6611,"noattachment":false,"integrity":"sha512-+7M1qOV+ACxB/BFld/V4R499z02IZn0Tkcn/JdCb8Xx5Fxa82df5fupn/B/TedLltXtC5thDo6anBMv6J4XcNg=="},"directories":{},"publish_time":1349981581613,"_hasShrinkwrap":false,"_cnpm_publish_time":1349981581613,"_cnpmcore_publish_time":"2021-12-13T07:22:59.106Z","hasInstallScript":true},"0.1.1":{"name":"phantomjs","version":"0.1.1","keywords":["phantomjs","headless","webkit"],"description":"Headless WebKit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"scripts":{"install":"node install.js"},"_id":"phantomjs@0.1.1","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.1.1.tgz","shasum":"15237ef8c39192e18b2f69fec8bddcfc59b64dfd","size":6633,"noattachment":false,"integrity":"sha512-GwDTt3B69PYCTA9QShEOTXOWSkBcN8i0B289+rm9veVoUl8NvQ5WFety7V33IEiwWKO3rYmfrWP1GV6OYtoMeQ=="},"directories":{},"publish_time":1349974376784,"_hasShrinkwrap":false,"_cnpm_publish_time":1349974376784,"_cnpmcore_publish_time":"2021-12-13T07:23:00.338Z","hasInstallScript":true},"0.1.0":{"name":"phantomjs","version":"0.1.0","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"https://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_id":"phantomjs@0.1.0","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.1.0.tgz","shasum":"df56e46d417c8d4d9eed6cd449b811ef08091df5","size":6637,"noattachment":false,"integrity":"sha512-fybvg891aCxPrlJmtqJ7Etf/6okJrqYAakFHSdiaupbnZOtP3c+wy6etXmxhvQleJumP5BkPGdXDLh2T2wdLng=="},"directories":{},"publish_time":1349633165370,"_hasShrinkwrap":false,"_cnpm_publish_time":1349633165370,"_cnpmcore_publish_time":"2021-12-13T07:23:01.627Z","hasInstallScript":true},"0.0.9":{"name":"phantomjs","version":"0.0.9","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"https://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_id":"phantomjs@0.0.9","dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.9.tgz","shasum":"1f637431059b7e1412c1850bcd699b34dbc38075","size":6639,"noattachment":false,"integrity":"sha512-11YK/b1w29TAm70qlxOmkEYfHrlUQaNy82pvONVTvLCD1T06sbVcZdZoHOvWx9XnHCSVh7FqfoGhWJMjelrKtA=="},"directories":{},"publish_time":1349448810020,"_hasShrinkwrap":false,"_cnpm_publish_time":1349448810020,"_cnpmcore_publish_time":"2021-12-13T07:23:02.846Z","hasInstallScript":true},"0.0.8":{"name":"phantomjs","version":"0.0.8","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.8","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.8.tgz","shasum":"47a918784679a0e6787f85effecf2884f9b537e5","size":6335,"noattachment":false,"integrity":"sha512-9sSZFlW1EAyQc6Wm7c5swB+8t6INIz4qNCDKOxBQ56HoUrkMW6juSSgecOrVHMfIEv8o+1RrPQkSgTgM+L7OgA=="},"directories":{},"publish_time":1347316614702,"_hasShrinkwrap":false,"_cnpm_publish_time":1347316614702,"_cnpmcore_publish_time":"2021-12-13T07:23:04.270Z","hasInstallScript":true},"0.0.7":{"name":"phantomjs","version":"0.0.7","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.7","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.7.tgz","shasum":"5c196f4c0860f237739a4f96820d10364a4cb3a4","size":6330,"noattachment":false,"integrity":"sha512-yYOKkZ2PE2adp/XPoOjQAsNQlvLYuTChc13iMe07idYv6uPmqUou8Gchfb3mU0Z1ic1V0O0FroZzSNTcxY64hw=="},"directories":{},"publish_time":1347316331921,"_hasShrinkwrap":false,"_cnpm_publish_time":1347316331921,"_cnpmcore_publish_time":"2021-12-13T07:23:05.642Z","hasInstallScript":true},"0.0.6":{"name":"phantomjs","version":"0.0.6","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantomjs"},"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.6","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.6.tgz","shasum":"aad8acc875600d9c1ccb8f3ee8c19cdd45b48ab5","size":6327,"noattachment":false,"integrity":"sha512-o9yApeugy54MjBr6HQG24iIZ91IQUwyXA+ZQz8yEnoBdkXoO82nhuUtAQK7FGXBeqxxvwdD1wqCxpM8NlS3BzA=="},"directories":{},"publish_time":1347316235467,"_hasShrinkwrap":false,"_cnpm_publish_time":1347316235467,"_cnpmcore_publish_time":"2021-12-13T07:23:06.998Z","hasInstallScript":true},"0.0.5":{"name":"phantomjs","version":"0.0.5","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantomjs":"./bin/phantom"},"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.5","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.5.tgz","shasum":"7521385263734381a6d7587201d2577f366f3d00","size":5966,"noattachment":false,"integrity":"sha512-8/FFAwgS/ijBgTMtbxIASqTx5R3FLUkLA/EXKdq7SiYZzvKowR435jJwm6tJJfq6x8ycvrahAZNbpzq+4K3fOg=="},"directories":{},"publish_time":1347316106579,"_hasShrinkwrap":false,"_cnpm_publish_time":1347316106579,"_cnpmcore_publish_time":"2021-12-13T07:23:08.414Z","hasInstallScript":true},"0.0.4":{"name":"phantomjs","version":"0.0.4","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"engine":{"node":"*"},"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.4","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.4.tgz","shasum":"162be98445822fde5f8f68b067b9a097ea221b6d","size":5951,"noattachment":false,"integrity":"sha512-q+RidwHYSjKlsPCNR2U1NPSCbHijIw8Ry2ZapovMKu4MaCVkFtD2tAe+rLzxJqjHPpxTpLCAKfYfnnAOAuWyng=="},"directories":{},"publish_time":1347315876647,"_hasShrinkwrap":false,"_cnpm_publish_time":1347315876647,"_cnpmcore_publish_time":"2021-12-13T07:23:09.816Z","hasInstallScript":true},"0.0.3":{"name":"phantomjs","version":"0.0.3","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantom":"bin/phantom"},"engine":{"node":"*"},"preferGlobal":true,"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.3","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.3.tgz","shasum":"76a5dd5763df6179fc6af8894fa6f29bd6382ce1","size":5974,"noattachment":false,"integrity":"sha512-jef4v6y//lqf+IbO9bZLusbiPO2OBCAjm1gInoIEQsGXuVusoZtuEpljJtbaQ0ZxfcVb9Mkt/gHxdQPsF1fxRg=="},"directories":{},"publish_time":1347315814127,"_hasShrinkwrap":false,"_cnpm_publish_time":1347315814127,"_cnpmcore_publish_time":"2021-12-13T07:23:11.036Z","hasInstallScript":true},"0.0.2":{"name":"phantomjs","version":"0.0.2","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"phantom":"./bin/phantom"},"engine":{"node":"*"},"preferGlobal":true,"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.2","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.2.tgz","shasum":"c9931ad59526e54a31d0cf03d322934b74545a98","size":5989,"noattachment":false,"integrity":"sha512-5ZUbfxoP7LpEQUA+oSVksC8m2ea3hM3g2NSAE3/1W1JRUwWlAeljAKjq031wvCkD8+H4GN0gaRFnuV63MyjaGQ=="},"directories":{},"publish_time":1347314095359,"_hasShrinkwrap":false,"_cnpm_publish_time":1347314095359,"_cnpmcore_publish_time":"2021-12-13T07:23:12.358Z","hasInstallScript":true},"0.0.1":{"name":"phantomjs","version":"0.0.1","keywords":["phantomjs","headless","webkit",""],"description":"Headless webkit with JS API","homepage":"https://github.com/Obvious/phantomjs","repository":{"type":"git","url":"git://github.com/Obvious/phantomjs.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":"mediumeng","email":"npm@medium.com"},{"name":"unagicat","email":"unagicat@yahoo.com"}],"bin":{"plovr":"./bin/phantom"},"engine":{"node":"*"},"preferGlobal":true,"scripts":{"install":"node install.js"},"_npmUser":{"name":"dpup","email":"dan@pupi.us"},"_id":"phantomjs@0.0.1","dependencies":{},"devDependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.13","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/phantomjs/-/phantomjs-0.0.1.tgz","shasum":"1d36081d85df1e2870f44ebdfd0e9d2f6d94ff0e","size":5987,"noattachment":false,"integrity":"sha512-YA0Hy3EBvpUQJgl+94JnIyS9tgFJnWwv/T/xed39RguE0OF/FOJ8mdTCg2n7EnZX8+VD0P2rt7k8NGqbsYFKVA=="},"directories":{},"publish_time":1347312031171,"_hasShrinkwrap":false,"_cnpm_publish_time":1347312031171,"_cnpmcore_publish_time":"2021-12-13T07:23:13.838Z","hasInstallScript":true}},"bugs":{"url":"https://github.com/Medium/phantomjs/issues"},"homepage":"https://github.com/Medium/phantomjs","keywords":["phantomjs","headless","webkit"],"repository":{"type":"git","url":"git://github.com/Medium/phantomjs.git"},"_source_registry_name":"default"}