From 0b495661763a12d6c3539ed30d5dc1269348571d Mon Sep 17 00:00:00 2001 From: Juan Picado Date: Wed, 23 Nov 2022 07:35:10 +0100 Subject: [PATCH] fix: add hasInstallScript calculation (#3509) * fix: add hasInstallScript calculation * Update storage-utils.ts * chore: add tests --- src/lib/storage-utils.ts | 14 +- test/unit/modules/api/api.spec.ts | 24 + .../mock-store/puppeteer/package.json | 102946 +++++++++++++++ .../mock-store/puppeteer/puppeteer-19.2.2.tgz | Bin 0 -> 69732 bytes 4 files changed, 102983 insertions(+), 1 deletion(-) create mode 100644 test/unit/partials/mock-store/puppeteer/package.json create mode 100644 test/unit/partials/mock-store/puppeteer/puppeteer-19.2.2.tgz diff --git a/src/lib/storage-utils.ts b/src/lib/storage-utils.ts index df69f3948..c9156f65d 100644 --- a/src/lib/storage-utils.ts +++ b/src/lib/storage-utils.ts @@ -237,6 +237,18 @@ export function isPublishablePackage(pkg: Package): boolean { return _.includes(keys, 'versions'); } +export function hasInstallScript(version: Version) { + if (version?.scripts) { + const scripts = Object.keys(version.scripts); + return ( + scripts.find((item) => { + return ['install', 'preinstall', 'postinstall'].includes(item); + }) !== undefined + ); + } + return false; +} + export function convertAbbreviatedManifest(manifest: Manifest): AbbreviatedManifest { const abbreviatedVersions = Object.keys(manifest.versions).reduce((acc: AbbreviatedVersions, version: string) => { const _version = manifest.versions[version]; @@ -262,7 +274,7 @@ export function convertAbbreviatedManifest(manifest: Manifest): AbbreviatedManif bundleDependencies: _version.bundleDependencies, // npm cli specifics _hasShrinkwrap: _version._hasShrinkwrap, - hasInstallScript: _version.hasInstallScript, + hasInstallScript: hasInstallScript(_version), }; acc[version] = _version_abbreviated; return acc; diff --git a/test/unit/modules/api/api.spec.ts b/test/unit/modules/api/api.spec.ts index 62e40874e..ea0a613aa 100644 --- a/test/unit/modules/api/api.spec.ts +++ b/test/unit/modules/api/api.spec.ts @@ -392,6 +392,30 @@ describe('endpoint unit test', () => { }); }); + test.each([ + 'application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*', + 'application/vnd.npm.install-v1+json; q=1.0, */*', + 'application/vnd.npm.install-v1+json', + ])('should fetch abbreviated puppeteer package from remote uplink with %s', (accept, done: any) => { + request(app) + .get('/puppeteer') + .set('accept', accept) + .set(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET) + .expect(HEADER_TYPE.CONTENT_ENCODING, HEADERS.GZIP) + .expect(HEADERS.CONTENT_TYPE, 'application/vnd.npm.install-v1+json; charset=utf-8') + .expect(HTTP_STATUS.OK) + .end(function (err, res) { + if (err) { + return done(err); + } + const manifest = res.body; + expect(manifest).toBeDefined(); + expect(manifest.name).toMatch(/puppeteer/); + expect(manifest.versions['19.2.2'].hasInstallScript).toBeTruthy(); + done(); + }); + }); + test('should fails with socket time out fetch tarball timeout package from remote uplink', async () => { const timeOutPkg = generatePackageMetadata('timeout', '1.5.1'); const responseText = 'fooooooooooooooooo'; diff --git a/test/unit/partials/mock-store/puppeteer/package.json b/test/unit/partials/mock-store/puppeteer/package.json new file mode 100644 index 000000000..551fcfc26 --- /dev/null +++ b/test/unit/partials/mock-store/puppeteer/package.json @@ -0,0 +1,102946 @@ +{ + "name": "puppeteer", + "versions": { + "0.0.0": { + "name": "puppeteer", + "version": "0.0.0", + "description": "A script for setting up and installing new Ubuntu machines with Puppet", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git://github.com/plus3network/puppeteer.git" + }, + "keywords": [ + "puppet", + "devops", + "install", + "ubuntu" + ], + "author": { + "name": "Chris Cowan" + }, + "license": "MIT", + "gitHead": "730fbe50ac90eeaf2a5f02859b258b5dd2dbe92b", + "_id": "puppeteer@0.0.0", + "dist": { + "shasum": "c71ff3ced0cf60fc7d9faa4d66e9c5e8c3a2a12a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.0.0.tgz", + "integrity": "sha512-RErnbE2qx2AiqP6b8CTbYFNAdWlTtXZHGs8DKOut2RJ5PbLjOLxVEH8aQW2txzL0E8A7emH6KjzIDcSqAqf9tw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCbuH5XnLJWnyVwStLZXf9lwTBK9rgPpq6fMiFHfuUIUwIgfx0f2FGU6EZOJDCiWBkmAG2Z+6YP3VNyIfpvO7gkcSk=" + } + ] + }, + "_from": ".", + "_npmVersion": "1.2.14", + "_npmUser": { + "name": "ccowan", + "email": "chriscowan@plus3network.com" + }, + "maintainers": [ + { + "name": "ccowan", + "email": "chriscowan@plus3network.com" + } + ], + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.9.0": { + "name": "puppeteer", + "version": "0.9.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=7.10.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js", + "test-phantom": "python third_party/phantomjs/test/run-tests.py", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-phantom && npm run test-doclint", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "COVERAGE=true npm run unit" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "mime": "^1.3.4", + "progress": "^2.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "494755" + }, + "devDependencies": { + "commonmark": "^0.27.0", + "deasync": "^0.1.9", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1" + }, + "gitHead": "3ce173c16bb9e8ae27ef148507c1bc2e1979645d", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@0.9.0", + "_npmVersion": "5.3.0", + "_nodeVersion": "8.2.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wlmYlLIQsySYnxFQxXTMp1ACB5oMyHI6y2pCJ4YoVqyp0Uml3T+HS64jGimxOD3x93T3G+FM3JI3nBmHCovNgA==", + "shasum": "d65997ff83e24eb569e5577d2f75695dcbe5be4a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.9.0.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBHbUEQdVj5ZZui5UqRevhOXcuQRNpqZRVNVDtmVafuKAiBxm3772iX6wYM2LXdXeytnvKJWlACiidoi9wQ+bvFZfw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.9.0.tgz_1502897081168_0.33841979457065463" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.10.0": { + "name": "puppeteer", + "version": "0.10.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js", + "test-phantom": "python third_party/phantomjs/test/run-tests.py", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-phantom && npm run test-doclint && npm run test-node6", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "COVERAGE=true npm run unit", + "node6": "node utils/node6-transform/index.js", + "test-node6": "jasmine utils/node6-transform/test/test.js", + "build": "npm run node6", + "node6-sanity": "jasmine test/sanity.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "496140" + }, + "devDependencies": { + "commonmark": "^0.27.0", + "deasync": "^0.1.9", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1" + }, + "gitHead": "751164c69fa32907ad35cf86daca1b4ba3b658e3", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@0.10.0", + "_npmVersion": "5.3.0", + "_nodeVersion": "8.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Ufww/sWuySwkvTgeTetIVa/zhco4SnuBa5jtINLypEK0USDLTkYbVCsRwatcOvlwfr8Idb+JiNbpXt/kkhdsNA==", + "shasum": "f0a95de4b2660608fa9dbc54f525d013ef6262e7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.10.0.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBfdeA8789dW3oJGTYw5svRRsUhy0mka8tN4LJjFr9E/AiAtXx6dZWTooFGjSbgNbvx9YOAFBi+tmyh/DnLBJCFdAQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.10.0.tgz_1503623848895_0.6312760452274233" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.10.1": { + "name": "puppeteer", + "version": "0.10.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "COVERAGE=true npm run unit", + "test-node6-transformer": "jasmine utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "jasmine node6-test/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "496140" + }, + "devDependencies": { + "commonmark": "^0.27.0", + "deasync": "^0.1.9", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1" + }, + "gitHead": "ea4f8d78fce605fbcf00ad2d08acca075c1d9f29", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@0.10.1", + "_shasum": "a26f7012ff0fcc9f21c70ff9e2a8c60cba568a83", + "_from": ".", + "_npmVersion": "3.10.3", + "_nodeVersion": "6.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a26f7012ff0fcc9f21c70ff9e2a8c60cba568a83", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.10.1.tgz", + "integrity": "sha512-ccQIVI/Km1v6hkbPvpXdlYVf9bCGcsRibAaVGHTlg6RqnlUQ9A82y82kX4In16ZHVlXCP+o75MYGHnNO9aTeeA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC9Ow19Tz6xsYBjIAH89LwbHWPt5bUTOBtOc1+cw2BPUQIgVY1MtTnP60aWsvzJu2fX76ywqQx1KGOdSTfpfzKSv0M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.10.1.tgz_1503715407407_0.8126345055643469" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.10.2": { + "name": "puppeteer", + "version": "0.10.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "COVERAGE=true npm run unit", + "test-node6-transformer": "jasmine utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "jasmine node6-test/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "497674" + }, + "devDependencies": { + "commonmark": "^0.27.0", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1" + }, + "gitHead": "2817130fe099a7431e98c20ce1f44c6e547d4ca9", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@0.10.2", + "_npmVersion": "5.3.0", + "_nodeVersion": "8.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-dj1MdwiYfEwTemfFeBu0inGyhcaEe3cKREvTFSA/pkGHaCwyj/FFfJHJpr9vykXvSs/PbmcApOztsUyqzd1msA==", + "shasum": "b4a959a722bf626ca481f2aeba11fdb810f2c98f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.10.2.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDP4WBpeV066ECqSoebL/YjiY3ldCxZ6gUtv+Yq6s2sTQIgcKQemkiMSFD+2wMFA4zAt2kytQEzSkF6JcnFA4b6rnI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.10.2.tgz_1504325092003_0.5746091885957867" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.11.0": { + "name": "puppeteer", + "version": "0.11.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "DEBUG_TEST=true node --inspect-brk ./node_modules/.bin/jasmine test/test.js", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "COVERAGE=true npm run unit", + "test-node6-transformer": "jasmine utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "jasmine node6-test/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "499413" + }, + "devDependencies": { + "commonmark": "^0.27.0", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1" + }, + "gitHead": "433b17b5d28569a30b47ce894a3305cb192935ce", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@0.11.0", + "_npmVersion": "5.3.0", + "_nodeVersion": "8.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/o8uY6VChG74B1HYBZkLDU6aIekWeOd85wez9YxB9SNbDnFNsUddv2F4xWuhwvQ4ab84vb+1VX4fxs2kBz3u8g==", + "shasum": "0a2b856f3c2745a5884c6dde9fb44f96663988ed", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.11.0.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC5i+/QqXVGOZ82VpoxBmfSFOpEBk5HM3foyiyNrn4idAIhANGvfPPsrVj1eN68vgriGAVne5OAqRkgGuDTSIzmwXUa" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.11.0.tgz_1505972831445_0.6909726415760815" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.12.0": { + "name": "puppeteer", + "version": "0.12.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "cross-env DEBUG_TEST=true node --inspect-brk ./node_modules/jasmine/bin/jasmine.js test/test.js", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "jasmine utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "jasmine node6-test/test.js", + "tsc": "tsc -p ." + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "508693" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "next" + }, + "gitHead": "b555151c14f736dea7344d834211128e5e45ede6", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@0.12.0", + "_npmVersion": "5.3.0", + "_nodeVersion": "8.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-H/bylN7FccwbN7JZoSP+xRozxgJEDNy4uC4p727cyttKUVNXYjFuEMueJYHW0pblnrfLEH341SyFJVWhJMLxKQ==", + "shasum": "9c421930851594dfdd479d07646666a74ced7719", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.12.0.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAjR3QwCKK9mnrbKl9L/8Y9V0DMd4pfAKX69Tt1kXvoSAiEA5BZ6j4fRf1PoIyGjSXniCzFZfJJ3Qk7Cxcz9eFYi7eA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.12.0.tgz_1508000185901_0.9672713316977024" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "0.13.0": { + "name": "puppeteer", + "version": "0.13.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "jasmine test/test.js", + "debug-unit": "cross-env DEBUG_TEST=true node --inspect-brk ./node_modules/jasmine/bin/jasmine.js test/test.js", + "test-doclint": "jasmine utils/doclint/check_public_api/test/test.js && jasmine utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "jasmine utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "jasmine node6-test/test.js", + "tsc": "tsc -p ." + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "515411" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "jasmine": "^2.6.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "0467c346b1a23608001dd66d9fe49f147600baa6", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@0.13.0", + "_npmVersion": "5.3.0", + "_nodeVersion": "8.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-M52SA/WmW54YMLzFtCLGslhr9tntzfTgJIZnx3QnaDXn9F5q2BlTosywSBEKj8aVVd6al0WNfiu14MUQW3wjaw==", + "shasum": "2e6956205f2c640964c2107f620ae1eef8bde8fd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.13.0.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICSEN3oHYseHcaVlHTwOmNFmP6Yiab9Ann6e7PX0KD5PAiEAmDLoSDyrFxQqbO9NnYGZ7E+70FVvZ+RpGZTkGsvfvTs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-0.13.0.tgz_1510367096371_0.7907098056748509" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-rc": { + "name": "puppeteer", + "version": "1.0.0-rc", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "524617" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "e32fdcb5bc2e2cec6368ac4b11be8d22b8553024", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-rc", + "_npmVersion": "5.0.3", + "_nodeVersion": "8.1.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-QxruMhDYCHvbdLvA63IG1/1eZTrrPL1GgoeKszf7Se7mLFjp5ioJ8MXrZtci4zDb+HQco9sbgqfJuSr9gKcYdA==", + "shasum": "79214e18fd21e62b7957da1ddc4195aad6c5f854", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-rc.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDfmq66HpntQcCuiSY47biCkc0rIJiWb2CnOSeo/oNNcAIhAK8oshlZyeSrV7MFNDDxO7poxVnLu75S77H5RCsYXGec" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-rc.tgz_1514500308981_0.6181684541516006" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1514510476874": { + "name": "puppeteer", + "version": "1.0.0-next.1514510476874", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "524617" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "bd73e4b7b814f0a9df97158f9102e486618c6075", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1514510476874", + "_shasum": "2d677cb4437d8031421566751b6dea946638c044", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "2d677cb4437d8031421566751b6dea946638c044", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1514510476874.tgz", + "integrity": "sha512-sg4FBm5/aFsv2SWl5QiFBuTnq0pSC4vR3lXRUEAzK4kvx+y1C5gLUwuxO7Le7daSgsPNRTEM8EQU+DBFeiR9uA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDhsfBXBADTwl0Qcpm8VFe/maZXn1jgq5/N0jnr73JIBQIhAMO0rXbpPeOtpB7ZMs3Xq4xEGT4f6ZaPLCPwZ2CGRvAr" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1514510476874.tgz_1514510486072_0.1084796607028693" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1514951743425": { + "name": "puppeteer", + "version": "1.0.0-next.1514951743425", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "524617" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "d0623819785c91d262b7c5e8037cd67b606375a4", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1514951743425", + "_shasum": "38b4107a90abf28aa8d6e3412c8b48c973b09bfc", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "38b4107a90abf28aa8d6e3412c8b48c973b09bfc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1514951743425.tgz", + "integrity": "sha512-UuRtAXuYkBNV8/JteHNNinml7kqpnV6IzYGtcuJP7G9SSQSXB0WUqMKyK5t0WNC6KCpTo4lGdAU/3KfgvLQZ/A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIF2p9QoPpJvNZlYNVkC1H2b+YUsbcGUwh2Ab6Bx/cLh9AiEA4PMtXW1xtnd5X5v3S7snv2wFiRVHbqNi8vs37jDSkPE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1514951743425.tgz_1514951754624_0.9590171831659973" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515022965203": { + "name": "puppeteer", + "version": "1.0.0-next.1515022965203", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "524617" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f183664d0f187649671d8d0086cbb016e0b24651", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515022965203", + "_shasum": "e82a8c707869753ed617e95c4c7ce7babf74fbe0", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e82a8c707869753ed617e95c4c7ce7babf74fbe0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515022965203.tgz", + "integrity": "sha512-XBYlzZhdH+c8nxt/MJmpTOD2fVqRBzuGkCqr6q3lWdPWpi1FfyL1WQfZjqwvfTzA1GkfDBkBqL3/pZf7qgTBEw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGf8VCSLTeKmUTH4SwS/iNDFaiS0YuWjrj8WgX4bqO4wAiAHBEhFxVr0WNjYeBXtxGsPZkJA0zyV5DzfWG41vvUBRw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515022965203.tgz_1515022970862_0.9222261749673635" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515032607003": { + "name": "puppeteer", + "version": "1.0.0-next.1515032607003", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "524617" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "24354a4879849c8cb4e50cfcae83d78f65938a93", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515032607003", + "_shasum": "93fa3328b29fd761d6aace5c874398e8d501bafd", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "93fa3328b29fd761d6aace5c874398e8d501bafd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515032607003.tgz", + "integrity": "sha512-naKB/l4v52fPkvjRzRSqPIJ+oiJhW7i6sEfT9prcv9TMwclcMyKke2aTzr0eh0EHGWSWvU1gcga4wX1TA/c5BQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCwQkckanqCrPzF/iM9TOpRjDWUBMGDbImUqtrB0Z+jRAIgVOkGKLSGqzQvAqTOxzgRtzJw0taMiDLt9gS6awcFdGE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515032607003.tgz_1515032615994_0.19684669352136552" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515061835903": { + "name": "puppeteer", + "version": "1.0.0-next.1515061835903", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "524617" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "0a498bae3a53357f5b793595b3c411183efd9536", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515061835903", + "_shasum": "ffb3645ab691c07a7f44a9a3c3601950e3190a5c", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ffb3645ab691c07a7f44a9a3c3601950e3190a5c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515061835903.tgz", + "integrity": "sha512-dwrQ+G1jibxSdTMYnATsbZPHEphcYhZ/yLGiT95k19RNi8EwW3zmKK4oZppn2gciZDqfua1h2OBYojFkpfxqYA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDD3Y4KSvUeVP7yxmQYiuvHTSS3O5ujJjS1KqGFjU+G4AIhAKDh1AFP/lGcI89R0t8D9FA/NcnIBAWkR+UliG8rEtyk" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515061835903.tgz_1515061849274_0.20424709259532392" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515092222354": { + "name": "puppeteer", + "version": "1.0.0-next.1515092222354", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "3481f03b805ecb76c2a91f35bb64c89892df2220", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515092222354", + "_shasum": "968249fe6c2e5b035bdc4f698288b363291aec11", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "968249fe6c2e5b035bdc4f698288b363291aec11", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515092222354.tgz", + "integrity": "sha512-NOnlMlGe66IsSJPY85gI32t0q8ZWHaFvrYE/gI50VXmMfke9q/XYHIKysb1fChTCh1DjqqY5QyMiY0CJOdmnhw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCkk/GM22amE9fToA3HeO45PVzaB+hZnMmje/11C2K+RQIgWzSh3DWVjdcnOirhTUxUHxKAqCvA2qxITrjkCa2QTdM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515092222354.tgz_1515092236003_0.1389599614776671" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515094434782": { + "name": "puppeteer", + "version": "1.0.0-next.1515094434782", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f0b11ad22ee0a3f98436f816de88a20c631d7c75", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515094434782", + "_shasum": "9c423124078219c572c0e9dc142e6a66c34a60e8", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9c423124078219c572c0e9dc142e6a66c34a60e8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515094434782.tgz", + "integrity": "sha512-ZHMMMFuPzxgqGbXzv68C3ZTF/WO/yrrJw389xNMBirymFIN/j1RnBEj7lhm4CIS+ObIWwgkG/+7JU8TGrMPzKw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCbQuT8PEuJ7S+1O1nBkyZ42JkTy+GXRL7TpPk7bnhCOAIgXEwfGktSBKZYbQ/ErlHXNWBP+mrCVgtMI3hB5sxX970=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515094434782.tgz_1515094446740_0.9390968868974596" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515095370840": { + "name": "puppeteer", + "version": "1.0.0-next.1515095370840", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "e7eacd443fa484465e864e877fa28dc997a0b3c5", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515095370840", + "_shasum": "57050fbc70d711665a78895624deab91d6e42741", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "57050fbc70d711665a78895624deab91d6e42741", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515095370840.tgz", + "integrity": "sha512-Q5HNzTpCJfKVnqeLAK2lS+aU2ky+iT6wNGk8OV/jpxp/I9HO4RDDvx+H6xf/bJdPW2jRdjty7nrVloJ9bFN54Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCtVxHX/WQoQr1WIjL48o5h1AkTmccvHaNI+uBjP/OtkgIhAKvJxJteKD+rLDhMC1hd0Kovq0NI4EcV3LNkVPlPB09e" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515095370840.tgz_1515095381292_0.009514454286545515" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515096688553": { + "name": "puppeteer", + "version": "1.0.0-next.1515096688553", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ed3fc4706917d6eeff9a34d8b524293cb78b86ab", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515096688553", + "_shasum": "c00be069edfd6497fc24275c6e2d6dc3b4b0ee79", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c00be069edfd6497fc24275c6e2d6dc3b4b0ee79", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515096688553.tgz", + "integrity": "sha512-mYyU5xsZelLtcUZm3MSzmLEhm9nwsoyu9G/PCyPkkB1lxYWKTN40ZCUVD0X8o9NHAztCOOz5M2kVgmVnKrbpoQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCQevJZj4kbPUIf2WRSHkSEPpRpKY/wZ3L2oOZ052uj+QIhAJaKSX19RfA3S1/OSn02uvvel6Vr7EWL+m+gGfB/Pvyl" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515096688553.tgz_1515096702499_0.03384640393778682" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515102886297": { + "name": "puppeteer", + "version": "1.0.0-next.1515102886297", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "32a7fd5f37963dbe9d22f9a2976fc1e3a0c80700", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515102886297", + "_shasum": "ccdc72baa5892399bb59c16e932529eeeb6623f0", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ccdc72baa5892399bb59c16e932529eeeb6623f0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515102886297.tgz", + "integrity": "sha512-nSGUwS2t41P89D51NZ+nPwnPTDXRBR0DS4Gsrfo1ycNXyUq/yCEoB+wMDj0DO5+l2wgVGJK/UaXxpnDC75SCyg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDaEA7NBtQRqyIOrh1xF4dtHCrxT2km4+gQ9++RqtPm1wIhAP3+h8OWGn2Pjj0Gh7G0JQjpa7DJXqcw801OJ7+gUrBo" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515102886297.tgz_1515102898295_0.18650259100832045" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515107202232": { + "name": "puppeteer", + "version": "1.0.0-next.1515107202232", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "05b1aca21e5c2f221373d601d3b8ae6b2a984292", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515107202232", + "_shasum": "c97ca3cf6e965418c367fb75a7ef98d093cece15", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c97ca3cf6e965418c367fb75a7ef98d093cece15", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515107202232.tgz", + "integrity": "sha512-mj1gm9XyMfm/Ev9OIiOZsXyyejF/u8ZXeuw3pr9z1I6JLXH7xsuR9oN+hHngE05du6+xJX5bTsmabdDoQaA32g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFpkJDLo/XLvQRuZddEempdWsTAG76uiXRMxXssU9aOMAiBvz3FKAZue+zHhPLohhiubML4U1xCk2iE4J9b5H/3jzg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515107202232.tgz_1515107212390_0.8231705941725522" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515176243781": { + "name": "puppeteer", + "version": "1.0.0-next.1515176243781", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "8e9c54a789c9d51f9861053b21565ad21a5ffe6f", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515176243781", + "_shasum": "b174a2a3f2aaf2da3aa5e117cd611bae7dae08b8", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b174a2a3f2aaf2da3aa5e117cd611bae7dae08b8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515176243781.tgz", + "integrity": "sha512-NNe51f4VBHtIpz6WXQEkxQMKepyWxjKvQAlLM3NXfqPOEGPvluI5ReeobRrXgsVQndLPCYhmXoiBNv/eNA2IwA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBCE1b6r16rDOJSF2TFHOJ1Mpz/gsTEQCb+d5cyMqmoEAiEA5z0KS1/jl9TBdzKRa9OKQ7mVg6zXJgx+csg1SssGpfQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515176243781.tgz_1515176251699_0.4619058461394161" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515449879873": { + "name": "puppeteer", + "version": "1.0.0-next.1515449879873", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "972f44d32896aa3e8284f5e793c3f40dc0d62b20", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515449879873", + "_shasum": "9f4b1b1b3e9b4229619d3c1d6e0a92db33f8943a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9f4b1b1b3e9b4229619d3c1d6e0a92db33f8943a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515449879873.tgz", + "integrity": "sha512-eQyYlA4/QlXyVMtyztqG2ECoJpFDiaHYgI7mSLmYYqdn6yEAtUAeFYkkSLVMjU0R8YE9yV8JVB+e1NINOidYyw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDc7iU45WevoL4VQMrC27gXzVKz3Qwr6zhsLHqsVOjH/AiEAj/J+GRpom+zk+1fQ5P4x4dhGxfSM24QfYWtOwuR+BK8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515449879873.tgz_1515449890024_0.96295480360277" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515453229229": { + "name": "puppeteer", + "version": "1.0.0-next.1515453229229", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "7c9104e1bc118ad227c7c4ff81025d6107317f8a", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515453229229", + "_shasum": "91f708ddb34349a183e4a98f9d384a512e7b86e0", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "91f708ddb34349a183e4a98f9d384a512e7b86e0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515453229229.tgz", + "integrity": "sha512-ENdnUUN+aZHkqdRZMtNjGAp0RLBfYgOT5Vt3Na3ldI7Q7g8OHvbRx0cXtjbCgOCQ7SGUQ03E+vd2qqCVtyPVYg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCZ1A/haeSOB2D7VzZq8CtI4AhU0oKtm9OFLRfaszZ1FwIga+4Bj0t6mGVyg8pOsWVU3pFYNiMJnlr2lToMojkXKj0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515453229229.tgz_1515453237873_0.25431453832425177" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515460930569": { + "name": "puppeteer", + "version": "1.0.0-next.1515460930569", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "8c392b7ee8b848e460fecc1158e1388aa7b8b954", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515460930569", + "_shasum": "e70efdefb19db8cdca7ccc67ba83c7c3f48652a9", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e70efdefb19db8cdca7ccc67ba83c7c3f48652a9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515460930569.tgz", + "integrity": "sha512-pBrF76nh4ZqphjkyqKQ4GqsTZXt6rEgGBcYQvdknTvrVTgIBybi7p1LwKuBOIVyvGEjx+aT0fecLFqH0R/4kQQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDLIhjHC5EkJvoFmPXGzNIF8NzdvCB4LkkG7LHM85PIEAiEAhGqYouomotImUsBrtdnYfSDSHWP5SZfe9WobMo/6X0w=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515460930569.tgz_1515460941206_0.5935465502552688" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515463858907": { + "name": "puppeteer", + "version": "1.0.0-next.1515463858907", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "d7d9623740eb40a586fcb55f83ce6c301de5ba38", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515463858907", + "_shasum": "a13b89365bf861c434a38a23210c4e27573ab36a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a13b89365bf861c434a38a23210c4e27573ab36a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515463858907.tgz", + "integrity": "sha512-4u7Rz0YxqyUWtXkxQ3hIXrYtyZQCdinnmTWMIEwFFNurQcXTd7nvdM7e5qY+iw99KXGlL9pKLv6oEJ9e+rYSYg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC3NIPKskvPZAzFAJXSS/f0JSF20EfCJ7bEeHlmofAI2AiEAkcRQhnUKBJkDD5yHE1nEJoQtbO459RPUR4N7E0OUms0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515463858907.tgz_1515463869631_0.38030021567828953" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515463970965": { + "name": "puppeteer", + "version": "1.0.0-next.1515463970965", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "71089b08022d09c6a0fa20b5f0c770b5ef35ab07", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515463970965", + "_shasum": "b28b365b1c23af6267f06d41890c90c64d9bdb84", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b28b365b1c23af6267f06d41890c90c64d9bdb84", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515463970965.tgz", + "integrity": "sha512-vSkUe0ZSVT+DXHQKyofbD1YBvGGh+qC5B2fY16XniWihecC6pY7XgU+dvH9IxcYda4W/XIHhyV8Zq8YoMNhs0Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCBAyqPwSaFfkyOHBFMZ/DWxqhHQQ4Z8iaoMSi39qyWhAIhAL8DN08cZuxfZ9MNLcJWMSGFIPhA/nRHvhkEbrNSaRQZ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515463970965.tgz_1515463979709_0.4805980925448239" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515544418139": { + "name": "puppeteer", + "version": "1.0.0-next.1515544418139", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "dcc1b243950d985268bd7d105ddd518572e0f1b4", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515544418139", + "_shasum": "dc8da4b2b9c1a96cd34c06a96dd4275c424ccbfa", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "dc8da4b2b9c1a96cd34c06a96dd4275c424ccbfa", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515544418139.tgz", + "integrity": "sha512-ShQKvXNwANLb9ePvE5r8VkyYyHxUfYipc92yWLzkza6S2xQRwNvc/3oiVTurrHQNoWntf3BZ64GLZD43tUIfOQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQaqhiDFS8uS2t9+1JdfUlv3mQa/Lq/lSDIaTHAsxssQIhAMdCbxOuopYhzz0rWZVXtDINoqe6OpinYXrOJ1XPOqTi" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515544418139.tgz_1515544427406_0.8309073315467685" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515546200351": { + "name": "puppeteer", + "version": "1.0.0-next.1515546200351", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "5843f6f77573df4f848bdca7ab5f2d4a47a64ed7", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515546200351", + "_shasum": "a2a36b6c28ea8bbc7da6f321875ba2074eb82881", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a2a36b6c28ea8bbc7da6f321875ba2074eb82881", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515546200351.tgz", + "integrity": "sha512-s+KFuvoHxdHasrQDvil8fWKRMgVCIXQMpU8i95eAeaGN3uM0yhk40fBi4dB+NM08xtAhoyuFhe0VAnh7X4w9cA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB7EnpRywws3T3OfyjetkL17ylAHbZDIGcpP5jvvOlqGAiEAmVxMc/QA3lMPFWDaE5F/DQGKeXyaxoTZkqICnlcEdKk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515546200351.tgz_1515546687831_0.7494962646160275" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515552562439": { + "name": "puppeteer", + "version": "1.0.0-next.1515552562439", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "c29822d66318bc904b257153d377e5575ca8cc02", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515552562439", + "_shasum": "7fe05bc53e0102c9cb4edb2f2fa5e01a9ae9974d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7fe05bc53e0102c9cb4edb2f2fa5e01a9ae9974d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515552562439.tgz", + "integrity": "sha512-51DKvWoshF+XHaCNS2ic1LfdyIbhFWONNepH1qTVZ8W0Adx+biiA3Us2WOOKXvIDhbpQVdxK0WQBvyQTJVfQMA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDii3OCMJB6ku3AR5e7Nfjn9aJgSdazPNzKZtN3KxFjVQIhAPffh+XZ3JQdrdaGDsVcbQwRpAAZcGJ4756uxy1xSFp+" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515552562439.tgz_1515552572012_0.2908561038784683" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515563875372": { + "name": "puppeteer", + "version": "1.0.0-next.1515563875372", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f6b7c1331628dfb45a916ec5cd1f04e5ed61bf01", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515563875372", + "_shasum": "28b44991efa79e0b1e4a048219930a692c476379", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "28b44991efa79e0b1e4a048219930a692c476379", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515563875372.tgz", + "integrity": "sha512-24OMW52BqQP2p2prT29V5EsPxPLnPm2OuFPSvhthRrkFMd61UR7iAS4+8YLlozCOKaClKmMb6y7tdeIuby2nVw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGQFHofr7h4xBD2AfCb/RywzxT/LCobQ7mNTyJDSJcdUAiEAvzH+FlyqqhZB/LhoXJlNbSbEwzsmZkDcGAJ5/G/PY20=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515563875372.tgz_1515563885258_0.04659983771853149" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515567769425": { + "name": "puppeteer", + "version": "1.0.0-next.1515567769425", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "9634d13be2906b2a5dee1678a290a47107d99ca3", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515567769425", + "_shasum": "760f6d3274fde82908077560c3d27515858de44d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "760f6d3274fde82908077560c3d27515858de44d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515567769425.tgz", + "integrity": "sha512-NAHTZA0KIvjGazsCwQ1YvYEPH1/hU3VEva6iIJ8qB5TOHwOcfxZRl49Jy8R5Qm94172TQal+LNRV0zxKhhU7Bw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGwcj2thnG0MT4Ln5JziCTdIdmaokXgCtrsMHFaM6bFEAiEAn4yb2wlq8iifwaqzXacSVBug2VRxOGIrwu5cTSgbyqU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515567769425.tgz_1515567781471_0.1648210813291371" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515568144024": { + "name": "puppeteer", + "version": "1.0.0-next.1515568144024", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "3985dee54eb2ec02c38d2017df49de0f868d86bf", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515568144024", + "_shasum": "a3764af4f461d0521480b0c41dd6824d4ebcb607", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a3764af4f461d0521480b0c41dd6824d4ebcb607", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515568144024.tgz", + "integrity": "sha512-ajG2KCwyMD4IYYMRMagh4I+yUupnWVDk8K9KQUGcACrBL7/QVwz34n6MMwLVlbocS1+P5IJp4nZP30MPEocAJg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID0KK88Dntp0xEKnX1I5ACQICnSm2p6KnyqhMNfjkaLFAiEA82Yagkq/cfj0+nasaw9oVMNpnzDdHdUTVYaCgXQlPs8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515568144024.tgz_1515568154352_0.794600875582546" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515618391320": { + "name": "puppeteer", + "version": "1.0.0-next.1515618391320", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ec8e40f1cb2d9214387bfbbc2e5dcf48b8db7148", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515618391320", + "_shasum": "2ef0ee2c999de1f0fdb9af74c3b83d650bc0fe1a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "2ef0ee2c999de1f0fdb9af74c3b83d650bc0fe1a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515618391320.tgz", + "integrity": "sha512-AJRdL2VwI+NgyCqvUgiksWizzW74vMXrOjlNkZZUsB4wKvhG5xz8O6bQ5pgConqcP6p7cp98dMFBebY6/TL99g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDBw7hTisLzrrpgHNQAD7+HAcmbeU0wmxG5wAJxrrmHGAIhAIarG1BFTYjSP2ft7mo3L4VH8ywxTysCXGPaTBpx2Ljj" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515618391320.tgz_1515618403026_0.9909726993646473" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515641713768": { + "name": "puppeteer", + "version": "1.0.0-next.1515641713768", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "5368051610babf52e7df927c323d315a493fb56f", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515641713768", + "_shasum": "b6f979af3b8a12cb83c715c6347050bee624546a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b6f979af3b8a12cb83c715c6347050bee624546a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515641713768.tgz", + "integrity": "sha512-UjOng2HAvXVJUhZmoMuCoCH5tJvBRJ06bGFQlfFev9+3STqDB+jrVZ/qUDDu8oFSwCFFpozKdleRvyILYkprfA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCSFNkQbOK1xdjcALtj8gMTx2erpV1sBuIXYgmFnu+TjAIhAIFsO5uiBfgcV+kKK3iXkSjJObVXA/46Ko3xzsEJYTfY" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515641713768.tgz_1515641724033_0.05552374245598912" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515659454855": { + "name": "puppeteer", + "version": "1.0.0-next.1515659454855", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "9b06ed28ae72ee3aa6de1f8b534f51347320b4a6", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515659454855", + "_shasum": "3a6225125af2b74fdcc13b400c4e49c16b0b75a2", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3a6225125af2b74fdcc13b400c4e49c16b0b75a2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515659454855.tgz", + "integrity": "sha512-SNC2+IF5ERrHQ38mbTHYWe7K2Tch5Jnv/MaYLpbNW0Jdig7CRhXW6NKIdnSSioIiaqEe4ML8CK6zWBlQvyBZvw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDG9ESvBaHU+ZwFBS0s96rx6plBuqp1hNwYUVlyLVuIiwIhAIQnD4X6chFfrkz+qaJOKhDjeRas7Zey11fS35LtIIDr" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515659454855.tgz_1515659466543_0.8148582505527884" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515702182453": { + "name": "puppeteer", + "version": "1.0.0-next.1515702182453", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "891a5539bd12a7df1231b3f96bc8cc9aaf386301", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515702182453", + "_shasum": "96bb32e59742e3a4a22cb5e9c176d4a171a55134", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "96bb32e59742e3a4a22cb5e9c176d4a171a55134", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515702182453.tgz", + "integrity": "sha512-guUAExmgc7QmITqgRSCnzYIJLOJZiNFbSj+RbUURu2VKniROYFx29LZndg2uxqwByYQbs5yTwtRIYjqrkLzPcg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCx5A/yvAoImKzKvHavwztaO1b0krfYqiI9LNLljGSKJAIhAMQA4SflwZweR8GSZVREywsvCNreCqdDnkiBy9Dqvz5B" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515702182453.tgz_1515702193635_0.09411512198857963" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515707096515": { + "name": "puppeteer", + "version": "1.0.0-next.1515707096515", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "d68033aeca234a93c9ac5298258a5d324748466a", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515707096515", + "_shasum": "826c87507d8d622cc4960c9387754474c918fa7b", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "826c87507d8d622cc4960c9387754474c918fa7b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515707096515.tgz", + "integrity": "sha512-8aL1jdMoT1gV/j7aSNpAlGeny/+Rx7Lq76cy36OSktQTwKsRU7+ceRHc72ajgPNzeVzpmY1yplvKFayafdtaaA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDh4DRAQfUNecObwqJkyMF5dOeXgL5tS2a9RipGdDycFAIgc+s6aoB6er0Ylcz9tNAlnA1WoXR9jLLCHrjKRBBBBWQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515707096515.tgz_1515707108937_0.06857414706610143" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515712659552": { + "name": "puppeteer", + "version": "1.0.0-next.1515712659552", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "12b57e31f386b1bd8845aba0246894fde8fe9ed8", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515712659552", + "_shasum": "50ef02f78428152e66fe6dc51d685c4cc18abd3d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "50ef02f78428152e66fe6dc51d685c4cc18abd3d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515712659552.tgz", + "integrity": "sha512-mFvtKZVNEXv1kp4HRk5FunZxTKcXyP3MKq/e1fpK2phjNXRr9/WYnL+5zEH1e+MVMo1IGiOt8nIsc/oR3MbTMg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE9fPhjd5TPFbRholzm49xELbSSVjmlDEjzWVSbxyG/QAiEAka2XMfc2N0tmu0vH35Xf0hoeLoXJhETGjJ2RcbsYqbU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515712659552.tgz_1515712670165_0.31360534648410976" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0": { + "name": "puppeteer", + "version": "1.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "12b57e31f386b1bd8845aba0246894fde8fe9ed8", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.0.0", + "_npmVersion": "5.5.1", + "_nodeVersion": "8.9.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-e00NMdUL32YhBcua9OkVXHgyDEMBWJhDXkYNv0pyKRU1Z1OrsRm5zCpppAdxAsBI+/MJBspFNfOUZuZ24qPGMQ==", + "shasum": "20f3bb6ad6c6778b4d1fb750e808a29fec0a88a4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0.tgz", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCPcPvco7XnANZbc8scETtywqIt2ALu7PTnwkxDLeI6mwIhANyQb/fCRIBGS9mMpPP6z5rOU81CSf9sRXWEGlhRWQUn" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0.tgz_1515729089858_0.9048394954297692" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515733912424": { + "name": "puppeteer", + "version": "1.0.0-next.1515733912424", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "aed70191463f4b9d6c7cfa601201632167cbf602", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515733912424", + "_shasum": "52198b0bd5e39d4447816c1cefbc1277f1758ba5", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "52198b0bd5e39d4447816c1cefbc1277f1758ba5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515733912424.tgz", + "integrity": "sha512-iig9iFISesUWIpWTxOKWUETEt3GwDZ+7k0NFFLNpIdPVRYO7m2kPH78gyzsfju+puyijOBapgbXSlJIS5lOFNw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC4Ygz0SUzi187MQ1v10l+vEC/JPDytDN+qcC6CLwyG9gIgTJcO292Ptl7g6JCz8aBT4vAKi4mBb7PpR8QTMU6R7NY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515733912424.tgz_1515733924274_0.5364071456715465" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515745145135": { + "name": "puppeteer", + "version": "1.0.0-next.1515745145135", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "c866c175f8e7c581ba54fe75c5daf97206697b72", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515745145135", + "_shasum": "18a200349c5d1802e4c4292453ff78b113ef58f3", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "18a200349c5d1802e4c4292453ff78b113ef58f3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515745145135.tgz", + "integrity": "sha512-nLtnbRiUoDF769ARImVPfduaBe34C/KUTX8OZPRw9y+TtXKBdK8o0Tqv2y24PFOMuGHRLDVjGeA4Yf6YFUwKLA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIElKuakkqgv3wnyaevE90eqb+K2MPozmCPcCAVJcoajXAiBqsLzc1xeE/RUzMUZHUIy1TAMMHQ37+GqcI3WKeEqU8g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515745145135.tgz_1515745157580_0.030814126832410693" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1515786200433": { + "name": "puppeteer", + "version": "1.0.0-next.1515786200433", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "31a1f9ad70cc0442710060fb704eb0c0aee5d175", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1515786200433", + "_shasum": "73fc9a3ff9468e25f74edeb95d4a5d66ff40f407", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "73fc9a3ff9468e25f74edeb95d4a5d66ff40f407", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515786200433.tgz", + "integrity": "sha512-YQl5BpZvUVyxJFIPebZVNSoe+T7HBPDldP/h0fJ9DedOK8VeAkL8Hy4gQcOl9xE0o2If+WT2ApmqdP5GCnI/wQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC4PBB/+bXtU7nj3fL6bPrycZPBUnXfLrW32m3NpEFELwIhAKW2qeV81AVnzJ/XO2FtcGb6NUcrnhHIO0yzejpnnV73" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1515786200433.tgz_1515786210586_0.12764269253239036" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516189923095": { + "name": "puppeteer", + "version": "1.0.0-next.1516189923095", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "59f6d42610452c71ef4834c1e30f6e1f524e817e", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516189923095", + "_shasum": "a987b4a1d227fddd2e8bfcce4f170164b2a45490", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a987b4a1d227fddd2e8bfcce4f170164b2a45490", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516189923095.tgz", + "integrity": "sha512-SBXAej2b0BVTXmE08gtHtNbE+O6Mecy2fx5GSsJaadrAbe+jNwpIN8XlMF2ls7dRAjmcxlqR34Y8UNIzJpOxrA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDALnXlH+QMQWQ0U+CJGAnMs2y0zUf2WMrJ1+ZDkGkA7AIhAI3MiewNhQzP2cVcooGKMOuP4eQKsQuMH80t+PzATAOS" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516189923095.tgz_1516189933605_0.7214193204417825" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516255441715": { + "name": "puppeteer", + "version": "1.0.0-next.1516255441715", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "49d3799e325c16cf3c1812bd3ebbdd659af4fe62", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516255441715", + "_shasum": "b2ab14c4fe72d891c6897301b3aafdf921b24b5f", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b2ab14c4fe72d891c6897301b3aafdf921b24b5f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516255441715.tgz", + "integrity": "sha512-CX7Som7wjtjil3t63ZKbNNw2NB0aqEgS2DidC3BNSHXfTtRy9uxoF5dN0AKKJqk5o97zCOBdCmyeX4aW4w5O5Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCwiVNlWxDSWu79eduYmRLkfunBLnCZAegjdXdpl4yfkQIhAMVv8E/93Lq4dUJLyrU4av0mmHTpcjyP8ex8xPXLlqP2" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516255441715.tgz_1516255453040_0.29894313984550536" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516339380944": { + "name": "puppeteer", + "version": "1.0.0-next.1516339380944", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "2bf42fd779b84c0bb72de3721805b43a6bc089fb", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516339380944", + "_shasum": "80ea40bdff589eb4d7b97d3f0ee0732729ff833d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "80ea40bdff589eb4d7b97d3f0ee0732729ff833d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516339380944.tgz", + "integrity": "sha512-MlE2n4LTsJx+L88KxaoD9hRfG7294bZHbGEjWvXVmaVvtAWNOMRxuBcQh/LOiVJ2UBsFO4t2sN9YSbWCzJ7TNw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEtnwVuxGY8jtrXm0sKSN62PEW+O94McrPII0/3wF5hAAiA0/oTtP+mZ9q537Q5KqTfqrdj9Y6i6DlDNks/Y/0gMag==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516339380944.tgz_1516339391010_0.7335764509625733" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516339397474": { + "name": "puppeteer", + "version": "1.0.0-next.1516339397474", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "d2715d1c6f57e4b12614a50aef1a6966dfb95ba0", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516339397474", + "_shasum": "e843ab7b4209145d8bd742db664753ddeade5e9e", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e843ab7b4209145d8bd742db664753ddeade5e9e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516339397474.tgz", + "integrity": "sha512-MWFjnPHypfX9zjXjwQC+2Tw3O7mDZPd6RaB1m73Wa1EqSGDZvkdl7ebEuNAF/4qR61SLXAAmNMO2lgeFKD9Skg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC3W1vGkoDWmuZeUQXhqYV7OqxK4+cVky5hHDRgSnYbeAiEA6zTgQmq5n6jedKdvNP64afq/JimpvG1F1QjyWa3Qhkk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516339397474.tgz_1516339413025_0.23469940153881907" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516340514293": { + "name": "puppeteer", + "version": "1.0.0-next.1516340514293", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "102f10cbc7ebc1b156b1a54f21ce9bdb917d6632", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516340514293", + "_shasum": "20754223572a2df913d8d9855ad33258a9bc38c0", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "20754223572a2df913d8d9855ad33258a9bc38c0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516340514293.tgz", + "integrity": "sha512-+bhLwn4V+/uPUiERY4h79/K9WJjUMgwVDTEuCPreie/Q2LZV7P0HQ8rEbkH16pByJcgtBU4XAvqQCokB5JQJjg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB2UJdZKjucNaIfDtdqFWKLFepVpHG83PMcZ0LwW6OukAiEArG5qfvYrnSn2g1RgjMoRWgu0VTWYyZRbQTIO0vXsXrE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516340514293.tgz_1516340524888_0.47257021884433925" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516351540753": { + "name": "puppeteer", + "version": "1.0.0-next.1516351540753", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "62597bf89780a7fde91a350e5eabf3be15bde02d", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516351540753", + "_shasum": "9e9b7a617708c45ebd3398277200f6f4cff4e642", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9e9b7a617708c45ebd3398277200f6f4cff4e642", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516351540753.tgz", + "integrity": "sha512-3aExsawK6Yq/O96FnvMY1FhEoqEqZehFZ82sHezb3Mk/8gmLU16gJ/Jo4ZfXUguIuLCEo0KNMsbjvzJy0h+8Yw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGCbgm+8GwDTAH/1NbB7Bkw9ZitjGtbC87HGHAZ95fEaAiBO3ayDfFXXjhUOEx3tu6F2Tc1Ze2+Psb4H2y+3SA2Afg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516351540753.tgz_1516351552732_0.4220070799347013" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516663116955": { + "name": "puppeteer", + "version": "1.0.0-next.1516663116955", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "cb684ebbc4de271c7f2187f4e52c0b3a83cc0122", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516663116955", + "_shasum": "3a918af4512f96f4374f54e0afc6e695c66dcc57", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3a918af4512f96f4374f54e0afc6e695c66dcc57", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516663116955.tgz", + "integrity": "sha512-zYuqJ2R181i6twvnbFWLPhdC1siBxSUAn/WP4QbeCCiMopaLblfV/ZpVPAaonT30Xl5P+fDSuEwQlbrl2bofUQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBBhez+3I0qQhozX7OEC6oxrDXHDlmjdeIrxpdOR7TH/AiBRQYMwBs6zBO1tFpQIu5aSF+D3kOlA1ck7mXv2iKHTJA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516663116955.tgz_1516663127958_0.33383537945337594" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516666407998": { + "name": "puppeteer", + "version": "1.0.0-next.1516666407998", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "797b561013bc3f4212fa90a2e044f97b7c30b5e6", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516666407998", + "_shasum": "94bb3e4adc800ea3888abf00a0329d67e6eaabae", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "94bb3e4adc800ea3888abf00a0329d67e6eaabae", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516666407998.tgz", + "integrity": "sha512-qO7dalWs8CebVEQCYCHMVH2ko/VHldQi86E9CP4KWztRk0JDxzm+mOgAWOXp5DISUIVDIs6DfvgO6uYw2cVP3Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCU8zu74zPPTLmrtoaI2ZVJvg+l5gKlJSJjBBsIPqdxWwIhAITmj0amThCpyopoVAVCYWC/3d115d4Aajlt7PxL4cwO" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516666407998.tgz_1516666417441_0.8409609855152667" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516668517979": { + "name": "puppeteer", + "version": "1.0.0-next.1516668517979", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "b61e67d00113c88068287d6890eef184d47a222e", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516668517979", + "_shasum": "a5e5a3493c7836dbe355119975cd31a1782bdedf", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a5e5a3493c7836dbe355119975cd31a1782bdedf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516668517979.tgz", + "integrity": "sha512-qRqBItOba5u3VOkCtZBBRUe6nPz1KdaITBeLYXd8clWTZBhCmzPCyvEfIsIdKnAJGknzrHX1Sgac3JXplE5sTQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFMGn11m0s61IhEWtRMmrBQbnUMRb1+ixTXVNEmDHnmaAiAwB5xVNmgFVLbaNCcfSxnurCWU963hHbNLPliAawokzg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516668517979.tgz_1516668528937_0.37263431772589684" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516669982697": { + "name": "puppeteer", + "version": "1.0.0-next.1516669982697", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f2b6016354670ed8300285e0ae25894e3bc5c8e9", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516669982697", + "_shasum": "76ec7d736d31da129b43f807a2742d78d5c81725", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "76ec7d736d31da129b43f807a2742d78d5c81725", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516669982697.tgz", + "integrity": "sha512-3uRh2Cf7G18vhDVm/THHFryzpIMnAlYoMzMkp78/GpmTwjKtHxgfjbFEG8kKZDwxcRhtjOBmX6bpZx1w3EYCPg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG3+KIOPFMd4xSg8UDAwawponSdkfe5c/3xikO0E5MS6AiEAxyQ5tm6OL2c+bsJHtQP1Pk3viCepBecRXfvnKZzaI5s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516669982697.tgz_1516669992631_0.5957310860976577" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516857257758": { + "name": "puppeteer", + "version": "1.0.0-next.1516857257758", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "5175d8e692966f1023111361856345d45a3a29c3", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516857257758", + "_shasum": "759ec622fb090497afaae0f422ae0016840c0a57", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "759ec622fb090497afaae0f422ae0016840c0a57", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516857257758.tgz", + "integrity": "sha512-dSUavC2p+lmG1vfzfHwL+4Y1tV44v2OlVJymSqaVCh2upYt9DzU7Y/4k1j39IP07VFNUAGAd2eo3LZ1H2XRIUQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICzNQ0eLQExN++O44327aXBdmVSlWUxH4arRq7gvY0AzAiBE5k6Mip1Um0zY4FxxPGY5LP9xmfvjkeGmlbZZDHtO6w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516857257758.tgz_1516857268613_0.32191742002032697" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516857487583": { + "name": "puppeteer", + "version": "1.0.0-next.1516857487583", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "189deb84c0ecf43f405961814aad840c1107ee85", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516857487583", + "_shasum": "50478340a753013e65deb2722af250b86e2a6b49", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "50478340a753013e65deb2722af250b86e2a6b49", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516857487583.tgz", + "integrity": "sha512-zA57JIXDBRh5ARgReTYtEFBpKPgipPyaRkwMr7Emg2XJHniRlvxc01B1Fv3quQx0FfieeW1HqluhHClRbH0h/Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFiFtG6gj/C7wDExhsWFseP6/E2qagfzGO/KUIcLilXfAiEAgAkT+OiHxby0VAJE69kc2dTfU2sljZYUao4UOlHOol0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516857487583.tgz_1516857498064_0.818119203671813" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1516920787679": { + "name": "puppeteer", + "version": "1.0.0-next.1516920787679", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ddc59b247282774ccc53e3cc925efc30d4e25675", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1516920787679", + "_shasum": "2df0f343dd1bbcdea0abb8eb6cf66d3eaea87187", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "2df0f343dd1bbcdea0abb8eb6cf66d3eaea87187", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516920787679.tgz", + "integrity": "sha512-I6ANYdqiOLZZHh/BUANGmMc6pUEra4eRYb+lf1HUmkfefpYezKZdKBhJt4iBSkpGfTw9DhvsHlsH5THlYkYH5g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDg9Q99kbXYUmPBEfC2OeSRai2e2gKX9s92pSNPFkzM/wIgEv4+KR4F+Idx8hI7s+7TEbzLvreWHxCcHy2TI1RfqBc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1516920787679.tgz_1516920802692_0.8341596915852278" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517036516784": { + "name": "puppeteer", + "version": "1.0.0-next.1517036516784", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "4886d038d5fffa7c380ab575f7b8c665d94f827a", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517036516784", + "_shasum": "0057b3ce0141e583a84afb67f478f36a3ded485a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "0057b3ce0141e583a84afb67f478f36a3ded485a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517036516784.tgz", + "integrity": "sha512-o1mF6gQsLrhlP4wap7VYDd1vQRjrqGwgh/N2TgBH//UivkJniyMsRFbSkePOlZYARdhrKE5tl27NFRXLJsE5ew==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCHUbe0K8gASl8Xp6Xa701Y2yIvXpumS/Z3YlpbfbFMngIhALV4NABbQfaTnyqIpA/0NfKkteMll4v3Bd6KIvmsvoUV" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517036516784.tgz_1517036527115_0.8030337686650455" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517354775230": { + "name": "puppeteer", + "version": "1.0.0-next.1517354775230", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "bae44a82d8de82b7535fb5bc5eb4836ffd68d164", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517354775230", + "_shasum": "bfa96cec0d3866c37969a0becda2bf5086facff4", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "bfa96cec0d3866c37969a0becda2bf5086facff4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517354775230.tgz", + "integrity": "sha512-wBmTzIWLimYFphMFH9dR5yjLpsQ0cDHAqaQ6BvksXXYXLdsR9k1rtq42SVh9ZEzFTK3CeKpYKGddLZ7/D39+mw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDTR7md8rXg9+ZDZcY1Wt57fg89Y2+7Z+/IHstX/BgaLAiEAmqDNu55uQe1/OFwq0RGPOmxGCNWh9k83R8WfOdiBLjw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517354775230.tgz_1517354790529_0.2866705823689699" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517441618294": { + "name": "puppeteer", + "version": "1.0.0-next.1517441618294", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "526987" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "1716a748aaa936449d7441cbfcf06149384788c2", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517441618294", + "_shasum": "5c7a702163a2f06628aca7050b75e61b7584a4b7", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5c7a702163a2f06628aca7050b75e61b7584a4b7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517441618294.tgz", + "integrity": "sha512-7IcDn+pbO0B6TRQSebu6aF9PdBzqmF/Bve5ek0UCG/gcLDJB5Kqz6OwQgQ2LBrH7s0O4zxRcc4lcGqANrTzamA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDGQ7xK1tkXWZtzH3hbtMWXpSXb6BeOG/KB69PDJTHBLAiB7yLCc0x3Zhfohhf99Sk9R7aqgnRVMdOOxDIAv9Fytbw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517441618294.tgz_1517441630915_0.8817345767747611" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517443479601": { + "name": "puppeteer", + "version": "1.0.0-next.1517443479601", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "cfb728b09b31428a2ab61bb22ad0e5e0cb2070cc", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517443479601", + "_shasum": "fc18e2aa8886e48d71fe640b365b8de64af98d70", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "fc18e2aa8886e48d71fe640b365b8de64af98d70", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517443479601.tgz", + "integrity": "sha512-BQch3ncjv/KYPlwsPv7fbmgVUwkh4S9sO+ZRPDVhezdQLf45gj/hfGbtiIyYaL46lngegq1TzqAKeSE2cEJvIA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBrlmAgwnkyB3zpjG91g6UNSDph14B24uh5wgbzecXj+AiEAzJqBPBJupbzjgFQMCd1vMgp88UO5qS8kEhNSZA0QK9k=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517443479601.tgz_1517443489522_0.4654326345771551" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517859708863": { + "name": "puppeteer", + "version": "1.0.0-next.1517859708863", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "e998ac93250cc7279043831328b6f4f49bc244bb", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517859708863", + "_shasum": "62e8299e1b6d150f879e8cbac0d95c5460ac674d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "62e8299e1b6d150f879e8cbac0d95c5460ac674d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517859708863.tgz", + "integrity": "sha512-apcZyz6IX0qIMGb6zmUkP2oj2bpZDDpzOHzZoWHgh/GNnwaXTS64lNGB4TJlMDo0LDlY4PDkyiWL8BGeednORQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDF5LHtO7euv/OpGbkm0i5OENZ5bFcHUoitFA7qfukigQIhANkRUh+j0f9pmO/wh1+OXUcVuQGDNCco/xyUlHuKGJeJ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517859708863.tgz_1517859719522_0.2967345796059817" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517864102118": { + "name": "puppeteer", + "version": "1.0.0-next.1517864102118", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "37a1e17461ba7f24715fba71a735c64a3c4cf8ef", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517864102118", + "_shasum": "fbd295b42ab7940e793abbba549f55378924bd54", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "fbd295b42ab7940e793abbba549f55378924bd54", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517864102118.tgz", + "integrity": "sha512-9D2Jc2G3rT9GXlBQeKqI9GpBXqX1ED9TQao+6qcZ2yHNCuOvTrjRtcS3iNGLbt+17Bb6/1/S+3WeEeBAKVippg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCPX61a6dEtxnIQcMl7g2Khs0E1ouqfi25GqM60TtuuewIgC5jtcm5COgp9HRY34mNBsCXp2NKp1UzgtWNwc+fRoMk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517864102118.tgz_1517864117317_0.9147706557996571" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517870791213": { + "name": "puppeteer", + "version": "1.0.0-next.1517870791213", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "bc6902623a32ae562273ec5ff8ce2b0b34ffec73", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517870791213", + "_shasum": "45117f043b5ede6230e5e93f6e33bd0d07b0cfff", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "45117f043b5ede6230e5e93f6e33bd0d07b0cfff", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517870791213.tgz", + "integrity": "sha512-Hp6xmdeHV1c6XRgNObKgaI3DBNLB0LYtNTybE8aOfb1Sk6iFb1QZrwYfyOJO5fBrbi7oLnXi2G04xO4G1iJMKA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCl5nn/YTtXOf8YNuWpxQXIB84iq8IV1Hlw6HsR0HogywIgdlId84lId8Ial2YPeh/7UNtC4vtOwnCizHqL4Hw4VDQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517870791213.tgz_1517870807387_0.8178816372528672" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517871038246": { + "name": "puppeteer", + "version": "1.0.0-next.1517871038246", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "48218fae8ad199ef121fe78f9da7714bd71b3f38", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517871038246", + "_shasum": "84f27b6a39afd1cf4167720f02dc34cd8afc9f86", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "84f27b6a39afd1cf4167720f02dc34cd8afc9f86", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517871038246.tgz", + "integrity": "sha512-Y3a4rT4r6sYYFj1VT7Ip5+Y/cJ1CIRw+Xr3n+dqtsn/sPq+KwMbYrvz8eRXZSac9Se9Vr0qPMeffoWm6qlKuzQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHfj8JUPvkTqjBwZQ217WC9ZICsHBRwuQAM/eNjhEvMDAiEA+5ZdgEPQnm9FrDykB1z2H+SHJgHDxrL0Lo2KP3lqd4A=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517871038246.tgz_1517871050549_0.18668062053620815" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517871611925": { + "name": "puppeteer", + "version": "1.0.0-next.1517871611925", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "660b65780f51d86ad615b7871bdf125b505624e6", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517871611925", + "_shasum": "c67c5a4e9f021372173ca67789e184617de0d884", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c67c5a4e9f021372173ca67789e184617de0d884", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517871611925.tgz", + "integrity": "sha512-to+S+Lg+bSaPA5kL+pMfc5gNKOIGR0jroEMigDuw2n1g2bJqQszSZ/ZC98YZrpN7yzlXzyaOoW+h0XcbeNeMlw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDtl6DW+047MyAGIavCm1zglMA7erHIAqy2hKAPx2aLuQIhALjXVkMXLwYwqBUaklc4JyQerNNalTMRFQEnsFnZDGZk" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517871611925.tgz_1517871623099_0.33555718581192195" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517871854711": { + "name": "puppeteer", + "version": "1.0.0-next.1517871854711", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ecc3adc27909e3df11a292952e34ee60cf2b005e", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517871854711", + "_shasum": "9ffa20cb366c14232a5dfd70cb29e7be82f0ccb6", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9ffa20cb366c14232a5dfd70cb29e7be82f0ccb6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517871854711.tgz", + "integrity": "sha512-2ZpDXhqjDssQXi85cgeblAdM6VSkGbkBUJAapQaeeHeDIJhw1onwvkwbqDw9TnzeGrpWqYk6U9b59rAPVeAN7w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICUNrgUAsNqeKzQjScwJa15sxz4wasPaJ5AEsB0s7+BqAiA0mvvbI5WaIdTJvoTeuV+6/jVez9QL3spmfS+LI70B4Q==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517871854711.tgz_1517871865653_0.12903007306158543" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1517875514795": { + "name": "puppeteer", + "version": "1.0.0-next.1517875514795", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "4046415f0152408376c470fe5882b7e966fa0910", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1517875514795", + "_shasum": "e176f5b3aeb99d3adde7a558fc2f377b3bb8b4cd", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e176f5b3aeb99d3adde7a558fc2f377b3bb8b4cd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517875514795.tgz", + "integrity": "sha512-uypJ9RZLm7A64qUqy5jZrumdSpydZdgVXz/i3emNl6CO+QMI7LnrMDqf1shsj5b5wxyaydR9igKfZUuwVP2v+w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCmeQdlN+YHP06Sj2heHZQGbfIGkz/dJzeE/QkTTeExmAIhALhTQ9IUwI96rQ8cjrv8y2yLuaX1rBKj2dx27A5pzqb0" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer-1.0.0-next.1517875514795.tgz_1517875525513_0.1028504460118711" + }, + "directories": {}, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518024831019": { + "name": "puppeteer", + "version": "1.0.0-next.1518024831019", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "a363a733b7aa88be9a17190bcfa924b507d7b3da", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518024831019", + "_shasum": "b35ae977bc51cf5fda246fff772351a05319105e", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b35ae977bc51cf5fda246fff772351a05319105e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518024831019.tgz", + "fileCount": 44, + "unpackedSize": 259455, + "integrity": "sha512-iiyU+R/2trWnIGH9FuXi9Q+KrGi9c4X+DoXclSyWyhXSQCTdQrRedDJJtSwL90SEauGFCAnkSf5+ISQp+5wUfg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDpGL08ykZp5Y4/naDlrDq7SYKsGs3e16rAzwLOyvMOJgIgFzUTIG1ilJnKNT9EyvFwdgBNCVvQ4J5pc5bYPLAmtYY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518024831019_1518024843907_0.44140951408968077" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518042185396": { + "name": "puppeteer", + "version": "1.0.0-next.1518042185396", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "cde6d6c4d0744e78a9ff25d015cc1693b10464fd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518042185396", + "_shasum": "6e7b048de6c840fc1460f03363880474c72c063f", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6e7b048de6c840fc1460f03363880474c72c063f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518042185396.tgz", + "fileCount": 44, + "unpackedSize": 259455, + "integrity": "sha512-7kPk0CcFBilnMvJJkKzogFW+Rk+d99MTO3nnvHC2zJLjdLvPdbuK3i2fnX6h/rqhLtcdLAHznCFGLgaF2mBJUQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQClfgNvO2sHGpYc2Zbr41piBBhulLO+pJhIw/F/cDRmmwIgHPQm3RTls/m8t6+jSBhm1lteKoK0+A8k4Tly3xSZWgQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518042185396_1518042199652_0.9798424467683364" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518044651367": { + "name": "puppeteer", + "version": "1.0.0-next.1518044651367", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "18a1fb9385fdf3eed3cdb6af657313326cf427b6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518044651367", + "_shasum": "91c88e498822563b51afb2822a43c2f86906ca5b", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "91c88e498822563b51afb2822a43c2f86906ca5b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518044651367.tgz", + "fileCount": 44, + "unpackedSize": 259457, + "integrity": "sha512-GQlchAtNNU1bB+IWbtclSW06E6iV6IHjNPQbpi4dUPyfvMXYoddh+eMrsVROMDFfW+xfGmUBID1w9XsH0NCh5A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCbrP9snRtF4beoNSYpIkuZ77OAw7c2SvNSJPZEVSbQOwIhAJXsZsdMAGklPYucuATF80TNRGhtv3VHvDrR6isbzbBH" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518044651367_1518044665228_0.7811178969523997" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518069662486": { + "name": "puppeteer", + "version": "1.0.0-next.1518069662486", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "070243e4b6cc4e425f2c0674df89903452d1a7cf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518069662486", + "_shasum": "f0350da9b9a098abcc0b175f49685cf55524fba0", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f0350da9b9a098abcc0b175f49685cf55524fba0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518069662486.tgz", + "fileCount": 44, + "unpackedSize": 260160, + "integrity": "sha512-OD+PqS0o7xTW4+qlS4/26reCoHdrqNR67ikzZnX+WsqOTvRWdQxnTVaPUlU5o84N93/6/PgOmHk8agNA8POL/w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDcjvmZiD71LgegjgYn4eKzs0nnv4/QlVTZIXJKI3Lk6QIhAIDiY+n9ZaPmvxQ16Uj1tkgMaq3w4/17ys14KgXSded4" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518069662486_1518069673400_0.20194632108593624" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518069677340": { + "name": "puppeteer", + "version": "1.0.0-next.1518069677340", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ac1b9a0eb0d0560fe094c6094324753109a891bd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518069677340", + "_shasum": "23f9b529e09940228d29278151743827dc8a0dad", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "23f9b529e09940228d29278151743827dc8a0dad", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518069677340.tgz", + "fileCount": 44, + "unpackedSize": 259655, + "integrity": "sha512-gxw480PtJ96mAhkA2Uxj7vwJTw10jxhQNd4uQCPPjUM0gZU8y5udYFfUiQQzAcE7R4v3Asw371Qi+31TldHfMA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAcU/rlZVEBva+zZQBu7+bkoPxXTQDOvMwFLAR0MoSXrAiEA+Z3lVjdXxBcMXU9A/3YFWgNxysPMZgqrbVEDLmpkLV0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518069677340_1518069689518_0.36305021883400124" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518148905595": { + "name": "puppeteer", + "version": "1.0.0-next.1518148905595", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "b275e66594318ad1fb1ba9f0723b221d40967756", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518148905595", + "_shasum": "b2450fbc2dfc51509fa1a4baaa4bb2af4f6cd6a9", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b2450fbc2dfc51509fa1a4baaa4bb2af4f6cd6a9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518148905595.tgz", + "fileCount": 44, + "unpackedSize": 260344, + "integrity": "sha512-fSiD9CHXTRVBEYOg/Nr6EgrApXvTqxCIJMKlaPZRzPVHIO/AYP9YSBJyVO2kqqUcakhIPR05LyOKXgUERXn38A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCuMScjIT+uQLCkKRfyrmbHCbCEyEiwWi4FnIx6shVvZQIhAMWxpn1177CXhiu8LQ0f45ZroLTbHoIQhq2Ue0SFMRat" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518148905595_1518148916250_0.9975779303056866" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518485242743": { + "name": "puppeteer", + "version": "1.0.0-next.1518485242743", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f3ba4362392f1d5c8da529f18f2646e61d754f86", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518485242743", + "_shasum": "9976a5112c6557ee2bbbc24872bc05053b07c07b", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9976a5112c6557ee2bbbc24872bc05053b07c07b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518485242743.tgz", + "fileCount": 44, + "unpackedSize": 260345, + "integrity": "sha512-B1VSc7BJeZRPlDBztvUOqrFwH6ofo7G9RzruPPPwT9OFxTa2d/ArCP9Ke89qLj0An3PJivkF7tUeCO5v0hg6gg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEy96Y39MkZ8JYPzuJNs8X32JjUJJGCzH2RWMopJJwErAiEAjwCtGpHGb+Z/1cInHRe8I9mJnGMcvsLi6zfV7rI30FA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518485242743_1518485253029_0.7285528241302417" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518548577113": { + "name": "puppeteer", + "version": "1.0.0-next.1518548577113", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "700244a29ab2684a96a83ddce9545a238a5e4645", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518548577113", + "_shasum": "73e58193164e1aa9805c71ede0978128c445e6a1", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "73e58193164e1aa9805c71ede0978128c445e6a1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518548577113.tgz", + "fileCount": 44, + "unpackedSize": 260345, + "integrity": "sha512-J8j5F2gl5hDlNAzbmTTRT5GPf/sr+XwAsrhp892aKNlJYeOOVS/H5aqjcKMaMlgUg/baGrZp+aQLrZXBSRbuEw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGZkNZEe8e83PW5KpV+hUHRilVmVHgj0X5QPelTjTBslAiBKDmfN6duW5xkrGW36YYYpG3XeM/llBvlP8XCnESOuAg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518548577113_1518548592735_0.9274844988235234" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518550112236": { + "name": "puppeteer", + "version": "1.0.0-next.1518550112236", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "856c431914f361ab49bef588158370dad7f2f06f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518550112236", + "_shasum": "97afeecaba1e8fc10fdb1476415cacfdc5672ed2", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "97afeecaba1e8fc10fdb1476415cacfdc5672ed2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518550112236.tgz", + "fileCount": 44, + "unpackedSize": 261690, + "integrity": "sha512-JqDbE4+gq8uDeJSyxfNGaDCUN9jshOD5MmwWR5ar8jywtgNsvTbWFNKUWCn8u41gG0Gp1PxTWFQ84NWWumRjKA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAJQw/Du7XM3diCK+z8gHON0GFKr6bsvruaSSgRQfjwfAiEA9PItWovGr4I1FIetCmNSnd2YO5rwW0tKnuMRDjonhPQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518550112236_1518550124865_0.09593547948572145" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518558601182": { + "name": "puppeteer", + "version": "1.0.0-next.1518558601182", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "885c93a927418889a017d11202ac5cf9b279cec2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518558601182", + "_shasum": "b2e6b1deecefb508eb368aec469ccb05b01af227", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b2e6b1deecefb508eb368aec469ccb05b01af227", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518558601182.tgz", + "fileCount": 44, + "unpackedSize": 261690, + "integrity": "sha512-iejdaZrNfaUhglzglL0Sq0Is+zDP+iu88R0YDfXUSzhgWLIIbLjXkDdoF2HR5JMZ5nPpaqBI+Z1GmJraMNac/g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFdyz+gAQ+6zulvm5wDeFGik6vcqabLNcYlkiTTlJs9JAiEA1woMRudKzr64O9uUtCxeZmeim4wCA2WPJsL8sCYWgH4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518558601182_1518558615305_0.9528942484486114" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518559525177": { + "name": "puppeteer", + "version": "1.0.0-next.1518559525177", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ae22ef30b38673d1d09fb7cf2f7b7bffd3517f5a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518559525177", + "_shasum": "77fd92f7636baf616753508ea8ec90c3e8b2a3c4", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "77fd92f7636baf616753508ea8ec90c3e8b2a3c4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518559525177.tgz", + "fileCount": 44, + "unpackedSize": 261694, + "integrity": "sha512-EcdDDLdcDTaSL3Yl2kWYWXVVnB3PeN8h+0LwQCIChRBIkccA5lyjghzzds3XhP+QCOzP2eh4kvMN/AUrl9V2ZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIExs1SR2bc8QGAMb4Ne/knXXNV4Pfbh/L55w2YVlTjmcAiA78mVUpcqaaQdu0Zc39dyWDpyjA2J9Kn9jT6JCLKjD5Q==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518559525177_1518559540332_0.3041656751993389" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518561730306": { + "name": "puppeteer", + "version": "1.0.0-next.1518561730306", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "533271" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ee5ec3e6303889b5d5fba97d58fa16d81b48b127", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518561730306", + "_shasum": "b52fd183cdb194d86183d033c8bbb079ea2fe1eb", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b52fd183cdb194d86183d033c8bbb079ea2fe1eb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518561730306.tgz", + "fileCount": 44, + "unpackedSize": 261694, + "integrity": "sha512-+UKCTpmRjnWVVMgzLMiyB38ypUEgQIHjoT/7PHI5dBDIDhVdnU3EdVWtylVFvLw/erjvN/p+dABDyGVJJEOZxA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICj+9XsFjV46Tk/WK8i8h2kOWO3jXoW5ROFhn+GMeAkIAiBWSuza67Oa7uchIVy1jLXZ+RVdeQkwoEz9XLMStWH+Mg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518561730306_1518561745479_0.779918957363448" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518570822451": { + "name": "puppeteer", + "version": "1.0.0-next.1518570822451", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "4a53bca6b081643855e005c940d8cbc52404e99e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518570822451", + "_shasum": "75c3b23ac666f54518c52071d00f395fc873f361", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "75c3b23ac666f54518c52071d00f395fc873f361", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518570822451.tgz", + "fileCount": 44, + "unpackedSize": 261694, + "integrity": "sha512-dM1sF82HHjboo/eTv1Hz8PixVnP2XnJ4GLIUUTCYXM4nn8jseX6bmnFFcZ4oPksSyEWK+PqAbM2g5/wNdp/T+w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA2bZsn4M7oZQ7N6OtJvBi/iXYoX41Bm7nFrQqB2toqBAiEAxI31NP6fGYyTDU6yUNNpqi0MutTYVYEZKseLePj1t80=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518570822451_1518570833269_0.47802047591195085" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518653466440": { + "name": "puppeteer", + "version": "1.0.0-next.1518653466440", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "43c0feb2f21a7d14a93dff08d0165f5635c094f1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518653466440", + "_shasum": "fcd8de6255507613e7e3d36101cbee1d0e0b92e9", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "fcd8de6255507613e7e3d36101cbee1d0e0b92e9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518653466440.tgz", + "fileCount": 44, + "unpackedSize": 261860, + "integrity": "sha512-mkPZpJRRjQSMnqPEtg1T3pmyi7DeCMuAfaEDGh1goQif6qUW5snH0TIEsoxOVEf48RWhrKeM6ZGopceO5XWtiQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCuG50PSjw/2e1x0oi90ZSTh7PwXuQzIpV+NbPj/tuUGwIhAJM7KCOARfeXDAbiG5suHAY+KJHkzCRS/yms7o2e+UG5" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518653466440_1518653482511_0.7360736763762168" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518655197185": { + "name": "puppeteer", + "version": "1.0.0-next.1518655197185", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "3656cc227f3127ef588cde3bcbbde031cfb41030", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518655197185", + "_shasum": "9b92924247ab289e85b6db3589f797ed59ae009d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9b92924247ab289e85b6db3589f797ed59ae009d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518655197185.tgz", + "fileCount": 44, + "unpackedSize": 261860, + "integrity": "sha512-JuTeDcJxopXiIECX/N9lyw4knAFtbJI32SCujqPuiznVJw99p+eWNzJWd/meXmFXxPVPgsJMSEbFQGaHgwzeqA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCpydWY0omvVzummWd4NeasOcJC8XG3MUAnv6Ldv4AuPAIgC+3nKZZSdO/PIfHyCIIbaiYozxEO8MtLm57khr4Bots=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518655197185_1518655210533_0.03953394977569746" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518659629421": { + "name": "puppeteer", + "version": "1.0.0-next.1518659629421", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "e8a085ccfb478d51cd45172dbc7f4d1311c75ec8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518659629421", + "_shasum": "91ce0a16105f16237153a46738b8e922b22bf33c", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "91ce0a16105f16237153a46738b8e922b22bf33c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518659629421.tgz", + "fileCount": 45, + "unpackedSize": 264822, + "integrity": "sha512-BLG5pUnI81ksQHVSdnPC2RXd2VaqVNzK+jeLZ1lssSTr/GtVANntY17+n+pFoy8NhS61ssyt5CYQIDEmiQbVFg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA1GUATcnb9F5vLFrJIstVMEbLUCaHp5HaRamOsO4OzZAiEA7ixZkiCmKowly/IgYVVIeB8OWO8Tlf9abcxzr+yOfbM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518659629421_1518659642363_0.7744193244826834" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.0.0-next.1518730236759": { + "name": "puppeteer", + "version": "1.0.0-next.1518730236759", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "fc94f98247c22d61d9f6fb7e1c348af901d077b4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.0.0-next.1518730236759", + "_shasum": "27e567df53e10ad68008b10ae925b04f4f22d4a1", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "27e567df53e10ad68008b10ae925b04f4f22d4a1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518730236759.tgz", + "fileCount": 45, + "unpackedSize": 264854, + "integrity": "sha512-Pajmig+ZxXhnjRJ5uwfB8R4s+T2d1Lp8aiu3AIe8rz7n9TMtjbZv1Nsq3tM6D3Ol/f5Hc98y6WjQkdfvDN5njw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDefkWPl9plJrZnu2BiMsMNeOji1+Tosl+UpeKnUz6ZjAIgNxdeppM8WoLZgGxeSMRvi0Ef+OhegXwikT41/+CFNIY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.0.0-next.1518730236759_1518730247054_0.9464611187032237" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0": { + "name": "puppeteer", + "version": "1.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "fecbbac6314598b62426edb885ac41d606ae6b3e", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.1.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.9.4", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Up+EiDVtc+EueFUzEFi4JqTlkXdC4pjMng0W9s/uqg2HP7+EHJiIe8OtwP7I+Jk7rI1kS5WIVpqx46aihnLuJQ==", + "shasum": "97fbc2fbbf9ab659e7e202a68ac1ba54b8bc0a25", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0.tgz", + "fileCount": 66, + "unpackedSize": 542383, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG+n4/PoKzWhdJFje2s1LQp/5MD9DyDIEBVImdiETfcTAiBBsAmpQ/qzN4bUD8ZczI+stDdQq6d3+cRObydnh1824Q==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0_1518801500151_0.04392302930358838" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1518809287189": { + "name": "puppeteer", + "version": "1.1.0-next.1518809287189", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "85081805ea1b2dbd01618bc84cb7b82c976784d3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1518809287189", + "_shasum": "d304f37635bfd9a844377b85f8ed651c05099028", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "d304f37635bfd9a844377b85f8ed651c05099028", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1518809287189.tgz", + "fileCount": 45, + "unpackedSize": 264854, + "integrity": "sha512-NdIAB+I9Yw7Y6k5jh+F8JNGTQpuBUQDD47VJx1tzI7bY1v8jKatZqtTnvNy+lJtda8a6lw5mfcaoPz+Wr/cEhQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDEuWRIKGd444EscP3OkfIwdfRnBh1aVDWhG4at5LkFJAiEA8SJyFQgP3CAucdah4miNL53yFP68danSpbvyHFso7+k=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1518809287189_1518809300974_0.724561577745527" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519262100584": { + "name": "puppeteer", + "version": "1.1.0-next.1519262100584", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "090590a950126d12a331ddde45c1ea6bd79f8b77", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519262100584", + "_shasum": "608aa7ff9c9a0c87b5f0479ac9cfd34a03d3b1d8", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "608aa7ff9c9a0c87b5f0479ac9cfd34a03d3b1d8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519262100584.tgz", + "fileCount": 45, + "unpackedSize": 265018, + "integrity": "sha512-HSv3p76wYZr/onOIQf3jpoeQIBu6jklbma395rsWtvmEiMhqos9Om/lIR2RcPDr6B6EIFJRgpeO2fSRzB9SuQA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHU0sw0I/XTrFEIZ2Q0Dl9GSqfPKvQchLyva3/z8DGg4AiEA1ZQUYmCpw6Qe+WDPNpRIIrOu2b/yKtcuQlje+H0MCfg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519262100584_1519262113743_0.05463884983801437" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519266285104": { + "name": "puppeteer", + "version": "1.1.0-next.1519266285104", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "28f88e8ef907a3216c13dc8deb7e042bd350ce10", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519266285104", + "_shasum": "9f05866e833e2dc5593426f185476c51cb24f3b3", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9f05866e833e2dc5593426f185476c51cb24f3b3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519266285104.tgz", + "fileCount": 45, + "unpackedSize": 265018, + "integrity": "sha512-KiBiTMh2NNLeGiY6TiRB2p3f/868WzNDMMrj6qCE0V9Z4DM+kETjxm9G+NrKos3QPrmQqRFBlpODwC404+Rt4g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD80CvxgV9VKhiqdTpzIl64Y7IfT7njIyU7YhlAyq3JowIhAOg7jMWXmpL0RsMFXZiaXlwkz+JZ8A2rrx+8AVVO4zNg" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519266285104_1519266300771_0.7447239439965154" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519345518390": { + "name": "puppeteer", + "version": "1.1.0-next.1519345518390", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "80078d9526528c0ee7ed745b75595c7274a907f4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519345518390", + "_shasum": "288a641b817b15974aeddbcb1280795b711a3896", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "288a641b817b15974aeddbcb1280795b711a3896", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519345518390.tgz", + "fileCount": 45, + "unpackedSize": 265158, + "integrity": "sha512-buxSArrt6MsGIoDSzK99AZxH7WNwvErVVdh93KEtckobjwYje6a9gjeTmonYYmLKuRMAmUu5JLdkXtuwMnDeEg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGAxM2GlUhs8lq8tOP45bRwrh5Ek5UvPdOXKsIK79GZVAiAWV3yaqRPUk8cl16g4c8/BYSdN3HhHiI1PAkbzi4juqw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519345518390_1519345528905_0.5707116980460825" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519350670048": { + "name": "puppeteer", + "version": "1.1.0-next.1519350670048", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ee7ebd6e17f972d2e0d4661f335421145c4188da", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519350670048", + "_shasum": "6036f8ce166a42bada8b0c12bdab53bc11f360a4", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6036f8ce166a42bada8b0c12bdab53bc11f360a4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519350670048.tgz", + "fileCount": 45, + "unpackedSize": 265126, + "integrity": "sha512-tfG3lgw3N86QdnyPd38xnfRYsD82yBbDecrQ2XnUxmJMnx3bIPXOmcoKOWawqN+7LcxRRfcXLnsqrx1ozY0bGQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGTXEY5c5nh/MvN1ihJaCwoG93pMTFaUyNIe9vwDvAU9AiEAlqEzuhV2TciqD2mosMwtazwq7Qzo/c85YEMON4Y6vak=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519350670048_1519350680374_0.023645295617354956" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519355295259": { + "name": "puppeteer", + "version": "1.1.0-next.1519355295259", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "66887743ead54405e2e8b5865462b87e76e8e5cf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519355295259", + "_shasum": "85cea7f17365989ad6c9e2330e0e568041a2f45a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "85cea7f17365989ad6c9e2330e0e568041a2f45a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519355295259.tgz", + "fileCount": 45, + "unpackedSize": 265203, + "integrity": "sha512-C7jlywScYE/e4a95kTQCOcmhy/WuDb5PIrxJk7sNtvMWHd0W4lEqU9GIS9xoGpU/2MnVwa4vKJtUtANQuUs/LA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDOpSeZ7Jm3P2/TMrOmsqFEKcymcqC0qZNZoAVLFoIeiwIgBWKJLsrd0D6tGMzeEgyCNxgf7IuczUMvliF8YtcaqJA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519355295259_1519355307781_0.83893469018458" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519355543971": { + "name": "puppeteer", + "version": "1.1.0-next.1519355543971", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "fc2a10440f7c54a745566f7b240d51a0faffb698", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519355543971", + "_shasum": "56163b9ae41dc8a34110cb015d1fa88e54646cdb", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "56163b9ae41dc8a34110cb015d1fa88e54646cdb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519355543971.tgz", + "fileCount": 45, + "unpackedSize": 265308, + "integrity": "sha512-uf7TS+vqdHFFS6+46/uLFCpKR5irdcVdIWNTHE1jOZJNpOqY0xemDPThwqDrFAXow0KalQdpxLpZPTDw6RP5Cg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGKszXLSlnTsWGKWj9bgrP0OVi9UNHwDmDYoDusbqmviAiEA7PlWUBEhcemZSEA9Wfr/XALAJZdPNmkZPExvTRThCyU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519355543971_1519355555567_0.5640126149823037" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519424108630": { + "name": "puppeteer", + "version": "1.1.0-next.1519424108630", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "56a475f86bba60466299e05cf95ccf14b74fafd9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519424108630", + "_shasum": "e30f35b5abd942e616b91488c43dec47f23c477d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e30f35b5abd942e616b91488c43dec47f23c477d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519424108630.tgz", + "fileCount": 45, + "unpackedSize": 266485, + "integrity": "sha512-gKsQOHfexOCVyrA9dKGRmxCEkgdLl6CB48oN9RBp4FgOA/U21nJCeupvmg2u82EofEHWR0RmdgctuuD/F9Tikg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDOuTfodBx2dTb5YbQA/4b31DGg+s2xwFL2N2f1k1v/fwIhAKL4YMbLg0XNxSc5BhLOmQNvcY/rGc50DMRn//ykk5MP" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519424108630_1519424120032_0.4805144498517082" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519430203926": { + "name": "puppeteer", + "version": "1.1.0-next.1519430203926", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "e2b96df4d73383bdcd46ee2e60b0e08ee965b0a5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519430203926", + "_shasum": "6bdf102a55ebf45a28a3c45cb956301b3f7a624d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6bdf102a55ebf45a28a3c45cb956301b3f7a624d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519430203926.tgz", + "fileCount": 45, + "unpackedSize": 266485, + "integrity": "sha512-VDanlUXMmLViCxYT6MA2ZdK2NS4XDTY9TZVY+jCGqXOC/THcQpodKdUUbxEx+gdphwQ0oMHjT1Ehq1QHdRO6Eg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDH//a+yys/kGg5Y/aaDoOEj0DyZtz4GUkjuu4TfBw1UgIhAIgmLs+1KF2xagfvB2WP1NvsOC1uGytceEsCgcJRAHUJ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519430203926_1519430216763_0.6833953830605466" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.0-next.1519449884398": { + "name": "puppeteer", + "version": "1.1.0-next.1519449884398", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "223b59254c55446a1be310d660c1df40ad88cb5f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.0-next.1519449884398", + "_shasum": "9b83f59b54b2da2f5477dfc2340e843f91981bf7", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9b83f59b54b2da2f5477dfc2340e843f91981bf7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519449884398.tgz", + "fileCount": 45, + "unpackedSize": 266928, + "integrity": "sha512-Ge+k9mhG2pJhkoARNC6SIFdyn1mpY/EbddYnqkucqeQe9ev+BWH4uDclFhUViWaWZ8wNjoEJH51oHbSGFEBqjg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICQRnD5+jg+uR7EyXo0YUCnQ9v/1WG0NbxdJyYUbYmIvAiEAzf1yGojimFSsVqh9YN4UgPLjuNQNsAye3FcV/OlawuE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.0-next.1519449884398_1519449895569_0.36879184500904927" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1519451217463": { + "name": "puppeteer", + "version": "1.1.1-next.1519451217463", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "3c6ed67c2e8b4e02cdd71ca6fd72a73a786cc9e1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1519451217463", + "_shasum": "631ecc4d6d69a55f1f3b3b6f0669aad3a9d7f707", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "631ecc4d6d69a55f1f3b3b6f0669aad3a9d7f707", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1519451217463.tgz", + "fileCount": 45, + "unpackedSize": 266928, + "integrity": "sha512-+umsJhXRJyAAekK6ElcAHRPOUBq3JtzFrLnJeslaw4oTBTyn7CRmUQbiFaUjejblrnKnIVhV8aaGqfbQ2CdSOg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDq2VjwzO8L6xw28QLnHQThvG5/RInWToOD7g9ZIyBeGwIhAKidkSUNd4ziIVHi7sL02rHNreGF9hb4KGn5I/HK8Yx2" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1519451217463_1519451228049_0.2514744717180184" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1": { + "name": "puppeteer", + "version": "1.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "536395" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "42b0082813a420d0d32aa58fcdaddefd9151fad7", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1", + "_shasum": "adbf25e49f5ef03443c10ab8e09a954ca0c7bfee", + "_from": ".", + "_npmVersion": "3.10.3", + "_nodeVersion": "6.4.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "adbf25e49f5ef03443c10ab8e09a954ca0c7bfee", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1.tgz", + "fileCount": 67, + "unpackedSize": 542756, + "integrity": "sha512-7TOHTzzIZlZXO46t7UR5+BGv4wrtUz7hHDDgwfQS2uqy4xhhsg5soW1O/HBsx6hOisIILgJ2lzgBi1BQ+FAaXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDh2FGfAOqY1kiWvhaNIAynBHl3MrSJSPyOgl9hZFDVKAIgH7HDhjD2va9YTwNwBHEs+QW8ULjG3jpQjMQDuCW2JK0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1_1519452546692_0.20404394191284592" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1519455879191": { + "name": "puppeteer", + "version": "1.1.1-next.1519455879191", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "2a84f9f343e1e4213ced29cde818e6281e9fb7b5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1519455879191", + "_shasum": "159a19b0b262c5b97c75ea853d5e3882d218a4a4", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "159a19b0b262c5b97c75ea853d5e3882d218a4a4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1519455879191.tgz", + "fileCount": 45, + "unpackedSize": 266928, + "integrity": "sha512-X7XEBYzMqaybCef17lA9MoEjGcm0sQKyjsKWuC7oK6iz65/DNxZ/0O7Yy9x1zbLxTxHpAhTFMnz8sPQSTh1P+Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCvu29uhMPx1Ai1MzAU5yesmLBELBylZS8XCkLw8JryfQIgW+tpoXZOoAhqZ1syPt5MtGbmct4LqAWGnYOQGKYvgRw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1519455879191_1519455892025_0.788429232535464" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1519675964105": { + "name": "puppeteer", + "version": "1.1.1-next.1519675964105", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "ffe5b63dbade012744f6a91a6f9a89b3615d5246", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1519675964105", + "_shasum": "763e22bdcc59c2bb140d64cc6aebd9cfb011217a", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "763e22bdcc59c2bb140d64cc6aebd9cfb011217a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1519675964105.tgz", + "fileCount": 47, + "unpackedSize": 267560, + "integrity": "sha512-2hq9FWnxhWZr3ph1EK+LxpQLCDemHNxSazzz+cNd6HH/QSwKJIh07B0uzaq4WarUl9cRqrXVsM7An/EIVO6ZbA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCDJgAZttNF4NXXKxPErZTf46xDC1vSd+zvEDh4r7SRBwIhAIs3t8IKMwd8E/+bT1mby1pR8guYiGyrzy5EZtpgRR3O" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1519675964105_1519675975595_0.3959558283680007" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520401889860": { + "name": "puppeteer", + "version": "1.1.1-next.1520401889860", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "edc510c1524da823801cd798f59a2c0fc6b06ff7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520401889860", + "_shasum": "4a9c632a5d6df978856bc1946ceb891ae0bd04d3", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4a9c632a5d6df978856bc1946ceb891ae0bd04d3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520401889860.tgz", + "fileCount": 47, + "unpackedSize": 267734, + "integrity": "sha512-Fj57TFQXkYfcMV00B1z9CW91/2dyPWdQwlVnERM4MSNlVNgGPLFAkvLctPoLXtfwBspRYxpUJr6JipYZhsXmZw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8dfRWsDPZWtJMz59kMDI3b3TMlepU2XUrJ5cEt61AaQIhAPubJMswDSjdnt1arBlMq1tQ1v9nxyppugmbrXTOJ1Ou" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520401889860_1520401901818_0.018451750749024276" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520401938885": { + "name": "puppeteer", + "version": "1.1.1-next.1520401938885", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "44d8000de12f2919ec5b0e5979b7b0739ba961f7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520401938885", + "_shasum": "e0b8b503afb21cc8442d1dbc8f86d82dcdcbccce", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e0b8b503afb21cc8442d1dbc8f86d82dcdcbccce", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520401938885.tgz", + "fileCount": 47, + "unpackedSize": 268020, + "integrity": "sha512-5tFNJqfelSl7X2XLcgNUsL0CHLCW+OecGNFKOCI7fL+nEdA3zuVbVwsdc+vcoDXO3TcCD72OcnE6Ktx/dcdNGQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC1LB1MZjT3XXXxbmnLEKf3LOlUIw65WrJ+HEoyIBLWewIhAON3a69PWhFQuvbN1iVlH7V0rFdRQYOxjlQ9UbI7kACV" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520401938885_1520401950222_0.6050926630820626" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520415469395": { + "name": "puppeteer", + "version": "1.1.1-next.1520415469395", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "cad71d9bd932e84e92a9f7d874c51d590c490b36", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520415469395", + "_shasum": "8d3f4b6e27b210a9604a89104cabd07d5b23533d", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "8d3f4b6e27b210a9604a89104cabd07d5b23533d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520415469395.tgz", + "fileCount": 47, + "unpackedSize": 267982, + "integrity": "sha512-y+39khAG0eclgSDGov2CMxbPT+nWLDrODnsVnUWbWLO8JkuBjbJTSrLj23oYSAqDYSAqC4kcxMC5LtSr0QBLiQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDq8SMSg3pSAT9q1YfPJOiPRTylu8IKpeYwQkhCTvzfaAIhAILeLLbQNRUMJEm0XUkeokLiOH2c8H/grzz6bYurVMIQ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520415469395_1520415482021_0.9436685200845465" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520879814994": { + "name": "puppeteer", + "version": "1.1.1-next.1520879814994", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "826fe42c48fe0a5fb49c62f1b87387638a6635c8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520879814994", + "_shasum": "449b467f8d9e75efabd2f1228f00b95d6d8febd3", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "449b467f8d9e75efabd2f1228f00b95d6d8febd3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520879814994.tgz", + "fileCount": 47, + "unpackedSize": 268300, + "integrity": "sha512-LzpGfGMR7QUBYhMhUtuQJYj2u/3n67bjl2+r9bON8iGFC+KLodx2Jo17AJxQl3xhbsiUKOwTENjRtTIMiwn2wg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDncHe6Zm3+FmUhtBYIGZMq6Xwe4dQklsMpnnEgA+JgOAIgBj7mPtZm9QneQAT/+DV4B65OlkKCiM+AK1hqvxk+mIE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520879814994_1520879826234_0.7187822845761105" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520894418677": { + "name": "puppeteer", + "version": "1.1.1-next.1520894418677", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "52d3bc05dea670e087afced923e288e4633c09b2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520894418677", + "_shasum": "7b53eb6583b5e2ce17d9dd4538ab6f84cd3345fb", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7b53eb6583b5e2ce17d9dd4538ab6f84cd3345fb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520894418677.tgz", + "fileCount": 47, + "unpackedSize": 268315, + "integrity": "sha512-EMr0Dn3G1M7guii/asErsMY+l14DKJPSZI7S9tIOfvPhflgvLeS2kTqLq1LM7bo7s5azYvayFaGlo+Bc1DzSdg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDIREIeGIrmAn40MGpZkDkCmaCpGsryb+fN43/ZzVN63AiB8tPigkVfTHbKOttbRW0jIBWbreHOA0vOtVXWudAxZ6w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520894418677_1520894430043_0.7860483209701408" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520952323905": { + "name": "puppeteer", + "version": "1.1.1-next.1520952323905", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "5af70e8ce339cefedf2f1eb2ab75960ef2ddefcf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520952323905", + "_shasum": "645202e759542afd4f0b2744088e5d8dca192a28", + "_from": ".", + "_npmVersion": "4.1.2", + "_nodeVersion": "7.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "645202e759542afd4f0b2744088e5d8dca192a28", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520952323905.tgz", + "fileCount": 47, + "unpackedSize": 268315, + "integrity": "sha512-9SCTe5kXiquWNcfpbrvY22GEbUPvXQ70dJ/jFipMSSNPzQFSvDmMvsZBCYHEG1s1byqyovYgkHGHbfFGJHbYpQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCi7Q2zPlnV2qq68E9333ykdhOu/Dy/LjKvQvVfEpbYgwIgcQKw6uREGoNo/96vfvk4J9QKMCXt/yNRiEX0D4iRhxc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520952323905_1520952336896_0.2209188430351534" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520952444105": { + "name": "puppeteer", + "version": "1.1.1-next.1520952444105", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "fc7e4d1065f95b02202185a434e679f29a486600", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520952444105", + "_shasum": "0fbc96c50b9ef7d521181eef5c8ed176413831d4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "0fbc96c50b9ef7d521181eef5c8ed176413831d4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520952444105.tgz", + "fileCount": 47, + "unpackedSize": 268315, + "integrity": "sha512-NrYeUOc4EXdX2nUcgA6A/zpAvNeU0j9O96MrP93/Nzx1TOjxRNhVKer3z6DjV0WGj3yjL45Z5YjWE6JToP+nlg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGW4zgxFM47HWBxh5IBU6iHCpbv7T1fct5eWEC/lHiz5AiBUvuBSzvKadWU709V5YsBtYzlzNo1g+rINZh24P9w9sQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520952444105_1520952460391_0.6157000663587171" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520953767679": { + "name": "puppeteer", + "version": "1.1.1-next.1520953767679", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "554bd59588a127980b524fd49c27ab7da17c1162", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520953767679", + "_shasum": "67fabd88cb6ab9af8bb8477cfe740f1ea845deee", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "67fabd88cb6ab9af8bb8477cfe740f1ea845deee", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520953767679.tgz", + "fileCount": 52, + "unpackedSize": 271643, + "integrity": "sha512-JLuS+7nxJVUn4M47955D4xpArZcwzEPJFbHdZh7YBsA5CZJF+QrF4Cc78JUWxVtdoLkVMnU5uIz19SwBRBGuGQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBLMmAuEbNVX8p+z7+ZofCqAJkwfu8zmsMeNstnZmONUAiAgP4IPriN5LAERxpv0Teu84eTae+213btofYWGrrEFIQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520953767679_1520953786773_0.07468585002933192" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1520958529908": { + "name": "puppeteer", + "version": "1.1.1-next.1520958529908", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "552be1ae871f7e6e7de2559ceed58d759ae2668c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1520958529908", + "_shasum": "ecffc75a76da5841817ae349fca5ce6d738ea108", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ecffc75a76da5841817ae349fca5ce6d738ea108", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520958529908.tgz", + "fileCount": 52, + "unpackedSize": 271643, + "integrity": "sha512-K4spvPGbiD0t9G52Bv3QAdJU7tI3OcwKS3qS3DAtLoa4pcDIsNT67Or79Rde8L0bNxGo3QrfYffP9kgmjGNajA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDUfXyAMIVhgk/pv/PIsa4NSPi0hE58WCpQyf8rhAlaJAIhAK1JqVA7O9Yzn6AwhyOWV34w//Po9ew5HajMYU67Jpiq" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1520958529908_1520958545784_0.3149565155845251" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1521058223243": { + "name": "puppeteer", + "version": "1.1.1-next.1521058223243", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "625c7ebdda2ef0473ee8d593dd30a1d34d3ee54a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1521058223243", + "_shasum": "7d2ea337783b9e5e86003e685454195bc3114456", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7d2ea337783b9e5e86003e685454195bc3114456", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521058223243.tgz", + "fileCount": 52, + "unpackedSize": 271804, + "integrity": "sha512-BZWw+tQ4gyZ4aGLmWJyX0GTivt6lqc+M58mf4sKq7BoCq8WQc/Njk3dWuaYZE4BvJV8lgAS+DwA6MjB4Ftl/iA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCHytHYLMIaJqlqY/k/elVw4IBapkG0DVtBUP8DMwwD6wCIAhus/apgdDlL9Ku8lJrT0SGkL6SVxEUCVn9GXUHNnQW" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1521058223243_1521058238878_0.25340340103784054" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1521075426851": { + "name": "puppeteer", + "version": "1.1.1-next.1521075426851", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "4b7fbf8ee0400b6d8be1e0ddda0a08899655d8bf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1521075426851", + "_shasum": "e981428b1b97616913b2b92051964bff7c475f66", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e981428b1b97616913b2b92051964bff7c475f66", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521075426851.tgz", + "fileCount": 52, + "unpackedSize": 271804, + "integrity": "sha512-EiSXcHu2V396ukpdNhXIASW8Y1aYzRE/FHJmGWrgR2ILToVtjH9U4BP/0INVS21OMnRHeI9w0I3YlLUuIKAl7A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQChXKoFvo8jIDlFyRiUqnHVaB6DsvUfoY5OVTydP0LupAIgGR2q8FFvf6tlcI44roybCxR1KmS/HeFFJwtCl/enyCE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1521075426851_1521075439374_0.6896815660007936" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1521139956274": { + "name": "puppeteer", + "version": "1.1.1-next.1521139956274", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "c082a82547fc309628c74c3f433c2b4dc873edc3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1521139956274", + "_shasum": "ef9c87d67c13670877cffb54854fb008e04a915b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ef9c87d67c13670877cffb54854fb008e04a915b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521139956274.tgz", + "fileCount": 52, + "unpackedSize": 272116, + "integrity": "sha512-D0sT4jwPHA3f4tGEGc5EjzFONR8kpoEq2dizjAymntEfexpS8QnqBEoAKLSWVKwoDDwn4f50ES24QXOruoglag==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCTWWUTXb9J/8vVU3Y+u1uF72+yxAll6Brtnu8MEsl62wIgEk13rMlCIBR5wg+0NJcCiV01/HezhReHWXq9Qxtl4Ug=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1521139956274_1521139973849_0.9459621475391509" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1521148059100": { + "name": "puppeteer", + "version": "1.1.1-next.1521148059100", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "7d387d8d75b2244cdb64f1258faf0868470aa671", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1521148059100", + "_shasum": "f18bd34e2da2558b98c3adf29ab14e3b84edc39f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f18bd34e2da2558b98c3adf29ab14e3b84edc39f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521148059100.tgz", + "fileCount": 52, + "unpackedSize": 272115, + "integrity": "sha512-GfuFSWv7UN0sZyqxKO+fwsOYVqJ3pM+VorIlntlziUx9Kl7EkObCK3vLofHnE3Axs6y2i1e3SqvjABjqGGVJpA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCbAoeqhYUEi5UVJ0V8T4FQ19Q/JxsxlTO1VZWgP6aUGQIgQfV7OW/uT6GxK8hIWdV6Q6ru/fCcVXyk0SnTm46Pk9I=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1521148059100_1521148075059_0.7949197696655699" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1521151010194": { + "name": "puppeteer", + "version": "1.1.1-next.1521151010194", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "538022" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "d79eb70267a6c05053bd8c31159810019945fe68", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1521151010194", + "_shasum": "ac79b4334bd06e234ff47534d09b667c197e65df", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ac79b4334bd06e234ff47534d09b667c197e65df", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521151010194.tgz", + "fileCount": 52, + "unpackedSize": 272115, + "integrity": "sha512-yiPzGfXB+gKjtCU+aOGFU+JCeTl69PN4Ef6oRtvdMdegVW8u4yX+ieBpc7PMmAaq8Lih6rNxiP62e8hnenNNFw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDxxDHCvKupZGI/E43dcdBYt49up0OWI3iTK6PK3OwNSAiBi+P5WgiNdxw/tATWWdQzCE/p5uiZSUUSlYikCwcrJ+g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1521151010194_1521151024764_0.8905155057961613" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.1.1-next.1521163270821": { + "name": "puppeteer", + "version": "1.1.1-next.1521163270821", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "4e1f2e2eb2c2473f7ceafabeea31d78a642b0b36", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.1.1-next.1521163270821", + "_shasum": "1d1da2917b5af395536a5daedfd5d67f8b426401", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "1d1da2917b5af395536a5daedfd5d67f8b426401", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521163270821.tgz", + "fileCount": 52, + "unpackedSize": 272681, + "integrity": "sha512-PFoM/fRighFIdRRV4j9XSUJAcfxfP6tUoR8wiMN8ezlVi/xx1/oMINOvl80wAMP8+GUVId7hWzepXb1FjDr88A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDnIjFH2zGbwpKE5QXfcU52cDT/LE1Bz7TeQ9PLjxY+3QIgC+GNO+6fG84bc0zFzFF1BWrkv2e7pUTmZNCfZWQ6lso=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.1.1-next.1521163270821_1521163285237_0.6238906752718882" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1521166881791": { + "name": "puppeteer", + "version": "1.2.0-next.1521166881791", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f2fae9f35a9169f5a4833f5b063534d399b75e3a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1521166881791", + "_shasum": "63a2d68b7dd1fce66f799caf23692264d5f9b739", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "63a2d68b7dd1fce66f799caf23692264d5f9b739", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521166881791.tgz", + "fileCount": 52, + "unpackedSize": 272681, + "integrity": "sha512-theCHT/ffnNQdeV+qNk+dbUr3duLSSFN7MaSyaGNrqEAFNN4jMEWR/jLjme/wadiHQg0HSEKNQmOPaelmSTN0A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHfnMZ1wrWd/wVo8jWhVlaerrv14zvBCJmLlgbIf4E0QAiEAlGPjJvSpPyLr+Ssdn+biRxiM/8PIxE7TJ1YzjS1C+oU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1521166881791_1521166896032_0.197364731578348" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0": { + "name": "puppeteer", + "version": "1.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "f2fae9f35a9169f5a4833f5b063534d399b75e3a", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.2.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.9.4", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-4sY/6mB7+kNPGAzPGKq65tH0VG3ohUEkXHuOReB9K/tw3m1TqifYmxnMR/uDeci/UPwyk5K1gWYh8rw0U0Zscw==", + "shasum": "6a8a1c618af073dfcf6fc7c7e3c12e54129ffa98", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0.tgz", + "fileCount": 71, + "unpackedSize": 552875, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQeSgutVg7BkxKXKErEJp4ZjBC6Igvc+r8VyYknv+fiQIhAOldnjblcgvfncyOK+u0URjGpCyJUQL9Ms/HAF9gLAOZ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0_1521166954358_0.37223562551251943" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1521223510564": { + "name": "puppeteer", + "version": "1.2.0-next.1521223510564", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "311f3071532a78f856ffe9d3af012a809cfe611f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1521223510564", + "_shasum": "908a7bac6e1dc80b4b5bb28dc48cf011904ff242", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "908a7bac6e1dc80b4b5bb28dc48cf011904ff242", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521223510564.tgz", + "fileCount": 52, + "unpackedSize": 272681, + "integrity": "sha512-16yl4x+9hH2/UMQedVzxn10PUvSrAO5ugmMQP3tZl4Gkf8o8sSVCKWwuoUC7s7WR2yzpeztFPNaJRf6apdIE3Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCHSNwa/lezm0Ce7avPE2jltIG66G2WAKfwbpJMCYKqAQIhAKYaVxFO2qvpsUyrm0C4bBHK5RP0UTqyPpayMfWArYIA" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1521223510564_1521223529311_0.021341443178746422" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1521239766470": { + "name": "puppeteer", + "version": "1.2.0-next.1521239766470", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "38c6873fbbc469fe422977131bf2da8e75ec9228", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1521239766470", + "_shasum": "49d1cb95c36e306f8028e9e618b48a662bd04cb6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "49d1cb95c36e306f8028e9e618b48a662bd04cb6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521239766470.tgz", + "fileCount": 52, + "unpackedSize": 272681, + "integrity": "sha512-IjPBzAJR0AOT4166B4VR/GIhTyHW7CIkEXLQDZQsmFOYrKwT1AYJeBinzK6aSuoTISqpHPTn8xTuZEpUv1EHSw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCA6QDia/+GP2rTKDwPq9SECwi+5y6E4sZRqjaVGRSZyQIhAKZ29HmqqoRu3UJbloR3jpUBQeKZo6GJDlPrPXNpn6pU" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1521239766470_1521239785897_0.858105926834513" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1521514943168": { + "name": "puppeteer", + "version": "1.2.0-next.1521514943168", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "47481967c5344dc0ca17ebaf4bd3d9650da771d0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1521514943168", + "_shasum": "731f73bf021092328b184d5239bc9b3ed15f03e1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "731f73bf021092328b184d5239bc9b3ed15f03e1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521514943168.tgz", + "fileCount": 52, + "unpackedSize": 272681, + "integrity": "sha512-g6EYlp71gDaTvjq9MIYcDeOBq+Qez0fkOqDq1QCrfc2OZXrIqqiKcDbFE7ynOPxH5ILSGgtaTrJLw9QW1v5gSA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC94VtFRxq2RhmMTDlM4AQ1hvoEMAbYeNoCHBKWmYsndwIhALu2GdWqn+kmrWwxzxbtObYPKrY1U596bRmHSF4Uifb1" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1521514943168_1521514956148_0.43619195638252206" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522268068681": { + "name": "puppeteer", + "version": "1.2.0-next.1522268068681", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "d46e157f19ecce1622cabfc25b2c859a6d37ce4f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522268068681", + "_shasum": "c9648fd38a4807d34701522a598217969a0ad3f4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c9648fd38a4807d34701522a598217969a0ad3f4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522268068681.tgz", + "fileCount": 52, + "unpackedSize": 272776, + "integrity": "sha512-mJX2Z+fK09HtnBPbmMcEYqWbmtJPApwRqK/hJTR9hehDmXoE53OYQusOqyMgrfjV7Tvue4bSiC2pOm8qQFJkaA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAkYikB3a8eqqf/j1cms8IcH8Y1YmtBuD0k0gnMCK9ayAiA4T82ISGBk1ZGnh4Wbja9gPY2EoalDLG+QFmlFneLg5w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522268068681_1522268084700_0.36346946078140774" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522268477499": { + "name": "puppeteer", + "version": "1.2.0-next.1522268477499", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "^2.6.0-rc" + }, + "gitHead": "9af02a0d8615ce77fb5aff2bf748e2a76aae6488", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522268477499", + "_shasum": "b3d15bffa8145714b720ca6dfe534727b2eb2226", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b3d15bffa8145714b720ca6dfe534727b2eb2226", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522268477499.tgz", + "fileCount": 52, + "unpackedSize": 272776, + "integrity": "sha512-vw1SF2O1iIuYsG3RQw5cZfnnZ7GaGPz9jP5H54ShCimXC0SmCp4Ney229Lpxc6pKNKjQCBlFtNAkF4RU0TtiNg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCMyhC8UdgLfX0V06IUNuIJgaKKA9SRQ1stCEt37yBROgIgbkNiQsKNxKAXDFn3kFvDeR8QPgxvC7NILOx1/d/aMxA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522268477499_1522268489781_0.20715346423328374" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522280204510": { + "name": "puppeteer", + "version": "1.2.0-next.1522280204510", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "abb05e069ddb70d5a79ff7b7623ebd96666ea280", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522280204510", + "_shasum": "71144a5d39eea37eee96e09bdb75f1ddab003061", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "71144a5d39eea37eee96e09bdb75f1ddab003061", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522280204510.tgz", + "fileCount": 52, + "unpackedSize": 272792, + "integrity": "sha512-m0e8X8AxJzCqQvwDi03p/i42hXdJbkcARPWR/S+uhah8in/jNTH0TYZ9YXJ7u75H5d0x4LJalX435jRT/IP4vA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH31mV4xNd5H3+J9z0LEiqV1+0gPrrA01hFQn28sB9qlAiAinYrXxhOSumsTW/b1mA2JdWjHLG2d12kr2gVZsILkNQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522280204510_1522280216703_0.238633210405242" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522345485546": { + "name": "puppeteer", + "version": "1.2.0-next.1522345485546", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "ebe17371b0dc84760a5685e510f14182b73a1c77", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522345485546", + "_shasum": "4ca73f3e7be0b62ec5015dcf1695c2eb261c93ac", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4ca73f3e7be0b62ec5015dcf1695c2eb261c93ac", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522345485546.tgz", + "fileCount": 52, + "unpackedSize": 272792, + "integrity": "sha512-bWY8vvjJvzP93ga+ezAiM4SNFG9SKVQs7ZtUoeEUaZSWjxTH0kZa+y+bIQbCqWNxXxqkygTzjtVjiHVHQkInFg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD64m5wzM98Piui/EfRPAIOCP6yUHdVhZXF5HiuYlLLDwIgHRVmQjdHVeue7lCtrtuKhjyY+2qqDm4mORIGdf6z1IY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522345485546_1522345499378_0.7607250397352059" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522345707169": { + "name": "puppeteer", + "version": "1.2.0-next.1522345707169", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "506103556b3dc48ddadb92d7dcfecdd37f3c139b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522345707169", + "_shasum": "77b5c42d7e0ccbf9d0f52fa0c4134b62cfaaa1a6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "77b5c42d7e0ccbf9d0f52fa0c4134b62cfaaa1a6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522345707169.tgz", + "fileCount": 52, + "unpackedSize": 272835, + "integrity": "sha512-7WIKKAw3/Os3vnuq60Zv6WksqGBX/nV9L9d54p3uAeII3XWxK7wQ5fNOput6rrg3zi7XUj9BSCPyQnx1FfHhsw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHJfXyjLbpdUIkshME2UsLe9qkmYpSN2iARt42hTSjdfAiEAqNL+yRWbCtGRRJTtxmdacp39ipbtW7v6ObyP/k/MZdI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522345707169_1522345719547_0.6103896769068142" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522346209003": { + "name": "puppeteer", + "version": "1.2.0-next.1522346209003", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "d4f24f1ec548b31c6dad937180f07e0dcb4c4cc9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522346209003", + "_shasum": "7448d1fd926a5293fbf349de56a73e0c21762bb6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7448d1fd926a5293fbf349de56a73e0c21762bb6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522346209003.tgz", + "fileCount": 52, + "unpackedSize": 273178, + "integrity": "sha512-HELAf7NRpcOZtZIM3jNw4RdLpnSGdiuGM2EQdD9KEByYzeU181swYiFO/gPHHYzjqHcxHQhSf2EmnOrkSB9fzQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCVIMmaRSs26XM9nEm0DQvZ/JaRNmTLJrN2nAuntpa8hQIgZEvXRVwVJIZMqZoUA98kZIBOYGi+LLqxzr2Y/bDiR90=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522346209003_1522346222297_0.9875237917907664" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522357005652": { + "name": "puppeteer", + "version": "1.2.0-next.1522357005652", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "543305" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "41d583829740c204dbb9c1df43cb91db9dc6f566", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522357005652", + "_shasum": "3a9c3020eb55976fad7c9aaf03b4e972be86f82a", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3a9c3020eb55976fad7c9aaf03b4e972be86f82a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522357005652.tgz", + "fileCount": 52, + "unpackedSize": 274004, + "integrity": "sha512-bd9xHskkfGTMsZidiY4FPoMWcKf2hUoLZuz2OuroOjPOJsF5I4hZP+WsjzcNKeIAGN11Vf+n6Ai97Vpuvbu/DQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCmMU6wqP6rbrNG+TY5i1T+39Pylp5ApVdhtPnjG/JMkwIgaJvY+v8IFoMHI05xdKPdMGEeZ5Bcxyz4eUgOEi5fZfc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522357005652_1522357017326_0.6031227215363728" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522358202204": { + "name": "puppeteer", + "version": "1.2.0-next.1522358202204", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "c6c60aa1cb2f39e02f7af2b89f4295ececc6b98b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522358202204", + "_shasum": "92b2e276560988c39c4e072997f4c7ca3ea9758d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "92b2e276560988c39c4e072997f4c7ca3ea9758d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522358202204.tgz", + "fileCount": 52, + "unpackedSize": 274004, + "integrity": "sha512-mIk9j4W9iKyTHJR90nKlCTg5zRH6HdcUzP3Tmc9JfmUnOe+eGk5RyvxbmC3C1dXFh0wqjpw+nUjQdze9CTMpjw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAfSHDFsYuqYf9yuL/18dkDpyQ3gVar2rTLOPAuhRDOLAiEA8cMor0JBSNmt/4CpeSzX5cDw1BsjKqM1RgA8ijDlMCM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522358202204_1522358214673_0.2874957843022361" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522369666407": { + "name": "puppeteer", + "version": "1.2.0-next.1522369666407", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "c4da19bd23d5cdf8d568b60f8c16dc06c3448587", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522369666407", + "_shasum": "f3d8b3677f278e012c16d8c78f3ec196ea457fdc", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f3d8b3677f278e012c16d8c78f3ec196ea457fdc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522369666407.tgz", + "fileCount": 52, + "unpackedSize": 274004, + "integrity": "sha512-HlHMz6wTSFyoxUrYlMEgU3oEGMPZoU9AS6ehOg5bK3XHPyGjhla5yLg/KxSrxVl6X+/SemXLPaKDp0gyPdf8DA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCQaWBzyASb0oUIfHjsLFFSEta1JZ/DBtNByOWZcHC/pAIhAPjJyN3HZyuuTUfgPxYyJgrXwTIUmDnF63nRoEkTbniV" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522369666407_1522369677203_0.05346490242881585" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522432314513": { + "name": "puppeteer", + "version": "1.2.0-next.1522432314513", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "8b0fd0ae4ac955fb19d71bddcaffb5dba7ce97a3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522432314513", + "_shasum": "5f0cdc6a41d4c7ed3fcfa5a24e7184eb6d98f515", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5f0cdc6a41d4c7ed3fcfa5a24e7184eb6d98f515", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522432314513.tgz", + "fileCount": 52, + "unpackedSize": 274061, + "integrity": "sha512-7YVianwCkaxxb4ujfVKpnT9wYYANoxGHBWx6Mw+/1bp8RNtEh+iv7Hq2t/UE0m+uWW6az3Rl5epRqy2BkFI+7g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDFeOV4LQH9ShZF5qR9AZ4kdM2FYWKfdkC1wETzctabbQIgeq8PJv9D9l2baAMNZm0wX09o/SVZH76v9P8Zr+JqHIw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522432314513_1522432327980_0.3120213944422736" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522438832236": { + "name": "puppeteer", + "version": "1.2.0-next.1522438832236", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "dde45faaebd4232ef953622a8e1e07e544cf64a8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522438832236", + "_shasum": "010603227b88be7c269d76fadab7d9052d8422e7", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "010603227b88be7c269d76fadab7d9052d8422e7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522438832236.tgz", + "fileCount": 52, + "unpackedSize": 274218, + "integrity": "sha512-+m7niMJ0yYJBaudRIbhYvuqZ30NjcfqR3I1gIfSdZep6Jrko3EeuDXqdzTJz/CmJbLs/a9tTKPsrNIliwFyyTg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDAhTQbyKMjV7gACVJGddMo3lGbPXE4oYLIc6jTktjiZwIgMBnfceKZ8gOBxyLIoVHogExGc6UOWm+2QJ/dUJFupP8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522438832236_1522438846165_0.4596709835105084" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522776506144": { + "name": "puppeteer", + "version": "1.2.0-next.1522776506144", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "f51a315911e3f9f28b238662630416c49a079a02", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522776506144", + "_shasum": "a178ba501b31fda18ed4b1df9c380316b31d429b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a178ba501b31fda18ed4b1df9c380316b31d429b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522776506144.tgz", + "fileCount": 52, + "unpackedSize": 274211, + "integrity": "sha512-dBfV2NbxBlPlt31lJGcd7RYHBfHBqmBH7mmMlnejRc5a/EvosOibyjuK8MdAFJmYrZOitGk9I7r8buLYUkuNlg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIF8Rs6nDuRxjUqClMlaiXR6aVvf1KEI4AjJy6bSbQ1jxAiEA8zMFrbVXc/JIfyiP3YoeXflyOZn2zrEVr29OhfwWzac=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522776506144_1522776517837_0.8347171693250854" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522793255797": { + "name": "puppeteer", + "version": "1.2.0-next.1522793255797", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "94c32e4bc8aedfef48c7ac12cd476bf5524346d7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522793255797", + "_shasum": "c80228caba178efe95adcd38c935791f7adbf16b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c80228caba178efe95adcd38c935791f7adbf16b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522793255797.tgz", + "fileCount": 52, + "unpackedSize": 275282, + "integrity": "sha512-Ot2+hzKg5yJXXSByw0QCqC582xODv2Kl4VQW7MT6w9jbGOePi+UxnhuOijdAlcG9yZ4brjPalhYvWak5gQ3/HA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD/4FcMwF3EMsDimY3rdJf8wb/eem1wnE5crH0O+ubYhAIhAL+aaVsUhkEmbDnd8ZBH5Z+K8j6Dix/JeTmZ+bw3n8pJ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522793255797_1522793266888_0.7177845426376825" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522794237544": { + "name": "puppeteer", + "version": "1.2.0-next.1522794237544", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "546920" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "f925158733109dc547a95ee314b1c8780b40943e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522794237544", + "_shasum": "0366b46b5e6b5fd7d18108b20721010b7d69508a", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "0366b46b5e6b5fd7d18108b20721010b7d69508a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522794237544.tgz", + "fileCount": 52, + "unpackedSize": 275282, + "integrity": "sha512-1Uo9CJgEZ5+XRWvIS0+X9hQp8mn08XMG60nCQl7urDRzoPwhbb3nnpzjtYD+xIoHIIfPj+s3CGpHG5dSoTvuUA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8TjDNhpBucuTGQAvLnqOMis+eco68KmGEzdAxMd94EQIhALOciLqh3jh4hW88VjG2onMvNE0Q8g+TgdYh6A+br88m" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522794237544_1522794250597_0.747168360021266" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522875517748": { + "name": "puppeteer", + "version": "1.2.0-next.1522875517748", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548153" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "98093f0763e08e6bcaf56094fbd5eb12b562d792", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522875517748", + "_shasum": "01993a1e73532af9d47d299f41e48db4d752b9ee", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "01993a1e73532af9d47d299f41e48db4d752b9ee", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522875517748.tgz", + "fileCount": 52, + "unpackedSize": 275282, + "integrity": "sha512-xblya0UCCumi7IE2FXqnSVLnjzFFoVPVSh7RofH+WJKQPP0vC7gAWWmxxTJSwaDhLeHngMEeDCVohNo/QwHeQA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDkmS9DLrTK10WUCrE7lMLdG50AgZSGdWGJvvZQci1iCAIgLduxg9Cat3Ir6t1FEEDv1LQYvOvM7VpDMD/pHILVYlI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522875517748_1522875532653_0.37207143558256517" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522875925576": { + "name": "puppeteer", + "version": "1.2.0-next.1522875925576", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548153" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.7.0" + }, + "gitHead": "3b88d0d7c9dd23b52292476c549cd82ab39b5348", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522875925576", + "_shasum": "283821a21e470da5a16f179bf0356880fcee52f8", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "283821a21e470da5a16f179bf0356880fcee52f8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522875925576.tgz", + "fileCount": 52, + "unpackedSize": 275417, + "integrity": "sha512-YTVcu92nKD/weS1xijBZbIdARFSkWM/rI3b52Ns7/s1bxj7uPcSKeQOARAsEorG9rxUTHr7spHmbMnrDd8uSMg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGXTV34mNg8yWx/3KL5DeYWGoqMCny/CtFCuUbGFl0WjAiBM6/IO+9F3VMpvWtsfd2SH0NOMZKOW/QQPD0jMmDhsGQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522875925576_1522875937755_0.7684799167624903" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522876116282": { + "name": "puppeteer", + "version": "1.2.0-next.1522876116282", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548153" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "23706188192ce1f616ae29b50010eb560ca29da9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522876116282", + "_shasum": "c1a8b6f722b7e0a8aa391153a39a711dd28ceec4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c1a8b6f722b7e0a8aa391153a39a711dd28ceec4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522876116282.tgz", + "fileCount": 52, + "unpackedSize": 275602, + "integrity": "sha512-rQqqYojAwNeCw5QSu7ByAcjJd1gUGOMNDyJ49QQTBZGGvoqL7634LDasU8wKmZO46l6r/kZ0PVgTkaKUhNQ24g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDwFfm0sFqgGx0MhLUAuFLge3FpWBBc4GRwcB/V/ry/VgIhAMJ3l+luyrmFdzE9oIUhwizoGKvs2NTY87o2ubNs02yB" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522876116282_1522876128502_0.41567068165690135" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522959058052": { + "name": "puppeteer", + "version": "1.2.0-next.1522959058052", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548153" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1fdd33886fc012e9550e09ed2bcdc306f9b758e7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522959058052", + "_shasum": "9db9429b46a0ec819a834bd69054baacf406bb92", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9db9429b46a0ec819a834bd69054baacf406bb92", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522959058052.tgz", + "fileCount": 52, + "unpackedSize": 275602, + "integrity": "sha512-xD22/UjpiadxiXDM6VRKmOCedEZPTh51qz7x1OctK046YKUPRXFdnG/w9Fsa2pC053gRqWyGG2mgQ7b6tK49kw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDVqviH8VZqhijxqIY/ny/2aLpSYEdxFJO4tPMGVXKqMgIhAND3PUk7A1GuxJMbxRdXkOmzBAqn7SHUMfpAhwB4Zzbm" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522959058052_1522959070629_0.03463783362912687" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1522996977258": { + "name": "puppeteer", + "version": "1.2.0-next.1522996977258", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548153" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "4663b43a622e921f9f459552f308f9418754486d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1522996977258", + "_shasum": "aa658809c421b1e928cd3b5bc83fd557787b28de", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "aa658809c421b1e928cd3b5bc83fd557787b28de", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522996977258.tgz", + "fileCount": 52, + "unpackedSize": 275602, + "integrity": "sha512-4aCUG53RiQ1E2LoC1ZvZdaAEPDqvdqyYczsYRe2M3e4ev7Zv1QDxNNsuD6TbiF9q3bx9S7mdvP/ZKsiyBKootQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHylSr7JGDLQbCPbINk+RfCRb5foJXy5/TdXgTBilmuWAiBEjc3DBgb7ZFy3KuTOXM7ACunS1TMChECLIz4APRBPng==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1522996977258_1522996995207_0.5633656352632497" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523056452461": { + "name": "puppeteer", + "version": "1.2.0-next.1523056452461", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548921" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "dfcee2e6311706a5719e47d2edbe22b4e8121b69", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523056452461", + "_shasum": "c37b441bad6ea49c374ba4316f2c83cd90d59c93", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c37b441bad6ea49c374ba4316f2c83cd90d59c93", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523056452461.tgz", + "fileCount": 52, + "unpackedSize": 275919, + "integrity": "sha512-v4sBy0Zf8BdXyFW0bSgRNzEzzMKMNgLgZV5ZZCJDryO35FvBOOW1r3M5lGyBWWzgwRjl6gGadBwJDIO76/S+VQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCXSsfYyWZ/2SylvcMqIIw4Q7Ee2K/fLQrJcWWXaDO+UAIhAMj5JFEYFWn6cvnMB0br6NsrLzdLqXd1BqJMtGYa8SJ9" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523056452461_1523056466518_0.4833627956687596" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523057899376": { + "name": "puppeteer", + "version": "1.2.0-next.1523057899376", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548921" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "35e34db19863caf9d38cbaf0fd801b22cd078a0a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523057899376", + "_shasum": "5fed03075b987c514f15aeed1e4b34acf0439e24", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5fed03075b987c514f15aeed1e4b34acf0439e24", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523057899376.tgz", + "fileCount": 52, + "unpackedSize": 276061, + "integrity": "sha512-f/AmHfOU94aozuE8al0CQVBKfGQdMrk2RdNiLssPNjB6erXO/Fj5mCQkb+10S/Lp7O9aKt8Bsj1fKNn5VJHZDg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDnfQ+mdV85HkI774VHgDpCxG2EMwvaT6GFgbXt/pTFrwIgHfa2RmSwmXRlqnayypkQ7gUuU23PPnpFLZ4wXJE1EfU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523057899376_1523057912785_0.47366111595993" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523064178622": { + "name": "puppeteer", + "version": "1.2.0-next.1523064178622", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "548921" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "8c54f41552b7352032120c95240f18f7191b3b19", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523064178622", + "_shasum": "b34fb1483c229ca0f94230896c3e6b551d67a48b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b34fb1483c229ca0f94230896c3e6b551d67a48b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523064178622.tgz", + "fileCount": 51, + "unpackedSize": 274336, + "integrity": "sha512-2lMVNOgaNXqLUlnKJQKgpDB2S+G94v3ViIYfh0JH36oub+DvZUZ6mHDbo1QVopP6utbC+SLKFyYOphmPyloA4Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID38m/JiHrQjLbKV+hsI7qub+lFFyPS2l8/JXyVJW11jAiBwLgB7lCIJRlXYCbhl6px+6VquymqPxTpnB5V7qGXZcw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523064178622_1523064189700_0.9217317183465481" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523088162996": { + "name": "puppeteer", + "version": "1.2.0-next.1523088162996", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "45d97e572aff1541a8dbf50f41ee88391f1a87ca", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523088162996", + "_shasum": "8b8bf528e85982b935f445fddb213089c8888073", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "8b8bf528e85982b935f445fddb213089c8888073", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523088162996.tgz", + "fileCount": 51, + "unpackedSize": 274336, + "integrity": "sha512-MLbtOqvXb+maKrSui5HmmUKrtu3QGFYSw+5AVwrVvdCfMJ13cYkbtZK/v+roQgy64wWod8/gsB0pTYrpgtbfhA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCYuot5ZsVTWaAFfDXL3H0EAYk2h29QcmUBlOmT9BGTGwIhAKyXgKPz5WMTvCH8a0ZJkqJf++EOg7yVdnKt/1AAoXPX" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523088162996_1523088176955_0.1688512996287821" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523149268591": { + "name": "puppeteer", + "version": "1.2.0-next.1523149268591", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "294f33b75c5a7c87d447816218438f56c2d56f0e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523149268591", + "_shasum": "ec86057101d7a5918565f86b4e5f52c337e6dc7d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ec86057101d7a5918565f86b4e5f52c337e6dc7d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523149268591.tgz", + "fileCount": 51, + "unpackedSize": 274828, + "integrity": "sha512-NfRKLLMZXpu4NIvTBdF3MA5STHR2W0fR+CvOA50VYmfuad7h8LKxUSP35AiwIfay+YeVgcAnyfGWnJYUfyIPYA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCWe7bUxEjU6230mqv7Y0x6pH9xxAWBCqifh8YQvZcpOgIgZivRhpfzd3olHCPKbnJer4sm0pCfIKQGXTrNtzzSTi4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523149268591_1523149281961_0.8395062915154172" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523149297195": { + "name": "puppeteer", + "version": "1.2.0-next.1523149297195", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "57fa690724ee3b6091754dee7411935087c1d0fe", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523149297195", + "_shasum": "518b015fdbe4a8a651f70963f814c78176d2bad8", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "518b015fdbe4a8a651f70963f814c78176d2bad8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523149297195.tgz", + "fileCount": 51, + "unpackedSize": 274877, + "integrity": "sha512-mBKulTYBWxy0OWhBEtAXoQAvKAuQ2KN3ijcmcf2Fywmk/irvRVY03s5X5rT87kPEle/P+tB4biVmMyxBlYm3rw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDB3wrzxVbEMhmjatmMcfQ3Y90tBxrqkN2NvCzoELmL2AIhALGo8zz9caMWD43Yhm1J02QKI2EwyrrlP9Bp0YXsbREg" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523149297195_1523149310020_0.0038404264587592607" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523149483176": { + "name": "puppeteer", + "version": "1.2.0-next.1523149483176", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "717d4a7ada6f82a8dce8f801a7136d15c3b17df1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523149483176", + "_shasum": "5f855b1645ad751218905a6b1eea51fd404467ba", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5f855b1645ad751218905a6b1eea51fd404467ba", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523149483176.tgz", + "fileCount": 51, + "unpackedSize": 274877, + "integrity": "sha512-PRNXP9Sc7z9Fq0HP5cPmxgCJy+Z+tTUMKgYZemqEq79/z4N5DiSwJRSiepc8aKW+SLveBUT7V2/gX4Wfil3DVg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC9STWlEcewSKtRlKyYDAYktvnXz5jlIh7wV0tQ3YnzZgIgQgJVWoazgsEMf9vqFUg9HAQWmal5Y8VnxEnKV+V7kRo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523149483176_1523149499787_0.8834209933047656" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523309842933": { + "name": "puppeteer", + "version": "1.2.0-next.1523309842933", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "a052b9e7740fdc6648ca5241614d10cc29e99fc3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523309842933", + "_shasum": "221f5903eeba24728c34e05d7f8cae4012ba8df4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "221f5903eeba24728c34e05d7f8cae4012ba8df4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523309842933.tgz", + "fileCount": 51, + "unpackedSize": 274877, + "integrity": "sha512-3Z5765pGeatOsY95DNAqHjeZbouo+dws3CWnE9vvxrnNyn+sHjze2pQnKCxxfiBwjobC4+ZP3LFurypDBGXMSw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHKlhue4ti9NvAvM/F6LgJw7aybjkSmQBrMyJTv9IBZfAiEArEehMXEqul5pfDm6isiAxHzqr04RRLGuCiBMinFUjFw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523309842933_1523309856879_0.48694968116882453" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523310677066": { + "name": "puppeteer", + "version": "1.2.0-next.1523310677066", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "c86c12e605bd963d72aa657ecc9d89629f5a8252", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523310677066", + "_shasum": "7d0590f5a8f8f656fad8823e155db92c51a57326", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7d0590f5a8f8f656fad8823e155db92c51a57326", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523310677066.tgz", + "fileCount": 51, + "unpackedSize": 275077, + "integrity": "sha512-jHUHdFVr//iwlj2FkL35fEOfy2PvpzIW2iAOL99i5/i5hAF88+jWnpb7QjJ0uaGnRPkurq7sHn5H2RJtpp8x8w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDDcs8+gHzwjvySNlg0orvH8orcmhTKhfvKecwmXmxXywIgSepjQijdTSBwaLRDZowgr9sFZXIcpL8wZqzo0bV/U9U=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523310677066_1523310689172_0.4568541816432212" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523314104076": { + "name": "puppeteer", + "version": "1.2.0-next.1523314104076", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "06d61919efcb3a169e101503ffbc603e4e8b915f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523314104076", + "_shasum": "d104cf6f1484cb24bf60efba935cbab2f4da9cb3", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "d104cf6f1484cb24bf60efba935cbab2f4da9cb3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523314104076.tgz", + "fileCount": 51, + "unpackedSize": 275077, + "integrity": "sha512-cwmQ67gCXk6Jbl3e2p/1ZLf7tCx3Jj9P0/OipJ5vrY4Sidnaj8lU0lb+rSd8RiDurYgOPVKBYzed06kz+e2ktw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCJ0kU+rn9jC8KQmZhZGSzZ2UDOYHjvkCK4fQhSK7WC1QIgAPvsThbW6z7uDdK78t2eV4hYhhuwSVq7NjkTmZLd9ZU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523314104076_1523314116399_0.2215185320341604" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523317263232": { + "name": "puppeteer", + "version": "1.2.0-next.1523317263232", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "5d106f79d8a3d92d2a854cdc8231c14e03748937", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523317263232", + "_shasum": "c4d6c40fcf075dbef90ccf54773ec7b91e255dee", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c4d6c40fcf075dbef90ccf54773ec7b91e255dee", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523317263232.tgz", + "fileCount": 51, + "unpackedSize": 275077, + "integrity": "sha512-KgTCAWWpC40jDrUcZ4ApjTOj/V69We9th6bg1X+253CTN+Ma/AlDwJqHrMUaPFpR5ct10ndndyFuZHGk1pxSJQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG79mugTKQU0TAeKhC1urVOeQSw7SVxq9q2gKYNjzwpBAiB+dAUTx9uP/IjqUEyLu7Y9YwMNBaY5GGaAowK0bopoHA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523317263232_1523317277268_0.10584168375686498" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523336680826": { + "name": "puppeteer", + "version": "1.2.0-next.1523336680826", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "c5902de5d84f619cd5e4ca81f5fd1c30889c6517", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523336680826", + "_shasum": "61defa878275c0525a7ad8b9e3aef78ac483bb3e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "61defa878275c0525a7ad8b9e3aef78ac483bb3e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523336680826.tgz", + "fileCount": 51, + "unpackedSize": 275168, + "integrity": "sha512-9XmrOtncvN+GiwEQFAXGePMJetUEJOVS0o9zBiyN7i5bGlEQb+Xf6TLM2qPQEYttUclcIXi7leImnODohd+cVw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCdsxi8VU+jpPIBvLhHhp8jeYUd6U71tljLR9g1gJ1SGQIhAPtKloQ1wXtS7xgU3uh5MA5XI+RhDOLJd2xFFm/XPSIP" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523336680826_1523336698196_0.09459833695396247" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523338363805": { + "name": "puppeteer", + "version": "1.2.0-next.1523338363805", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "2b95774af97cac778387838715e955611e49a5b1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523338363805", + "_shasum": "87fe68edd103389a049816ef56022b814d178eb1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "87fe68edd103389a049816ef56022b814d178eb1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523338363805.tgz", + "fileCount": 51, + "unpackedSize": 275168, + "integrity": "sha512-M26e4d2Gvg0ldrZ69o4kkiERj/dgxpCHEuZuiX1S+6v0gTeZFTY2HtVCo15y8Fl8yQR0L57jTyFJIoOEWGBJWw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDF/BlUwXtJtgBBfUKG5RMEOSk0DJIMDmnCfQjMUsRGiQIgbh0ASyBawHqoaWjnJhSMHuOoITiXdwScXQ093XyDo3A=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523338363805_1523338376396_0.8251565517970452" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523342502622": { + "name": "puppeteer", + "version": "1.2.0-next.1523342502622", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "fafd156d7bd9941131ab31f5af7cf047e728142c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523342502622", + "_shasum": "bdfa63906d5a384eb02e6877c056fbc8082b59eb", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "bdfa63906d5a384eb02e6877c056fbc8082b59eb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523342502622.tgz", + "fileCount": 51, + "unpackedSize": 276261, + "integrity": "sha512-lrfHP+Sc/VfBerEwEux98m0J/kcLnEZyoomBfW1lYsu9NolXdoWCmAL3YSlkYPiP9/xRwdy4eO4igDTzGFsXkg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHYt1zsnESQmCEqckftlLGseECKJG8yyQfXuaMDPM6ebAiEA6gJ5fuXJHfxYMZMet/PfpS3XlosXYqOeXyMGcGtoVRY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523342502622_1523342517465_0.3668963884527321" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523388455344": { + "name": "puppeteer", + "version": "1.2.0-next.1523388455344", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "beea6f9c829928f472b1dc78e805314099bd5658", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523388455344", + "_shasum": "aaee5080fdb09a6ced9cae7f1f13d1fe13faf7e2", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "aaee5080fdb09a6ced9cae7f1f13d1fe13faf7e2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523388455344.tgz", + "fileCount": 51, + "unpackedSize": 276261, + "integrity": "sha512-R+G6VGHKXvVwz353AVnMsvHvqE5TXMWt6FK03Y8hknY6+rgRI6gyYcg+avxm++9LwxzIEMT3b+LuGXUxg1i+XA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCrauMhVbnE+XTOmzDPYc2zOyW2ZYGmPMj9cjlsAOrM7wIgXr9cFfrRv9kHGnnggK54/TCbVeUab276AdK2CTXz0T4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523388455344_1523388467739_0.054867659057101115" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523394876742": { + "name": "puppeteer", + "version": "1.2.0-next.1523394876742", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "5089d2ec2e6652a04f6d01a8beb813857dae35ca", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523394876742", + "_shasum": "112794cb1b6133ab5a0c4df938e0bf1f17245f66", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "112794cb1b6133ab5a0c4df938e0bf1f17245f66", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523394876742.tgz", + "fileCount": 51, + "unpackedSize": 276438, + "integrity": "sha512-z66ybT20qpAnxZUqqjfXyZ0+kql4MmVKOyWVpsZVq4if9XDEo16Cz3ZO0shDbGTRoPtKZHubMaXSZPP9ivZodQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGd/Sb0zZVYgqg7TJ4kpaDxNeLd0i2sFb0yLxWkBTNXyAiEAkKSEw6bK5HAOdpQ4EeKa++z14tSz6VZPb+K9ZG7DnDI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523394876742_1523394888211_0.03224183508825429" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523401321974": { + "name": "puppeteer", + "version": "1.2.0-next.1523401321974", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "a7d59b587e6b8a180f24b8275ce98c63da58de91", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523401321974", + "_shasum": "1137b4d825a20fcc4e9d143af97e8399f664caff", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "1137b4d825a20fcc4e9d143af97e8399f664caff", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523401321974.tgz", + "fileCount": 51, + "unpackedSize": 276905, + "integrity": "sha512-9ZOI0onzkK0cZ7WyIrqaab6Pv1+ZSOdEjW+W0h3g/HdO+ArLd1LbU7QS81yWqPtUDKCj8zzu96Jc84Y5mDP+Mg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC4b9bSf42bTLYwyI9muZx67bQoYimYqqSP+thuK9dsuwIgH1jNq41GpWheyDprdArESqiI1MTgVcBOGEbVSbJuXEU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523401321974_1523401334428_0.25349864322039206" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523408878908": { + "name": "puppeteer", + "version": "1.2.0-next.1523408878908", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0b64242f850f16eef850180e7583c3b13a44e2eb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523408878908", + "_shasum": "a0df9e99db84b817df451af17a055d4da20a64b1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a0df9e99db84b817df451af17a055d4da20a64b1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523408878908.tgz", + "fileCount": 51, + "unpackedSize": 276905, + "integrity": "sha512-fsp2ThxTKxfDwZs3IpiOiFd7e9RfRxuA+hA5tZQw5PYRnHV05PBzcwiygNSaNf/VrkNEx+X3k1hNTJoH9fqu3w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDZ3LjksxbM6uTWHfJs/c0W234MmhoQF6BMqw9cEs9q8AIgGq496A1bLhpXOfxXstqdoYNW1KKlnz2OtvN+dx3yLWw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523408878908_1523408895735_0.050634705997591345" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523416053090": { + "name": "puppeteer", + "version": "1.2.0-next.1523416053090", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "18f2ecdffdfc70e891750b570bfe8bea5b5ca8c2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523416053090", + "_shasum": "1ad6eb1202a50578eb41f02197506fbc4242f0d0", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "1ad6eb1202a50578eb41f02197506fbc4242f0d0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523416053090.tgz", + "fileCount": 51, + "unpackedSize": 276934, + "integrity": "sha512-U5Hcr2SisIKf3uDVaCsrfqC7ho0EDyzhqlBO8R3mCjRlykfpsSHSkDi9qhV3Ttxm4ayV6Jth9XX88ETU8pa08Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDy3Ni5tTdFQQoki5TM1SHG68/1KIlKnR+3YXWg0LfSggIgZqxXsjV4KfulPeWtuFXOGwlKKKXVUJyUhjiFpiS9Rt0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523416053090_1523416066050_0.41831254135712026" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523417075075": { + "name": "puppeteer", + "version": "1.2.0-next.1523417075075", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "f8cba455ba5d1bc82721e89fda037e86213b02cb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523417075075", + "_shasum": "93930d56900d3a9886b2cd5f0e94a5c9c87266a0", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "93930d56900d3a9886b2cd5f0e94a5c9c87266a0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523417075075.tgz", + "fileCount": 51, + "unpackedSize": 277172, + "integrity": "sha512-EQU/m1/kUg80aRRTn7RpoyLFHzBIT4XVRF6ps5aUHagIpHGoa+tmqvjsNRYJqhrn8iSqiTJFLLKfReU3IogsWg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFfgVRzSQsHKDnnOZHcPg7QpBitj78F4EWRAolLHByxtAiEA3NCj6ZQRz9j4Qz2kKK4L7ethDjS072K6cWIoCdcXMug=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523417075075_1523417087210_0.8713199773876306" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523485686787": { + "name": "puppeteer", + "version": "1.2.0-next.1523485686787", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "04991ad025d84ebe2ce3f62b871f41bbd3badf2a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523485686787", + "_shasum": "a5b406ff86e489fdebbdf07cdfa55fbbd1cbe80b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a5b406ff86e489fdebbdf07cdfa55fbbd1cbe80b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523485686787.tgz", + "fileCount": 51, + "unpackedSize": 277172, + "integrity": "sha512-e8oW0SrnOw9YPiqEGfy23oN8XumeI6Dbc2ccY1280Ei8pVEk4IT5CXgFgk7r4xYK6qzA3qzxYFzo7Ye1kFaSig==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCutvHp0bb6eW+DlJAcRVSvySwNctbGqxCmScdoQhJWWwIgAr39ZjJDHuQRD+lE6/hyhdV2zMIhns6VQhA6p5xAX+o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523485686787_1523485698935_0.40418530104114847" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.2.0-next.1523546977615": { + "name": "puppeteer", + "version": "1.2.0-next.1523546977615", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "98bb2615adb6815c91efcc59593b49e2ec8c3935", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.2.0-next.1523546977615", + "_shasum": "7a67aff35f5a324fefb232c50b0cd05577f68f85", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7a67aff35f5a324fefb232c50b0cd05577f68f85", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523546977615.tgz", + "fileCount": 51, + "unpackedSize": 277326, + "integrity": "sha512-/f1zfwy+qFaAQXjNggdmbKrRoL6NzNICin6AmNJP1M8gsss23FBKGvf2ofFHRtEXdZ9NEMULrLEe8iyZEP5oWw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDAFSD4N/vpaRo1dILpuXYwvaT/4+qSJM44EstOFiB1fgIgMVWJCspYLPOeCGt8YSN6SvyA8rw69Q2jvJ+BJH6RXsw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.2.0-next.1523546977615_1523546992701_0.63759669445466" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523592878900": { + "name": "puppeteer", + "version": "1.3.0-next.1523592878900", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "bc8bd1904ef8993f9b83d3bc266caf9ab1f1d874", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523592878900", + "_shasum": "6fd31eb1e9391801f3b564c1182159b3ddece4f5", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6fd31eb1e9391801f3b564c1182159b3ddece4f5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523592878900.tgz", + "fileCount": 51, + "unpackedSize": 277326, + "integrity": "sha512-eZv66j0wIPnI5RrgRz37nDQyNDg5nRGREq/x5P++NB7DCvarn62wybE7FQjdVa7gd99ZyYAcHrCUG07YWkqgQw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIENjGrVfFoLwBBp/yP69tJK/42Y/1A3c53wWJ5RC3V+cAiA8OUxNgPVVvFASmppwFHidkXYKxxLrkJciOk6rH3kxYg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523592878900_1523592893508_0.7765713830264649" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0": { + "name": "puppeteer", + "version": "1.3.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "bc8bd1904ef8993f9b83d3bc266caf9ab1f1d874", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.3.0", + "_npmVersion": "5.0.3", + "_nodeVersion": "8.1.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wx10aPQPpGJVxdB6yoDSLm9p4rCwARUSLMVV0bx++owuqkvviXKyiFM3EWsywaFmjOKNPXacIjplF7xhHiFP3w==", + "shasum": "f571c5f27153ca164a8188e6328ce2e4946878f3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0.tgz", + "fileCount": 70, + "unpackedSize": 563523, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5IP8cPnZMZHjK8Ndv8iA01T2vb6K48UaC/HNv7BIRFgIhALuGRtPb+gBRJnRhK53Navzq5NbXT04o8cwMZRCDBWhK" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0_1523592911851_0.7518893780969733" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523642474853": { + "name": "puppeteer", + "version": "1.3.0-next.1523642474853", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6f4a52bb2aa3be2f7c90e15deaa08d8153876e2b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523642474853", + "_shasum": "cf162dd667ad9f70975cfc1e1de4858bf9ccd1b0", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "cf162dd667ad9f70975cfc1e1de4858bf9ccd1b0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523642474853.tgz", + "fileCount": 51, + "unpackedSize": 277326, + "integrity": "sha512-xjhgugSjJa5X1BHnaFMC5MUXpVv/XW5OKmE5NhPWHEUNgTdlIZUIZc0R1r11pALvdfpGnzZsm/pDHlVsNnq2CQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQChp8wlEXczmIuG8EnEcsfOH4C1GoJWmK460UDzK6KuGwIgRPB2SaFjKuAfG9/o5QodTvQqCdqLP5lVqsON0ta0r3w=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523642474853_1523642487574_0.005171807687216257" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523643903145": { + "name": "puppeteer", + "version": "1.3.0-next.1523643903145", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d244fced434b5ce1b290451288357f27295b0131", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523643903145", + "_shasum": "2a38823d5554d018e6ae473fb005d93a2e76773e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "2a38823d5554d018e6ae473fb005d93a2e76773e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523643903145.tgz", + "fileCount": 51, + "unpackedSize": 277326, + "integrity": "sha512-p6OxAV8QCp6DPZtC8alvQ4V2Y/yO/2dJS9hfvzyfHMgYS9mXvEH0uGut83QQFyYlkD0gcIzldEeYfdwXE3v1mQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCbYagXAD0F1RTsuJjMa4ypja0MPi3PEasIs0JKVAa0pgIhAMxueWsOsY5EK/AiM5/X+uo9PMcUhTALR7f2QZ2om1iy" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523643903145_1523643914435_0.44015500502985927" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523903632662": { + "name": "puppeteer", + "version": "1.3.0-next.1523903632662", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9a22f64257bc30fa97386b72019ebff004f85761", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523903632662", + "_shasum": "86952a9cffd2f6f24f66d630db190a133aa97c84", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "86952a9cffd2f6f24f66d630db190a133aa97c84", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523903632662.tgz", + "fileCount": 51, + "unpackedSize": 277376, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1OyfCRA9TVsSAnZWagAAt8oP/14DZIOAgkCXxv7bPzxD\nERQxLiIpl0fSttsQ8Caf8C8WQ6b2cMHzpfwZVt5IAx2Ji7cuRC4tMnfSKvjD\n35UXKjtuem3sodOseRfjndEkfyJiF842WvQj0tNe5okcrJIhr2QiBjArg0JU\nVuSFmwA4IgM3OCy/PNRE4Gs+K4XORMhNpwPm5SaMxm6MHsNjnUaZXCvMogU3\niI+LqUC4j3W7AtRxNeDEGABKl/jZ8VJVQh+w3/D3E4kr4VO1vznjfiDigTfV\npABhgqEtFr9Unidu0HRJ/W1lROo3zYR430cW0ycsgJ78NFtHCBoyM7zsGIOl\ncgjWDbk9ce4PIx5WF9+S4p9b5nuN6kqPR7ppkYAl5LO/BRYIgegf4zqxkVdA\nK8bztGid5hOtkxrUWkzlEMyNndw4R5p9W89GbmI5rGzU2iHEpdluag87BrMw\nrhmwpycrouo8ecRIl/OP5wnUCyr/EbtI5xIVl0yP8664TXU+Z8Uk4CRZVWBi\ntt255n/aW088TefXphWX8bpas3em0HF4pCiQLVkZ4aLg/zIzMGvczbrtyh2C\nbTsgXI/ptVJ3QJB5dpGI6DttxGs+sWCmdEbrq+HRF06+tkQjWfvj3Vkep0UP\n/SSd7RXt/M3b/vZxDjQRPRnHO8NvhoP4I84Vsyr93QwCMaxlqOcz/YhdwNPQ\nVJ/w\r\n=IcVq\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-wrdij5BmfPVRbLV/cMgbmAE1JJQsN7vK1LzjS2w2EUMqQFmIV6zcnO821ePbs2eoScnfB5/A+tqwH7Ui+iQmPw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC+d3QR0dwZQAdSn/zWca+91D7BlZfgwtmrMpjKDigr5wIhAMnsyVdgbsK+Oq+PnxYwZY/NFGpsRvb++3lxwZGfZvAD" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523903632662_1523903647096_0.20514375546575359" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523922910902": { + "name": "puppeteer", + "version": "1.3.0-next.1523922910902", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6eb6ce0ec96f8c888f274d21eb10ce79a7bb9b99", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523922910902", + "_shasum": "6aa06b3f9edbe71c9145cb0ef791ea912a855e5c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6aa06b3f9edbe71c9145cb0ef791ea912a855e5c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523922910902.tgz", + "fileCount": 51, + "unpackedSize": 277376, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1TfqCRA9TVsSAnZWagAAqrMQAIHp3J59mESj6fetodcI\nrsy/XsFrlgm6ggXu/06vtUaZLaMxf6eOXQy8wI9glcUbcsgoBe0T85Suje99\n6VjOYwacastvFLmsAAtJwEeVMXLcOkXp3mog2VcaN5ZRuZWZVQPRhLDncYDe\n74m+MV31NxhJILeKvRIhITXdU4WAkexRIBkN26XADrbSDA/6009zzxSAjQc6\nrjGoWhytPiPl/bs0qw6Ir6Bbo//MT7ExrK6xJE+0khp4UC/6JxDQmC92tdlj\n/9y8r2PR/8qvf1ZS33vVStfLp/0LSX5tdzLR5YALss6xYdo7RU/Jlm6bEI5q\nZuwOY13IUBV11VL1F7dqTIipEgNsCvjQdWfwbNhxPA/daKfnfwPvJay+zxaW\n5M5BzXL8kIR9+bx1p6CVbshIupBErdTx5WmP7BWMy4ha2UNSulrmwymmrySt\nAYi9KgsuPJpXkef9ewmMOZ/ubtVvs7BWyPK3I+sV6Hv7JzIapB/HcPhtxr3/\nHTIjlq4VWmm9u/Vab6kjfAu1jDRlcUAvMiITVLHu3BAO/Na+BWQNrok5Ifp3\nZU7NyqU3MnJdgzNnbmFHGqFxEhxJztcq1BdY6nlFh+ngHkXAWwUjr8pswObV\n9DHL1IuUM94sAj2r/+QLTBbTNMRl9rDK+0rY7df/x+HdQccCyyeE0zTckIpq\nvyjm\r\n=N+/a\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-vZZX3op2y9yif4nsG1GYOtWGutAfzwPrsp6So8dS59/JjDXh1+YvoM+YpUpEAEOMwvulEQii0M4ybSfaPt1txA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDHa2l4YjarcujX4xn0bA2PYzoDh5iQIPEFzBzsZFx1TgIhAPjxewhFvwo4Q93baIY53Jf45srVHB/TKE0mxjraIgx9" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523922910902_1523922922377_0.834112055733742" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523986823398": { + "name": "puppeteer", + "version": "1.3.0-next.1523986823398", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "082b11aa572fc10a0eee69a0f5c1680e9a9b28ab", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523986823398", + "_shasum": "67f9b03d34d635666d8eaabfb7c0e8ae86f23b23", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "67f9b03d34d635666d8eaabfb7c0e8ae86f23b23", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523986823398.tgz", + "fileCount": 51, + "unpackedSize": 277653, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1jGYCRA9TVsSAnZWagAARNIP/Rm2BFgtFwYa6l8Enqlk\nkfQbkJb1zir1dtwdx34hntKNNgOnby68OD2zxMKViBLssZ9ektUel2tgOcQh\nXo3oS3GX2VhFZGVkl2Kxg6Xb2zL919ly2PnPtAylwPxs/39ijaN8j0zwbJd7\nl5w9JBBSVhVzlVrmIMj2aEs6teuH35GcLf0bK9CqvVvIEoCE+MaruXM0zgRN\nb0rWWbZs2vLD6bRPq0SnwgcjLwiQhSWPMCy/9HwIFNePjz3na5suR4Ba0EmN\n7ADOqFxTZ2daDyVd/RpbCvwwLZvam0w1mf/Cxc9GpNKRme6+/2rk4AK8NGVs\n/e1RfuOTgMw3YYhBuKBpB4m3DehVPdxVXtmi3iQmq5KS0OERL8zxUR56L6fC\nXnlgikHtmnI4afZ+AnZ3KK19egtQjJfPEavDJytFCukOqOe2IaYTeNSdVPfk\ngUh/kkU1O7IEIlbLGvevwcmqpeYjKcfrOKRAbVjV13IB/j397Qbjc+QEBLT7\nE8ybhq1X5u+5+OthZ7utrt7Uj1sxltkwITYTH/2J3ic/QiQhQvPBoXfprMAw\nOKwO3ZkoTrsko6NZlY/flDSHOKvzkQNBDIW9pGUrkTzBZWTzkrf9ixtohtQ9\nVujsALRW6oXqcXBB9sW/ESKRc7Rq3WSEpkmOLv3F/vlrTJMx7meedqMfci7D\nemDF\r\n=PpKy\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-O1TCACIfxnJ1laEX2TKUm6fibFzcWEKORZK8ta5wHnGCxofF+9BI9cuXmmfhyT8pCeujSc5JZPRuSSkh3QhHCg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDcEsYkhzst6T1Yd6Wi1fpskrgos99L81FodBwyPA/3zwIgO7RING3h0rknlKC2NanFGlE/eUbuvlJZDYlMsFtaL1U=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523986823398_1523986839922_0.8264640645832171" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523988011170": { + "name": "puppeteer", + "version": "1.3.0-next.1523988011170", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "549031" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "62fa3bc81ed473efba1841209e5898486361864e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523988011170", + "_shasum": "c43d42dbd92d5523e454b844eb01fabb6e8b36d1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c43d42dbd92d5523e454b844eb01fabb6e8b36d1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523988011170.tgz", + "fileCount": 51, + "unpackedSize": 278128, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1jY2CRA9TVsSAnZWagAAzHoP/3LjH5MotjBfE4H7mxrK\ndf2sEVv4u8jd1/EzZCN2XZ82KGI5xfLcw35tJDgHxIeXOxqzAMnwSEqs9xzg\n3AEWnml0dOQiPjk69Vh9jUNqLwuu5KCxBW+QENQtpjyhPqgCRmdZRqUe8h9A\nSNnF/54J4ZawfaDK6mOaaoNEXi8CU/9OYweDGINkS/bicZfxlKvceN7R6JTY\n83CPsH0q9/sDqet9+WWLYKnjqEFUA1XjbYQPJhqcEuyELi/YGnsQrz63HHcT\n8AbI027/hgGG2nLEjcQAU4b4PHCmOtAkgq9KMN6soFVsRfw0Ir3NyZ98KTuI\nBdgRo4b4Wxe6zPy2f61q3nQaLQAsifhKkIrgu4YAVQtin+8ZIPs+oqZ3YJe9\nZV+Mtyd9h8S1Lq6VRXWYx5+lcYlW8ejxMR7ZtpFlo1ReibRjDsh5SWZTcZ9q\nF8owvCe5PHyq+jLQwB4gxKCFhCWn3uarx0HGp5umhdiyly8ERPGWXzctdy4o\nCGt+dtBJqYZcss+5zMZSwVoPw5C8+FKxbssGEVJa2SFb8zovmW3mZ1aX6Sl6\nd3jMcQOnlfWisSgPQQP3Rhj2z8ZnaP2MRtmzznwdEY9nixlschPOZjbjCXfZ\nXNugdgMbHzU7P+8inbwc+rbH31/Ekoz0v9lse71/M7Ma4YNxw8H0bZZSQ4z6\nt/cY\r\n=MGU+\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-pduxA/mN/I6HTZfoMO+r/5AtlMezUPm9vHCwI6f6kbmhXe7/7fK1c/IUg6AUllPdPfxBhUpne4EUn5feBYpSYA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDL0DBLBF1pxa1f9BS5lUh1ILekf716hNEZeCNU5oOopAiBCehNGWq0tc91PodJ5jd/M66yO2aAEcfhfxCtz3B0QqA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523988011170_1523988022505_0.5209346292017618" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523991031219": { + "name": "puppeteer", + "version": "1.3.0-next.1523991031219", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "b40e381f654902052af8d57a833f80aad11c7458", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523991031219", + "_shasum": "aadc3d0a04cfa8dcbde8881bd221b13fccb5b98f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "aadc3d0a04cfa8dcbde8881bd221b13fccb5b98f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523991031219.tgz", + "fileCount": 51, + "unpackedSize": 278128, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1kIECRA9TVsSAnZWagAATGoP/RB0CqrPPbwyQm/i0Uj4\nneyLELVNU/lJ9z/mmeaQ+tFRrS824gMhGafqn4R55Ex5oDAMzCsXxdHdD6+6\nNrKpF3V7QatZZzmY31GG0yIYqKfyU9TKL2wYj9GZqbbTQ16LXyCT3SocAVPp\nN71+oOKG8bqiSTJaHUfHM/SYeUipzGgpFaqGi+oIMqy1OV/ZnnOo/Zz0lYZ3\nykJY1HX+7XBwvcnWsLodQpJDk4IO3JfGr9jmLGpwyIsMkJKrPYC8j+rcmeN4\nPuB85ZyNZzXas041jX2Kly5yNcVHXotrmy8dKDNUtt/LB9Vn7pZBTN7UMFST\na9meK/dmY+uyUGQHAkLhA7vF24oUeXrl8RIbBqsbJGuUueWtjsgmW/iFBhMc\n0egXDLLnCJjPMeHiFuMxW6eXqzgtOoW2n0hQff8+wSpGZTRTlc6C0UzA/JYO\n6/nGJXfO1yWbwulMFONmytmHQhGpDVR55Mv/tje4XVCjW7ur70Ys725fdWvj\nvBUDG8rcqDe0cap/HSeymj5x+Sti7P2ujqCWQvyPYug4u6sF4/25Ke4WjuPf\nsAgXIm1ECAPEiCIuyO2YqjEpCRNl9EMz/iWH9LMsNejAeqeaZWsKhOwbU8wY\nhyq2HYh9zB3D6RChAI0xFsqFYegiU4W0w4yO165T5/30PF+rWIWCsgGeffEq\nUysB\r\n=bjen\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-FFpVc+taaugpyIpiLJFu80XI1sR4MRtqPCuyY7ikNanbys1tJhIHxhmNwJwrcBZ+1PLQ7oKIG4UNIECdDDRBjA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCignhyhPmnyBLmX/NHZcJdkPPGMmzWzBp81P/AYPrOkgIhAIqyP8BQPiZNkqDHPUtQZeF0vwlr3x+Zw99icMREE7L7" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523991031219_1523991044274_0.17193320042839155" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1523998304267": { + "name": "puppeteer", + "version": "1.3.0-next.1523998304267", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.8", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^1.3.4", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^1.3.1", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "ed4be10ae317de0ddc16f00c9f22e963028634d7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1523998304267", + "_shasum": "8b5c54d2ca3c572ca9671e6484864319f950389c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "8b5c54d2ca3c572ca9671e6484864319f950389c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523998304267.tgz", + "fileCount": 51, + "unpackedSize": 278131, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1l5zCRA9TVsSAnZWagAAdtoQAJdqG5Mc4eArZtL1nRsf\njbqamfdtAx1HGi27PHU1Lj6y3TVag+r9wr9XG34TDv7O23vD1rEhHdwPpKCj\nlh7z/c/sjZtz4+J1g6onAIIpbtMVss0D79RibY5yZ0rc3OFHbA2pzeQiRnn/\n/ri407BQ1r8d1VM+E6lAm9R7Ild/fp+VSA/tH41OV1YmKO7uuUrAWx9bqjZG\nxUm0HOK4c8sciZcLTXWcUYApMeEIGtF1xAYNKp3LlmYZvXBkiU3rj0jUKt8t\n0snKZ/KUIF2eLjUWuuoXx0k8vC74XmbfDjJhtxEPbtzmnKlhXwiPDvoUC8QU\nsaDMfqu3QInGkZHqK10abd2gRG5/EaEdEXs3/x42LThvIrRp8pufgFIFGc4h\nTNZQdhivnGy5qUNg64hfrWxMOtyFZ3mVxCUuURtng/pq//enVf/5jA0+/bwR\naR7tgcWxW16iD4SuBxzUxCXojbJXJLAiab7OKz2Zul41NcO8clWkQiydoUnf\nmFXEMIGcb0LCk6DlpYQh9kSzuEKW/eqT35hpDDNB4vq2peuqb53mHmDp/6o7\nlPN5UNPgwTOF81576cPijJszBN7A50CQ4Wf1eh9eZAOAvv7fupSxm6Ep6fjr\neuR0HHXd+aeMnEXl94n3oWefVBQj4dtGuZidku5L2oZhYTtH1lpNNbnIOykS\n/afQ\r\n=WLt3\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-EN9dB4mzokZ52qB5Ekbp1ljDM7SHsbBhwaUmMUZ9iPvUQS8zFFSTHc8GkFnD1W9iT0e1nIOHfLKva95MDaSfBQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCNytUjagQff/Tif9aIbs3yT9BABoNwt0/hM9evmZjkqwIgcP4oLuZuhf6mVfznVO39vuTs6xVA5o63tP5G+B8SpvE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1523998304267_1523998323195_0.45291864392807524" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524002007381": { + "name": "puppeteer", + "version": "1.3.0-next.1524002007381", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "37cc9f567d9c2d8da1eeb630d13202e95a48cbed", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524002007381", + "_shasum": "7ee6665982f412c6edae3098d5ba56c74b99592e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7ee6665982f412c6edae3098d5ba56c74b99592e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524002007381.tgz", + "fileCount": 51, + "unpackedSize": 278132, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1m0iCRA9TVsSAnZWagAA/VwP/j9dFM0iw2GUD4DxpKbU\n6q+m8FETQgH6SsPzKKeG7Kw5h0q1uDNvlR6hdcbhQApH+hu4B0DVQm9bHYwr\nFy7SgC3y5HVC3k4LOxenNSUNCMjsBVLN5IxoGz3IudwRoB50ZeOqm6zfFLXc\nS7Jubtas5vjkFXeck8USKtw+y0hLR5CSxF92tr5ykIwutULQD5/NVawmUgit\nXPqUPWC3Qs6LpvMPWnHmyVT2jrR2Na5dLkhltEjc369eHMqiSLNUVQ1sLlx4\nGvegUbKEiDYGVGX6S4e+PCV+tF1Qc+HsrCzug9318rkFHkn9GSc+XzDSXZAo\nCzMFheRgTznwXogB0on6Q9+lIoHZG9N+bKgg7QXFQ79vj5pyv904h+gMrTv5\nW58AmYjkFQTLs5J6rOnPXbbNWpH2vj2CCWkl6yK7LPohgMWPAbD8/lajXpKA\nWPBkss7YIEZG9CIW/T+FgUzy/pYk92nZhKwKBiQ6vwWbEwITd/ifFg8Zhx3c\nkhC8MrJi3jm1ADW3ilnRUqgzHIxeHDHN3X3rh6muIREjHSGJWh8dJuIYxQPe\nBsrVlDZEjY3TBrYK1XtwKxhprp/PqR/aV1QkSmqGG8GRFJg2nGQ5VwzwGIvK\nnnb649T62V7XRnxV1GShjRq3RKUEgVQs2073QmtJKZR62sdSmFhL2+na1eMf\nLv8b\r\n=SOD+\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-hIWZ7FKkl6citURAwSxlZKzxexSkTKJ11wwOy7RpzhIPKTw/ibGLTDbZ3080GmD9B/rQWCRs9OLn8UYcGtRkgQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCmBIrPr7N6yVj+QjW1twwd05Yq/TVfhWbC9pIzQ6qYAgIhAJVNrNF6JrxVQRtckqYVQXhABqBqYnHMwKJkh90+LfcE" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524002007381_1524002081825_0.9000779684230873" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524077854221": { + "name": "puppeteer", + "version": "1.3.0-next.1524077854221", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "457592308fc97059930f82dfcdb26b37e33cc018", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524077854221", + "_shasum": "43bbdc9510c06a9deeb327b4a22c2e4692c36ac8", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "43bbdc9510c06a9deeb327b4a22c2e4692c36ac8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524077854221.tgz", + "fileCount": 51, + "unpackedSize": 278132, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa15UqCRA9TVsSAnZWagAA3/QP/1QbwTVyvpmEA/WDgC56\nPPPW49AZs/cJeNimejWlOmpwJ7VyKYI5sOkKGClFNd53uPBfBRFpuaFR+FOZ\nh6+irTkiBHOxHSazfZQN7BzZ9Fn3GIBmJ6RJYfundYe+93MHXtV0hfnt99X9\nV+qTehojz9zFfg/Bao9skX1rr2n/TcNUG+FPlzcXXBqRAjh90ZQ6G/jLSsdA\nF7julULGhmjX8uRyeLSQ7t2neGFdff5bvIpXiYyTsG66h3BOtepEsznkJmtP\nrUj1S0ULKxMz02aNslIV29KZR8LFInb2fg/14XdElip0xhb7ei1vungWdutM\nxArH5/gqEeEJOczX18HY2HWk3OuU0mvimpsvZau8DUOntU/97lh28rfNWhWF\noJJWdvGnZZacTs/V9Y/8SM3l4BNjbzZpL5QEw04+vmk2zs1M/M/Q/5sEHWCj\nm2V0VUP0A4XEXIVQ+jaBoePSXvipROyo0Kli2bmJ1fnBEqaYyznLE0wf+guP\n7lu6HI/QC+vWNJwx91VOhWev5yWPbVDymMpy06hPbUKis7t/f52a42x7HZR/\nV8e4AyE+HwSm0VYilmgKKm9Ir4ELrevaHQJyPA3zQQWno+Z9ACnVPuD3O7r0\nf0ujPhfpv9ucGqKiV70GGtXDIJEp8ONpt2lq/gbg7G+hzlSjgIvEL5iNvcED\ny3Os\r\n=AJwl\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-7KOn9gpi+G2YaFFIM/Ssbm7z10YKY6f0zedtYsFhug6AcUKyeFPYj/DYmpFN+YOtUfyNoBGKMlG5VsDydl2/6w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCWx801s0wywo5kCnf/0ivoBtcudRB2/ZJ7HCGOQP/WMwIgV5wJd24yE3ql/BvvViDgyZ6FsKWST+ZQNrJ/NDa03fM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524077854221_1524077865794_0.10949776920275611" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524169798128": { + "name": "puppeteer", + "version": "1.3.0-next.1524169798128", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.2.0", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6bc98775719ea12598aeaad0736cd9147c3d69b2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524169798128", + "_shasum": "08e779d162af76fcca51c2105ee0fe17855c0e87", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "08e779d162af76fcca51c2105ee0fe17855c0e87", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524169798128.tgz", + "fileCount": 51, + "unpackedSize": 278162, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2PxSCRA9TVsSAnZWagAAdF0P/140If2ILMJ1fRd5nPx4\n6W9Xc7B0qHefSY6L4xX9mLqKhTNJFqmcf+MKH31GtBh0zbmc/FkgGXgUKCvw\nbyf3eOPahT2EkQxwF4rIvBselIGrYcpOjOk0V1xuzppJOz349oyuug9pg/tE\nbrCJXCBP+ezv4CJbM6H9qnJ6FYhLeTRy9OaeaOuDaSCJ+qFoyoXoSIxzBjSX\nadC7bw4up+g8j5J/wJPFnn3Bg1YPrlPoxD1bvYcauf57yMrCq8hDAq3cQN1G\nls3U2fzPSpmZnFGQiqqkpGD94pqjlTbQZybNx+dsyIXkLNvoUq+dp49aqWfr\nSPJTvLdHkU3pxiPg2BJ/x2xbYMdQui+vS3cTsaI/2bdKBuuHVMdOZo03o7If\naBxwskSWtkuSUEnsGLFFMAAvMss1o517EsayxIT4CdDjDW1Yts6TDPv5OTC0\nQUx0nb+wNE0uRFLwZ5F45RsKBwJdFwm8ongXaWFYnoQRUQiAcWOPgcxipR/1\nxHkl0z1DnKczn9315bIe3zkaSKo/lvxKT1WQjTTXZmZKuQ5RGZRpqzCnPsx1\nLPRYssBdZa/P0Tw0tLfvWT44eImQ27yzwwbqX8L0F708qUtH0eYXVPVxyxNg\nPgLxoAqvsHFCqKHePdu3vIZZ5yWntxdV5Per4JlG9s9agIj13ya2wG666ZtZ\nHNIU\r\n=XAsk\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-R/rG7bgYKN7tJpFuLYC4w+pwA1lSHySXH5fzKyJ6rGygb53HTy6cirWBFIpTv5fy6wFhHO9fOFFMnX8NhssT+A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIB6uM3TVB82hc3N+JHM7sV+G3OESgsTKu4SJp0kchXaXAiBrD9tZNRms5+ZrDW+yf1bT7579AQzw2mPghyjZXds4ag==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524169798128_1524169810035_0.40032558311988664" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524172726027": { + "name": "puppeteer", + "version": "1.3.0-next.1524172726027", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6ac7f75611166f56f2b8ca3bdf61e290fe3343df", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524172726027", + "_shasum": "32aaa8bd247ba443b271367156f0b3d8c5cc6fce", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "32aaa8bd247ba443b271367156f0b3d8c5cc6fce", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524172726027.tgz", + "fileCount": 51, + "unpackedSize": 278162, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2QfDCRA9TVsSAnZWagAADagP/jk84Pnsa+YQtvgWkoZ9\n5yh0hK1AvMsW0MBmH2nQvzUPRMgh9X+yrl1dvmBunIRrbribIn1/wpAoV80e\n2Zr/dEdb3BsNi/wg3orEX6oQDFlTH1NXd6eKJWJIsrBKBykH18wcUivNsalM\nkSXQItymtBeHpxqA9dCvfXnCJUNUO6zyXf/kk4Q5+RZQh618p0VwlLLqxHBE\nEPiq8CDZtRee9kx0IKzPEk7F7oWPCj0zfmn1MHgrUPeNnnyMsy4Eq9jhhg9j\njdUXguJ0gvWfJZlOTcYytPgmSF9r9LyOnGGxYfRIeQPaKULe/jX83s6W1iMz\nZ6ztUukQEONafuMhctRYUzQp7WaNstVHJpq9RsA6dQRnKWWaCJr0xSfTXJ8a\njBjGorgdyn7ZWtc076z9MMZ2CPXuvHZlkKtJB1BYXqenlR1NmwIqFMt958Wk\nuUz9YFMAa1qhFTZC29+1nbj7Kd8qKYnWDK/Q0kzWoAWuVrckukSekoho/Sbq\nvyn3SnUDx/02M48Ch4z8BR2Srz5N2Rp7mr4VSjFVWCdnuY1y/IjjXijdlEtq\nk+ZBQSLQ6+Gh3jtvK3VDjqnk41yui1kirlrQUH+MPCvRGP+QSQRTwQqhpXzN\n0RmKBp9mcCZNI9iUuhKt/KDifRS04bX8nKD0Pbx3kYHLC9K29517W+xqsfbo\nFOtb\r\n=1TGf\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-zyEPHoO1sKAInyBoHqPInId48mCv4FoIu0ntqBEU2aWxkVQmRK0S8+F2D8d5PzPsd1cl1QiPZOV517McePG3iw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEPuCF64TtKjKDN67JuF5y0pNKavmWcI6HjIzfNZo8neAiEA20XaOzdDBWAg/h+WisYP0iG5Vd1d6fM7aw8q6ifJ/KE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524172726027_1524172739070_0.048559909627653663" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524503013067": { + "name": "puppeteer", + "version": "1.3.0-next.1524503013067", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "551292" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "e9dc3ae74fc01a99d1d5b66ffe716b4de4aa39e8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524503013067", + "_shasum": "44cba24f61cac741794a79fe6bca7ac2c8bfd354", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "44cba24f61cac741794a79fe6bca7ac2c8bfd354", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524503013067.tgz", + "fileCount": 51, + "unpackedSize": 278162, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3hHyCRA9TVsSAnZWagAATE8QAIHTFT4RGLeAO0q09pHv\n5vfjLdZPMX88K6/wxvPeYMAbQ4UyUTpIaBASN9Db0jOXVw0mPzRkQosL3S+g\nryWq9kxhFlidV6rJRZK13BVbr7hNaeTSGKowNE8PNvd1Votz/6iVX2DC3X02\neQIzPcC2PdenIK6oY3ShCIlucYyj2RxpqImqr2LONkq4OX4JEZmrQRIpsuLv\naRTsxW+t6nmWmyCqfERCJo1SissCCAl5n+lX51vdGKwZUsYZ3YLpLO64Vcqe\nDK+j3YCHFskBVR0FvUvttwtmjCYcAq8iIhmkVreBs3DW16IoyPvfzXXqA5j6\njG5vEN97KY71g2TdLUlQO1RC+QWtar8KSpC6VIvYlIXw/lwoFXLDtyTS9s9u\nyQd8VsERMv6m3nskEef4S79mk8xtYsiOD0GLwD97SkjC60SWvknXLA1tfumd\nCwiDnXV+SFDC3EJl38SYfghTPYmUt/zcuZ1dyUtvhnM+uLTF3qizDq9bvMjl\nERauhVVKGy86QhOv+PEq5VKjF2xmFeL+ogwzlC5ITPNVgp6pVdutrUxllqRw\nbDcpaRwE34rYyoZuF53IZnw8BYbGc1YBBcVMWIsm8Y+DwOasVs5jWWZBHYAO\nreIuqe3JERSIRwFdbSK1xxmRdMi3AHpX83NCxLuzves0boAzUzNkqG4fJnZZ\n0Z9c\r\n=pMB0\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-6oakdlvDQexwkWDtiiOgC8O1yRTgJvJa+BV7wieUL0YQkewdJqr0xSS/dR+/lg3GOAFUMKE0kLEIrw4q0b0FUQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCjewzuL13mYYAQn2bEmQPZxLe82H8ls7S2HtnhYqYm4gIhAOY1L7r49DHxkvzQShVY05oh7OnNa56KnvRNGhCmwtr4" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524503013067_1524503026089_0.7121665347917439" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524642447975": { + "name": "puppeteer", + "version": "1.3.0-next.1524642447975", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "84d7b4963ef863a296fae6f815b6f240a7262a16", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524642447975", + "_shasum": "889e61549f02320c9129b7309bf479df912bd214", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "889e61549f02320c9129b7309bf479df912bd214", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524642447975.tgz", + "fileCount": 51, + "unpackedSize": 278162, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4DKeCRA9TVsSAnZWagAAOJEQAKUPFp21VxHCVpusKebo\nv2eztF5W+9fDpUYmRKkDptJp4m8gYAmCEIXle6SM2TBC5oIeZ4f+E7MrU7vP\n0n1PKDRFGIORhQyjeCzTDPq5juCzwo6t/DwA4eYqb9Nobf/IhDJLolXgZkz0\nYEpcKgYOo3Bqvx7A4FO4tSTr1wXx9NIAGafeC9H0mfwCW5ynN7t+0WxZkfbF\n+Kl3eKXUpY4hAHEtpq3ZMH6elZHES7pLy0uoq/jkdUxpsbfiE2+NRlRVzYpa\nfjLYIZfToQgYfwLzI+ZMlZac8jjzBt/qoyd/52RHFy39dUOeinGyCaKan5UI\nPSvkhXFR0pyR7LZ6c/IceQvO8DxJxnbyW//NKitGjTp8VSC12zyl0wZlYO46\nEBwDMrQOCDQpyXaIdtY1HiqqLmlD86ddDifPC9wZea5F9G8Ig1ZXmJGfpJZW\nC2MwLOZpUvVFFgJoTVk5zMe0v7Zr1XhDwGiyZGV4O4K2+FL6nfZUbkHkBfy5\n0pCgyKwTdhfAK/OZ9hIyCvXacbzGHUW59l79LXrmhniWx5fop4m1XsKGn+6H\n0e2kMTEsQ042TOub2t+RziQ3NT1nf5XM9Ns9s2lA1h1c3r+5d59KZS2d704W\nUNobJtU2n2zgzfXh4ffNrobG92uahmY7+r1ZfsdldxCwUA8+a/BKnfQgk3C5\neuMx\r\n=+3YZ\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-r+x75QCC/HYCqQs1M8AyLSbAHBEN2fLwoDH7GL+Dd+WtdESZu96hkfj1943gJ72GM96g+0peagJ5Me0XVLhtWg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICgs5+mYab8h6Rxzg9ZE7pI26/6h9NU3fWcav+2HG1SQAiBIJrXnFEd02aTkj80iRUnyFfBmmthFoSqf7pfRxkht7Q==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524642447975_1524642461380_0.577088839278471" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524695478733": { + "name": "puppeteer", + "version": "1.3.0-next.1524695478733", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "8fce3195d6289313f7ed201f3efeaa1cfebf17ec", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524695478733", + "_shasum": "92f4b9af8c574cecd8b9a40e1737770b5dde0a06", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "92f4b9af8c574cecd8b9a40e1737770b5dde0a06", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524695478733.tgz", + "fileCount": 51, + "unpackedSize": 278194, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4QHCCRA9TVsSAnZWagAAJEsP/3X+bRywfMUh3UUMZnLS\nWfgA2jHybYzeCE4v/ZDb8nTj24D/H44Nq0OFGR94Nq5L1h71MupVlVBwOdjE\njJ6Ow5KSmg/Zcld2/OX/TAyTV6WfkAGxSehssw+3vtq76xQazYhg3hayOHea\nCB/87EboSqYzsYZBZt+4EGAG4m6FAfwt6Y9Kqya338s+CjU8F7L3hTMgTj9L\nYf+gWxlH2i8OZGYu/Z7TPFsUAoKAtDceAAVmzgDLDJsdcTNuZLiwlMB/9tiV\nffPEqQGrCe+tNsPBREXbXB2mZ63KivjHGskszXODNvcgRvMRCGx6jG/LwWF2\nmvHumPDvpMf4lpa4+pPgfxq2tvjkfYYAPWs2jqYpNsUCrcMs78wuuComqJ9l\nhPGzVseG2qV3Pks/onpl2peQL3+m2+p3wUmy3sfoMa4nS7mxXanTwQCqmNhq\njbmnpHf09zp1+Orhf2nZALVRzFI+68ifaTcDCZRWJJz9oSTv46MiMQKb4zAW\nTEQhOgwEs/siAe4+uSTtDUggT0vOwGYE23NqokTS0qD6OrL247i1NDSp/czo\nfObaJyLeJEOAv7NUKbRwjQtscbHc4WclwdfDLG9ZYGoU/dV+PPcevTIXsIzS\nxJdAAV5u/cTXLcPo1a03nu2/7YR0yQUhwWNEeC7i9QDL0/LYMbBaEKLCrQeu\nr/oG\r\n=zsmD\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-+zEc/cP+eLI9v/yGEgX83WsX2D00Z5uwdlVqrwfy77bdiPRhV5jryMdUTXfWRBzcR56fVEkMDdoFc/6tcOR65w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDJjM1IsqVi+JIOEvGGxt5uOqrO2nyM8zUWssOQWpTc/wIgNHpTEILke1KoCwuYQwI/WOaBxlwAsFGKE8KTC3AHilo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524695478733_1524695490564_0.5873166036354058" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524701668798": { + "name": "puppeteer", + "version": "1.3.0-next.1524701668798", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6d19db4df12d1d2300f5f72aedee5135ec314ed0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524701668798", + "_shasum": "bd5ac9c90a97b9e6fad3295555b042fe94dcdda6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "bd5ac9c90a97b9e6fad3295555b042fe94dcdda6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524701668798.tgz", + "fileCount": 51, + "unpackedSize": 278194, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4RnyCRA9TVsSAnZWagAA+OMQAJ/4UckunQ7my1ESnDA4\nxiqWfrjlRyjXubNU3jHq+4QyOvOQYT8AkRD/NddWMQ2pYBraL4SzWcfyJGEJ\neOImxpPlq/snl6P7kJQtR9Gwj36z9xCy7ga87o26pEAwUiHOY9AEiARJM2nV\nyJBi8Ii/SZEhqTz3X6A17ogbL0RV/LeYZkYCS+hLi44cWlFiAnZKbqrsdFyf\nGJ/RxXjEHwwbuWM3Y/7IyaUnsut8tIA5LD5MhanjLX2F4DkU+EJ7UlBMYgEY\n0xtN8dQMtv7xq1S4HN+6rQVmG3herNu5Z5L9BAAt4XV27onru+V9K0Q+qFB7\nwQPD/dCC4T5Z9nbJz8+MY1uGekeQ+Nm5hF+QxujfucsdLnlYdhvff24qXwwU\nA9nmP/o7I2YFJNI9Bai0a6NU3U701lnBewVAvxa/FdQZgSWYFQZDlBygESw+\nhccVeCJT7ZctjvjLB1OGT8vCB5S6YQJHp1u7NtOrgl75KrXSJprlLlM0uwyc\nWL3u5aQoFL+8RYphCyyQ9f2PFJ9f5Xq6p3GKDnHODR6qG/HHwRcj4D7JRp7L\nniripBxvl/1b4r+BOKlE/GtEwzq2AaiUdlgQLY+hXUqy4223oxRouPVMZvp2\n/REkHHDc5MGabReILaoiUKwwSF9DRWx1jk9BoyMfBDHHBVUGwBuwqHCQvU1G\nInsI\r\n=YPjh\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-gc5OquXdAZ6ZwfD35X6OnsGcomJJLdUgfCGcVkoA/68Z6nxGyy2doVf1300FFlFkOYW3rbUF4fCUmdQ87v2Wng==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDQ4iweaw/GGG8zQM+X6GyVFKdDR8r9VuASoCTdPFlDBAiEAlYalCe7wFby9duqua8ftg28y5krbq5NtCsL2+qwBU+o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524701668798_1524701682444_0.05610549661005759" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524704985101": { + "name": "puppeteer", + "version": "1.3.0-next.1524704985101", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "13a41495aaa95426d5ceb51d0135187d9eb0392f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524704985101", + "_shasum": "27728710359bffbfdc876f5361268c95348e9a5f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "27728710359bffbfdc876f5361268c95348e9a5f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524704985101.tgz", + "fileCount": 51, + "unpackedSize": 278194, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4SblCRA9TVsSAnZWagAAbBAP/38+7WquotXD+l29zC0v\nvgsYQhVx4njZ9DRlKk4G/sDT4s1n9WTf1E3KGBjy1PeIPgJ7MF8Iu8vjGxyO\nMOiXocNXTn0ddOJd7QQzFim0QoYIl6NP5gsL6Bv78d1W7+LWyeMG3Ix4NoWE\nhyEk0gNcAYzkYhbXe/idHgqVBeUA/xTDWnE3zvn5KJ6kJ1h1/HzpPX/9utII\n6wahO+eAKJQHonlmxJNWZHOeIVyeKnBzHJ7B+F7CtfC1ciXmHbQfPCDACs9l\nIs8C8uOX+NHrI8Leqs8f8f7Ps8+MigzBWYxbPGjUID7AUrrpIq1daRGVuXON\nRhopgiIMN6vc3WJb56xcxX4wPZOba+AkA7K46QZX1Ih7/E3PEBDQWMGttJBo\npDQTvPeV0Ti2cdhPCfqYGULBYoZXjLriiSKeBq7ROE55oojMbCRCIjKbXYEN\nRMpvbErfL7ngbmgf1zD5qpM/wEK2bHQPjSJvMChu0KRgTzUlybfu8XPiGDOL\nJlgX8emrJn4xS1bK/Awp604zI+LoppB1VtfVMBsKXVxCKaYKYr1VhcCjU7Qe\nVsf1I02v4KgNCCCMwjYp52Vfow5dg9nEME+UY0hC+oorQxcoNX0h7T+UkZYJ\nRxDlnowzVPeDy3J+aSnlFC+2pea5xx5s6OBm7eqgb19QRdvtPwGKUeo75J8k\nSqj/\r\n=e82i\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-zZ07TRb44Zd3fNxaJ8muvo8ycjJvq+JpPMxpIkqzgKlghr07WT7rakgQwZ3NCdibAMO9ck/VtVttsXst50ZKow==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGnHF1y4AIiDH84xZnU11fwP6vF4lI1picYFL+4Tu+pKAiBcOw+iDDiVadXVqVQ8JWbIxutJWiDef5WHQfc8lTzjHw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524704985101_1524704997123_0.338222415919861" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524705708145": { + "name": "puppeteer", + "version": "1.3.0-next.1524705708145", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0820d48f804ce924af85fe160ea20a210f734046", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524705708145", + "_shasum": "2e3ab99c2329934c626b9c0b5d67479659643beb", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "2e3ab99c2329934c626b9c0b5d67479659643beb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524705708145.tgz", + "fileCount": 51, + "unpackedSize": 278295, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4Sm4CRA9TVsSAnZWagAA3aQP/iL8v/Vci/tkIx6bcxXe\nSCF9Xh7TSYJo6nwk3w4D8CxKp9CU44Lba5fwq9bBZEkm2QnmFD6ypmWhhkDQ\nSLOCGxYO1hpgF8nnIPVFZiDsuf7Hz47JPzLxpVyFFy6SPs4z9/IKant9V4Mn\ncgf94aZAETb2G4cSamFgnOlPy55bjsF73+dAPK6FDWOz1gATa2zVTfsNK0De\nbUM6px3s1hjUIw3vk1aMhFtGBgYn7xz7f4G4nLiLg3e3l1x0+9ELQFlqh054\nRBZsNil/WS3S7V21OEJpKNT6yAW1ukLoWQ8bIwE3uhhiav9JkdEchF+NcfaH\nz1wPrNHFV8/ACwONjhM0r4qi4da3mHYkNAlTn2j4VVykPwGKmrt371ts0atj\n3Jv7h/55Y8uvxfDhKEfHR//aS/hnnJkDzUmPJgel+oGsW3XuzNGHAivAeQxt\nHv0/NZwtsqad7pHBdmKMYfzvm8j3QHQYoSH4qEDEj0mPbh/Ke5KRTd+21kQ3\nua5ltfXsb2P3/TYwLxPaZyPxGDhI7K4ELcm4nWQJFse7RPnTyhNEii1csqcJ\n1uaKKOWFU82kPr4Oz9Ep6/BmPzb57zBDscP5zqpPgNKGG+lPgUWj93v9pFlC\n2K1omVyS7fmaLYbZulqlSABXdt3EI1R6iQdT8Q8Z2tkm+M3SeT4wQfZxg+8/\nTdYI\r\n=RwVL\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-SPdmF5jFtD6A5XR/49GJJ3cGzjrCKZXYW48rqu1ayYf0MoDt3OVEg/iqrUShsk9UarnXyNkDGQl01uBZyMPXgg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFYk2K40Fmf/S3qYf1gtkDkXHbcXfjuDdQ8KAJMX2AjTAiEAnDIWQcgxTEtpZGtdc7NRPBUwY4/Xi5oKfBeuho5/XwM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524705708145_1524705720475_0.9988182496488305" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524712919551": { + "name": "puppeteer", + "version": "1.3.0-next.1524712919551", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d9bb7ee8a0383774c6ec32f91bbd434dc654d468", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524712919551", + "_shasum": "5fcffa7ef92df07bcc0c15a85367526d2c370898", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5fcffa7ef92df07bcc0c15a85367526d2c370898", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524712919551.tgz", + "fileCount": 31, + "unpackedSize": 256595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4UXkCRA9TVsSAnZWagAAPZkQAJ2Z9uUUW90BXVdSHHw/\ntiwJOgW/pZUmLtLqFnUxFQo1oRluWp9uG60415EUVbdEbILxIlVMnFI2zvkJ\nIGFmrv6Opmbar/l7FfAyimR9bSqoWt/ij5b3VO908fWHUuTPQ/fjt8y6dr/J\nRqqMcfuiYzNwrn1hwHJkLVLF9zBWyc8PUrdu0OKkevhDg9ZznsCtn/FMqFU6\nGV1xoFjJzF3XjWqgKGt8+hfh43Lzxzb/+z+M9U7E+uaj9rAeqlQ0z4400PE4\n4y024PgsPGa5LBD6losDLc570W93zwUojkQoBrY4QjQ1UsJeGzdnOPuM3JJf\n1Uzy1AZTgfq9B4/w7rsdtZ55f8wYj4Qvt41qb8lUCCLqq/BdN52UNC2SJrFY\nbf6bIR6ej1r3Z67mmF+vpFUVkP5d7R2vM0/sGbO6Zu4wx5TqMPcmHqYAEdkb\n6Ub8JNo3DYNUEDsKAx79NMf7xtwKNFHkUqFWYR2pXTHMA1OAWW5pwmHi3En4\nMs46lyAE5I8V9HDQOaAaJq4OPAXJOFpZU1Ap0lvohVx0oOUoGXtiImQd/9qw\nVFBvl5DkAI447lMbWZ2z8bNCKgfACagrAXXm/pKThgQU8CN1lj2nbs2ixx7I\nuFczMzD80z0iFqbEtktk+CWHWr2WXAqVbHJEgZRHaITceLhqaElWO5oGOioM\nHTU8\r\n=NrM5\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-RTBtaeGgvhIVNClLBnZd6lj06Tsj71ZI3X1ms7z3LxeftsUNE7tsRea97IrWnsGhLKUb+RTqBRZwY7grDLDs4w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDiH63BFBcxYglQB1xgILIHI2AJwmB/4FwWNqlP4V/kOAIhAJ3svTHFKoP5037xXSlr6kQBx/iHS4fgn4KcIVVvtJNw" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524712919551_1524712932265_0.3903432544737806" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524713000921": { + "name": "puppeteer", + "version": "1.3.0-next.1524713000921", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "b96815aa72063125fc1ab085dac5da59260d1fa2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524713000921", + "_shasum": "75d47c3cb989701be41f1c57838edd7b09e797df", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "75d47c3cb989701be41f1c57838edd7b09e797df", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524713000921.tgz", + "fileCount": 31, + "unpackedSize": 256595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4UY1CRA9TVsSAnZWagAAIjEP/3fQGKiRBd+XPmJsOU3D\nvdgV+y76iOZV/pGZmM5PdIJJJ8W7q4OV7D9XJcX7ss61tf5/sIgRo23uzSRa\nrSno4PWilT8eG182S/6tXS/+Q6kC1M2Pq/bvcC9NxQNMHmvYYXwoijTSqARt\nb211lHGoNpn9WLFPyEhIMuWB/sWjY6ERwXc16RWVOuKIIDAUQAG+NtjIOG+4\nldBSMliD4mI+O+ittY7/hO1UeCFxEWdIDGxJLVdokAvY0H8TBrsOzgaqQ/x8\nteBr09lCW87rrjek9oRMXDaOCwWSv1DOUDpHRGb5gLjEJ2s0jSclL9y/vEJk\nJQ/MprVnzEMKop8bD0nKCDznwKEdA2ZlQT1DT3hT7tTfcHAhVozNguJ1C7xl\n6CYHen1EV94Zyp4LYxLKfVLjQ4lns0/iDGhimk0q/SRsGM743rdWQdhU1yQS\nK0RxwDap2S8+WaN8bbYLekLKooL8V431joN31RxvwwDuFr/rMuyPJD+FQVVO\nX5AfxHmOVav2Md0EzEEZYqhm7WhNKRpMTsae3nJOnsllP01RFoOxBISPuc76\ntcgNt2UEu6eLO3ssbRwR2aNlI0ZF5utAC+LOr2h7a3SCZ8jBnyEwpN1C98S1\nvlsm36KcI8BfMLRWLSm+ZUy6v+TGoe98j0cyKfhixsSOIb2DlpuqcqTDOCOq\n+Ycc\r\n=sjC+\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Xu01CNnqs5BaZEnroruJiUgFBxl/hecKcjwct0m+xpTw9ykbMBw9T6OF5oUXrZwzmwShmRzNpqW0kOhIene3uA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGxfZbK0yO7xOhxlUUSEMhoWIn51xfzVZBrTxDFatDI7AiEAyrvr+Tj69ozkxFqGsPiHRqY/QvUkN6fQjjTX2Nj5mlg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524713000921_1524713012876_0.6383395532757452" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524757175953": { + "name": "puppeteer", + "version": "1.3.0-next.1524757175953", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9ae64f237c2a3cc12113970d0ffe32bac35992f1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524757175953", + "_shasum": "697c0a57f7a5f569be244233a8da4601d437e5c5", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "697c0a57f7a5f569be244233a8da4601d437e5c5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524757175953.tgz", + "fileCount": 31, + "unpackedSize": 256595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4fLMCRA9TVsSAnZWagAA+qAQAJsWNwTWwQsS9lDltHCR\nEngz0kN4oSGPLFKv81AEs/SoQ/Supi02hME5SpqqgdbEERi59pKFC4fVLEC1\n/4gsvP4MUu56NBiTP2pLRj+zodbit7IRIFP4aseycLgdGvXZwyMhINBJOc6J\nTr5mgf2LGgqRDlXyarmpamiCE+pcusxjWzXYPPotWG5DUfgDd7QKnD+SwKWu\nv+bI0PjMMEb3TPKOnYuDw5loK9nN8Ii55azp4aKEF3xbHziGI4bejQlnJxfQ\nU2XNLoTngnztyZQn3XQIk56986Sf9TEwCm/6rc42e6cgwtol1BZ6UYOTaHMq\n161Z9ZQqXp9+d/tlQmoPcv1r5QXbKqpNALahfqjAsKf76BUbTtxuOiyHXjek\nvr7LI/Mt+VMg3GqZKHdqnlf4nGEXuzkOim54x5XUCKtQrfQWHsxyRAh9sBVD\n1oS50j40ti43fyG9iYxtHQaa/SShoUORR5vMUstF2ej69EQJrgn4JQ6du3Hk\n6DM3J57A76w/pdJ64820Ci2s0qabvVnd1qzLXDyCtRMtSBf8/1dWSBWj4E2a\nQS4inHLhEOp6SDv55YW9tHjxiUz9LMr2mjl8lAFwm9YCSUYiVV+RTWIEg3Sx\nlCpLwFT5y/TIInje3oLlRLkzLHmGhozuDzjDqEsq+elDuKr9AKCYGLK2WraY\ntPUS\r\n=BjaD\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-R6DNHTlhIGOuEHn7kPM2ZaqzpUQslXg5IYLJuHwEc5hcyIOCU8CtadRydbwgfLD92B6lhnJb8CYCmTTwQKGzkg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBbQshAlSBMONLCsntCHpG4pGQEOjfZFeFPer1+f1sWrAiAhp6/zxyZu53ewhBpdh4qRgXDKH88qApgvzzSfkJ1hnA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524757175953_1524757195973_0.5188622901129187" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524766628711": { + "name": "puppeteer", + "version": "1.3.0-next.1524766628711", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "8a62b10fd094ffe895075759bb8065433c98eeae", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524766628711", + "_shasum": "f066f73dd2148733ce274e6d80278a0fe6b3953c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f066f73dd2148733ce274e6d80278a0fe6b3953c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524766628711.tgz", + "fileCount": 31, + "unpackedSize": 256595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4hewCRA9TVsSAnZWagAANTkP/0PTYpcnn73UCitnWdVy\nv+uunwpFQD0Zo1zobpDBbDjqzydkfirE1XGB8JtlVVYwv6Ue0LnDzzdG+bE6\nXqADJt/0brvzo4DNsNAl4soeStiF8m2woFAV1uvnyS851i2/zJAXqj3TsniF\nUv1ImtvbiwY99oqD8QWA3YGerr4qJroEIPGnIYArv932GstcfwZ4diUVKfl+\nWMtdz2ACq148tfJBsIVY/uo+DcbXcUa9BHFBBBCP3fwysu03XunFSL/3eNfN\n2bMBFKTyqMp0Nmzz44zMNsMcL4CeklxBkyyMNXHFT8Sb3MzemZ48mNyeRoY6\nJLGcq0ORyg73TJWM2B4ozBb0DgXu92PgkbJYOBEpflvz4JrMOaOQQ8yIORE9\nm0pXR00A73R5Nb0Lt3B1zbCHR5FI8Sr51noET2gr223OwfY81DGnrRBit740\n5GHzL+Vt+Pda/hniB/GVEQMx5xHlPJvunLIB7xNbS+LGd6unZHxZsUEZTSot\ndsEFLlH1bhloJsAcLzwNp3ORz/D5xJ6iq9PPCFuujY2XTM5lpIMaNJvFPVYc\nkchDw/NFuRCCkAUXEbxvW+WNgcUFYGVHyeaIZC11JcXVJmN2F80/XtgWWBUm\nAD1UMl20uXulyWiLIqDGM7st/DycgMmsryTHyl9WimTTbQBk2QlVB4xQA+Gs\ndPWW\r\n=OrDw\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-ney3JSQWbYiGQBOgpiM0Eob79+KbJvce6yiOE45fbQP1b+mW3iLLfVbM6sHcj/0XVQH0W5mMvAaYvNt+mThzsw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAIuQ0LRE6MxExXj3uzKS9m1XB/K9vuK+LgaO4ypzdgdAiBildulSXB61jAUEQRKqzLSKCvMN5uShk+zGTojaLv/2w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524766628711_1524766640548_0.15741203351994715" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524774887046": { + "name": "puppeteer", + "version": "1.3.0-next.1524774887046", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "eded38c82a5f2ff1742958549b782cc974b80405", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524774887046", + "_shasum": "f309e85ad7b17b7bf262de74e07b251e5a9c892c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f309e85ad7b17b7bf262de74e07b251e5a9c892c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524774887046.tgz", + "fileCount": 31, + "unpackedSize": 256595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4jf0CRA9TVsSAnZWagAA0uMP/38K9zvZYx5KVXkCpoZt\n87A50x26/hBdrMu7qaDLSNmTbcHmCjb2O5XHfKVJNTMzctJ6USOC1zymDdik\nbmkWmcB8afXzaF+A/29qfMe1PsqHu6Y23Iu3JChzF7kQu2OYyDOd4z6gtX/k\npSZPPpbyaJlxazNtPzOApHWUk5IvkWWw2wSANS5xNw2sDpAwnC0cqSJ/iHfR\noplU4J/huEzxNqDdNRuiY5xfJ/OI6GNY/DSWgJnwpRPT3dSzdP1gcVEKSSxr\ns+FSi0iZCGEG9+LXkYJCauvxRqkbLH2NGR2qhBP0IRCOmQxur1yL0ojK1n0m\nmih0ScY+keqgwOjqupY7tPzyDlOQhYLphvEINpVhIN31SkL7/Rt3++jYKHl/\nmll7JmB0D0d9ZcXzHbTKEvGWVro/tkKTeDSBONgzIMi/8hOUpAkJnCIOAEC2\nG11qY7Yc7wX7ZdT2aiZvT96NuK4XC+wSOTSZaWLV379BK+QS7+Vp4Mk9aMM6\nartWaN3dcSBt4wJ7n1yMBxXyRHe+pGp7B+YahSbh8hmD8iLOKt50u7SMXerw\nWyU9OTTN/lyutKKb7MEXKolT9Ew2H4YInWZYD+c8vPG4u6dRnOEFxiFFOvlr\nSYbpM2/fE3cjlNr8MHRpA/re4NoMZJQOa87CCjPG1EM9M/u0i3afed/y7+An\nugnE\r\n=ZonZ\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-7VLlV9Jfxjt3KxzrTQYNFhED8B02EoFLHQrUDuXY5pzRrrRwsGKrCiCJrafGnEMJX1sjXZzPQqNM5eulyXkJLA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDSs8477+/t+t3oL/dKk/oH27gFhnCNjCeZjG94a23QqAiEAzOyItkKX2RrXVNxnEmgmTTZ2I3NKp3sDw5HHIQf18to=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524774887046_1524774900265_0.4335854493872595" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524774920630": { + "name": "puppeteer", + "version": "1.3.0-next.1524774920630", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "f797f8c307ff5380c750d3851c0b3d61a5299df5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524774920630", + "_shasum": "7dcaf6ea1e18df54e657ac97b48eac9decccf3b6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7dcaf6ea1e18df54e657ac97b48eac9decccf3b6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524774920630.tgz", + "fileCount": 31, + "unpackedSize": 256595, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4jgXCRA9TVsSAnZWagAAFkAQAIHQXl5WWXllQpmFK2Qe\nEg7YLOb4HsIHEl53UExktUZAiMRe1yo7Ac+OQsXwefOmpbq077p8z8gQYjw4\nSRkv2qtlgY1ShIuijbJeOXYTN/MgRDQB3LQ9uEbVSS8atezamakdmhSZgGnA\nh+JdwHsn5iHrQYyAYFpZfn6ZcLxvOQ6wAN5fTpor7ROHpgCbpyAW6mJAI+eD\nPHGVtiCHgOR4R1lYjlZfCMe3+CenqI9sE9uPq68DpZ2U8EyhrRSsLCpNCKKW\nMmvN6vXKcDF2xRyLzN/PbkPP7z1xWw9rB2e/8F8RJT7fYWV5WLzviAMWAsi+\nxKxOxNe037FVCc7fDMm/dlqEZnHXgORxiSvORSljMaVZQ/OczD1V79A0wV0J\n9A/q/vbvKqvaoCEQj+pKVSqFyDWwvZx6/lUtGO67WWrAUpjmX/RBU1wMpND1\n7CEoV2A0S3ESavXR0800MzDTDNbfIsnDYkTbibHaPU08MPeY4WFva4Lln59f\nLG0I2xA7SLL6ktq+4nE7gCJjs0GNR2PuqpwSD3AN1gP+mg5JfpOlUdWIaY6u\nqOrmAo6kcaIztfepo6gNodX+PJOthlaTMnRCKZx5bHKGI0Oe+5DlP8qxW7Y+\nJu5Wim/G7t+TWdRd3AIFrU4z7Y20I++ww+I0/1tR1cIn7D4bTFlGXq0HNz4M\nHWXy\r\n=QDyf\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-eXgVtUtOd5PNCoCTTIpNNcFQTjJZEBfKkXpNQli/tCz72ek6hfjQJcC5SA+DGSMaYCqsnPN7p0NrYgsGFVHWJw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC7k7Vf4TP22MdYOZGjCHCg7rZnFCfWfeDx0NA0urtQJgIhAMiqYjEZlmlUdjNrzyKcrO2rkRM3TX5KJ82N568Posh1" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524774920630_1524774934775_0.9097607000866292" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524865639981": { + "name": "puppeteer", + "version": "1.3.0-next.1524865639981", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "eb1826bc4972d527bed2a0f5f4e351df330114cd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524865639981", + "_shasum": "eb1254d8c0d71c344a0b853b0b0a600e57c4f7e5", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "eb1254d8c0d71c344a0b853b0b0a600e57c4f7e5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524865639981.tgz", + "fileCount": 31, + "unpackedSize": 258109, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa45p1CRA9TVsSAnZWagAATJYQAIMLjW5h1o1nb3daw/9L\n2OL7+3A3hpbNOMTvaINxcVz+XpCUFgRWrWIo+wFq4/D7Q4kn3gP2pfxzk6xA\nV3cle+YXUqrMo5IehTmh0VTOTRB0RMZGRYE+n8D9hWrAK65YOUit7pzEncXY\nr9iGE5p6VkcDMyKbKn+NWtE5fvP0LPyl5xeu6psA0XGRbFknGWEmJT/2Al7G\nwm9sXXNlWrfSxyPhcsW+FEL26cQ36pzyyOG6hz6PdyZUwJDaZglt+wgMVDaO\no61DCKiYaugr/Jycz52TWDmEQTIrGnPQzUbK3eJFDGqA2xq5q7i/muuom05M\ntVdyJH0SvC3BpCmuNS8ZNre9TwAwTH5tSSLsezgdQ7icwGf1M8Rzcx+QxwNI\nOYVHVUaxUJugfJsF02o0WXvraedMEKApuyLpOTh6A3HmhZIcRnFJ+MBuV849\nkKBvmnxq88UKMJGWKy6n1+Fo5xAWUDGR4PMrcXlV3h3Z0Z6TP4hU0kbj/xQF\nsVLlLgh8tp1oow1yTVsok0qA6KSy5R7tUDd/JfYPrk3fRI1UOVmq9bC7m9gc\n1HV+XfkKDeNkDxo0F9uph5rbJl27XxpFkTKyWZhlbvlNdTNMla2arXWVSHq3\nkDscmm02FmF6enppC5Uz+9a1DyFqVWZabtLIJX/lMgaEtiykZYmJ32sqV7Vo\n6B4w\r\n=ZKmB\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Fs2FSma7ZOHvjpvOb2rEp8MNqbV/RH+4vs5Cg5feD/WfEcgusi0tAWKzryUGeR7+J3LLf2EzSzEKrIo78QYflg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDkeA2YCY6iH1nxE60O+D0aMsVXGYPkjM4fBNMV68gD0AiAySs0DSUxXJikwEjEW0Xn2/2w5YtT+WeprM5P5G16ikQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524865639981_1524865652749_0.46386093919220595" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524884685958": { + "name": "puppeteer", + "version": "1.3.0-next.1524884685958", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "a2a910024806be47157a3c491b6e63a387f1c79b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524884685958", + "_shasum": "b84bc70f5507a67fc5d38e103e3cde94cae5d2d6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b84bc70f5507a67fc5d38e103e3cde94cae5d2d6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524884685958.tgz", + "fileCount": 31, + "unpackedSize": 258109, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4+TZCRA9TVsSAnZWagAArDAP/iOat68EqGJRHHkpHO92\nnNy10MUWVaxI8WQ3Jw8RSf7p01er7P3hP7WJAkZcrZGPtt+F9xc+vP3Pkj/h\neibnPLaZ5gpMjz1/Xu0fmD26xGjG03LYizbOhaGwrC+6kG4GVLmf6yZSKBha\nCwMt17WpJT4jZCoMoQRhk/yMn4iWyTFJorilKlq1vXF5HOP+N9Fj4v43BNPN\nEyr7R+pqNG1kVnrKup0T8Vmz626gkfDGRWzGGSdRjUVKaGiQbhVt9OddjDC+\nRR6qNISa5BU3Z3SCZsdK4sVoeev0etZ97HyI6PTD+0c9lJrF/ednaF/LSY8j\nUAR3bOCnPgbekJB/nEtuSy87eFluOOVwMil5aH+LQUr2hhp5rfVfNyKnSosr\n+emLlr3OrY9rf2BvGqzxhHOHRh463ODfH1oA8a3yOGmNOl9JaqYNQ1ZGaPLz\nEuSXUiRVgRTd05+8n60+0giS+AWmJs8pi5KgcrjNY0fPNwImkJRufOdIJd6Y\nA41FdrK2NFA4/UkFP0SurT2Vl1/1Lx0XUAa8gt5Bn68onrhOylMqzwTQ6lyx\nFQLt60DktSrJw2PtNYeguCzzzw5xHLyaLMjZNWIOxcxDSA4fbrDj9G//7et2\nd2m6tSJLaGTNvmFw3YAIWdzIPnlZnXO9SWRr5Ciu6spa+F76A1JS1L4ZrMjy\nb2wt\r\n=4o6+\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-MRlgZW5pMAieWOzrxj91I5pyRfHIPy4JNwQcisWv7kPRTeHLni5RHYkPqN9p4hgDL308PPScjW8eYhU7U8RXTA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE87W+4qyM9iFNF6bkkDDu1vf6L6gduJWBdvuQssgjxkAiEA1STlKrecliDT65+wSEJqKAmr2hGsrWAGl1eBkuJ+yus=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524884685958_1524884697233_0.09296164603027668" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524889059564": { + "name": "puppeteer", + "version": "1.3.0-next.1524889059564", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "58c46680f37cd0b8fb0fa1805a6d79ad00464feb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524889059564", + "_shasum": "9779b909bcf20fa63283afbca12c138192580a45", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9779b909bcf20fa63283afbca12c138192580a45", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524889059564.tgz", + "fileCount": 31, + "unpackedSize": 258238, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4/XuCRA9TVsSAnZWagAAMUwQAJk7i1XAciIyx5zEDNo7\ndM5HXGv7ndVxeehN0vU/58SqTddA+fNzL65ha97mX+TEE6D4CcLGe2oteqrL\ngimKU5uDFqi5qLOpLikpscokdez9K3SPczx5LD0NSe6RBWCCvonX2Me6T1lq\ny8DwPg/J2pzQBa2QYqe6dgKRZeK8CrvAgCECtug5ggnBjII8dGCwBDrieDsN\nLWDfkMYvJPKwbD2sLcG5Y4BQuxTv8fLfMK522F5sVPJ6TQDupxIlGd57tR0E\n5M5cPGmylwEFHp6XAlzljG8bAkHQDbZoA/Xn5MHFlTZgBDXkDJfw3uRUO7eF\nHdZpyCOiVQJi1h+ZcnLMs3WJt8y6MZf3fb7vlG0Gd1X74angK9NbbFUSt5QM\nnLLScQzIn3MmI6PNmuBShIeFkppUjadLJ+/gBrD2SqL88rgS5AFaMXUzcG7x\nOsqrMlWjf15KkWZ+86ixooc7xrYKDF2ZHXTGSxZ0MMnp/3/+ZYS/3/+xgQyh\ntmXXbll4mgemXbvIxEc+sKdCTgKG3HUVDSLPqAJhZUEUeQvnvktJGnHgsJ7a\nFZ4Sqt3KQaJWpZr6fyP66p8/NdchDU07n3Im3yVSUGeFLdQZv+yV37M8Cf4h\nL+4MpNsi5oXB7yeRy0Q2MlQa09c4EQqy6dpiTQX2KBCczLMiyMme5i2g4ct6\neTMh\r\n=vXkV\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-q4gpaSloLISn128cz5eSp4V1ryjW2roea3nqH34l8FASWb6y9R9f4NbCTU2LOnV38Av4kBYMpHjbGRth58pa+Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCDfgdX9utY/Z3YuyfvLyKL9gThAmk8bgYyf/nA1CBaegIhAMPYeNu8jq1L/ohff58b2+L9S8no/SK0d+6z3hnenidW" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524889059564_1524889070373_0.10270086693138492" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1524890531204": { + "name": "puppeteer", + "version": "1.3.0-next.1524890531204", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "e236887bbbd015e46fe036ef1caf957b52d70251", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1524890531204", + "_shasum": "253d34c24ef9b70f0ea5c1db41bd20a7c948091a", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "253d34c24ef9b70f0ea5c1db41bd20a7c948091a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524890531204.tgz", + "fileCount": 31, + "unpackedSize": 258577, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4/uwCRA9TVsSAnZWagAA1V8P/ibwFwtZSCm1BWgpJSRy\noXr7H9M2YEcLtn8EDPeN6U1qZmUFB/iH2JFEcHnfG2rSgAupTuBrfxFRLa+4\nho1G8vXNOdQ/PssBNm4/L8D87tmB1VSesgPUQHLqF4geZbokS4QgA9i6E41b\nZh5XLaY/LGiWEQOiWla2TD7+BJPCy+1Mkk3VrC7F1wr2XysL0jZEZgdhpmBk\nNLIxcfKFG1HNIkcfJezFm4ISq63wWWplW/Y0hakcOLsAbMSncj1/tKuA8Ft4\n8sFAh6zqFtDbwKUtV3Lk1/k1p7voWXnRJO766hTNYOWtYq39zUhBO8K0KDQc\n2e+Ux65dUePndeKR5CAJ92nAv6K3SUJsJgRuRnQGRVAAwgO1XieV3n9kelFH\nD1jFCzhLMN9s6MwJWEuesZVZGzjGRRZXEDUd//B/EE9/tgb02k4ex/rLQJ+H\n9FMnRWHClU+GderKW3/PYJNKaiDYDpHS1GGCeGXJ3pH+yFv76s4Cz0zbXlYp\nSPEn07JGtx4u7idOsWn+ZKZ3QXBQw/WjjY0ttP2KDvBg4DN+gAi1rF8zYzKg\nULUKvKFEFSvfvPrptI7D6CgT93z8DdUjXowor7TeoXhOCTea+ibudtlvZaNg\n7Vx8+d8r54FyM5LK+0xUBwB9cDTEGU4FXgQ+1D2SIQzIjnwVuA4QEkBAkfkj\n6+JK\r\n=AGEF\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-ls0PS8M0M2/Y5Qa7Cs7mNEKy5vldXpWKUq3X8vXhpMo5jSKceIx24Whfi2Lw5piADguhWpxwTbbGsI/0RnJKJg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCGJj2vj1T8fAwhRB4rKVpwUb8glQZXThunbwtyRKiMOAIgb5kZXpXjOx/vCmxsUk2GDASKG9EccVsDD7zNqDw0vCA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1524890531204_1524890543798_0.09497512570317901" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1525111445523": { + "name": "puppeteer", + "version": "1.3.0-next.1525111445523", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "553380" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "afee0104bef96f005088ae477b88acf0e9f5e8c1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1525111445523", + "_shasum": "69ed39ec47990c616a6cf80c15f701e937eaec3f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "69ed39ec47990c616a6cf80c15f701e937eaec3f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525111445523.tgz", + "fileCount": 31, + "unpackedSize": 259310, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa51qkCRA9TVsSAnZWagAAt4oQAJF2dITXBNrBkyvu7CL2\nq109Vd6aKPZEBdJZQALCSHbY0TToEODiGXkMY5wMSNFKtWi7Jz+wdEZBUtMn\nig1Or1xyZS4WRPCLBy98aLGbWPzcZ/f0dEH404W/gSFxkGQr+IgoQiowN8wg\naAGDsyBkUsvr0BxDhlhHuDvCH62K2wJQ0VpHo5twAXU/S69Ns5Dxh23liQIi\nIhdUeupuqJ/VO6L9RXi8LpwpDwEm1N2f2IBETbobK+9U5e4ppaN8bkxvwz+G\nUq640+SxV+lDEJk5r1udM1iXJPyJYS9MnN2NgMmwaZy0LCX+Uw2OpYW6zuzP\nmeBMjumREFNj9c4GKk7VS0mqEZZWH/EavcjywOg9Z4RXDaGELpGLBWqnGfaF\nqJvPC29TBGlRuBQU96vQocf+Y48+l/PpgyYh9UOZkmvPeNY60l52sd2aa4dQ\nj36u5LfOL8/Y700KXG2AU5SSNKuI5VCuhVLCLRFr8WQ3kLrHqRAehqt3P4YL\ntNMP4SWTLivPTL1LJKx6bQRQHn9NpFFTFKj46Xv8xU5WJWiY3bcFrzbkOSXX\nefMQ8zAUwTsVtJNh028y6Zt935U19YFm5rNXB+ldmkwv+SKX+6+MS7nRs7+W\nL1WCLOzVPa+ItBLJbvYPrMWZaz6n1PUiEsC2K6GXNaVYRhuofX72l9AZuvIM\nz2f6\r\n=Rnlz\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-NkbpyQggwiRryzKdVgHE8IiP0Y6GgVNc8tv6D32cDgNnnEe6Nvjq0qCG+cBkIXyifdIvy0mr0BjpA6RBMLgFUA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBZobxM4vILPAK2Wo7w8lM0nPQkOGAQAP3t7lQEJ+hl1AiBIfTB36daZiwk47A7W5zeEyGAsGfi6m+UHf5bhQ7DGLQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1525111445523_1525111460211_0.693517277196273" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1525135284208": { + "name": "puppeteer", + "version": "1.3.0-next.1525135284208", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "554716" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "376018854bcf91f2a7ca7c79a21d93daa6eac84a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1525135284208", + "_shasum": "3a7ed35243103021e52cabe31abe0dbbf89fce4f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3a7ed35243103021e52cabe31abe0dbbf89fce4f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525135284208.tgz", + "fileCount": 31, + "unpackedSize": 259310, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa57fACRA9TVsSAnZWagAArPgP/RNG6om7h8Nm9Oti7Awx\n1He7di7BVIjfWupfTcR8biklqaXAahCMsXXvgpguiEmbEfpeiI4FtneXdEEt\nQdNacJVzh/Max7d9eHGOY1M5afLjNLUfZ75LfsZVxJvibvL+Z+GJbV4HsH+x\nqxZw4Sz8HfljwoTXRkTfk5qp3vS8ehh/KZs+jCF19l2b965ddzvEmQ/QNx0r\nM+OQjxdXgl4Qkb0xNXc6GjmNcKCoBKSQoBCPi6+7KyIOLLV4z/vzeqRi9dwF\n7ZxcPqLM6BWdlpGkhUFgsd+MtzHCgffFyAOefsj8VWw1btcgIqUqf97Nlke6\n1H2Y2l88OIO6XevRFeysjvgetcsphodkbFmvne8eeOEO3Gvd9CEfK8PCb4nM\n9Z448MogHRn/aWQoehhjwp+LLxc1zvEnNmM03jGJwQrw+sqVbFN97DVJWC9E\nFVRoYxOlv47H6b5To07QkRPALPa9YY0dehSMBsUvmqphl+9fWV6iTx1rERU8\n0msWHE1bZ6diSfhwgVdkZpsSvbIK2mEa5WWwSstSRdNWmmtDOAJ7PSlVLkfK\nfPQgDViA1Tc7dUFvtZa+f/Sin26FYQWpCtICWx4Gsv3Kw/C0Q1vORM5RHCvj\nkljj91Xb6yB5RrTbkSVmWfhx15+XMh8jpufS7Yg+X6vg5Jby0U6bQNpz2T/L\ny2rg\r\n=/hAn\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-6JykYLxpKQdq4OUFcyNYm6qhMF43MNJwMNLbOKmoAfl0l0eFVevKTRlvSyIQjYY3LAMUnp/sV5lmfNaPSPeyKg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDMS8K/VGx5U4oSWTKAl73lLpHo/9uKabB8i/do0rl1QAIgX1wWerwt9ybE4ZdohR+cO5qp2ZGPzEmqi8+cl+PPeIM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1525135284208_1525135295911_0.8348071361982412" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1525301631811": { + "name": "puppeteer", + "version": "1.3.0-next.1525301631811", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "554716" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "a310d57d847b008dba3b0772085840dde3343c64", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1525301631811", + "_shasum": "5a54c579047686dffad98fc61a29997f689ec2da", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5a54c579047686dffad98fc61a29997f689ec2da", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525301631811.tgz", + "fileCount": 31, + "unpackedSize": 259573, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6kGMCRA9TVsSAnZWagAAb2gP/34lwr/vzY9LbqmHSosz\nZHwyx4qX2W5DRMTSPpOBqjcRjXPHptwmJSuYKF6YIFEiKS0CrDtCC4XpSen4\nTwn5N6ohq+WUDW9suxXW6FZqgWqy7XGLXhDq0Rrd3WpQvYeHjTP7QLN9L0Hp\nuwBY/I/YXt+JFi8erO2hpEG2SfTLOuM6/3yuAI4n8m6fJCUcHVb96fern57h\noGC2zeb0A1guIPyVuXZl+EQv9xS4yJhRmRP+e2Etv2mzJZDKwPgePCvi6pFd\nuGM1i+PLUwRd0VmoCZugWsS4wsRTEw2DStNWLqhT8av4EkkJp9L3+SS5unkx\nI/AK24dv/gLjrDIokNdPAmNshsMO4vIDydwYaXXLE80Oy9oL5pqS6bp0v0vy\n7PSBKokGGmyDDTObysnPcxXgjBZ0N6hA7sNqI4w8Kl204d5CYVC8xDqIUsVd\nylHJYV8zxq/S/FClW3/P3PunZ/90BuWunfRJlUXFJPjesPsMri3n8SL3X5R+\nq68Go6dcLDoa15Wy91xX6BsRwZntV3vvGm5uhyNOx2h02tknpgCisgs7HU6X\noNodS0QVfXij63CZ4qsuQZdnEXkwvSxjOjI2d/JpMK6/do1cswo2j7YAGbFN\nruXR6q/NcWWjajydSdDb+KZZb1QI3qACYUmzZe7FsFXjXytafnJaSbvwjauz\nZqwf\r\n=cxHh\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-J2uMVrJCvSxz+frRVPVpmOJEgx4GtOSASIwr6u0/hsCKyQte42mssDrOWnk1nYMxnZWG4tNWsfuDEVJF+4bXug==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCUX9lUG4mr5tbVGZL9DoU6Wi7PFUbUAnm75noMHkq+wIhAJCs4o7PFX6ZiLa/Ukv6ECKs1m7hm/+W2AdUKfyLYX6d" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1525301631811_1525301644323_0.5717761402973967" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1525388744646": { + "name": "puppeteer", + "version": "1.3.0-next.1525388744646", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "555668" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1db4986d12fdcb6a81214f44721b2c0bff9369f3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1525388744646", + "_shasum": "666c85a24ab776db95890d2dc2a7f9a24604f078", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "666c85a24ab776db95890d2dc2a7f9a24604f078", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525388744646.tgz", + "fileCount": 31, + "unpackedSize": 259573, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa65XUCRA9TVsSAnZWagAAjAsQAIbzNUbkZ6SpGSeLNJSY\nRWLiaN6GG+/9W9tmyHL4BSZEbBaK5xvOpiPPOMpM2nd/J6kctugPriWf67X6\neI8+UDa6y5ydx5/8b1wRQvfyCZvF9NRkR9CqGdkZkaSqPRNlogdAyRBjmi0n\nQza/0lyanaSG6cFh7jHapCO7lrLyWtyhJvbtNbBuAsgxJu1VoABEA1gefwi0\n7gTB1+YT6xZ1f4oiqXM0kCfkw0PFwXH7cO4iY3YjHlqHRzKD4y1bvxb1YfWK\nvn0ltRJ4rOT8DX6lMEOaiIxnAq+nDfMxizkSDgJzORE42eDQBplFkHhJCxXc\nEFYsChohRPPK+9njcnc/Zrv01WlnDsDXDFXNSG0BGZD0hXE3I0oC0X0+9Yl2\ny0HZDcVymBcNe/KMf2BMPYCQOR+AD9DofyyChJKuIrva6IIX1KuxvisyUei5\nz4p5KMZQ5ABY9pxoDPtaB9WZfVHdHOEMjJQxzJTRzruro/IgIBcf/Pc9c1cJ\nCXSNQBIPZhgi8pqygVz9qIKp+gNvxtK+KN+X/evqTwN0O9FO+hMoxZBhJ+oA\nut3mtgRPz9iDn+GYQ3nt0S8/JYl8KcJdPmA8mdy9vdVpBNohTx2kBnUue/+0\ngz72PluygY3ESOa0wALbl26yqoEkzjjkC95BR9rOQtm4iSndl0xTb1d6sjLY\nZjYJ\r\n=Kgfl\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-GIyVvnxYnHDw4fdnySa2WZgzs1ioTQArt15GloPnPPIQXcIgzemSkvZaz8Hcx6ui5vYNI0lrsD252bqoKq5sUQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCxbRSDqgUMoCGxjgOSs4HlpoUIB0Erpe9Q9u8UnxLEAwIgJI8PWvs3NpG2TxfGLSg5q5/cgmS8IwU6Kr7chcPT+Hg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1525388744646_1525388756356_0.8843785712044632" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1525459650281": { + "name": "puppeteer", + "version": "1.3.0-next.1525459650281", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "555668" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1d225cfa17086ccfb9bd403f8eb3623255d54cca", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1525459650281", + "_shasum": "80fb1e5df734fb6ac4fda7b5c28ed0aaff921414", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "80fb1e5df734fb6ac4fda7b5c28ed0aaff921414", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525459650281.tgz", + "fileCount": 31, + "unpackedSize": 259664, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7KrPCRA9TVsSAnZWagAA/8sP/2H5EYL3Iol0nThg56qT\ndl5UUka2GLYEnnMLQl/50lpFmOGlCiglwGQvIM8MiQ8zZJZwJirKDton/XuK\nKbcSmqCNGkpmhzNQilPqCwAanf5YAMg5rbSXGp2ZZVyvoLZd9/l4HUUwUp93\nYxVIW3w95Ybt0UvQiADlxFvEnNdJ7h9RaCEGfNp3tzObhGX4PayTSn21CzRd\nLmHPi742U1p7HW8Ak3ivIcPCwCX627EUAEHGSHLXDcJvclQlUD22XIPT0loq\nE6O8jIzgtStgVme/0T67U1iIiKkz5qcYZxAxoskSam+CYlqc1iscGPxwplqd\nzDoeYwMLvgj8i0+vF+nk+HtqxbYIoS3FBL0MdTIZrqZxlNPGf4bRH+Jwj1Jp\n0H88q6MvKIcSVAg0Q1eRC/WJ/vVCJfk+sRP9v6XYY/GbJvmVtp3/2TUE1OF1\n0vY+z1V5pOvqQ3/heu7EK7w6Y46xtrc5+V0ZHhc8r/MBLsNBLFJ1qAS3Vq51\nlkLBBWcOoVtOAX+NZ0Nv66gJht2TIHq/YVdGXb38YEQ7qYrkokEMNwG/mHYu\n/INp+uNQipulZTaCIWRIeXSqhv/A4+e+8MTiJF+VaM/+fCTO6B3hnfin5vJ1\nD6Vb3uH9W3kmpTpoQa1hTL0fmzadN5SmCjTTMewov+zrtQbLu/OVYC6m5+Ik\nf4g2\r\n=heW/\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-MkA8QT89kFg3FCwc7x7h0+SpKMAcwxbusBW6WIN7FY5GEMQiIiQQ8cORuAGuY6r0wN2iHtKV3L2ePx0bH/yTRg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCX1VbE1pJeTwSTooenUIkb7Y95yjxaySUczt5DB7fdZwIhAJ5heaZ6/s73EJ3xqTz9v3F3hW3BYr5nExsCP/wNZrY4" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1525459650281_1525459661963_0.5136312765544584" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.3.0-next.1525828826075": { + "name": "puppeteer", + "version": "1.3.0-next.1525828826075", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "555668" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "88b996877fd83514cc5c2bedee7b817db9a0eb79", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.3.0-next.1525828826075", + "_shasum": "c500bcd6480c7839d91b6c951b76b1b4273d2795", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c500bcd6480c7839d91b6c951b76b1b4273d2795", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525828826075.tgz", + "fileCount": 31, + "unpackedSize": 260032, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8kznCRA9TVsSAnZWagAAmXcP/2clXZtK6QVSKNfHJYS3\n51jpNQxlWtbl1XL39q+U98bkCxZKmRWeEONyxFhI3R+200zC8VMePwT2bE7X\nXygJ9CfV5gDCjkCW+7uhnPO5kKdv+hbDQcMcRHxSg9WbzqVL7WhhbOZOLKN3\nbt91QeARjWMqQUD/QI/2cVEJpwoEoLM98i8cxt4MJaJR2ikzWcZjm/tgvaSa\nIP82oESVnjINbAldvGhcYx/Fi8muKOjNV5Orhu81djdFpdk8KaJFgWgoASfX\nbZhnqLe91XASAjuLfsOw3u1mnMfFifQE0NOzrTykVPWurTvfGUJ+xvYl9VYM\nlxWocL9KhRClG+yI/SRGVocsEEufIHTquSjjg4evnc/ry2eX+Ic/GqBBtNZV\nmpq0zMsCU4T/ImXrRGAxZD5lt6UIn66DO8PyRmogyYzAd+1k5jekng+DZb2D\nhdL7WQAD1tWTeENl/d3ZrL84Xto9k/fh3aIMFd+uUmIlllSlKZCjA4xVJqw2\nDoACLPNK2MqXPE/479qN3LvRC2usLp0+VNPmgt4ohdDzhLMkf2u7TBzp0Fuz\n3NF6iJh4wfbNdAImVocDKXAhCusUY+HmjSUAY2KP/izUR+Y8+t71Vscw6ez5\nHH+ym+ydBAA/lqw+HEdJs+Vvv9buAC1ZY+6Cwjn9CUfQlSJsQ/mRCmpr9ImQ\nrqzO\r\n=t35X\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-bFYzTY/CxUO+lKdUptwJj162wiafVpHGXzsK3Ynnd9ikJBZKk6gOJrCEDt3CfobCrxmypPWXWxk+dJwoBci2Ig==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCFpUfPMyn9meVU0Z8ietqA4PHqwkJxsd4bLnzypaUHaAIhAIXPTQeP59vp/y+mfEqOyIwYpsH8QW8vFX+vit7+tvEg" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.3.0-next.1525828826075_1525828839640_0.959199372458055" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1525841345569": { + "name": "puppeteer", + "version": "1.4.0-next.1525841345569", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "555668" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "808bf8e5582482a1d849ff22a51e52024810905c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1525841345569", + "_shasum": "b993f81763194ad6afb96293d7924ab67ce4601d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b993f81763194ad6afb96293d7924ab67ce4601d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525841345569.tgz", + "fileCount": 31, + "unpackedSize": 260032, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8n3NCRA9TVsSAnZWagAAyuQP/AtjqiYX7qmqoG1IO60/\nbjJ9yMBmpVemKqhK5DqxGKlHTKgctCQmL0GXF7XqsASJBMInsb329WIOHtDB\niqok4+3VPBJjwGs8/y8yisjJ+MNhYuwyCV9MGwNOzxjF2qUZGxxKgRGg1tYj\nUnvvT0t+XrTeC96uAimdVfJjXZfWEp8R94EBL0mLOOM8Ov+lli6v16rrQy91\n91CvQXCJscqcPBRUl0SGOCNVSixpgzQgQ1eWF9oRbuGSAjpywt828VevefGL\nOHFeR9P3KFhBub0OQt49O70iIAIF65Cga6TynonLYB3ZnhAUv2zgaXgJ0TFZ\nvZsSPqkHEh1q16Mwi5VPNTY+P/WHykudyxl+ssDsu/et0dw/End8v1kAdTdG\nSnkVgZ92m1KhoKKyoIFosmsOVpXy6rQeRftCbXDgraj3U+VtdAYMYzm0S1dN\n22bkPLs+cj3ucGo6BgewQEy68j0tb59fTR/Vx4Vt025i/nK48HGnDk09+K7Z\nIX9YM5FwHuqwtkQ9izCneajmA0dMo2stiBCoo8XZi77npBJ7RKcC4i/Mh9z6\nYh9MmQ5LYnOlg+G2jhdsu2nSIl28xInXlyZIN/oqtzeE9BXXHchmKv+zVxRF\ncUxnRub1e0vyg5uFgdY4zha6juD5oliq6nreNRLggiaZj9sqjkkdVvAQXyFf\n+npe\r\n=81Ni\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-TVCdptxho4fjhKy07ilf+9K90lIN4QEQpQFwA4G+PKiqHD0yu7aR2hJw2UDcfZm9BlwzJy7AKyJGzUhCk6RbRw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFHgS2YC6LjMACDpZo8HnUFbnVmcnT82buxjTgZtW4XiAiAO5/RDVg48YIprIF24Av4VHVp3F2AXY4RnzizOiVk05w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1525841345569_1525841357289_0.881273117876008" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0": { + "name": "puppeteer", + "version": "1.4.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "555668" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "808bf8e5582482a1d849ff22a51e52024810905c", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.4.0", + "_npmVersion": "6.0.0", + "_nodeVersion": "8.9.4", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-WDnC1FSHTedvRSS8BZB73tPAx2svUCWFdcxVjrybw8pbKOAB1v5S/pW0EamkqQoL1mXiBc+v8lyYjhhzMHIk1Q==", + "shasum": "437f0f3450d76e437185c0bf06f446e80f184692", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0.tgz", + "fileCount": 52, + "unpackedSize": 549854, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8oPACRA9TVsSAnZWagAA1JAP/0PcmnAIcNydRkhHZ+JK\n+PSZuhpT6OF+HdHPR64fBOfsEmnnPaXf/CN0Y7RtCOyK1UOMK2FvIrKpaee4\n8N8SnFlbbexX0PmNHC+F8eaPaEl2CIrJvjfYOgOtwPaMKLGQlqdOpCHsA/bs\n6ZUY2qVrw+JyQsA4rYrH+U0NRShDgKmReDyL9X5iqNYjSJ3VY0kNrXIXYm3m\nFzN7wuRAKVDTh9wB+Q/oZEJ4J4k01pcMWEMbp3uGp+sclrvfMnKeIeV/3INQ\nPTX0foBBVv3gusq+wxVSB8N1cPB0AOE18gbYTmBkSjIQfvBvIfMB0pgR+dQF\ngGNojmlhePEtZQW1dr56+Qc0nu6FG61V+0P8DWnD3ytcmSzEsHjJkUMzYLwI\nAFE+HlBaSuVSlAuR9tw962wn7Ph8B4ApmrlFbC2m/3VB6E+rzmWdvOUoYrLN\nWdSTanU9vxAuFwaXCeju4PrCHHWNx2CoVGmIVYShWdwgXyRow7QTkLihhhXl\nUsJaPVMDMXCATYpY2dUm1EZzNwc3xxfnQLoNlmFPEBSldmugzzZoYR/KktT6\npEYrL1xOJRp2uGYBoSnzM3d42dM9TDo5fRUcoR7dWQ812QmGBVgx4EoLdPtb\n9kS2CUfR9bJpzksZ9kY0tsSs9rClSfDlyp9iTGWqHkLwxS2qTVH9klh/KYXY\n6CAq\r\n=KBLP\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCVeZ5aL1M5P0mKc4/WWSZqM5EgU5aOWjvVKWvcsUhvUAIgRSMSrrZQxK1bQud8mlrCjS6P51oYQrpaQhjNZBSHR74=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0_1525842879740_0.6434763578124978" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1525875866798": { + "name": "puppeteer", + "version": "1.4.0-next.1525875866798", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "555668" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d02440d1eac98028e29f4e1cf55413062a259156", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1525875866798", + "_shasum": "35e2f02710d348238c4ff8aeda8d35c60e52a67f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "35e2f02710d348238c4ff8aeda8d35c60e52a67f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525875866798.tgz", + "fileCount": 31, + "unpackedSize": 260032, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8wSnCRA9TVsSAnZWagAACs0P/2AIa2aPu2Y73sOLzrMe\ne4GhrCxBHDmkCRuowFwtWhitXCi1NzoOpsiyoolm38b5GyzWkgp+6h2QNgOj\nOqVa9DbB2F7CNPpe3h0+OQpUweWaekfPnJHWF6H2GSf7UKLwWzzvGzKPQ/q8\noWiDhBRIgT4ylK0KJcLVCKlyARJeXPF065EjvPwclFBuCorqRWArKgEkw7i6\nlERrEqfbvjr6LJwea4O2OONQYnzfYiaWW/P3afSqsxhyi8cCkLJ2hcjkuD6X\nlJMZDed1Eu5k4FMWt0yQlBXmpLx2gGN6yOj0MH3JzBNETdcBGEXfCn1IuXH8\ncm8wcGV5jY7takS4HkDgtvu3Myxay+sZr52BtuSKM0zGJTdbPLR9yNPWMJif\n+9cb348SqdZq7sqUJUFdfaxS1ijk8kVKhf6RN1HY1o40wMwYe6oZVXU8Gr1D\n6Q8l2nrUpov5jp1jz1ZWGLyLdQdAYCSN90CrDS+62qcTbd20wR7Z7b1f1I2U\nohhL9af51zhTbY5Uey+UKKbfUZkTEJved4DDr0a5oPbZ9KQEid4WzFRTbzqP\nFFVoG2v+fumyY/1QMtsj2qoso5IPFa+0/gLygdwXzhgq//O7IWoW7/cTqleD\nuDj5QrFO03lCBZ8p+Ar3i2qNwXL43TiXfx7xbzQs6ZeFnQbzPvpxCCm8fPnC\n8mcJ\r\n=NPsc\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-hUyHylCgRqAtfv5k4Prpo7MaUH8Sa/UD+7PcdFanYiyzboZtWwg+4i7c2XfvJWTh4a2y4Gv4cHLrR60rq0CTqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCsnW9jTIJy45B9mLY/FgIDTKqIRxmTBsirWnD1SxdQgIhAMgjBN3/wy3R7ZpKBd+tQg0rWO8eA6QCCr04PYv8lW+/" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1525875866798_1525875879439_0.13942436362371113" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1525886024469": { + "name": "puppeteer", + "version": "1.4.0-next.1525886024469", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "58c672b1314aaadd0f01c6bf644b8a9cec5b40c2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1525886024469", + "_shasum": "b41cc1e39e04847d586d3c754f38ec3bcdbeb8c1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b41cc1e39e04847d586d3c754f38ec3bcdbeb8c1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525886024469.tgz", + "fileCount": 31, + "unpackedSize": 260032, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8yxUCRA9TVsSAnZWagAALCUP/i6O6mL/tJy9WgM+3MLd\nd+AGUw2PwXtFoUzpmpwksLBKevvoLThKiKh6aJvJInLNAQD/3AcG0eosoLMU\nvnZDO1iYdQGSXSLEXp4DWUhoeDfSV75JITZ055LmPFwDg1ScEMwWdPgpGVPj\nAqAyee0kxZWZitD1q6MjAVt4VH+nS+oVlniUBV+ebMbhpebU6bTWVhK5Ui8x\nysVyJAv/CHPKQZgdI5Oj+SGJJsIPx8hnOzUh6/eF8gbZ2/+cGAtALt3IqWIG\n40gnzCMuZaaxIY8ojg/aE8n1IXWJrOL5uiZmqWecdQfz1rA7uGSvLEsfAs6m\nrLfcWQsErpn9aneKQaK+hNwcxplljvHO+tio/2+qdfuJZfndW3fNxjIkDE+m\nmq0/U3VqippoL6UVgJwGHh/0lKt9SF/tRFF9f9WHdxCAEl3eIVStVizhtksj\nvqGmhkUAVNokWtGH34u1lIpQz/jGJzGQc0PaPYM+03Wy7u2XIs7VonfEpcy2\nUgKMLZK2LYfmAEXnQFxIeQqV9c0WOpDcd4k2GkTRfz9AlaBEN06qG5XoZLYK\nrvkm1uo6Z57gfKcqR+2Oa6HGHlMkNn7iw6dFkzYzpqyspNv3t+mrwJp4+SSH\noM5N1j3Un77a9IFmNffswHlAu9Pyfuyq/toK0QMopRMDJBnSqiYVhTqaupF1\niVJV\r\n=vMZL\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-GI7TpJZN8fmeK2r7/EWcp2E3JOl82A13nzIZagVYW4mmOHCIBbnrJ4tsYo2E8mG+XKvqdXnyBLr5lUNxL++GMQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCnjLfsX68+uQ1oka6wLdpbzCHQah+k4GO2mhDYd7y80QIgWZVIctiiLTU3hvBSebDIydBl0fLsqEH38vD6IsQhvRY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1525886024469_1525886035837_0.09906185429199788" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1525984104919": { + "name": "puppeteer", + "version": "1.4.0-next.1525984104919", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3b03ff65c7b369debfcaa67a8673fba105a2d20d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1525984104919", + "_shasum": "a62c589b3fa9330096535a575923a87ff32db1a9", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a62c589b3fa9330096535a575923a87ff32db1a9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525984104919.tgz", + "fileCount": 31, + "unpackedSize": 263106, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9Kt0CRA9TVsSAnZWagAA630P/A4ENavJm+1esyNAvDAM\n8RU/9jnZUnuYM4wsWe5/32Q777wNQJ9xvFn2O/XEtzEP8lA8ey4fBpsndzIO\nt6YUGrGh8XfFsiafxyTYAHaVk8rWRjm21KmYwT0VttzVVZO+6dIQsIEfe/43\nKudQCZN3+M0Nlsbwn3v0R71b/H8RJ9AEdSTKZWdcXs0LnSAeDmf5Kl18HpSu\n2eWrIfc/8iyWuEyz86WfOFXU5jxxZoTH4FEjnohwS2uLOqZgqVQUT7YSWMav\nLVTjg3Ndo7sYTgMWkDpyc3ETrOZuJaxvUZjD2z/Ae+bFdqhYee0mut25eBVe\nwoSn7B1xjfstO5AUoSeTgqI9amFjSygCoTBnarT/YEjBliLyX7TwjSlcKp/G\nBrDjRUwHlHK3PUUZwQypwSXdcW87RM4weLrd7c+sXom9OF44o5YivXfFU8Z9\nZ+6h/diXXyFLz4Vg1RzVJcnQUIC5/kQEyHw2l429cWNenp8xjDOHtJ35TSDD\navDHbESduTSsji2SEvuJ3erMoQY4+a1xjtmvLSBoE1obI4wLcGGgEeDFuxPR\nbXJ/G4xyydbFRc7/IbG0BPOqZwNj+/QA4knGoUvJmzZq+6LcQ4TaNjircWWU\ny5nrbOiZNAV5DBdNy14waYbF8LF/vhGM63T/aNDYXyE9JHJFINzjf3dNoZ36\njQCi\r\n=duww\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-bXDvGeUpLMw5FwBXLgWamevp6g72Jk614J1/qWrua2MQUNL/7lwtttAcDTtVlt+uOpXHmom7w9qnwfKGkPVP0Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG+n93RKgmVmuwOBh2fKdC70WoU57LKL1sV4gIoiyShDAiEAie8ILDetvIWTeN57UlR8ajwiWow7if26/epcLpjx6aw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1525984104919_1525984115421_0.0644930195740856" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526506763480": { + "name": "puppeteer", + "version": "1.4.0-next.1526506763480", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "23d25a6e1231bde9cc8d0bdc2145fbc1e4b008c6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526506763480", + "_shasum": "3db94c733c16a5b306dd4bf4823341ec8e2fed21", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3db94c733c16a5b306dd4bf4823341ec8e2fed21", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526506763480.tgz", + "fileCount": 31, + "unpackedSize": 263154, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/KUXCRA9TVsSAnZWagAAxY4QAIDbzoaSckipAM8abV+l\nqLO25FUv9cvWGHGSpP6M9l8J9ni66cwyOPHqq1LFh1DUpiy1C2gxbYbqsrDk\ngWGpMGOjenDr3Yh3/es49KCO0oH2oNaJNWMU82T34pFcgMIkSKqdgWNwHS9o\ny4nm3N/fG9kslqt1KmXaKX36/YSBMEZazCR4R67EZi3MfHoNTKCgfbYdZaFw\nf87/qSNwF1qAqRpTyMTWtfSP29wdRJZihlFdrc6kz7xLHNJa4nT+vpyYGEvg\n9o+1GAFc0M90F2uUpWhej/PPaJGNbgotl61rrIrxg0Q/Uedkbger4mzkQydC\nA/tPXqgN4zbw3pj/U3RXUZ2Df5OFVWa2wcoTqtaZF91RNyCptBBt7G6WveQp\n71RwWkzyuUdkRfUSD7AAFH/3+jaX7KJaaTnFn0ArZFha9C3cwHZiPbzI75Bl\nWUqmM1DdLYzgLRYz0tK2bgZ00OdpiVJ5ZG5muOy/+AxJ9COzH9leJ5pbWPbd\n9PjZLA/BSfCPHoOVY7uVlb0YOLII5kYNRtaDM6EU7knD6F6OJuP67Fkv1hQx\nKm1WmCSXlB71R4xvr7M3sgBaSwAPop+ZGQGqrTKAxX3gme9R3WpDUzEjATVt\njSgy8xlJRKBU0/m/Ed2FoT6xSD/ZOff/bduP9sJhLZRluuSih5MWOF7DDcdk\nn4o6\r\n=+f6H\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-5TC3UpMfPiQNpFomW0QP3kdipOxVcOj8yGdEaKh8QXvgN3hkET5/3sKThowaipRwdUXL0EgGUxgS4Rs6Uh0Bqg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAcEQ5FQbNFT9MXN/p8EdRSoZimI6SvfcomTM0RPIwd6AiEAxA44xV+w0aNo3L4POCJZxMCh2lrJqz74dHAsu3jHDms=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526506763480_1526506775408_0.821695562586988" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526506897747": { + "name": "puppeteer", + "version": "1.4.0-next.1526506897747", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.1.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1c4a8f0bbbbd5ad6102cc52012819c91ca8565e6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526506897747", + "_shasum": "f5d69b279ecbd3fc5e65ea419777774114b52204", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f5d69b279ecbd3fc5e65ea419777774114b52204", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526506897747.tgz", + "fileCount": 31, + "unpackedSize": 263078, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/KWgCRA9TVsSAnZWagAABQEQAJYx5PUwZwlR5sUcZDb6\nGw9xNw62pMDlbhFjVYH8VcaUoHJX4O05/q8OEbe24n2AElbCjycVhq2F1NRt\nTAVh7sAdpVLbWDFUPhOEvtQrdNk194mOQy2N/pp3FzVG2LzUGa0pHhYsdpZT\nU1HRop735g0VtJkiAxoEa3fTySSaZqba6FPglaFdkgJ3VmH0ttxJ0AI+sAJ4\nL9Q6Gci0Utk2BFQqLwDYcOXfgaZQDXdAs4QDmZ1ZkuirxJ2tWgbiU/Q68/SK\np/EIithzRuOa0H8+DUZc8cKycfHvMBTFApCjB6eMBJrCnPITmaEEp34zUPqg\nclfmT0gydP1zIyU1Qvki5xG1J6PpC1W/6pyp228Nb2zJ+NCKo9os7u1D/hPh\nkpiMqgzD4U5gTdqXB8JlfMm7PYXS1U0CmPKRnjYTAOE7gDxJj6hjiFKabiwd\nOHVp43RSD0H25/2dIOZRPiBS/5fU3g/fSeJhqh6nVUnLuIzYybHCk16/OtSp\nBb7w3mItOj99MQuuGpi0vwcOl1ethXDcBFo1chiI0V1gvGVtHOoeNrTcdBM+\nCmziJ6OD+LidxLlYTdumuo+05jif6iXjb6myk6ePu6uYUWoyxA/3mkXYlBWm\nelpH4xIVxNNhExyMk6Pgmkk7BwOvlhueokAnNKwlKIBsfSOaEis2aaMt+u8O\n16J5\r\n=fg/D\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-kohYKyP2qPi+LSAfU1JpucW37J1nNhI5cA9dpI+Jb8mVUbKEeCXA/RyR1i5WaqPVIt6X2SE9ksqQTGsEqvkU6A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDZAhsJjr7fsnm8JE7UemBysHU3ynrFvfTEhttnQLdSOAIhAMa6cclhNXUawDnrdA5kaOCzclPnz3O0upspV2KtzYvY" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526506897747_1526506912127_0.03821785970508618" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526507871161": { + "name": "puppeteer", + "version": "1.4.0-next.1526507871161", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.5", + "https-proxy-agent": "^2.1.0", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^3.0.0" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.0.0", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "de82b87cfa1c637787a09b90266318905ae16f42", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526507871161", + "_shasum": "0b74620d3fbb3a7d50d0c9290d0e226ca5b7339e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "0b74620d3fbb3a7d50d0c9290d0e226ca5b7339e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526507871161.tgz", + "fileCount": 31, + "unpackedSize": 263101, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/KlsCRA9TVsSAnZWagAAqwMP+wWNH3Ov6H+tbu+ArHzB\nzHdmmpaHonamZazmbJBLP/20L9eWz1b9nuh0tFEvpzx9lcGEMa6VHEFe36jA\nQm/nGMjH2hSLLtdW7h/9tLMoqtKOq0qOdYO0MI7dLIxUkBYQW0mPbW4oprqu\nHaPpNZEv2jGFEzaXUPoKGHXsYGjYLNAK2Y6IrAlm2MgEZZ73JQZYKBZWTYXK\nYpfaIfOxdy7g/PfgPe8QOKhr+qXnuMbmXB2+6zxN8lzLKVx3tXAK6w7o5GrG\nmTeyBntOxOAXeMT+4XYGxbCGSatyKUjWTPWbdifMj6kkR5pQHNqeTvupXhrS\n3/PDkcZQU3nwTcbJEoU7UUKQIRUCuujrOw11QuF/BpKFNh+vIwSYJoOTtlxH\ni1y1DTWQQ6MfmFrc49OM7H4MGAOJVZFFYlRJuV2VCTCPeTApX0EElYAEP4p/\nIo8ls9GfNg6bEr3AjV62fkWpAU+YSaM1pKu7ZkgF6nrCRyc045GbdPNZBT2B\nNWYU6lRoX7SX6AoG27Fuw3jzCdYl0Fciw5epWiVqheNv77Z2pKCV3cOh0Yxb\n5Vn3r/XePOl7MkQwfHNVSFMJRhAQg36ae2ylHPUedC2/Fvfo34QTK8rBihbS\n1GGiSk2j/YDqWbqbnYriL7NYSC1PReGL9a+zp2NAXsD7tmetwkg1rpZSom14\n6G5s\r\n=ocHA\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-7uHedbSDnpPrKv47dHhgdNT6I4c6nThF440MQS24AzNiAUlTuUZatN+2pm4g6WfBXMx3rFe5z5eDSH7Fg3nL9g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGQUX4+MW9RyG8MNjr52visAwAPj3sb6JI08ODejf8DiAiEA3PQ1che1y1SBITwBifJHKjvQuezaiOSPM3AkMrSlhOg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526507871161_1526507884518_0.8038771244044178" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526510342960": { + "name": "puppeteer", + "version": "1.4.0-next.1526510342960", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "2d82e0891afdc3e8e836e2edcf8261e276fa49f3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526510342960", + "_shasum": "e6bbd9513b29a0d07ad0d8d89820a1773d7e0e16", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e6bbd9513b29a0d07ad0d8d89820a1773d7e0e16", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526510342960.tgz", + "fileCount": 31, + "unpackedSize": 263102, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/LMSCRA9TVsSAnZWagAAGHkP/R2l+3YU50SyRlkHlQ5A\nM4q1kW2ttAg2mWwFZElAgbUcRiz8EJqez/kEo9izr6GZHY4v9+SdhCAMAyZT\nYsFqMX9Ho9+T01TfOY1y4g86IR95dfOxX0Aaf3gsJd0RlfrVrD3WctmLBuKB\nqV7giLxITrula5httcH4gyE3PTvtG4g5H4XeCLX0Ke9GCTnOcnLVBucZa3ey\nodgXWkXOoqr957HkFlypqyWwaL0Vno1scM8g+bqD5OzQBYkKchTY67M2oyR2\nz8OZM6dgfoAicSjpcmPRpfCh62CRwIheGpD0AO7kESb81zA12RhX+N/PQ8Y4\nZr+A9+g53tDf6HEVLv9Mbg3h1JQehEMIeyHLCqdvMQTliE69os4f1+8f8db6\nZNIww0SrukWIz07uQc/+i1Pm6sJSaykmAjR+3qkqSwyjX4SVoX9z5q+oiEGk\nepdkj18M+A8ZQNJ7ebzyfROTWeyoegtUOPrPLRQr5ccLUetwvl6kcZemUgZ1\nQy5yPuAMswAZCI5KSGxTfkPut4R6FzEA/wGIFmMzOuAFlKFCPatU+NplFrpS\nr/pbwBkj3Z/8pqu95yt1VIGF81HttYS0ap0Eqjx4XGDPJJUtWGauoSoQGiDT\n14ktTcRNxrQBke559Q72S6NiWdJ+5URfQ/s42JxiRPLiu/4F7V7AgL5CrJ/W\nbOj9\r\n=v6KO\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-i91pEtcxgjNv4+bT7GMnVY9Z8hDKHJx9YI1sGaxujUctxa/XZnmzgNsE0pFjp441lExDn1LJdw3SW1EVjtJR+g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIADmEKfxp3qPgdKL6IrSctwhg6bU6lmeR1I74u14KCm8AiA9irDR92zKOsOm+ckW75tKFYgDwC+aZP8sNQXczTmgNg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526510342960_1526510354634_0.9056840965537343" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526519544088": { + "name": "puppeteer", + "version": "1.4.0-next.1526519544088", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "51645932b7dc3c3f3d958deb667c22b3519bcc91", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526519544088", + "_shasum": "41a391fa50cc53ab8d119c3a27772a58394b7b1a", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "41a391fa50cc53ab8d119c3a27772a58394b7b1a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526519544088.tgz", + "fileCount": 31, + "unpackedSize": 263492, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/NcDCRA9TVsSAnZWagAAzN8P/3cdRukNMJMBsnCGg6BT\nnZWmmB+yIUM+BvHvq5o4nMpXG07mzOJNXBDrepskHK+zL1z+eXtC80Lwl8MJ\nhndMGkZhsTHaxQfjwDedLXlMbB0vUGrbHcNWIySCg1AxESsRMEAMFfyovoAN\n7YF+PKeUlzwfRFoOGualSmGWkJh4ursLOCIhbrnajx8uwVdkAUJq5pkp5Ee0\nUxWSKx2pDONgjHcFuU0jStI9RHlRGJKxNgJnjGwJmZV8WkKK0n7rv374JhlI\n8pnraLXPw8XFVyI5m4Wt50osTOyFwGI5mkb6hNNN7ZdMr5rsJlhxTVpUY8sZ\nacg6w8lItT9/wBUG2eXCDsGSgNz/Z8+80K8XqNY/FJ5H5rkCArNkGKfp3IgJ\nxmEfZqg6j24TmS905FCoLMbvBbzTbnzDdq95LF9FpG1++FX+DG8v1NuP7hBM\nl6fnTpsV9Epecvn0cWmXecXK4eekI5dwg0jPp4Fk2U+UCmxTj8K+kHj8sb5G\n8keK8n52q8gwycUTjywhvXkhO7vapKCwWXRWqrMuZTtsSnPMeGdbYReMwRS2\nTGTxWLIvy33Jp9z2/Ts/Qx3YWJ7O5fVKzhc9aGaOhJbVB7OScv7GGrP5bqBn\neLwg255xM/PnrjMIpo+w4UVfwGDqtOijG00XxWpbljK8Ls3FGFAi1eQBjiEH\nLLG1\r\n=mjgW\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-gV1ah0Am2YEqnXBKu/hvE0LLEKw9xpdhv0yc5KiwyyOvdzqeK+G9kPs9yvV7cydivgp5hwwSN1k2Du71u69hrg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCS9ZqXCgPWTHPKyiUWnh20egPOJzav/3oVkw3u4gl+hAIhAIV10KRxpDo0YvgYJS33UcgOzxXugNGFP4cta7N9oXVR" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526519544088_1526519555592_0.11218415154403294" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526593919447": { + "name": "puppeteer", + "version": "1.4.0-next.1526593919447", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "2d9e5a0d25006c0b43fa03f5449c85d2c1bc8604", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526593919447", + "_shasum": "5fc24e52e088d6e1bf972b848482f14d70bf0eea", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5fc24e52e088d6e1bf972b848482f14d70bf0eea", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526593919447.tgz", + "fileCount": 31, + "unpackedSize": 263492, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/fmwCRA9TVsSAnZWagAAr1wP/RN5HY/hyGExLy0FEXQ2\nh41XVir7AxEp+06lOpvAMr5ZynaLvij3ErMngrWk1+Phtp/JGUxf5gKl6Lgb\npY/BJWXfCcIDfrt6PLWhbmzugjFRlJLlTDK4a9nvfPYpJ4a3yiI/xX0AtSrw\n/4QqWH1gbYvm+/EFxvLI4HKA5B1eZO7tsxZoUr54LvBtNHuXyx1B0+YcEClx\n566AjRKhBT3M/V6IVePmAOakou6Xg3dHNLoU8nqlWdFWXB5GQIOpKKIN0orQ\nrf2kL2F6xVre2+mHnbvA1JEBGmitDC5SepQXsvno5eyXsQfaDSDK79aPA5DM\nIeJq1q6hEGnInIYuVVyzq/5E2+tTzdNJRjisoOjDIftFtwscK0M8i/TT7uyl\ng2c+fJqAXU3T/GUbk/T770J2hkR2N3h+QibGh7GZfIGltx9qjcw3F3+qu6ao\nLof9JmhbehKLtWqcf2YcXQWkFiAE6VH7/qBPGhFwrh7cZht+wuixMmWqF1AS\nVr7JFqyUIEu1URXMB2I4vIjAyg/ZUGxHz8y4HviVpcCLA7xecgoF/t/yILN2\nscKqcTJJzY7dESfHRA8Q3dvCj/ae7K8kSL1ob1mwquyXHvpjwtl5j1j4vD1U\n3UBSqf7wShzLjqRrgjKDWSYe4NGG2fs0Y3J0eSqbawggQuG7FrLxo42Il0Q0\nPYBM\r\n=Jt7Q\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Xph6MyO1JtsqYKYG1r+IsO3PVz1TXTm/rNVBusTmDL3VLFA98ktu7+6DbpCo1pm+EQM23xM8DoEbFtDNG/sJvQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID3PwCInjwQwb5FGBzjhA0O73eRysDb5V4ftY6kalseuAiANfTrWBL/FB17HKM7P0BBk51FmaZcn0BIo0gmhfCv4Mw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526593919447_1526593968035_0.6525931850910842" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526933481310": { + "name": "puppeteer", + "version": "1.4.0-next.1526933481310", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "b474f2ce871e094c792bb3d24281ff45ec6a8987", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526933481310", + "_shasum": "01436198be1367fbc0b2d95f2197547f82d8490c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "01436198be1367fbc0b2d95f2197547f82d8490c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526933481310.tgz", + "fileCount": 31, + "unpackedSize": 263492, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAyf2CRA9TVsSAnZWagAAfOkP/3RqcliI3baApDsxk7ju\nxqfG4HtvAO36AHOEwkagLSfG+HUEVlr1e7mMcTZreqpqN5PkMRPfnbA1Pffj\npXKs+pZ2SuQofvqPMf14s2w4h99G2zQcGf4jh4yMkSils8TCGv7cCMUyIhwi\nlPoShA1C2UQnhpuixtpkK4zqAsBHMrUGoUO6RLMwfBBDzYz8hk4BAw4o75wV\nhUBZnGQPPK79RFABxFeZzdvfAM+OFrMWHmK8zTC11sYG2/rh259aC6F+qICT\nkRDXFhVhN0SApFLpsRanM2cKmfJ7agX71QzzPSxjxsQE/J91I2+2kn16Ptd+\nAusZ3jJ6tE4eo79+MKjs3tkeOyd5cKWVwfhAoyKQrQtEy5JrjzlmjENzEzGH\nrz8RBbaDLZXccmWGDkYcCig4qXB4iyXLndqWn3A1ysnH6lGtrpc7uBTAt1d9\ndv90LVV/x4f+nPsL9lF4zbOoJLkQ+rABLBv4U/orrcC/RGUp7hn03p1P7CX5\nP0dXNkqyI9i3gnaa70PbC5ZE4xPdxehhytU/k42AAwtNQFtOE9LKCj76Fc4D\nf3Hoy0Hc1zE2VWNsgxW1MafYfJIi94S5cDB7lMhcHl1h7dVqRE86JovH0dmp\neptPVchM0BURlOj93ZKb6pGTrihiuPBSrH5U4aAKccWZbHvQgBYPDj4tRC8X\nAQmE\r\n=QwAZ\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-b4sdWHCjj5O0vDwmlUVQ2ma7LkDLudTRyr6Q+ZJRmYUsNUyr1BC5PsPML5WQMpX1aB6WPjmNiwu9wzp+qRKKWA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbyTv3bPvMH6Nb1cOonk2uSz9WbxBVvOfIFgiDeIWbKQIhANzW5fKbMPmAKhppOFkG7a8+bOrckeb3ih9waqqis4sB" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526933481310_1526933493999_0.6999080248296476" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526938425001": { + "name": "puppeteer", + "version": "1.4.0-next.1526938425001", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "93fe2b57d69d99bce037420422bbd7bee92471d3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526938425001", + "_shasum": "85a447ab4822465ae421fbd412a0ce9fdb5e3242", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "85a447ab4822465ae421fbd412a0ce9fdb5e3242", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526938425001.tgz", + "fileCount": 32, + "unpackedSize": 267736, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAztJCRA9TVsSAnZWagAA4WYQAI42CHvIMN94aTtvmnvp\nwZDKKkmRxZO8HxLw3zK4/xGOu3ElwYjw5ii0E7jYVuW8+g+lnd7EszFZJzZB\nN/AOeJNYARnLvm4E+okaHnQFL+I1F5Tq9Xjg+f3M2Y2ILwk8U3H7rSjimp2s\nlp9ohyIqPXQBhn02z9gLRs9AQQ6nGZTu0mZ4RjERiN5iNidXf7fxYmhuiARA\no15Jaqh90zhjPBXAPQeiBVBH+GfOaIJTYvHQrsnJDk1GZ+NTT1D23l/g3lPZ\nhRm90P6ZpIa+YSLiSZLgTgo/uqtCEDzo3phJU6WI26rSerNtbPlmp3k+9pcU\np4x2GrxUNZhFLBl2fzQjavZQbJnlOYOcHxKaqp2PyPBKNJMHppsPvar9R+r5\nx39rG26DEOjGqclhb5FF9KU6xpojw7QQZtvAuxxg7Hnnewu53McytGiqjI9f\nejVbw3mhV7HO/AExxnoA5R9jA6rp6mcJthu1b04i3JiQIY7a/WKBJpjNd2Cb\nd69jgHUfYGkh8mo5gEjFeo9xq/qTs/Xek7NDmYwCAkTr/PaQOQQNxtMs32iJ\n+0sVSmx2nqCMqOPkQb43UcKwsdCf3S8UabtY0UZok8r8gkpg1bSti0M86jzb\n4yiXJgU+mAf6mN88Qn5bdgtEIg4KDOwM97eXW7qa6ECw+euJJIkmNer871cg\nVwML\r\n=c8Io\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-JilftEx5fJPZ6ktgXI2AladJ2kxEyxIefVCdyMGYxUPyTatYSSSfAGXa5j+b9I2ffDu9c17kQlhPR85u2/qgcQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIErTYi3SC40UmgZs6sCwSorA1pyae6Vw9vpsLfFSJ066AiABYsG+tYu+nxecKBZpjaEP/KbhcgDo5cJM59rkRnSRlw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526938425001_1526938441484_0.759668684222983" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1526938802806": { + "name": "puppeteer", + "version": "1.4.0-next.1526938802806", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "17bc6515deec8229afb73edc3869f497e6c06e10", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1526938802806", + "_shasum": "0f926b36a7a23bf43cb64eadeb55b5cb8206c6ae", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "0f926b36a7a23bf43cb64eadeb55b5cb8206c6ae", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526938802806.tgz", + "fileCount": 32, + "unpackedSize": 267736, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAzzACRA9TVsSAnZWagAAPP8P/0Hntp+QzUyag4jmel2I\nD2I2OC/wDlqZHGZRQFDsCLboaMGiFAFBsRafmzqoMiJz/fe0+YYL69zUGSSH\nSswdPcDhJF8WpHiXiCuojv4BnjbbBgqTd/oR8jEgAPkrVTUGkT6NP+ueRf61\nVdsHxKHPZVdCBcPuji474YQ8tOJIClWbbtI9+/cvN+ieqNzvv8VQQCamHAco\nweeD0pvmA8s66K3Mg0tMBfWu5mvJySQQ642lMWpLc9M5YfBqe9HcBva6deA8\nYTQpV+pVadSDBPv9smXRCUCMF1FP5SZAE2Gie5ccDqSXR7NkE8bXX2scr25b\ndyPOf/XyRVpk34aDeIB7gBae/07Duh0Ju3fJRwTvtqLKXgqM5FU3TfCu86Uu\n1AmpE+DaMBMbCkXq6+SGB3OJIMdS3vif9wtWG3BNYlLR+HxZWIMSc0Nh2K/e\newk7iOZ7fyZDxLkZquLe22GcbgVokkdItBnehQ1inqeD3EhyflqlvSKydgUM\nr7Cp5FDF2kmKUziUc3CJjyOcI7dvA1lu8XaH+WQGr1hofozjZopfAOIw78la\nr79yHXkOnnUND3e/k+Lp9vIho36t8BaI21ZCYEtwLlFvGOawCAFPgtFWYInC\nVF6WArqdEeIH2ziBYl105/LTbxngEDA0cjlF1tJbduLjg9hNnpmQfDyLC+yt\nmR0X\r\n=yRJJ\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-fWTtd4WgmdejwA6TbXjUtLmg17gB2xJQd19Lnt9ocYINLIVZv4GisaxXLTRoQcUcc/kSIfjLsoiyawrsT7BS3A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCbQQMmQt84/HEdFEtAX+uA879e4GE09TLr6xvH5AZ3QwIhAKiwHQf99OtrY2H7wDo97rmvXa1syXu7+X2GT0o0H/1+" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1526938802806_1526938816438_0.11957587384019064" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527292051776": { + "name": "puppeteer", + "version": "1.4.0-next.1527292051776", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6a0627a4119991c95d134fc4aeeecb2e1d2b5baa", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527292051776", + "_shasum": "7cb5324fe342bb2dcb2f92425520015c5435b2f4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7cb5324fe342bb2dcb2f92425520015c5435b2f4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292051776.tgz", + "fileCount": 32, + "unpackedSize": 267837, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKClCRA9TVsSAnZWagAA5q4P/2U2rvP14/qHx/HdOaOG\nnFEX573SPipMeDh9PubhQgj37NAEXPdntbpjHFkcK+nVBHv72K7zPmRJt61x\nbzexdY0wAwXHAjWuwUrXb3qx6NN66KngOmtQbrO5cxE1sGyNjtnxNtbngV8t\nyRvwQBOakyq94+Rca2pHQkSWAsSn90fYpISHwk5kDeu6DNNpRdu4VFu1UxgQ\nx0WwssUmbIOJKGFZQ9aS3G5uh9/PZnQP+Rs1k2ZsV8fNGqHTLfk32GHc5GbP\ntrqWSUwp3Q9Ri1Eb+xoriGsfcyxuEP1gRKSXuu8mAnQ4UgCNrQhxH1hI8rUR\n1W/enNLgJTY0BFepLmjKedjAWzaj/b0p38GzVwJw2jBlspIgufqbrcNgbxZS\nMHH7sM6SNpk+5hvqi3LTOQtPbFq7RjrtF+70ANj2h4i0mLj9V5dlMMCHf3qf\nbFzatw9ccqGjs+i78Whn/NGswBjOsSpVkicQxlRJypnUQTdyjpAjO1CREPPD\nXHxz++c79+NzcvtVK3uMRvXDAW3I0X2+7pnNVv/akGucHFA0qb6XYKXv2JfO\n4Ri7+juM4x8rLrTCdWXbHcRvk+U6YPkuaQ1TgJ2pnXDW9ft4niYfMjWlQCd6\n695cIK6ztfHVm5cUcaD+0qKMEFjaNIJ+OHxsmuRNwMhxDsMk+Ivi7KdcRI1t\nDjJ6\r\n=H0NX\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-MQlC1BHymcre1y0GaF0R5MVn+kzz2RB92mlgT1bTc8O+j9vWDi2BEGeJkeJIIs9UJbj5g7uXRzCA4TbFWIFMMg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHXiF5b01SEiDSSektGM7iSGgsHlInNuOmgbFNxwLmneAiEAwei1agGMNdw/+1ARsFXrXh6XOUHNMSoh1eywSn0Ux3A=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527292051776_1527292068845_0.769682702979267" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527292060831": { + "name": "puppeteer", + "version": "1.4.0-next.1527292060831", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "debfe7e0b135f790971e1ea73f0a8edea23e0df8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527292060831", + "_shasum": "9c634c4b9af4fdf05ef98ad562246e9afe9f0753", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9c634c4b9af4fdf05ef98ad562246e9afe9f0753", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292060831.tgz", + "fileCount": 32, + "unpackedSize": 267854, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKCtCRA9TVsSAnZWagAAUGoQAJ49xo2Ux0X7b26EihOZ\nLFQbllTvtER3MrjjjUAMiQWEkMTPYpss5fmKrhL82FqHQxK4NDJVjJt8YJrP\nSoiw+kAkqqHimFtQxqnpKPPkd70keIDBGBPegNK6al0zLoipiB23TmxpKjif\n/T+ztPOWIX6n/wLDEy7Ry/+kebYd7jkVdbPJJNqqUrz4PA965GgabtONiT9w\noORM+f4N6JsqdzCF0F46kCmtjC9k5nw76yehryjY4hghITzcRc3HBhgKVg9k\ngstMXRDor4G5CrankE6oBw2u9+P2I+wqm9HZiphLlJsT+Sl9fGn3xv/6p2FQ\ng3lKq1R+zpVyPJ695t+Qt5Uwr7b/MUgcWAuyrz4PgdQTd70VfohxNxczQxIU\nk2CvtD+RQf1Pluuw3IbLLGdw7ZH7SEfTqIMfHS2PHgUyRmhX1AQJh9l/oRJK\n63kgrumzi5zShWag6Nakj/PgrYTyLh6uVZa/Pift64iB1oTesIptrzrCdxB5\nvuu+KBEP2rCbTFx4D2MWJNQi3dE5o/8fW/LhnmBJheDVqK/YCbYbeQKeYk3r\nr2SU0P8auF6mKyidkvA2SSe89CSNxS/PDp+KvoIyUdypUNBz3BgUxKPdyozm\nTjHndcMqz9sg3H+zVYda7v11JCcnocFQ84yChF3MC/jz9RPPMutAMcfKvmRK\ni6gx\r\n=Bfq2\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-1nH1ZgRf9dyShlFvI8pOBa1ZOnGm8kgPn88djg442XSVrR2/nehbRPpdk+CSN8cBtBUG8QvjXW89SK7Q2wNyIw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFtyKh/XLWHiku1z5ECYN9yA0VwO5dw2Up7aJ6daN7h9AiBMY4jTxlt4UN1Ixwztk0sPTVXV/suebB8PedkUI8R/hA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527292060831_1527292077410_0.9689190240124774" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527292169142": { + "name": "puppeteer", + "version": "1.4.0-next.1527292169142", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "b522ecaa6547f4ade70e6a336c0ebb147b8e9a84", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527292169142", + "_shasum": "26dae090953eb658cbe2d022f16e086cfb5c3f1d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "26dae090953eb658cbe2d022f16e086cfb5c3f1d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292169142.tgz", + "fileCount": 32, + "unpackedSize": 267854, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKEVCRA9TVsSAnZWagAA44EP/0N+NNg7Oop8eOkTk9W5\nocBUC2lI5BEO/04WC/qNNAd2QRoUiXh4CkULXs9pPMWrK4sYbkEOrryQmMpt\nEgRLNuW1JDUMcmdf4TG+0EeADMi+FnCUKcwXbhDsdBlQIomzEXUxUGc7N4DO\nTInIamLQU/hq1pD5TLK4x8xPaJPfaD61rhcMOSLlPawyGsvsTDirkEursrzh\nptXf7BapJV3zM8/ECqus/OdPL7/YuZtaPrcMotjagBjvWkCFl1/ZE+cCvsb1\n7cShfynGTR/oJ7i/ynK1E9B/7AOa72ZpzuHbYhzhPAwZGNhy+JiVM1okrxeO\nOqg9UBYoADDc4yIKdOhIbbnflG4OjazxNfRT8iKp05u13x4i/Ydz/ypwbacI\npM3ph1GiwmI/4RiL1mOqOeUrNcMuXcZf9XeT5W9uamwnaeH8XtsyP144c68L\noYPKtQd0/OuTVoWQk2zjLspgAGLOzeDKjK62DAPl5cfw4/zI1kIRiUauLNpR\n2F7YTzEl0BlhSjN3kGHvNTsq4cYW/UyO+VW8aacEfY50mGEA8skWJStW0z1A\np2PQlOWJqCcfY+i6pp8gGW0hAmKJ3Vx7WD1f0lbbIdIt/w6dTFTPdQkhFh2E\ny3nWbZld+Ek0YLYEgnlNh0Wkn1cYgr0wIFme1sqffI1h2DmhfNNjizKfqOAr\nsVQT\r\n=vdBs\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Hhx7AC9Z4kQgfhgJ8apKdXQt/E4p+jYToFSgtOrT/482LHeC8wqIiTjE6PV5/pdT4yX1cJtb2TFaKyqLw6DXTw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDMFn2WObOtI8Phls1LEfSfPul69l7P6g22PSmmqL7ZjgIhAOkedILKC+WikU1BH26Iniv1VKMMxKq2cwtsKTr4oXkP" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527292169142_1527292181604_0.7533317822967305" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527292577308": { + "name": "puppeteer", + "version": "1.4.0-next.1527292577308", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "32f4c173c818a023d8ae24ecde78c5f3fc57a0c1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527292577308", + "_shasum": "a0c79f862e4402b2f6475ad6490b015ab4fa34c4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a0c79f862e4402b2f6475ad6490b015ab4fa34c4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292577308.tgz", + "fileCount": 32, + "unpackedSize": 268002, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKKtCRA9TVsSAnZWagAAbwQP/07VS2qP5lxKrYKR2Y2Q\nfJLU7hUQtPnxAUEcd+egK2WaSW5SpjDizEPIWKckLTMIm70e59bxJQBKH7G8\nxO78Nfa2BPTkWLLdYBbelyOpfAakquRc6JIl9v3Y37t8oa5NQPdylmwPGnKw\nMLbQeps5NSa5XbZdjcThEvgnNO2caEuW3o8LYvzHe88HeAY5rik3CIfGeIee\nvWfxmfOG3KFLLbczP+4/llh6XlA0QraVvjS/wmri9lZVstwxfBBQn+keV5fA\nCac3ek+tP0d7a8ZiujvMJfiwzRG+C68AJ4VQaaY6Q+t4zHlW4RHq159VRdRv\nZidDepo02llSYQbTuvaOtiq2lORJD5TGf/qvb9jtr0fr1gloAq0KOoxzYsLm\nnhTeIxZtZ7ebVlHvU3dst+u3Dhn1z+2DUh+H2AebDkviDxg+Dy8mYI3ebPJa\ns5bHjdsMm+dheYFc9ZfzbQLac5nS1ozZop83utqnQBzsyVfToA4m8nDmrtJC\nHfzLPTSJ2znnB7Nu2arMhxHfGBrm8sira25EmxF7GsH3X1Q50zmssfYM2dWT\n9lLnlMjEdbZvyDWuDzb1TmZkiC4LC9ayATMmpRfG6HBIPgaY1pykd6NwXLB3\nc+5zH/Ie/cY8ysw/sTTYJdSzVAbz7DruHkTOGeySMM/v7hgTImWLO4N07lzF\nT1gA\r\n=T9TQ\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-wmg/ex5kJwW4TL0fAP4J9S4oVsLCV4LTLZ+3SwqTXNdVzsCV7O3cidIoLk5TJgQYwJF3Wxrx9X24O3x/kJ9maw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAfNS8+4iL7UbKEOAxc/UvMKt14x17XL3/UeI+QPvAxwAiEAqH3NPaFAH85RmxOOQPlqvymPuhLPz4Lt3cj8/cD7+VI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527292577308_1527292589597_0.4939200282588143" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527292742969": { + "name": "puppeteer", + "version": "1.4.0-next.1527292742969", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1e07925e26783d586ab63a6eb88063ca51fb5647", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527292742969", + "_shasum": "7089da748afd4363040a0787da8f9ee2c386ca44", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7089da748afd4363040a0787da8f9ee2c386ca44", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292742969.tgz", + "fileCount": 32, + "unpackedSize": 268517, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKNVCRA9TVsSAnZWagAAalAP/iiUMNhKka6IuCaJiFQN\nQlacFaPTN0iVOBCCRGogGTdymVi+Ytsf1Quebes43w+J2Eudjn4kwuF7X/l8\n8Q64rZAZdSMH6YpPEdd8B9eti2viY48vfq51mUDsA1wJsT4UzYARpggFoxQj\nZG0s+T57OXua5Hk9cEM0tsH6X3Rsy8QAUmdp0XZdXN+0ChklzHnCOCBjfIpf\nCZesEO4Q49mU1nOQCFkqvo6Mf1lBqZXQ0+ldh6YbPgaRXxEs2fWSa9ZBMEvT\naYXs3RrLflBEm1YHPpjAqo+tjNvSeL/DxnPyQRVHNdOE+tpwY6JkocAZqXyv\nw6N2ZzCnm1JXkh3H32VZVnhfXVGFUlI/kKFPAAeOmkaFeQk/YLW0/ByjHBZP\nSoMv3YIiLrll58f2OZzwwV/5Ef6h7smabHxWCCkLM+zZygKuNmJyucmUqDoT\nwmhwT6MnirOYE179L8nam7Vdhie/Si74CDB94F8NMoTDbddTRViZetEourcK\nQa3Eaw5yCRnEV1RMg56bDE/BTzfzMgArXhx1mXDO1JGOfo207TcKjXqwQeMC\nkkrJmoVqg+FigV+0x3cs+R6oRO2hee14s5dOJhE5dNG8+JasNspHrSCYYUyY\nG/oQdgxf5EsMLTzh8JijeIJyEQVjdJbEaU2/atxlDni5/uKKZg6sMlvtWeSA\ns+ZR\r\n=X0Re\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-kkHRdTmIPXhtMjRtHf29JEGGZAhVJptUCPm2dw9J4oyAYHAPpOSFUQBBIwOr9FPrVUoNAz3+DLQ53TpXVKWMBg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA2kt5kMlmKbmXiT05+8HBjSIefv93KCYD8EvhL0Vb7OAiEAkQ9fl3Fetdu130GorCQXW8FLvpIDH0dluAvoCiJQaL0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527292742969_1527292757642_0.5316531866939751" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527294524156": { + "name": "puppeteer", + "version": "1.4.0-next.1527294524156", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "b8df8bdf4a1ecd3768cf7edf6b920814daedb904", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527294524156", + "_shasum": "efdd1356986ea1d7cdab4fe1a66aecde5183c561", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "efdd1356986ea1d7cdab4fe1a66aecde5183c561", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527294524156.tgz", + "fileCount": 32, + "unpackedSize": 268678, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKpHCRA9TVsSAnZWagAAgI8P/3iChwPx7SD0m509Wu68\nSKv8ouVoexZRjZ0R9vB1pKWp1KP8rVa9Q5GwShBhBNwFMyOjC9ozfu3mPw2V\nMPNrDxywjCyUdCLoFOQYavUlzlzoYHrTFrLJ5eyp+HQwRZJ3AuiVxrqxKtWc\nh5mkdyls/U2ncI/fY7KUioDVkupmx7TNbmPTS7GPBUHcm2ZwY0SopDl8E9WC\n5lMffBpFWPEHQ1BJ22Tvzx1GIAuoCipKYWrcXYWzApl0ugiYS0zBQpynhiDC\nJuYeE8vBXU84R2wkrN24wqPlMZDk8zBj7VXsum4uHWegoegficqudNcJiQ6F\n/X73oO7aJa1Kze4BnhpWXoLIGXqlvdX4irTND5nRXfAUq6dmQUQn334PWVr3\n72pbaAA1WYPmL+b3bT7CiZsjILRETSkFtET01fj4eX+1tpHkLPAFlVArTyt9\nuEBmRmUsM6eM8vtsVZ130M6cSobiER1H4nHZmCR2Ac3qAtAIqpAi0Omxnf+n\nRvGwkNq+PxoJeweFdfa4gn23OAGsrknR++eXqBq+KMpa1ECjrdQHJIRi07SO\n+Ri+QL+Wy0/7IQIU+XrTTBObMCwCfqN1geci2P6wBkg3ZerUVbO9+pSI8ayk\nbe0KSFYnD6ZbXWTlJtYVxWWJY7pm1Ylvcah7D/zRgBvlNwr7lQg/c+NUDVw3\nf4R3\r\n=/v1N\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-L2y78Lf4FjbTTPTCX7DYyhf4ZrtmyNELN3Tbwu4eCbrvXAkULobPQyWJjsIFlVsY16qYLlAJyO2J44L/zp8L2w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCL2i0GrPMclkIUjhUABn0JHOSeYjDn7TSNIdRrpAevewIgQ1uXL01+GRvIv+F73lPOhJcEWEBxayWccelYyO71jxI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527294524156_1527294535795_0.3252454898384374" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527294631387": { + "name": "puppeteer", + "version": "1.4.0-next.1527294631387", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "f6393d876e98e39c6e4b0c36dead24034a15d3a5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527294631387", + "_shasum": "a682a4aca39f1da0accdc56ff500291b573bcdb1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a682a4aca39f1da0accdc56ff500291b573bcdb1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527294631387.tgz", + "fileCount": 32, + "unpackedSize": 268678, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKqzCRA9TVsSAnZWagAAB0kP/2iIxN9rVSxs1IoMXPus\n1h8POgyGF0lcjVbmFYrJP1/H0ERz7bX12Qqmuh5A4ZzDxyWCpq7Vbq1eJbcP\nm0uzESm84zkJkFsImlLfux1rOExiUNXPkFtfwsycwmPmDqcJqH2OyKLJRjbE\n/fUZ8HHgdLmxyPxtfD28A8TYP3PY6UYosAIv47M3yHy3ujx67J6ggooxsscb\nbwvqr45fxVcuQgbGhs2xF+yOsdsdeXID0kPB86xyTjCtCMV8U3g8XZlZUDIP\nRoCGa8XqLLQ4p43h6iABtAjm1z1pfaF8aA69s7eSGz8XcDS9/4YpyFhGptIT\nOOo0xEILbwXLcUOGYdW4PTYzw+VD7Xed6Rc+JNE5j9Y141e/u5mXatctjc48\npzMhbRo8zqqeoDTOwy9gXbQCx+f3JjfyVUzj6dreI/ecB+j/fHROl9a2QNj1\nY6X6cjpKNN3Z3N39k3VVsEl/7UWgI7XAvpQirOvQKdfNtO/mqk46R7aeh1wU\nvUQGGEHvK1FPX1/RIBoZNNg8ASE7FtSdOGgFDMrHT6OImObPVLQJGIeIhycj\n2H3FdQavqKjIsA8Aa1Fje0kxy7js0sviVBeNpUtelEvCw8idGEE1NlfRHM56\nmlFFxWiV1WKQqaqAtBnrtK2YBiTK8wslcofBxA2y+qxpI+HNb/7AsRXOScAU\nB4HD\r\n=sGCu\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-NZ/KwtuhQlRTAGhg52H//3d+fjL5OLoyry+OjfZ8ihdKysKbCcBcsktGJb08qgfMh9ivr4eL1qjiwAILBZj5sg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDbwdTIts04ZdBNwvSjK5vjyX5dp1iKEnvKGRqz/FRK2AIgYqsIXUX4XokMCBCjB6f1KKbfyVLOJPU2xssmFwtmBh4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527294631387_1527294643394_0.1707862368274511" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527294674237": { + "name": "puppeteer", + "version": "1.4.0-next.1527294674237", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "node utils/protocol-types-generator && tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "7d64d40d6686d2af34c81b3128528a6a274b8037", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527294674237", + "_shasum": "59be1e0213e1d1bbcce2458fc8bdb258edadf1bb", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "59be1e0213e1d1bbcce2458fc8bdb258edadf1bb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527294674237.tgz", + "fileCount": 32, + "unpackedSize": 268647, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCKreCRA9TVsSAnZWagAABXUP/R34gbt2atvbXBwho2Ju\nXT3SrB4jqEgI4K+Pkj1CZKsGzg47Jrl9+8urtQIk/7wMrs5ZvVza7gKaQpOR\n2oDHpRXXp/DpfobwKgodftVrJObZacFQIWXxgwD2xJ2jr/wNKtl60F4+McRZ\nxFlL1aTQRLpew2n1qn+VwIPMpJBfEjrjIeGF8N8WSFkmWLvgNvFK8M2APNtt\nYqSRXAunKGQ8/t7APOQEYDlYOj1nIICQIWVCbPqn0ecBZkKKeZzEi+0D85qd\nVXHPQTtADXSmvW/N0a6UWB3BYpd/ptf85j/jPSPTO2+IRW8qAGVlh5c0o84p\nqmPsaywFroKZktIboH8cWVHbs9UC9L6DGsMu+4hIdH15AXxGtDOFohvLRb0y\nBxuhBKrSMHRX5xUSEBZbPC+S5mMJkX4x0V4mZiehlD/5WDsLGPkCbW85fDW3\nuu9LQOvwc318AFSiqHNmwiNENN1SPAs9g+uBjSDk9FNnjqEcqM1/TeBbAexF\nTjv+yokhDMCVO2MiCnJ0SAFJeitiU99aFTM1ZWxx1eoW5RK8XeD9uAEqv8zB\nPyhk+B5yUCyJa2EzmvWhBE7bojI1uPKJweW7qV3aA+KWbiNd1JbiZ/8UkOBi\n69t0fyk/FhWukQTCEFCvt/JN51GC8cCZex/x4lin48foPP6/hpIz8QpAoPrw\nd0uN\r\n=uwnr\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-XfMr7R3qyf9wM0HeH8X3So9ydBlHNneeK5HrfBUlQXtpVX7WxhfV2CNvJuYMSMeaEMagr56ibKWJW4grNHBlgA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFAUiy0HwIjnHuzwWwAqBmSCnev9r/N1ygIUaHv/zxjtAiEA1tLBpx4JSReD+jad1PXVVoYj7sM4ScUqVl6kVEH1Me0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527294674237_1527294686214_0.8899848462379507" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527632813414": { + "name": "puppeteer", + "version": "1.4.0-next.1527632813414", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "5ff67dbdfe1589dca82250e799e12ba95cbd53b8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527632813414", + "_shasum": "b4e235a372f661ff0560633785d3680cec9fdcfd", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b4e235a372f661ff0560633785d3680cec9fdcfd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527632813414.tgz", + "fileCount": 32, + "unpackedSize": 269152, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDdO6CRA9TVsSAnZWagAAkmAP+wc0rfDUVxdPu1Ll4iVn\n+5qaTxD2RoqzU5ClnGPhzXTGW+wO1bSPlR3N07eAaUojZ/wwdEZ/xhKLkhLO\na7Zh5eCYcmlzzEK15kocG7vQ9uijiNGBEbw2QnAuuuy/EOLB5HDJ9p0EhXG7\nngWlaw30hv4TYCQ5raohlcZYnZdEmozamJ8PhXuC/TT5BfiXjsgsXQfF6Nd3\naqL+bO+brEh38D8ISICNlWoTjLtS+piOivmW6uENwNCXnMx600WmkBXgo/EX\nfEN3I9cVNf7O3NXdj9WLBG876U45Ns8B+ARBJYTMcw0ccCk7k/AZozRH1hWu\nYKY3Gx3yb0dr0LtlqlZdbA6bsneVPWupSu/TJA1VxYOSmmPsOqedNo7RQ8R/\ne6WGNpN5VfzgOH3F0g5aqhEqhG+0KEhAvm8nL4x4quEMU/ftblaarWi8CnDx\nKRUzw5TM1MghNGI2b+WDVs2lAKfJq0M6Ns9WTr4K5TsKb8S149zlEvK1rmAs\nSdh67pR0jWFzrrwsl0ynFWwdDhj2jxilIp3BLBzN55gVYQDG9tURidCG660c\n6xT65i3a3P4HiQ1s+c00a/I3yJcl4ewyeqYXeF+lD7eE+YLzaJub7nO6T9WK\no5U3gCgJsEuqWnBZ8gpzm/plOlq7jdPD2bO6CMQUNEoRdMToFdD6nKkkBio8\ng6Cu\r\n=4MUc\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-35MLy4L42p/isLvYlu/5UuBGBVEcyfNTDcZW8zEDxT5RJpK/oDaTRNRIraPXK/kniM9i3sAYPt1xzMYwL8cbng==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD3PwI8D5Az9Q6lsyuYjh6D7WKOiDUW2fyONCNjfmYyJQIhALZkJ7DaoVrR5sh6p2X9y2QisiJ12QODUC5IlGRWab8V" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527632813414_1527632826471_0.6126230984234862" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527632860155": { + "name": "puppeteer", + "version": "1.4.0-next.1527632860155", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "41ccd0bded807059864a1b67a2b1f363f03722ad", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527632860155", + "_shasum": "4f8a2ae9e9f8ed9f6201e0cb6f2dd83b4a046669", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4f8a2ae9e9f8ed9f6201e0cb6f2dd83b4a046669", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527632860155.tgz", + "fileCount": 32, + "unpackedSize": 269186, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDdPqCRA9TVsSAnZWagAAsNAP/0ortu5W/sSd4/8MWvPQ\nwTLeHbWQlbF+G3YijDl3P2/cNyEQ4DB8hJBV8YW4lbEhSfngWofEX9szVzAI\nj0clXMFM6M3VU7w6ZGU7ps99aCvRshWH5OlfNEIf+Km+kgLAyH0llyp8ZHOh\nz2S+1Zg1I+JZo9R6d+JQfV0+JhiFKUJSZJgUYgkddi6Y2Lvj6fYEjb8pgt0m\nhnfzAQHjBfDGSbcrNVbiF61uhZvffAP6Os0QN0SqSJK1UmwZS2Wz/MYL/tXH\nMNi4kIG8fcc/QRyiqdGkt8VnlEnkV19toRNbK3Yj2Z+rZcU/0+QLuPWE/HIp\nASmaseMWNGRM2rev/2B9NqK3uRcz91wDAhNT4K5LJtwcwJJ7hiccEuNDbz2C\n5AAOWWwEzVl4ccR5Id478dobku/yyf+lvuMC8ApJgT3AzqcbvoP4f1bUbFWy\nNMdiF5jYF+P5KZSy69+fAHEi/jbaVu/ftggp0IBdHHbCRJDQTyEByw7kPhAJ\nDDIh8JoubTQzyzJXHxtT2FfS8ru0ZHLku8HrMwSo7UhPChdgxAsVoBk4tv7L\ny4gdEFBEX/7pv9C4JUE55wxzG7Y8n6uIMv5c+HCHU9O+GeYnAQiiLN972DVz\n176rrtNN3rHP4i+Qq6rpAc6heRr02aqHO7NpNcOc2UO/RamG5M9APWkeF8DV\nXtnJ\r\n=II8q\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-a3LoLv2cs5dwCSvdweZQNblU9xprwTbw/uqZYGJyAmVmxLesAo8THY/lCaIDPkkr/E8Xkjjrulg4qJfXXcPIFA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQChN6c1u9TgCiz4X4vo1Dmag12x1XegEHTRKrMkSf6ibwIhAOZpD1V5Ybbx/38KjSl+vCwuFkk1P4qiLZ44bljuZrj1" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527632860155_1527632874486_0.2532749119974067" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527633150048": { + "name": "puppeteer", + "version": "1.4.0-next.1527633150048", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "8e12d197a2211fbf9394dec83abc05c679778ab8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527633150048", + "_shasum": "df9dd1080b57ef9909b26e4a292b48f75c8eedcf", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "df9dd1080b57ef9909b26e4a292b48f75c8eedcf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527633150048.tgz", + "fileCount": 32, + "unpackedSize": 269186, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDdUJCRA9TVsSAnZWagAA1LoP/i/cbuBVScwSY51FbJc4\nxaQjDaoXWEJWiTCJ/IWuEjBSh86MZzs0/LVwXoRTQdrIVKwPTHni/GyPWobh\nylm0iujphRbqlUMuNv3DvR771rSStLmU5a0+L9u3shiiQsF9tp40NUxTTnVg\nuc9aRR6qfIL2i1KBn31uzceX2QS2T/t0qsEK5aj7ESW0u/mFlReAEGYDTbCM\nUUQzY8RhgdWddCSG7fditboUtQCRotvbvq8UYIKApTbcuL5g71jnSsFOiU3t\nG/a2H0VLTJYYE8e1rYNmLSv9Q1zVJX+JLOg40j4+LQxx8jZd4v3utuk73jHB\nOYKHa+FmfTdXUGXd9595Aw7L6HweKPdL7yePyT1dL0kCM+IDnd6/XaLGRJ8D\nmZxAhBgbnYsjZ4FL2W4UulscYtgZo8UyPr8Lz/v0JwAapw4eJXYwkMgDG/Or\nBBhDdVOBtOU1tjzjNWew5N26F3Q5b2IXZ5dzUFYl1KYtwdDrGI/IFT3qDn9k\ndyx/kSjjDoGmGoybLMwkkENs+LxPp+DZZgVWU8LYYFOt4o/NUdIslRtLxUKN\nvPZLOm7E4xAB/XYnXLeHxsDBaM7+P9R86Tm79MQvRaJsTE9bc32hNnmSmZFf\nbajjsy4hR8nI6DzqZyUcQIVEFCcfSvR+isXWw6ghRaasr6BrnDzjZ/9vN23e\nF8rM\r\n=RK0Z\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-WtVZTgi020dZjlpvvKlF0usw2FEgD4uZts9v4NdUoV9GmRntWjD4D2vMEqjJl9Xdz8HhZqy648/D/r9lmDx/MA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFroYu0P4mjY1o/sSZGEKVo5U1mDiEmrLFOsUO5UwmC0AiEA917euXNbmXr8k0SdX/xPqeavongDU2tyA0hSDAbVpPg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527633150048_1527633161665_0.9905921115738168" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527634039615": { + "name": "puppeteer", + "version": "1.4.0-next.1527634039615", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1bbd094624f24aaac674b2491131828f29166c7b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527634039615", + "_shasum": "08c4cb61284d2176a1dcaf6f845e03ef0fbb5391", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "08c4cb61284d2176a1dcaf6f845e03ef0fbb5391", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527634039615.tgz", + "fileCount": 32, + "unpackedSize": 269186, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDdiCCRA9TVsSAnZWagAA2bcP/iwa5izkuUT6qrzuj4hl\n+SiOOX9EBnsTaNne6ilJh6OXskSBeblui7Ik7XDpgFk+7s3Zlot0g66u4suh\nlQWef2zATF9CuXyiD6gh6McYlut4FuQz60v47+nR1YJYGCyP4DaWlBwSRbyV\nobKYg4wpbVUOpYxNYtAsSOPZtKUOdnxD1CgzsfFGdP2EN3YUxPEct8lgQT57\nAAsj4HLoDJorzE4F0XZUoIc44posZnz9fRpa0O5pFTEdMVy9RHA8V79aEo9v\nvFNyrUCAml17U4eW59roF6KiUDhEgJ6w0uF3dQ2czL63ewk4rvx/kxC2Q1sm\n5zEJGg1N2rWBB4XcH4hoiYXzVev6ZP7HoCT+6M/5rU+bUtjYJBT+W+91uF9U\nxdmcPPWSvRd3I4WBV7cebS5ohIYnWySZIBfk3afNYj4iWD+NmzU1bfv3dkvl\nVuicgoQdED9AjHHK3K4wbnsXrfPpDTQ07daEtfCG8LFvNl2nnmVvDYWp9w9e\n6dpiBWGo1cEcoLzp+Q3hqVfOagC4Dp8K1L9gTfjwvXD0vKit6EOJwmowQ+In\n+sXeCm//xqrqw4XE2W8HCcAsOryMMJM3VRR/109MJwAU2E7DOtNOxbK+gWRD\n1GnqoP2cGV3d/myDtzHpGnJIqU1gT7tkUkMQLJunCORX12+5UEcAOhMHaUXF\nPh5E\r\n=n5CL\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-xKEdOPLJf15J9a/rLnle7P/Inxux+50KmUYc+K82/H0LTOFSoQ3DMkihqA+KUnlofx7vkPuZYYc00cAyETEvbA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEknezuZXk7teqyng3vgRxASt65sTzgnZpatPlYm+FhKAiEA0Sv0YEnxY+87Nh1aI3QlVD+HKpmgKYtGcZpVb+OjzOU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527634039615_1527634049961_0.269182124139957" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527715229660": { + "name": "puppeteer", + "version": "1.4.0-next.1527715229660", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "e1c40bd776207d05b394eb7f7ca86de6be73f369", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527715229660", + "_shasum": "15e99d41219555b85b307d151fb5dedaec120186", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "15e99d41219555b85b307d151fb5dedaec120186", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527715229660.tgz", + "fileCount": 32, + "unpackedSize": 269186, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDxWtCRA9TVsSAnZWagAAVzYP/37pLBGs6euXgN6hy8an\nm7HDNtc+A6yn9JNRjxadufSFmElr+lrDx5bQxnw69Kw84eNPJCRU2iV7XNm0\nNA84Ca+PhP72LMZIkAvGoiq+A4ZxwHEiHXbU4Brr5tCzpaBoeU8v8tLNIN8v\nmM+7givA8zhVBXZXeC8461TiCpEVof5/rH1I4Idz7q7jNMWpADIMOj5xCVwP\nNSZ/0LuSCGWrc/154HlKgwYPm65LdP+LauVqDpAx9ANoz07UTQNIBt9cSujN\njjF7mviABfD/V7wkJps1S2D3E5YMs9UpkBPMjDTfVhxHkWfyTB6IHOhExsWB\n4b4pdNQsEqcyC91mE+505gTsB+eN9hgTpXU2BcLA8eIl7inVfRIKziNkVos7\nAHMBixbZpwjRx/BXCE9l/+lYflK9gnbsZrmHQ3w3CGCgqRkypRZhPB5Qs01k\nflkn/5YaqlibBMseRaocX8kDwRWu2350O2vHjgd8LXoiJ++ozFMA7huDkRGe\ns+oJCSSyAHW1PELkmq63vfpxxQMZruXnfBVWgX8cz1JM10rbhC/RnIbSKF/8\n0+po/ZuDPmBczUJ+LSTqY523lsHFpZzAYim8CxPpYgGTxoR4QZ40WhZaTWpx\nJaPkhhInsm+auwisra8LgsM0OpwnQg0ULatL7VQv7zfx4Jm1SKBgdq9/O1M6\nzii0\r\n=EiZV\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-hKZNkcm7g5HoRtTDvnBqvFy5KQBLWFvVjZMj9TJTASGuEdbqcTQuPbyLLEEKZtT+DVwbCidcJJOm0iGkxP/Jmw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICnjw8ADaIJWl8HAC7qS/Le3QRbdyvOkfMufhw+QzWrMAiEAjn9KNE8j/LtaT8Go4qbARYvB6+DgLyWdvNJ5sNhXRfk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527715229660_1527715245336_0.8499806825021201" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527729038649": { + "name": "puppeteer", + "version": "1.4.0-next.1527729038649", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1c2adf61e971577a6bc96621fcb78ee88a9a9ff8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527729038649", + "_shasum": "7b8262a76713da650acd47fcd0edeec9d2f4b865", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7b8262a76713da650acd47fcd0edeec9d2f4b865", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527729038649.tgz", + "fileCount": 32, + "unpackedSize": 269539, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbD0ubCRA9TVsSAnZWagAAxdkP/1ugDajCgSFcBN7eew+E\nzocA5RxRR8JH2NZ+qN1IH8vA6T+4gm+rREom8Er53vAhxLn3uC75mhIe5c1v\nq5X3nTSHmr0x/RAcbx8N6mnNHPnKiVEbfQu0SitP7L85FiboHrlsA6zyKm8Q\nK2wT3Q7OwsxDvvqhj3/qlcJEd5RuYzNdfhOtYJBlyAQ/S21zD9vAUpyW7zku\n+rXiirk3rYQHJQln0J0b40WYI1VVyoXxmga7gjtC6B7l3F2Y8kDMVGoMfVgu\n4vmCmqklkHXTKH31YLmNtYUX9jd7lzyxt3TaPWbqYffD+LqDVP7WBVCOU+Zr\n5gZVUtOKieiGnVDRsNCHSrU7pgHNvpbdZMKPnAcWE0gsMm/GpNJQJ2g/TDWr\nMTpVN66gj4aX4cw7qfbwzuopseqh5w80SDyqcskKNZ2uqN7GvrTcYnX2nYzv\ngh7v8c1/3ZD3DOGLCwLslcaXp+tgj4BzHLdrQzBOkl0+oYuSO8IO57kKuaFm\nIlHWTvDbH91aTdugYSDW7XOymAU6J5R8N6yyKujZW4AbEWh1D03BkSRfKVsF\no71F6MJ5XV//bxId5OVlZb65X+ZAhM1U2IoP4Ci2ZHAPr6ktlDW1FEIe2a/Z\na8h7hCEZVw482IdgUbc5XSkcIp9VQXgkFZfXBNLc+R1AsGUC1uDf9Fu7b+Cr\ne1CN\r\n=vV0D\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-/MU5qESM1tpT763xx6npqdDDh6fJPbADiZZpTQLvVIWLrFxaTX+mmleuF5T6cOd39CDa/VFaqYzQxd2g0MGV0Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID0d3AfO92Vph8BR55vzO+Yf3qInDaDmCOKY4AMl/IeiAiB0u6CNxwxlt2u/2VYxA704qs5ZG69FzOyaacmwAbfmtA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527729038649_1527729050421_0.1486758247480251" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527793846806": { + "name": "puppeteer", + "version": "1.4.0-next.1527793846806", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "markdown-toc": "^1.2.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "14b51449238b09f20e3d2cdbb4578886276c5a9e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527793846806", + "_shasum": "67822bbab0d2f7ce148abb088ec99cfa99f418c4", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "67822bbab0d2f7ce148abb088ec99cfa99f418c4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527793846806.tgz", + "fileCount": 32, + "unpackedSize": 269539, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEEjFCRA9TVsSAnZWagAAIAwP/Agrtv+A+SuzzOQ8FXDi\nL0ALcaUhEuNNobLlexji/cPa3scmfw+PB1yt777CvKQUxI37FUwrq2GCa4oO\nW64Q7fGULMyJvB9+h+o/QGIs90P6Hb+FIZbAriz2IDwOoQfff1/TqJqmxPcJ\nXSz2nrEJzQXu6NX/9FBY3mkMUbUkFKXxGIbjWQus7XBTvz7qJ2+DW1f614/p\nv1swrR++8gBPdmSDLy4TQkr5i6muCmg0Uwtgm2NgQ1T8LmwjsyX15w+6Ok+i\nKcssRd8DyPHN7LNJLypAe3hNgPW+b4u9K3jfg9MC9Afsq42Yod4IyzaQUnwe\naNPWbO8VwFgjp+HV1I1nAcl1ngC1WGN2Y3n84kAzAzXHn6l55lGeDCDoE/m1\nmpyerHfsDsvVKet6eAAjtHnoNlNwfSDZRZFn03ra03gGHBeCgflsSzUAnORi\nACKSDupNzHtv2UCQGu4LT7bHyrWlrGNj7SNnwBbhe2qbr8hWvYbTq7bU4LZp\nhI+NONJX6TvIqHp/lwzPe9Mj9F8xtPYJJ5RTMAzkGLY+CQ1f+B2bJQLLHpBk\nFGIwbKGjiC2Afnk4Cx+5ZAfvZX0RrPjRkkLSnO2BgS/QvOemhVhqn1Y+RXdt\nRj1ZgdN9vpz1xTq1mO8AUaxvTXNEnmTAndZqD1ryl8dRAG7z/NvrDKahSfEZ\nJAH2\r\n=Wohp\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-JrPt9qsPW+a6eUQ3tYrZ5q0KkkF1Cb11o52WtenaPS0BXd/C85su4YmZBPr0IkNenMS/Qp6HbRhBlH8J/NIXSg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCDn7qvLRawJ/qn96phSu5rEiv+qZ4I+RtuC+rdDSAzZAIhALDyqgExYDq9okDFw4AKUX0RyuoUzrSszv2ji/lDGNY0" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527793846806_1527793860817_0.6520769773522079" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527801882058": { + "name": "puppeteer", + "version": "1.4.0-next.1527801882058", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "754df58d4e330f5e855d062c885a80005862af3b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527801882058", + "_shasum": "03bdc2371be5cf12de400c9ba44610b0b65a33a1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "03bdc2371be5cf12de400c9ba44610b0b65a33a1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527801882058.tgz", + "fileCount": 32, + "unpackedSize": 269509, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEGgnCRA9TVsSAnZWagAAqQ4QAKS8frKUivgxTjZtEjiW\n3YL+yU0RGG2TaUO2yK2ZPGZm0Elnj1rvPYNIWrm6zctEy0DvCkiD9cvdf6oA\nFk3uTPanpAr7b+la1ByGQSAaJicwn/r7/SNLO9F+Hj5UhkUoH2gr3RsKd6yd\nINQqF3oxPLiMxamNgY00gRRDGHLlPXIPZy3ctAIczsBpPxSypIFU0TI6YM1g\naeOAmzZDWRCRhNoN2eilRGU/KoCfnssWnYXL3p/GMVl/t1unz4AZMmtXjnTl\nxx/dCgp/07ktKsVvGlmPkg8virF5mGyhWyysMfCRCb4Urk/zt4le1JfJZxmf\nQOPzI5ItdlKhHViY2M8PwEghFOlHHHGMp4UTSkVBDMYQRxyG7gKtZ+UE9Yc3\n/nOU1/SVlnph9uV+og2qiOpRVikLNUT5Q0A5yS3jWWZh1iQ+ZhWfpnzIA3xv\ndhEUe0E7rNJE6LLv1mUPTHeryUk9pZTq/WeeNsQ71046w6F5IgYBtjcQZOBL\nFOHJLonQ/ky3FWbyNN48g5A5HYvvPnQQ6jZJfOrmuFTxT+OpZF7lrZxiJIwk\nMt0fVT1ZorS9YJ5r9BPJ1+ymzmR7+NLZh/rPnvyORLc+pnP3Itd1ur7FexPn\nusLV5P6YGFfyqLCw6aZIBUMFfOYo9HOIxtAbPCx1zt+6kstKurRStT8MgS47\nKgI5\r\n=YDJK\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-K4uSvQXTenwq8bq4tX3PxlNwFbTcpCrHIKzYrF5O7+YaGCuulLK5OTdPhj3XF/PTWVgehfH1MlmEYT8CgB8N8w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH0tRB2v5dMfQOMsjI76W/D/eMDLnF2SnYTjdCSTrvjwAiEAxCnScmkAzpMONB3I92DW3TvDZMDMkpL4yaP1KgiEKXU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527801882058_1527801894945_0.0776975009955223" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527808033454": { + "name": "puppeteer", + "version": "1.4.0-next.1527808033454", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0ba72df67dc68cd28ee74f0fbd4d214ed26b31f8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527808033454", + "_shasum": "33f7ee6ee92aa7bfd8c01714056e440228b4ceb8", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "33f7ee6ee92aa7bfd8c01714056e440228b4ceb8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527808033454.tgz", + "fileCount": 32, + "unpackedSize": 269509, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEIAwCRA9TVsSAnZWagAAP0AP/2HhTaOfmreFv8mB9VZj\n6/+KL4+syYwF38HmVr48XzZg1gZhfSGLuS18ps6UcakkueK938EQpPg7orev\nZqTa2kv3cGkPyW1nUbdrIH0VFbzBs7roofJyBiTZK0m5KwW3ldYDkpr7QmuB\nA4R2QQZQ16uorHltOib29YF7LyM8/gZAvK80Wo1b5xrb2ytpjAkeuXnHQ1Aq\nosuJI2U5wfXCaRpC8zH00ASxza+faOBNcBTkyBG/TGW95n1yAHN44GpapSI/\nSb0qsoSuhIRfMvKf2LyxrYxLjOTzg/8PlyLTJr19yeDfvxMfcDh2hNszvQHf\nhnYb74oaxgvQnEP3VRZhvKMqWINAy8CXwDcmXwDd8Rr7BgJH+KjLwhypJf6t\n6y/65oq+1D1uKj9PCu7oHk2TWmPoJSIVAHQSuh6Cuq+0SULPVfex9Cj1qKXF\nyViej2856q9aCczPgHnTi+gBKgVrAK0OUEX6dK/pR11WRUkGTkusNCR/9NXg\n4adWxBqm6UPIJgJB1VA5UPETlHPkta9+GOVt6bspn9m0Gwz8EQJ6dzZuGidC\nqLEhLKx1N9+kvXyKCU3vwGMm5gCVYRn2QH1hlLy2p3lO2JH/CL8p3qNs2nNZ\niVhi9RSkcmrn01uV/hUsm5emb1PE4iDrxzp8fQl9zyYCMWnKBLfasY3cY8Rz\nCv5d\r\n=0o+c\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-NJ1OqrOkLTb7YGgryyMLUSkT8DVCK32OChO3GUAIhQB3rGhVBa+PFVX4PuT/Mk0H3ND9mbKnpeZO70La5MF12Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBmLsfaoYdaZveCpXkVEWCTwUOtWG11JnRgrhiyJJCNJAiAA5XnFOMP0EuP1ss1vJGRsoxM7qL5CvhknbvuCHsyKfA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527808033454_1527808048213_0.883342608726748" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527810120829": { + "name": "puppeteer", + "version": "1.4.0-next.1527810120829", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1c0ecc3d9cac9b4701b0d562fd1f3e0afcdaf4c5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527810120829", + "_shasum": "8fdcf9f67f44f7d0a34e7846b69c33cc7fd3231d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "8fdcf9f67f44f7d0a34e7846b69c33cc7fd3231d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527810120829.tgz", + "fileCount": 32, + "unpackedSize": 269509, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEIhVCRA9TVsSAnZWagAAEzEP/1VZ/c2FvdFY3PDzNXxE\ngJIXUBAVX8Bo3Mn4LT37GVudYY9d2n95nosXJuoOESdphDb4pGFG5MMw3nDe\noUxLIyF3MQD2IPopAHwcV81l+yzaa5XewlUWscMxbxyy2DX56UiETrERgzsK\nD8XIcSRQiqzndNAwzOu+pFZTPWDJ9HqmbTeo/ulm1XhaMUBJtRlOGCV4DVCX\n2vCVUFiGH7TliqhwR/qiq5Sqpc/dOc23Q6cp8nh5uegKsIeOm4NP04eq+hLw\nmEv+r0mYW22nUdcHshspMUYQCGf1QzwkxdSMNnVq/AlDhE5vTLqkjzUxqB4b\nNRLJ0PzjKkqXIzLLBcZcRYVm6O37t623Fa3vzW8Ha/syoBI4wit23vyaJ6Y8\n3HSi2XBNUUenMogTI4ToNJoBjAhnbeJvzm0ppCADMdQ4NiLE1a6k0CdP2a7x\nBkIG3VXwkgpq9Lsemjc1Ana0Wa2OrpMKfEm7GqEjG0eS27eL1A3SCYHpVIxc\naovLa0N9wMhjPP1e+xsSqlpFw81tDjxFQFuPUFyZZLVoLhQsM0R+HeTNAl0B\ne9TCSpKv6TmyrK7ykssLj4dD1LGHdHfnWPEYFcn0cfGsyfQxaOlJmsVsf+6N\nfNtG7l8TsxWlT/vyiTYinHFkSWUcek3xi6yDttu+fSxTyiQBBJfxxSBtMn+e\nDpri\r\n=Ug5u\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-NzQ+U07U+RQ4BbRLCFhr4Em6spvw9KT5Kdw26ourj1POZjBURs8oD2n4Gc1Z0Fl7hsdoNnjrCn7vOw34QrEYoQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFb2Gq3SgU4zERcKfywwVt4Q9aBVmTH0Xe5RDlFUilvWAiBnJDPFDeNonFQD37HLZk8sY0Hk0fxpSS+2o81s5EEKMw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527810120829_1527810133298_0.05816333027793741" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527810915859": { + "name": "puppeteer", + "version": "1.4.0-next.1527810915859", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "35e3f12afaceb6f3b3d4ee6b7e7111e3f6dd941a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527810915859", + "_shasum": "5e59df22bb99715d9e67f26a76d25bcc0625618e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5e59df22bb99715d9e67f26a76d25bcc0625618e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527810915859.tgz", + "fileCount": 32, + "unpackedSize": 269527, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEItxCRA9TVsSAnZWagAAkGcP/35Jr7Sl37ZesUeBNrTL\n1qB3Ad2b8CxzSlMVyUWqtwnckA/Qi8B6eaZh0pRk42uY260h6aVWDiV4k9xr\nnR9ZCEr/y30l2u6HGwylbOWl1hOMLhARBqleBaoQhiqbYvxIvku3nxLlMbUj\nyj7BhJ6j/OIw0RNXRH7/rr7k6LJo6EscGF3G8AQdohqDBxV3WUk66tiDSEEb\nFOASAabjXAMy+/o99r6t6SA/NrPVdNftlVkEEKyPJkUDuigDNC751zoyHH5I\nJOwDHGQrLs38LAwW3dh46kk6u7ZHw1zEJPbETaf5wdyRkwDC12+VNF2CPt5u\nAS5Y5cusYFqPvl0ViCRntWHKjnaS66hdrChUpvjLqI0Ih6MQMrAUBwSag9BE\nJn7bBH0PmgeeuD3bKdB9vNK74o4Ng+5BJTq2SeaaFSMWaxUG81SmOY1t0V3Z\nZ9rKAv1gWylwAnaYftJkQDDzVBZ60YvCndeyXVDwCZeGGztLPVdEh9oWwnWx\njWU8Jm9CBRjdj2WWuJEdSIvGS8ZG+K57MFvtFBZKocuGQ75WAag/y0JLEUMB\nDu2sdDrROB6cITiPeDhRFzWZcwbrPZo5Vz5hPdfSeUhvHPnIluArSPXcGpfZ\njCvtS8EfaxJfKtFhlRbo3x0qk0dx3PbNu4DZwspGFndr0IHr8HbsMTKTQiqi\nRpZf\r\n=wxdT\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-jMo9fZSJBQL3+sSWI+qpfkkMaU5V1l3ZFMG5ZVmCnn9W+HkmZMp7zvFq8TTUEqn0d3p+X9oAbER2lvB2Zq/OSg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCYnPs1Xp6QsEjeYGdCkH0D7hkBEYBtwDrIxKYqsDI80wIgIZxAR8bD7egjrnQjl1aYqkrdgTrDCo1zgvCYER0CaR0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527810915859_1527810928743_0.4534108814535647" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527810967055": { + "name": "puppeteer", + "version": "1.4.0-next.1527810967055", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0b94fa70ebfedae31059eb5b982ff4337c3997b0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527810967055", + "_shasum": "ebde51af3d480b58d8df93dde5e09f00decc022d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ebde51af3d480b58d8df93dde5e09f00decc022d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527810967055.tgz", + "fileCount": 32, + "unpackedSize": 269274, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEIulCRA9TVsSAnZWagAAwzoQAKTVLAFJrjs8YerB6NIN\nUxQ1bk7KAHzIRTXkZdouIYdCfd9/a0aEJbv1fUHsAJak+O6qFm6n6r+RU1HU\nrsLimGAbJr6/83z0/loiAgAiXQjmwFktQO2jAUTwRaiDBq0r6omRYIuhrWyO\n0NAxPIwXf+alEOZXqNo+seNuXoviawzizfLO6ZTZJjTsKjlSOE7sXSJG7lFZ\nohpah/Mu4n/REFykD3NzaEjkH2AvxT9Cz8daUPLkdippIdCOc/DaiGJZ86js\nxohydKAjvGbOJxbLCxQud8a09WRTYXo/pCyGN4nmjf72r4gi6W9zE8wba3IB\noidfusYXTBismj89dwlJTtvKp1ZH7Uu7TGLq8UcyP525qjMebvOJDB1U+ulW\nobiMrcYHon/AGQ08ljaofl3QFv+A7la8IEFnxComsN+7I0XKX069PiltzrQc\nBOYUT1ftAgjbShTL9vCc5yhj80FnEI+1H5FRGrdCHP7n3BaPkf0Wm4T4voLT\nOcI1NB/tEQHSabIbSX59yv6WN5MJo418wTqeQ1rnIB5xRIM6ECLfx4P82Hb8\npeWSMGyPGV4E75Dt4tVN+zJ3T/5mBRpkUytlrXUSKQi3AwafgUkikjvktUlF\nJV2ZYp7eaJ16bXPTAEzXaCzn3DkOe+fFDfcZMpJhg0nG2Q06Wt4UTMwawM5P\nNNoK\r\n=3KE5\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-4m04wxlN1l2WiQjFekZOkY5Y8gYz1EjLUq7qFVNo7gwgefmvwiS4fxTmZIE5HSYvznpkksAQzekMtV0hATRYlw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEesBFR2BV6kGgUbvMaRjc1cwiz3tf6C/cfW4eV/SpHaAiBY5mZ3EGpirpV4KcRQF+ibtMchBZL6tY2Sn5lbW/5znA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527810967055_1527810980865_0.5611093252988351" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527811743681": { + "name": "puppeteer", + "version": "1.4.0-next.1527811743681", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "f6356683cdcadbae84e46bb61508a263e40d64b5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527811743681", + "_shasum": "360b03722760575b8e709e2eef44b7cd2317b952", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "360b03722760575b8e709e2eef44b7cd2317b952", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527811743681.tgz", + "fileCount": 32, + "unpackedSize": 269467, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEI6xCRA9TVsSAnZWagAAF60P/1u9kjQ/bQLAhGoFYitw\nLs6wtUyGjQKX5qlZr7XyPtclhas5eP7E5A69wPWwKg2NiMCNTml9RbURmRip\npYNkiVXqiFKUF7ebom4MeSXVNOyAXOIRn5p5z8OZ6E+Q8fXMfSO8bZFvihIM\n68kEILUEVwD/LsqN4Gkg7e4LL8sVpOIzfY5mqywg0x0M+Ugn05csm2AJhnSo\n3kZYgj7QruT0ojLEY1/aAWbNyEQ31d6XwluIjxHPk26iqDiF6sS78jUThiBw\nPT/Iv+J8LRyoVcQYyFNtzITC/MvadXHpA/ofxl0cjS+pNfy2UMHfLaLly0rG\nUFDSmDCmIXexAGQRyTKnJcEnvxq23Bs100xRJOiL33MLg0gdg0DE5Ud/4nVg\nc5UpuycTNv+epiWvhD9ngpgHb9tqK3ZDhAc5i0qVUuqAT6p8SfHAabRDHRME\ngnpbBuwYF8sSYc0DNVu3Sfal1m+dbqJWa3H0Od5jx9lv9pLx/D7NLwa+gS1p\nH0josI7spLvYNFnU1hdxVc+aPpwuK82QV76BIYU0XIcrMjto2x1Bkjeu+yfi\n3Z65K2pxv3IYYLTnrLHCT9Gagf0TTnqxUzeHldbQK01bZ6IYYclNL0Uspho6\nDNoOV0FKAOCSHES7O8uBCck/OFUnLDF+drst0NEf0snn4WfSx9y9MMQEUdXJ\nK3y4\r\n=JC+A\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-T2TaIsYYRNcZyqKzwummEgJI5GoT7hszQpgP85/rqfeHZRCuopjybFuSZsuNFqlKOBcofbUwyc4yVKVsg3cq7w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDb8eCK8kceybk5e/6aLGEZwB/n0V16O4sRBVJeYZopjAiEAyQnSZq2nqlZFdHGTXx8VCLE8XP+GXDZKlh2VILQ68XI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527811743681_1527811761128_0.7303387306706979" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527813649005": { + "name": "puppeteer", + "version": "1.4.0-next.1527813649005", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "724fa512cf8b234ff594e41f273799a1900a9f95", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527813649005", + "_shasum": "e8eaf898ba56caca4bb088e40d1640525e434d8e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e8eaf898ba56caca4bb088e40d1640525e434d8e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527813649005.tgz", + "fileCount": 32, + "unpackedSize": 269970, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEJYdCRA9TVsSAnZWagAAagUP/0MbmaIICetJF2r60RdB\nCillwxqrfm5Ao1+qYmIl/k6tX3ahqJ3la5zxD2usSX31nfHXAx+BHtf/WFWC\nNaRzsP0v9ziaG7WdMTo3OKhaJG/rjNl3ROcXR0d9kq1EWAkZvT75yxszlyIA\n8Fjd8QT1dC1DFgHIgw30HicEiHJbnRnJDmhKQ33nNE28bziP5c0go3f37uWn\nZbxvl4obaTYok8uNJa9GP9gnYEFnZJII2lli9bgGVGhP4foJm+e/7h/jI7Jr\n+IbFzR/PBoBvB4RX5KYla09sp0OFjGz+CSwINC7NIhfkillLKFctqviTCE/N\nTz+8r+EeGqgWjmXXKz8fxCqglwcsEteM7PgGO63ipPxGNeAFUl9ITW7tuNGO\nXm0XWQTTNasaBkwDnBkD3NMVq1Dirh+wUEMXMRKugJfuGh+RPD3pUWGM511N\nrlirrVV3nc18ox48iK4Ux5dQdOxkqGpDSuP9JQdicFtq0mB1P+Gh7sFYkX6k\nEFEVnFqptmxLsWx2sWs+4UXFO+qtXWkMa/SESJIAjk+Q8u1WcFFYi/WnLv59\n+4h3Dmz+pbo1M9AJdHdcs93cqAXV0ncNlg7MxFzRK0wtJF6f7a9iwJjjlKwD\nuUORmlRh+fj7W+Vna4KF9LyeoZ3mHEloPR+Y2cOH4FMlZfO62rqtBLuxUkjA\no6OY\r\n=NctR\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-R3MKRNEFYuhWv1oWC22T1BKDXbNyloy60RSCEyEO29OEx7n0ThLTCMdKEYSeJXV89/PFqluTn6J7ZcvYWxtIEA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGhRJsW/Xqik+1nhSoLeRR5ljZkylp2+njimNJENWsEFAiBLxXLxUG0PzKvyGWUBU5Q20vOT0GsnB+QoTTAP3M/bVQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527813649005_1527813661318_0.06580047388692156" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527816016516": { + "name": "puppeteer", + "version": "1.4.0-next.1527816016516", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0f8c7e76c22579680e0d3c7d65554a0611bad09d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527816016516", + "_shasum": "e6a752be7768e27e2f0ef0bc725b6d062e4367bf", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e6a752be7768e27e2f0ef0bc725b6d062e4367bf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527816016516.tgz", + "fileCount": 32, + "unpackedSize": 269994, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEJ9dCRA9TVsSAnZWagAA6Z4P/izjTmIsvxWp5ePdV07p\n/wY65NK+Nnm1hW+xI/ItwVKuxZAVaQ3O3wKN4xQ128P8i7LSTQ7G8Scw1VU0\n9Y/yHmMXlLgMhjJVLsm1Dv8bsW17H1dO3KhXU5j6QdurqA5pd0yXjwsHTNBM\nG5ZfUAcKgkPuQHBaMAEUXlFdK054oPPKGf2+Va4lsosht4GbsreCsafAcCOo\neWc/wiIc0ipfczq6AaO/umFzOEeecxBPq0UTN/98bz3aUTiJlxUWjuZjMhTQ\nZg2m/QnkFLGLZwUNvwsPZeG5nZSg1a4/IoGiD3Vojh81OG7tMZb8v2QPhq6z\ngH1KuCDny9Upy5ytQ/2WBbLvttpEsZlVb+XLcbMuZCG5XxW9QHWPiyROB/Vz\neteHyzt+/VUvigB+gkQytRiq6wOdD8L5v1lBeSSU9NoA5/E0Z7MEt1ztNO1C\n9j640GDn9/8eLRqoxCMK6NVXlcVnWahkfvni2vrptNxbAR0JFYN7E7u10zW8\nUQYLoHxEgWXC6HOYUGg5ddBdcB1hlvuKSM/id+EBVsp0UqSBTZfqCOrgtaFX\nY1SeGS+2xKQzX060iFF2kIAOe7P3PnFq41OPTt2rmuW9kW6FRLt1sIS+3Ei3\nl1kKc8MOezPpiHeTFAHviIbsF5cgoWVftCjgTkFahQCZcRpgR0IRrElXgGe2\nzn1W\r\n=gICI\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-XX2sReweJ+e+IVQw1/7A9k5JKPVFttsYqm5B/N+H872yoGX7kfvDK7r/nAG5CVKUZMJwsoEy0HIgA0pUzBHA8w==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIArkbTh4LjGj2YznqeVzsvHWpWkkxdpOYshKpteP2RFgAiEAm0T2YRCsqRc77ptB6fxM/uqLnzWIAIIPXiQeY2DheAA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527816016516_1527816029526_0.48230354648946605" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527877736615": { + "name": "puppeteer", + "version": "1.4.0-next.1527877736615", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "e03802688d343d4442ecc92c50ffd57041d4a6e0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527877736615", + "_shasum": "6834dec536fcb1f0fcabb6b558f936d4250d6d35", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6834dec536fcb1f0fcabb6b558f936d4250d6d35", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527877736615.tgz", + "fileCount": 32, + "unpackedSize": 269994, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEZB1CRA9TVsSAnZWagAAT50P/1wffAwTppGGrEqA3NKq\n0IxSeEDE7VqBydj8ZzgTGzlU4Yu2W47MnkP+qoEpepWgiRrTvL2CPG6vJFGz\nNiKxmGfdzzFQFJ8DhPq3TqVEiYkzCLp27PMEwcmu0f/xEOzBP7Pca54RQegP\nW/zKaDzDSXNUONgFk6VDlpYi0cSu5cesMSZBRzaAVERtBl5ZqiwpofFErJdI\nkiKKwTaZWowruCCr4O8OdCfwozzK/XlXvYJkPM6Wr7s59gbcuX8+96dupt2+\nOQhWwyX8oixyhHpw5iNTL7Q+SJCFN9u9HOBk0nLPJFGwxHgqI+s5xq+YwkSY\nLSlqd5pcWZ4eFIitgpX81/j5YmebRm6NMhO0sI8ksPCfLte1x/DpbdB/Rna5\nl96Z96WfpuBR+zeLqi4XAx6JQ7nrhlLDGZ8PBdjO2tgmHNeyjOwPBdLzNSqD\nmPzG0/ZCFXpUEgVOFZskpAnyicXTnckVyxEYgwzZtWjUst9yomWafqHBU8Yl\nlbvINz0S7WRIXV1adRzKfwyUGG4DipxzE98QBp6Hse0NFFAt7PGBKCCBslx1\nthsMN7keG9j2e+Lj1ApYVPHWZAuOXZ92dLDhoZMNZ/+MASlvH/IaPWzHH6LP\nzd5eJKRPJBNYSCSGmiRRjZvOB0D5JBIilBnp6Y8TAo5/mlokhpvXkLaHHPcY\nsjFw\r\n=3v2f\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-FJZxi3s6bpGfPh5hAd0AFvnBeQRc6rh7zGvfOSvNtgOJC8DHgd2gAS0TDHywX0/FDNMw+6URvtiw7OlYzww7ug==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAiZJvLsfjbyaW9C5UVVEr8f9Gs6U706nfC0z7Bk1gFcAiEAluQ+Kj0fqqKkv5T6BqSjHjYISQKl4ZyJcKGQGRsws6k=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527877736615_1527877749696_0.9949155397417015" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527886329222": { + "name": "puppeteer", + "version": "1.4.0-next.1527886329222", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "07b91f61a9cc2352e8175bd22abdbd253659fb46", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527886329222", + "_shasum": "d1ecce23df8e935bb96023bfdbe28d73fa8ee49c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "d1ecce23df8e935bb96023bfdbe28d73fa8ee49c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527886329222.tgz", + "fileCount": 32, + "unpackedSize": 269994, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEbILCRA9TVsSAnZWagAAVRsP/2Y7xtStIhBGUVlXUCAR\n5bHkdhHC2dnB4UjRkXsokVtC/XkHrNByK01EugNK1swhmwXc0gIko/zwDRVd\nContd/P7GDkBzv0JkzQThB0Pq9tadtW6IxKLb15+WLt4pewFtBFJN5dYaFn7\nV2wEl4yiuBgtLIwyLIOZuwvO0l52gZIZ4OTmsXfoYlWJ9o0BdKplWhlvrRbX\nOuSY4nZK0spE6Pm/Q3uv3Ql0ksN+0qDoOF41Uwz+r9i4wVlcArvkhzJbit5P\nbWfpipFvGZb39L1puPB9uIRw5ZD4l4XwOOgiC/c4Q77PM3bxcqR/jFJnQVMC\nrRqnyrfQQCxQC74nPV2B5veSJU8Ebt98xxO5mUtr0timdl5He9fyiaUoEwiF\nwunjRYIluGA7dtONaDo1selDPLsGW5g9Gj0QY8RqqwA/rzWWT7/XfgY7qRWy\n3hNNtoKY1RIDDNuCwYM2W4k1qU+lKE7WgzgkPgimlnCsekGYuQjEt8sVUCwW\n8L7OzdQPuhPOo6bY2cuQRRSez+vY3A1apqd2MOtTDVP6QdzTB9lkZ3+07p30\nOC50V42wfFdPZwasKlBvMfDGieJSYBdDe0bqXHF0p3fbEDBN7CqpKw2lXJg6\nxKfQBoIRTj8R9c/QnhubWa8+JYvJSm3z1LYeza2Q40NiV1N3Y40B/rWeweXO\nooyH\r\n=GPKZ\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-re3UxsEJfD0JvRP5Ox9DYLJm2BsEVyjq3QIhqkK/817ss8Zu2kR2WPs1OlPADeH2Yqfj8rKI87OupAOQnsvp4A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDpRCTQhlSZM6iqNBCGwGN4dAupP6IylYWE0Y5CXiBA0AiEAhqaHve2bZqMPrgMtxnveJEvxoFITumaeEp4W8Xa5RwM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527886329222_1527886347068_0.5665482361771594" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527886799309": { + "name": "puppeteer", + "version": "1.4.0-next.1527886799309", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9955a1e67391ab2be20bbf98eccaf9333726d936", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527886799309", + "_shasum": "da78fcfc6d2a815032603dde42a734e551939513", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "da78fcfc6d2a815032603dde42a734e551939513", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527886799309.tgz", + "fileCount": 32, + "unpackedSize": 270682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEbPcCRA9TVsSAnZWagAAjeIP/jTDoxoPXxvETL5F0XZF\netmSSWlAO+vNeSLpW0D0mJ1a6MtqKUx6XDGm/DTXcK2gliarFNbqRyPQhdsB\n9ZN7O3waHLjhWpQMtO2nmRoLCA8MQPwyTgdO06JyqSxDfeBHjccEaLLenUIA\nb2vf5Ozh5z9wpIW87rY4OKjohGhyPCrsvHjxBwPm9cUyTsl8CLHrOStR/zhV\nYtsSxPUFqES//CFxOnHjhKQNXll6fB7a7MRXYWnPpYCf0wWqctp2Hu1IzXD6\n7CgRZZjQiXvvRAx9eJynhyxWzLsD2fu75axfqGyJu3WFtWRLutDi2yGUPnZ+\nxIWanFYe3fBnzs4xscSsMBjom+W//T/zR3KbmXFO50MTFftN2mvfqUnMdTEb\nxINN1UfGRpMfjetXfOWGyzIJ+tU+NEwjY1A8c101kziBenJ3nTxVLzOn7zFS\nQI4TTsbPpM0mT9RnJix9GOyjEy0R68wRsXMR/zEXt55A+wCQLxruRyrefB/I\nSL7ooU8JMejuSIsNXQrxqpDCJl6L3mUuHiJT3VXMpdQ1vNbZgYOTvJjN8ozS\nJz+7qILRwAV2GAttlVCAjWmkGBJ4MiY5+0Ner0fty9SQzS5EpYqV+WViIeyH\n7uTSHAWRKMtBBgU9EEWz+a34od0sEfbtPNdaiSgg61mDxyk6+LMmvpr4wMy6\nabfD\r\n=NSbw\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-NX/AJfrffDjuXrDRCX0nAIr8NP936OQIbC4C9exzlYdfno0dwZnTSeDCTYgblOYiTHUV1uP0Wx0EdgtJakgZXQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIF5d1mzhzdgnDaYlWdujh3ArZgvtePXT1LgktSW/B1qjAiEAlujM/6cHdRhOI5HMEx5KWCtzfuMpy/KubKQi+j82Azw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527886799309_1527886812506_0.2167847384957522" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527887011493": { + "name": "puppeteer", + "version": "1.4.0-next.1527887011493", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9904da262e0f7338df17298d5259fe77ebd5793f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527887011493", + "_shasum": "e6b0618fbd94b2d5b75259b9c7d089a3d3fc2eef", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e6b0618fbd94b2d5b75259b9c7d089a3d3fc2eef", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527887011493.tgz", + "fileCount": 32, + "unpackedSize": 270682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEbSzCRA9TVsSAnZWagAAUxUP/ArbJwDRz2na9HhmLuWX\nFSq9i83aQwTTKKD4ExowPHT7ZMMdjq2UB7Peg26jvgNoKGOPcfdq+W7xukiD\n1bVsiAO+rXLetPGSbCUVNe5Fd7DE0t8QCCMcvAxdVjknmepBfClBPHdvw0yh\nES2VrbpLdVTN3me09biGP8sr8A/b3Jqz+zL1rg+9F/h9et2FkPXZRegNLkUD\njgkLCVnBBk+OpZ1tWcgp2XSjTC49wyMuh8DBLaShZkbZIrnzbZlDdhQaC93O\n7FG81TulmjCocWUHAFiHFvDS/FlR2gihPS1ESXnNZ5XtrznKE2djyakpbVF2\nsQzwKYCvxA2XsJN5gU1XiG0hlCehrZWKmmM9Nki+c6SnpWNET2oSzQfcL/9b\ntR80stMbXaIMMKcV9xaMYk85G67QZcu7FimN3QF6PR/r6zCPfBlWd9SI46kK\nX8/61kWxx8cAC9UqlBj58dO9AU1PiftqCyzsyoLq/Z/Gkm4RcxNqyCaR7Lqf\nIoNXx3QmXa7nuMF76/39IsV/oUs9AP8mEgKIeoaHACHSTvy8UfsmG+Tk60fO\n7JKOFDV1CZ/+uv01rr0yrDm0mS/WjXi+GTYOww/UBVL3CTNVVt0V0HPMAW+T\nSGvbxFT8PtsywLG6Fa74jpcu9Gcz8FXPA5AFV+zHwtMHyY3ir5u0wWoK3XEK\nw06c\r\n=01ns\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-HOU47mN4OmNMRnu+ogMVDldjK7vFKPrUnmfprgLr/loBf3H8DO9eSHryu9LlVAFtg3y92UgC2uj2AMY1fBz3TQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEGtrCOcwamOjeCVzCjLZURmqmiCvAlevExGFmJ1TlXiAiEArHYz/slF+wrus25CQ3aA0POMwKibToljggiewJ6lL/4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527887011493_1527887027301_0.2550595082350986" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527891453248": { + "name": "puppeteer", + "version": "1.4.0-next.1527891453248", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "85d5a3348cc6875fd390d45d4d2424d0b7228e51", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527891453248", + "_shasum": "59d3b4dbca6f449bfafc6d47f6aaa13a8d19e71e", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "59d3b4dbca6f449bfafc6d47f6aaa13a8d19e71e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527891453248.tgz", + "fileCount": 32, + "unpackedSize": 270682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEcYKCRA9TVsSAnZWagAAFWEP/AiBBssQAl2ruRZj4OKx\nCb4NEKfQkn3gcKNBCPBsD0UtfowEgzs/wa+OK0qxMvFk7EVK/GtdY543b0Fr\nFFY8/OEF2MpjcbVtxbX9llBKDdbZVrW8ATGQTcDZgVoBrrAPkdyZpdLSQdVE\nJcPQO8zIonmRchw/qmK6v7jKkn+k5fWF18UCbuEGtEPVGmMs40D1zeKpdqLp\nhimrD22zE89qw+rTgFg/C7XP+KKofUOiA3zc//LgM7n5Np2CNG9uvYVKOD+J\nuX0QywEIXHkUhYQ1ZnUSzVXTwomnG7dx7qZZ0jprhxyzwHO6xfkbGz+654Gl\niyy9ylmJETusPeLU/eSAJpvMEAZPxtyf/W06y3L+rRUSmVusFaHWuQykS5V+\nZELhFFtJymwvup3AoX78ToYbwPowG5bx4Sylo6wyOmDKPwl7EHPICaFVBUWB\nxp7e9amlOrYDHuyqQMXyRzGY9J1EskxKxNOfDHXemTOPmMa6OSvv0nS5pOGY\n8ZCiH5bsD0fDU7rvCj1NaaEf6OKzdkwr4cn29VWbkEA07zoIW3DXvIqHsIH8\noAOvaFa8EdWU227DfqDTVyYIjF/6bWqF/mh4WVvrnNxDrEF7kDZafWHFgDk0\nKpmau7x2Azfmohf+kZ4yLagYgxxdmuO5gMQnujlm62lpHmxSOnXIZ2b9dqIt\nFuva\r\n=Odqk\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-vemZa2g6Y+U1UldWBd5DXf0dDQwxsz45uqGImCnyPj9XteFn8AtWGw7lTlEBY2OkNFy0zbeuYuuZmRSzmh9OoA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCemdySpfOYevQHEZpHx36HiI+nNgdUvk+da9JQwWxB6QIgJHpklHXcR06DCJAYRYRCgHLYvKFLcKr87Fla2PwMoGU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527891453248_1527891465945_0.2697647568405157" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527891760955": { + "name": "puppeteer", + "version": "1.4.0-next.1527891760955", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "puppeteer": { + "chromium_revision": "557152" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d8023726c5404f65270d9753681476c72bdd82bc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527891760955", + "_shasum": "8b7e4d3d15c5f0360d8d2c4f80b9a08f78da4321", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "8b7e4d3d15c5f0360d8d2c4f80b9a08f78da4321", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527891760955.tgz", + "fileCount": 32, + "unpackedSize": 270808, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEcc8CRA9TVsSAnZWagAA/HsQAITF0cDyxr0A9IBZ98tb\nLuO6RjQx/KggyzxcX7tOarNYmDDoXqMNQ6Nt4vzu1vzXgocOYPZw8XXTt/g5\nHemUEr1bJbo14AUwv+c3WnlPQilPO/Spe9hr8PfLlcZHuAhNC3mLjurhE9MV\nUFkmiH08Okkq+24pWY+8uvWk/VglTbnPs+184GV+fcAKxYk+VgbzWMnh91TT\nyS/pSZ64dmPFSrSyZnErMr5kk+Tf3dUwJ/897P2lJ5m6UI9+B9e5nlDxYcZb\nK1RSszsFOHGNQZZnsyJQMRXm8AAG+MV2CT8+H8GauytdJDC3bg6cxZch0EHB\ncvLk5U9jDT8xmccFhSnJ0N/OqltYIgBFCKwrSlhr3ugjyNvXKteRfzzrVcBN\njQRZa2SwPIRTvnyK2srUx5XJem/tWINOsHjUjQrZgZHwrvIplfn0uvCYXoYZ\nq3p+Povn1D62GL5zpjEkTZEPf0s2f/nwQNFfNhFR+zPI9Xikp3NcG0h8zOLH\n5kKC8DiMrjWm63KHAkLY2LKZWJiYXTskRYo6ZQ7FuLwhUeUF4FLFkqj2pbvq\n5Qkf/4yIhdM++Jzkb5r1d9E7IIhdp8caW/T0s1Aa269CeNRyZ/xyAQZjAbn5\n1ypKsUmDrVl2Ya0euu3+tybyNoKvf1WVXhaVNeDJB0Vt5UhXG387Snmk1QKz\n2/We\r\n=tsWH\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-MMCy+d9cAlMFIzM+5fE6CZnL3/teH8N5JGnbkargzgFipEWpc/xYE9DlYRri2lCefaeQZFNzuQtnvLP8cr5yXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCvF5eqdq9oHHTvnc2HY1dp6PgHXcAkUIFqg2auQdfX1QIhALmDdXJvcNtnuFL2gVLPKUNbUuZgRR9P83aH5wSNJoNF" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527891760955_1527891772363_0.3958728870377468" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527958760421": { + "name": "puppeteer", + "version": "1.4.0-next.1527958760421", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "563942" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "efc0e0f96ed030f7c3993e4c23ca9e0db60d35db", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527958760421", + "_shasum": "70319ae17099619288da34ff950e85fd2484864d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "70319ae17099619288da34ff950e85fd2484864d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527958760421.tgz", + "fileCount": 32, + "unpackedSize": 270808, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEsz2CRA9TVsSAnZWagAAmU8QAJP/NWmTwcmPv/0XFxKq\nRB2wHGEPM/4iTFe/kUbjKEodGNdOtFuuphd5bCBU2aejYK8gkPQdAUAW5vC5\nF5DSBU3BTrJNQLlm0OxcAfWHM7qK+CYQd4z3rg0LIzFirzHLScC5QPijdHrh\nPiVJh0quv1+B1aQryICD0LIiPQy0S8mFhQnEkmZNG+2y6JnyNKDwAMIfrhY1\npMROxOUTf3Y5V2SLgT4qovY3sPXjEjG34ksv+9KHp6hs2zbmPuAS92wHaL+u\nSgT8GuVQsYuDX4tHY87n9UI4qs0UzNDTJ8jBjklY4Bd6dm4aBkothbPG32JV\nnGZnQCr0crQ+13sw3NyNLpI+g+PbzfX5L/OZpybFgGaZ7JFHXv0sTAuy0Vom\npDHnVOvSozV7pYMlVyA1rNaT+yADQ5VDkrtfz+HoKrS8EIGYNqt1qjes0GOk\nRAfvWEwGCQxF0U3qdte3aJtZEv9y+OjzOvbhC32T/QRj2KcbsEuIub2H9Bq0\ntmT55YW9lDob14k3w60eyUpjjLVSREhEGXLHCdDdPkpnNW2a5r0IAhy08GUI\neLrYs6arO4ZnC9zixGLqhPtPw8stnKtgWvCRP4XKSipP4/IGNpshrjOoBq4k\nJo6cfKp+80QFfUME+K9uyrr5g2GL+gUWL9GTKVq8zVDJmAlM0QpIid7Ez0m/\nPV51\r\n=EoMe\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-QgkasMsOllCAG6HEdGYMqWUMqqUYfrSP3CGh3tY2kNd1QVgJSctzEIlbD+uGIjriHE8+IGMuZwB8M+RGmTOXjA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD2rR32cq6/cJG4qd2iXkf3oenjpErrt2lqfx9Nizw45gIgFfTWV106QGmLa1EGks/EUl1iiWTGg5A8B454M2kp+Rw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527958760421_1527958773941_0.6244253945699143" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1527965268824": { + "name": "puppeteer", + "version": "1.4.0-next.1527965268824", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "563942" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "4bc23319a2663337053d38a00fd0ab6235ee0406", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1527965268824", + "_shasum": "042b2b8c23422f420900d5768d45ee4906496562", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "042b2b8c23422f420900d5768d45ee4906496562", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527965268824.tgz", + "fileCount": 32, + "unpackedSize": 270808, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEuZnCRA9TVsSAnZWagAA9SsP/jAlCSdyBi89cIuSvuiR\nid04UkF+tndc4FQaHVZkJKp1D5BDTKpbHXfq/QyC0qjVi9zNM6B5/YUEV5Om\nh53nOkUaAY2fOM8CgyunobOb1EEy8LMIWDD72BviXGk/TyYhhInITUoDAti8\nTZJpkEa/SzIbCKu3u1VtIurkd1dTwrL/wr44WzqoOOA7x3ZjSPPCFIfmiomI\n+pW4Zqxj/vnLkzvQIf/FKyQRWWAVWwFqWwXyfFjy6rhvUksOf+zHmCoWF3oe\nG7Mg15W9TM9apBupplRGzr37kbHA1CPfNZc5mrW+EkJ0kHEe92K7al+AWjtd\n4D490sKpNq8eeN1GxOppWhiUX3UYzOcxdCHyaGI8ehrGyZXcp3oemaBQ4pVT\n1MQaqc3V8xa/NBCEUpNoz0X6bvn2XiLZI4+BXosk2mSJ/Yd2/8pbnMrmBdox\nRKc6LHBOVgYC1PE9OqRtcLKxn6d0vNAjp5Rw3v8Sqh1WsqR7ZBc/sEDSHwvu\nifYYVVx3nNzx7hILOuLtwZFaSSFtxPRsYC2R+EQX3YXNCLzHC35tes4t+6wZ\nDPcot0HaIaXQCmE31JQoeYhaVWU5tdBH0edFiyi3lRO1eyTFlRoyErB36ZhE\nixOku9HKPzGhB2U4qa8D5Cad1GzQ5AHiUK5pZseeTrdwsr5x6VX2hNXTyvhn\nRRLR\r\n=1ocH\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-NOeu6xFAUlXDphDi5Snqg48+S7kconbdKgDPKrYh6PTOS0Q+ShK0usi1cfqj1knf7EkgoIxHoaxvPvKoj2tZXg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGPVQc4XfciIH43aoywP0WwVjt95+4Kf6TSX2+N8W7kEAiEAm/QxwcAnoACNJE/32aMU3JzxapSEISb793zm/bspC5s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1527965268824_1527965287657_0.6259755352380754" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1528296840819": { + "name": "puppeteer", + "version": "1.4.0-next.1528296840819", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "a0584689480c4e2102279969b515a837021f6f24", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1528296840819", + "_shasum": "6216d117f093f4359f2e06a0db736ec2c7158436", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6216d117f093f4359f2e06a0db736ec2c7158436", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528296840819.tgz", + "fileCount": 32, + "unpackedSize": 270525, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbF/WWCRA9TVsSAnZWagAA1wsP/1fuE6UbzAcgqxAOjm82\nZNKLSIpTbHn8HhPBbBhisR/cArWqXdwfHiNP3sj9RsWZNV38hGCzOStrqDHF\n88A0P0wPPwrtXW7f6wsUKEjFzkJmYA2Nl7zBttX1Fol54RatpS570emy8gVJ\n97+wVZAUZNZOnR+3Wq87EGsBvBo394IUdr+XntW8T6a9dhVUq/b2a3JvAgqN\nYIymXrOTsCH79ozyIG4WA68oHpZWYFPZajUGB5wlJO+47b3RTm73rWCrWnsU\nnt5qz89fNnlIYeiQASBoyMuFln2vpUvoTMS2QwJJZvbpK4ixKSPWBEVW8GGB\ncFsfj+VSx2N8SGiPD/G6oV8FSEz5o7mBK1uDdGTwji3D8abOw8V25KLIdRUw\nA9YKb2L9b+/6BUBuSDKTHejpARM4otUKbRY2aPHg3ata2Kb6a1XSISu4Gm80\nZQ4ieMqpnPitZwkWa0sZVPRL1h6s3neEVllUlnsMpRCoiQcwxuTRWAgaEzUZ\n6hSyzFnqs+4jy7VVFDOmDsK2dn/s8056r0s+YanjHyqcErQZFMOloheoLTAV\n1nijKX+TISiyS8Ym/VXE+21wu4AArhFRLh+0dqUY6fJ10urWPpJHRAYv/gWC\nz95F0fCmfqSClScG5+wuCdeWaqmiugK13Xb0JkDnveVTH5vu3sdDuQva+5wV\nGsBD\r\n=xTjA\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Zh+MhIaxRCpmwLkK4QObywpkRZDa8KD1PEryol7J/5myZ6fjpOtTM9SkQ9fOOyrOf8RNtAHX/mgH943WeA7VMQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8vfsRBjHW4jypY9NMUmthR/Z8ff0r0DCqoXAduhmwzwIhAI6w985HxTpiz2BcOqevbuzUPojjx4IPCm9ThxHndfV5" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1528296840819_1528296853305_0.14517681148067685" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1528334015125": { + "name": "puppeteer", + "version": "1.4.0-next.1528334015125", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "36b87000e4c0e3ab1f4e7c81c704d9ef331b9187", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1528334015125", + "_shasum": "1f2eb64f804b40d46d37d0ca12f4ea642560ac4f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "1f2eb64f804b40d46d37d0ca12f4ea642560ac4f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528334015125.tgz", + "fileCount": 32, + "unpackedSize": 270525, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGIbMCRA9TVsSAnZWagAA6JgP/1dVStaCd7hVapHffc46\nNkDbMaVnZhDycSs8b3VO1qHh5w9AwC5O6tZbsL7uXCcduD2U60KiM6Taw7kt\ny0dy6QPy2pPRCX21/6+DB5BAx+y1gMq8F0QPGd5fwdFN2TinGGRgnRskS6mi\nttoMU20DoOGsSczDGWaNNUQgtegpzOPNlsnT225HVDwEJgHtCoZWPgYc1+JY\nK/LeKoNnF6E1UDkA0nDHqRL6pAxkTCx+KrTP+6VLgEuW1b1AhxQECZem22j2\nI7efgh/Hcs4WBJ6RPgjVYRIxGlwdPNlyRxvZTDNO8vbsYqzea2Rb5QAvsTTE\nB1t/a22F0uUpl0cJ73fvUh6pUWhBioKHduDCcflF8EeB/C3VMlTVrHGPBdyN\ndm7Mi5KQGwQY/0co3DzYMDO8tcdmBreE6jw/pnX613Ccj8j+awxG39cxAJ8U\n1f0V6OWwcICdkd3K/Crmv8NbQ9EKJoaIoFmoTOf+xvHIPW5gbd4aR2TBjnwf\nWDo/rW1PfMG/yaL4SN8mHq3NMbHMHkZk5B+0FsM6l1DLObFoTr68G46nKtLv\nlLm1JqBRMDd1EdVygKN/DAaFUPbeHCpu3G/2CJ4t+cMtmgPlLoiEW8+hORlz\nkq9uxA8LQ6MSaZ4akYh7UoPDrhO6mnCqzwc0eU+dJvqieaTyHbsfiUzl9/AL\n9sq5\r\n=xryk\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Okcd+NdPN8r/q7Fd53PwBQZlkpRodhkTS+RRkSmqnJ8AxDT06ys0rI+ciI/nS24yk9GbudH6ory2tTjJDVbQTg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC3i3/rbMjPcBp/Kn+5E9OPgMrVxepKCktua6C+5NYB5AIhALgoXxnFLh4jsC9qDYTj/uwdmDtBbaQC9uwZzm3NK2V1" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1528334015125_1528334028323_0.23718010184480498" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1528334094813": { + "name": "puppeteer", + "version": "1.4.0-next.1528334094813", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3e82a54fd15847069fe421e786bce07e2901139f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1528334094813", + "_shasum": "a14ad0b8e836c0b8cd45838a961dc3a6695f0c56", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a14ad0b8e836c0b8cd45838a961dc3a6695f0c56", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528334094813.tgz", + "fileCount": 32, + "unpackedSize": 270525, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGIccCRA9TVsSAnZWagAAfOQP/3RR1HxJiUd+7eeTidb/\nHHSlEojtEOVwhV+RYgx370uUpzBvwBkebt8szHv8S35zlCgGRcDhRlXQwXsK\n1XGF9klHCCfhD/ol8XeLevwoej2dmAOXyqeR89gqZyjuaYBLqMi5TtU27vwM\n92ezo1yPb59f2gGQvs37r/ppbdggVdHx8sUqVHrXKLUWnXlYaOIt4cQ//Rar\n7l9vvxZRpwqZJPE4c6NWYYnEPpuUvkmScWkXvCziMJcFoebKoXPM+uZIWfYs\n7V9pRk9BEX/r+w4NLEnI7AdC5pt6LdMrENxpbigC9iZZArI1OSFgwa1q7xyw\n/VM5u6uKZyXrg5namSxmBhwYVi1R6UBY9zJE9TkHnKO3nLRb50wq2osZDEjB\nzQ4GvrYeuR4MVLDMXYFTdsABX+O6u03OlJuePUExTfRaupL9f+fc7uY9wJqt\nQeC91L7Rmx7ioWVycSlg7YRMsjMHwNJuPose7gjqcdOFFRzN9Er+Yqwt4+JB\nW0BH1WMdFk8omAWR2nMJcEl9gr8q0B/YVvKiZl7S5G+pbi09t3BhrpX590/i\nQ4K1VY0gEbDXYgJ58UL1cxerruDLNjQ8g/J+aklLrzL8LRZBLxuWmOEoYqRw\nuj38DGa7cg+IIfw8y7jaP8SM76pJMS83QPqRLaf6/YYglYQYHDFBd7cixkDm\nv+Az\r\n=dyAB\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-Cqa+J8DZkbdLfdylaF5h98EInZ6LVwAgIxddeCa3M0a2zGOyTKyjsR33FtWI93aSk2g0McyAr5dX/H1URG53Hw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDvUMKXKtv8CekPlJwks6ye15CMLj7pZVPRmgL/TNFxSAIhAJidEPJfgwga5HzklBTHWqodpEb11OOdtl2N5VdvXDOO" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1528334094813_1528334108070_0.9777603448537668" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1528334327491": { + "name": "puppeteer", + "version": "1.4.0-next.1528334327491", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "2ff0adcad8207f85865ba35533605361a66515e6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1528334327491", + "_shasum": "4ae68e2e834f97b51e4b01359e30efe2b68c3ab0", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4ae68e2e834f97b51e4b01359e30efe2b68c3ab0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528334327491.tgz", + "fileCount": 32, + "unpackedSize": 271097, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGIgGCRA9TVsSAnZWagAAi/cQAJEJDbtCtmw8Zz/XQYbK\nwoGIwLxiLsnC4Wq0+1JntasovYO7TsoWpXRm1Y/XHAG0w3VRBfnvX+loHBTR\nGPfL1HwYvdnPOU2o5d6jyFP34MS9Ygenos9nkYjhllVqKcAalCFi7y+orJM/\nx/ca6303EQyWhDUg1ACb9eWf5i/cR9t/PZZTCtho43K6pmtOpPcpUzioyB7N\n+HRfEIXmnzmOptSxhtPyQxGUOfWsOoDnbMHiI7c5NhmCnZ3EimYDcLQtQ1wi\nSDsAhKeiGKX5Zk48udF/B8w5CuJqV2pcWs5jVlJhf4hCdOj2IbqEF9JwLyn/\n7H2biOw6yXqhah1oPDGYq6hpUvWl8IqOcepSSPVHqQ7BXTHTX3rCukZXZLB7\n9c56bIXxXUHSa4jtukFOevevVL49HwDKfOj1ec1LQIDLicd/rg348R9/4mvd\nxOPcl4Ox2IHcANgLHIKhZQ6BfQD60WcackMWsUWinK+LxSsKQ3jiqUNP83OI\n1jU+2HEPVXr3RrHIDRQRegbReg2NwnEfCTd4ogw72lcjDbb66rcDvL2VYJws\nWmGYseIY23pzUL0TEM7kxKncFm1G1Zi4GoDw5p0PoECv+c5OiJzcIpVUp8uU\ncP9eUNPYeGy84sf2YFXstrA0fcRyiyuhPWF3mYACdu0S/cpmQl57+6XvNvHZ\nfCdy\r\n=m2gp\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-+nFc+5aRC/eJk+9dFvC5aUV0IZiKxPyBPdUzt/rkOmQ8OYECPQf+yE9YdX8HG3KehYUI0spgAdi/H6kKmesT/Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDCn7eiYSnFVQs0XHMsAgE1W4V1D/+gMNbHx39uhQXkDAiEAvU0IkyN8cRbSvbwu1jecOD0cddjauE643M3SqwO4ghY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1528334327491_1528334342021_0.12393109909219535" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1528389663924": { + "name": "puppeteer", + "version": "1.4.0-next.1528389663924", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "90833352ba97637e6fb7e4bcdd788293a3a8db04", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1528389663924", + "_shasum": "27ed0b51389a567eecb3ee2ef36445d496280ee8", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "27ed0b51389a567eecb3ee2ef36445d496280ee8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528389663924.tgz", + "fileCount": 32, + "unpackedSize": 272746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGWAtCRA9TVsSAnZWagAAkP8QAIIBWNm2/mbuV5D497nz\nYIwkr8kHD2bWoIgNZIiYmYFLe2re+ieDdkDvLDVq1HrC1pJIqfaY/4JTrwO6\ngiA4qL3R49ggq3sEw+w6nKzT5zy2MzWfHRmV/BwZm7fpAPDvwctAWGcX+BIx\n0aUOQPAeMEPIHHKNkCDYfrgh4ssyDSdGMf+/6ZjqTeTMD2Uktk0dNfIPtpYV\n5ruIXk5tIgi1lK8+s60LgTMh1SlWRY/zu0WrlojYaRVWa0Vot/VAwLPkLYqI\naPqpk/enCl1y7viPuR4UgVQLvPEE35sM0akEgQP8Ng7A9vEufQymuWQ1TYGR\nigUkw2E0iAZaHx6SFZCXLAcOeXSw94O3Za3GWmtPy+ERRL4SfqYVLJI5PvpW\nyJyAeMDip9itUocy2IJ8NgMbtDo4miKYiTz83IaNz840DlpsEnP6yqvwgk5L\nTuZb/+20D4fD2w0kInfYrkL6TSTDh4Q4YLlSlkj/xoYLvwwwpeZ42OV9YnK3\nBUjnOHabl0j/Jh3cm34vQR/TGocvB9Pr+TxbCDLpd2TJqu+JbbsX1dQ3VAHh\nPQb39cLRJVLMVH1X8gizRFlXhEOknrXuHedv2vlxMK5N56w2QgIlkv4W20O4\nDhq0j7ed6I1GO4ewrs4m4M84GVTf4zEDcWk0c6VmaCuFdX+VXqZU3ZcV2AUx\nOlkv\r\n=Z7Yf\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-BgdTWmca//W8NN6qww31fMeQN0BuWwl4RegqFggo2OPQiCEi2db8Qior5hZLFVqpkdADgwAUSSEVFaWlJ0BIQw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC48mwva/03/YXL8bi4WeUovZ+ipM8gH3KQelTZJabwPAIgL/W6bF71dvsfsct/A8EfHn/KRFr+UMij9qHv2NporWo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1528389663924_1528389676765_0.34298583964879703" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.4.0-next.1528395894335": { + "name": "puppeteer", + "version": "1.4.0-next.1528395894335", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "75ba86f41ac4196dcfee515900265edc44ffa2cd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.4.0-next.1528395894335", + "_shasum": "6bd61d70cd9ad4fede76f45da0231b126e4598f1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6bd61d70cd9ad4fede76f45da0231b126e4598f1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528395894335.tgz", + "fileCount": 32, + "unpackedSize": 273034, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGXiDCRA9TVsSAnZWagAAhL8QAIp/iHVVdz3C5bow6CeW\nsdWgX8AMJeG3ZSztH830zUu0SIq/fgkdsOt6gF0rmKu12pmYdATAcOXsjqz3\n3Ux2NtoXgM+o1FMXgtkyn2HWp/TGokOAYjshK58oGddJBnhbjMkfmkL0mwNZ\nKpU5AZMD54JcBlCe6SVpl+o5AybIrNLaU2MuwnDejfG/Vqu6zhvUSkQYV5Em\n5s6YnnTGCTXc4PH2hdHjf7IBdj3urdhcXLc0Cd4IPj9nmzsaiZusfTslGAy+\nCXurrFiehkVJDeyriIzMQGjLsX3evyJi0g3iKBZH2pB3mtZlpXcZMWQAiyY2\nLjDIbJCUjLexcGY3RZXGlp10PDlRPpvIGzmsP0u2uHjkJ3zxEnXb3Y8rI88k\n7yS+Sb89B0HynoqPb/LRlC8+KU/XvgnmgcAC9DTEcQCNlAGkrK3vMhpvcu97\nzIoWvWr+unnR7e2MFsoG875xjf0RBodlawCaI3YqOi6dN8y3hAjU+jV5XtcZ\nVX6tmTQimOsiPl+hJp2Z+mTuQPa/czainJwlrLdBxhganfnHJ+GQM5gAQB1r\nWW1ykhG75kM/wgI+pQJ3FI4pkWuL2Zx6AUkCkUktOTyb1PwbGOWEEWWXBHEO\n62KCuThKY8JsYlwHWLewuQ9VSRNYJtrLYm7G15KW/sq8S95zl1Imq8xu8koT\nIUDB\r\n=csq/\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-MbYJ4u4YKmZ8BCkdzZfYtQ6MsIiGNOCx/6/ND1vfWHQ4Pr6RK/OF/QCzogLWKX0xBECNTQJBcp0Sdnsp0I2BnQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5MPvU3tsIO4rgl9OxRLkrvuqLVtgUNnY5Y+H5z6cASAIhAOMPD6mtdX0PMiDIAovA5kjAPdjdB42D96dUB8n6Q76A" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.4.0-next.1528395894335_1528395907467_0.6663344947456478" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528399382159": { + "name": "puppeteer", + "version": "1.5.0-next.1528399382159", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "194d58002678735660187586e86c38e97ad68278", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528399382159", + "_shasum": "3778d5edd38f34146b06d75f378679ccff57228f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3778d5edd38f34146b06d75f378679ccff57228f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528399382159.tgz", + "fileCount": 32, + "unpackedSize": 273034, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGYYuCRA9TVsSAnZWagAAqwsP/37W3Mod09lUO0IcNBkh\nNtRpP9AUHJ/Ruzd3P0RCvi9qh3H38gHe8oMuVsz95hhdrcEqmfsVKGpdbEbF\n+hIppq349VhSxdd1T6fmLzS4QsavrDUSoqDek4S1EavYPEdhE0xaPoApWSTp\n6yUWAjehcxuDiCJicEjlyQHXpZMTXMC5eW1lQO/0ry+6tCUJ5ugfd3CRS4U9\nsCmjPfhcvqDAIALNJLaSY5QW7eG6DiZKhJ0zgGAbQ1wlYzynO8EIZvoQZz8t\nB8SpKDTEPhsUlKSSTB5GG/Z3qlxveckD2n6j0B6NPqEuq5WJfgj+DQOJP0nF\nBxOshkb89NVSHNklSvco+eq12ZCXP7Dm4HhN3Cw3SM9LFQEob8OecQ6yi4I8\npwVxmEBfaz/Nlnxp2es+s9S7GmqaAHjnOD3dZwEwLx/vsJyIW4Tz2n99gs54\nWB/Pks5Lqswe/Ju1Z88q4Fntz8v+wy/OSo8PgRM5J8WzgVRuTxhsqPdrY0Hs\nNHTdDmztkDO4I0X6fc+PqbY65dygl0jtyHqBAePb0qXSNEt0KOL0P9NRgch1\n6xwBsCM16K6c8yVXJfwOVCh8RGTyix8uEYmmUXd/NS6GFPpZDfX1GcH3eBKs\nuWTsEdhHjT0Ydaj0rVbyP3/rNG/JO5AKK0DsGhokx0MRChfOKKhVDthJ6IUc\nwJ/n\r\n=PWwx\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-WSIflSJnyMAj5e0ACuWOqUcdRtr/+vYm9c74wsd6TqUM6iRfkURdENzmgfcuNt9UxOMkxkTH+H/1YFR+M8Ktxg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFfbi3kUrSIDjnDlsEynwkmKrShT/Nen+H2iCTIDv5xdAiA3IAkuks4jnzN53vpCJIhCF/uOzm4HQQF0Ptv7+zmP5w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528399382159_1528399406404_0.5021960969207866" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0": { + "name": "puppeteer", + "version": "1.5.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "194d58002678735660187586e86c38e97ad68278", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.5.0", + "_npmVersion": "6.1.0", + "_nodeVersion": "10.3.0", + "_npmUser": { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + "dist": { + "integrity": "sha512-eELwFtFxL+uhmg4jPZOZXzSrPEYy4CaYQNbcchBbfxY+KjMpnv6XGf/aYWaQG49OTpfi2/DMziXtDM8XuJgoUA==", + "shasum": "e35db3f3ba3d41013feb65be02bdaa727ec7b8ec", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0.tgz", + "fileCount": 54, + "unpackedSize": 579792, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGYbmCRA9TVsSAnZWagAA+BEP/ibKIfH/HcMGaR4kEsyc\ne7ZBSYrAT3B+gI2ybBaM0qPjPuOStPBNHHswXJGM2mJ1OZX/kjY0UQb3OfQF\nbSaUn2WmkVIw3y1csWj5ao2izsYpYEPFjbwzDfE3L4pC0MbdivpHTrp7joKr\nE4w/0dbeZrnA+3Ft1JxsloqjRmmHDpcf8xVrACTdt2AkX2VdO7kiQ/m0jVSo\nfX0WJuZwTUSg5UvQ5e/NzMDFWgMVQwNs1pXCj3ZBhkByBM0qb7X8Q2EfquSb\noQafY+yBsDIMKdmLLsYHjVusJIAksyUsSReG7C5ew4hZm4SH/59fhs6ndnAO\njRq++hKG+t4+YtBXTbDj4H3sAJ6yu5frqCfgf0Gxd77CSXtRJLxGRKiOm/Q1\nDPlCM8aMLmV5r3ludZDfg67Do9zLc6COBAu/FaLjNs23e2aeM4+T/yTpo1ZG\nAfpYRnDr3T/P/JSHz3m+ZwHISLF2U49HJDWY0YVZxMd8eqY5XeCuO2l2WclE\nHbGq4UUnEe+L0oltzKhoKet2+OLgBocRSwH+aMuyTfQrF8JyEjV7/WpVoEqP\nbz6dAedy9dhoiZhXhIvZf6GXaALXojIYHpZMq3wsbpgB6cDtYr0+TsWxzAiT\n61VKfmb8jREtx/EtR2VYFSiV2MXPcxPxoYBOqqJtspMvgYP9pTXYGIwEygt5\n51kp\r\n=dM2P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBirpyQLPQyAH48K/L9/PI/OMevfPTVfid1/c9i66P1hAiEA1tUVFaYA/GxA4of1fsfcNIf8oH3ZZYS/icVpvx1qn6Y=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0_1528399589770_0.21315590008818708" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528402191643": { + "name": "puppeteer", + "version": "1.5.0-next.1528402191643", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "147f98d1f0e02221895573f2b0958125d9a7ddb4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528402191643", + "_shasum": "5248daeee21a4d4cadaff44945e9e5bee7ca8765", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5248daeee21a4d4cadaff44945e9e5bee7ca8765", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528402191643.tgz", + "fileCount": 32, + "unpackedSize": 273034, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGZEbCRA9TVsSAnZWagAAizsP/0ggb2J1GL9dC/QHidrf\niuhqC3SucMH1Unc5vAjoDP9j7bNLs8EmszlaRGIKoel64b+Em/NA2la3e6eK\nS/2x2iquwmG4dDzAMaFpUauT5IGDEzKRJy41DrVbb/H5mpi7EttL6sEkSFn4\n3WxIrPa/JrM/Cp/LMCFAobFMcbGFnewXICaTVhMHcFbYP0LvyhFAQyJv9ikk\n+/hCwPraH7uTI+Y/XH42pCQAb8Y98sSqCSWCyTMu15IDhQNyTQkE2VsuO1RY\n/AE4xkUbpONWw/lcZPHknDf+++hlaAG78qfd6wWJ0V9zWP8JZBav0TaqaPGI\nydSsYlzvDrHJ0UlPxT2DjRyKEs3ToRrR1Cpbue4FKjiPBKVgkmEVoeDqAb3C\nw06UTiNMGi9sKz2knaDGXe7hu3eoD6RFJ8ax5LV/bLZNxPWzyWs2W5jB5mZ5\nDZhGYC+OBny9sVZEsjMZTh6OQ8Jd9bFzE8mmIb7IJwVvsf2fLYXKE8czJQ5R\nF2OSln+t8o14OBwNTYR9iRcVH30gtWMHxaxfohfdjNx5OkqNU+AvPb1NXe4f\nbHAIw0sM8nulNJrdnrVrHbRNf8igSOJOQMFLwL4cbxrjxlfbnlPtOysSf3oe\nuZhI2uDOMLIkvchXTbUfpLjNAlVMtKhjJUptt6nmD/Bp7jE/ts/M2PBM9A6C\nrbxr\r\n=vhf1\r\n-----END PGP SIGNATURE-----\r\n", + "integrity": "sha512-LIGEe0vJ6XPb5wn6kaAG84K5oHeain9HYcIePA1ZwqEnXZSRmEJTDW95iXtd9cVk3MJHsCyT1ewiLrxC8n+HLA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCAHrw3SI66jgNbn0XeN7VKvKB6ucPcW3iv0Z/XJa+MTgIgYReZ7UfjTxgwl7lKfTnqFh8P7RlQ3e297PTyWhwnNxU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528402191643_1528402203362_0.45142725442041143" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528919394878": { + "name": "puppeteer", + "version": "1.5.0-next.1528919394878", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d481fd51476125f6e99615399b018a138f192b49", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528919394878", + "_shasum": "d4840f8f016a7e2555375a7375ee6876137e6f4c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "d4840f8f016a7e2555375a7375ee6876137e6f4c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528919394878.tgz", + "fileCount": 32, + "unpackedSize": 273067, + "integrity": "sha512-dxCjghPFKJ9vhVLu/atKQG3eC6kzfcyJL0HzMRqB25QSadxZ2HLTGOxcx6xO4FIyn6Lk/j316vUSW4oLbQ8OcA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCj3MgdismvU/fsrPnrkLIndRscLh2smqDGx6AMiDko8gIgAi5kIrjGjAsH5e+GJTq9bdtZLAKpDwm9F9pluTbwPqM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528919394878_1528919407299_0.6110304852654682" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528948338383": { + "name": "puppeteer", + "version": "1.5.0-next.1528948338383", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1875cb48773a7767b9ad16a7dbb4301bd42faf00", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528948338383", + "_shasum": "549be7644a845d17739ee877ef4efb948ea1af55", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "549be7644a845d17739ee877ef4efb948ea1af55", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528948338383.tgz", + "fileCount": 32, + "unpackedSize": 273067, + "integrity": "sha512-ayP0Zh4YnhjAnOghcllH0uuERu1f7WevZOByZTJfAfwo6mcB6i72Nz6N4C2481pAwOn3rCPpyb/XNnChCSX7iw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIF53Ih/MY1esECLx0vvs5DzjfqmRvG2/Se769KXWZFPcAiB0FB8Qh1f7KNdYNO+iy1BqWMFXyj7eod6rq8VeRE6mTQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528948338383_1528948355920_0.4208268345857866" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528996935297": { + "name": "puppeteer", + "version": "1.5.0-next.1528996935297", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "93e128931f84ca1b921e1eb9ae4331fc207365d2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528996935297", + "_shasum": "b45997685fbd9e99a95b6968f9f4c121c7f45ad7", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "b45997685fbd9e99a95b6968f9f4c121c7f45ad7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528996935297.tgz", + "fileCount": 32, + "unpackedSize": 273067, + "integrity": "sha512-R/aA2aOK0r7lLEgL3E2raHUb1ut8WUw7xcuHlsO0XgrU3RICbUcsFQFpe1IkVT09vO+S4gtAXEJdO5WrHOgQDg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIG4rFqWYZF+B4BNvitKU12tygbwuKobpR7kyFT8tRxstAiAIQY8AN1w9fsIMfER6sCZ7C6F/19Wo0oBqS2vFp20tSg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528996935297_1528996949549_0.7131653394287674" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528997168247": { + "name": "puppeteer", + "version": "1.5.0-next.1528997168247", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9498b1057b5ac1fd9ebde8274e16b3859a0f03cc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528997168247", + "_shasum": "e2647dbd87731c9e857f6ccd2a59d429b9a294ec", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e2647dbd87731c9e857f6ccd2a59d429b9a294ec", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528997168247.tgz", + "fileCount": 32, + "unpackedSize": 273103, + "integrity": "sha512-EYmOA+ViM+NxZBGuZ+NTc/UBolhHII3+gweHA/mFokowB6mxehCHsc4HKD7UxQj22uP2G9ZhJPTmBfky8aH/6Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBNx+PBoVRA76Vz0astzXNVgftsQGKqNtcVp0T4/c14OAiAV9s2pNEhbua6xjfq+TU3cMDWWlLDnPMt+rMkGTisTHw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528997168247_1528997184730_0.9162714973601245" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528997315916": { + "name": "puppeteer", + "version": "1.5.0-next.1528997315916", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "eca661096be93481dd83bd01525f106af0dafb13", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528997315916", + "_shasum": "554aec18475b86321ff175ce4fdbbfaacd946f8b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "554aec18475b86321ff175ce4fdbbfaacd946f8b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528997315916.tgz", + "fileCount": 32, + "unpackedSize": 273103, + "integrity": "sha512-1JyrpyL5Yp97oAls57ja3p53b/CGOajhjQwDgx7646zFr/3uTiGSatyedBtKc0mRPUfP635ukxASZP8zTT9bYw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDJFjp7hv7aTLriK6fZ7SmHpKieoPic/uQohNm1/J/okAiBnNmZjdQMVI8GBAMeETfspCB49IkVwkWHJX94e/4mLNg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528997315916_1528997327341_0.4738073146993216" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1528997827655": { + "name": "puppeteer", + "version": "1.5.0-next.1528997827655", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "ed7a26cc95628cd2d32de7fd45a4eec2833dd0d7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1528997827655", + "_shasum": "47593d16d8b8a1fd3d500f5279a0423caba7ea58", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "47593d16d8b8a1fd3d500f5279a0423caba7ea58", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528997827655.tgz", + "fileCount": 32, + "unpackedSize": 273148, + "integrity": "sha512-oyjKTQNlTrBq9NfBkzvYM7CA0ie8/a0uJCZolDtn08k2ZLGOt4QdekfKUKnXKBBuX2gj+KM5jN9lKz3kABfIkA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAQXOvB5d4jmtECOuL6RJiIq32qnvOHYDhw3kuofyiQhAiB1AFCG5HcAlmOtiW8cWj4/KdAuCs0/MNwc6mOIX0TKCw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1528997827655_1528997842687_0.28602257428957834" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529001772241": { + "name": "puppeteer", + "version": "1.5.0-next.1529001772241", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "ddfdaf97c5b3375dde5fab4f4ac01f10eaa5583f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529001772241", + "_shasum": "9c9976c49b6f2665b714f4702d77fb7c49977d96", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "9c9976c49b6f2665b714f4702d77fb7c49977d96", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529001772241.tgz", + "fileCount": 32, + "unpackedSize": 273310, + "integrity": "sha512-n4Y4rwWmQs7RzYLq1xI4pQ2e8DpW1+04Xv+3APzC/xUdOGYgM4it0q7eRLLcwHbgRbRYrpJQtNiAxUkXU6nuZA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAje2/t31jcLXFhb5DemaIcCtZEL/M/0dT9PK8/rUevnAiEA7K3vp3YwRga2UWNtCodid0wDAAvq6KHT1UvZOC/YY6U=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529001772241_1529001788174_0.7466842235683606" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529009865250": { + "name": "puppeteer", + "version": "1.5.0-next.1529009865250", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "cd8d75062826ee9dcb511126d000773413a9c681", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529009865250", + "_shasum": "098da606064df102e83fd380ddfba62fd02a635b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "098da606064df102e83fd380ddfba62fd02a635b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529009865250.tgz", + "fileCount": 32, + "unpackedSize": 277225, + "integrity": "sha512-gwT9Sdp7lpxt1vHkt2zRJ9epFmahl7vdELPDOWdHzHrMtxD6GO482S1vLbQ4fUEZgHnVEoA/4SMeJK9hi+SIGw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCqWYUFiHYPHtwAhHlM9KflbXPTvECxSQto64xkwb/ucAIgajytki9m4K4BpPGiZGUfiHNQSbRWt7ZYUG/fk8nwk/o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529009865250_1529009879626_0.9836254046388315" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529010081851": { + "name": "puppeteer", + "version": "1.5.0-next.1529010081851", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "38f112f39546fc76a1ac3da7b42c02626fc581b1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529010081851", + "_shasum": "393f6a9ff0818c9c5b7568ee5bde0c98db86aa96", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "393f6a9ff0818c9c5b7568ee5bde0c98db86aa96", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529010081851.tgz", + "fileCount": 32, + "unpackedSize": 277357, + "integrity": "sha512-NldoCyp9zTW0I33qliHVdFPr2IzvcPc29GzyIQ/62FXVCCS8zuilKxke0oPxXKOGETLpbjihdvxESowV/uO1BQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGW7neG8+2v5k4W35yj9R34AJvLGNeI2NkyrHLyZ7uSqAiEA6Pwn1kSYBQRIcPX3nmVuaeKeaycVIOUtuov+oNCz1B4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529010081851_1529010092379_0.8575475702544717" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529012067283": { + "name": "puppeteer", + "version": "1.5.0-next.1529012067283", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9a650c818d79c95af47816a8d8bf1fd63cc8e6c6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529012067283", + "_shasum": "e8c1d3acd9a8f20304da00c3535beefff81ec4b8", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e8c1d3acd9a8f20304da00c3535beefff81ec4b8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529012067283.tgz", + "fileCount": 32, + "unpackedSize": 277219, + "integrity": "sha512-DB6lHgySJ1COJdGBLPFscVCX99cJ656bg5A9dmiDqFgjqaw4m/imFM2Y4popAJkLOKJMgctAupvRpPK9fwPolg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCDhb1x2I78eFJvx9CI/w0NePcYUMH3FpIO3Wpo6CqSLAIgFw6TM7CIsdYsPXxOZ9pQkGDNcvL4G5hRIQEgnnT4V74=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529012067283_1529012081319_0.14413308220262833" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529015425897": { + "name": "puppeteer", + "version": "1.5.0-next.1529015425897", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "564778" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "73f9c48081017c228ec1f1318c3c7946321e0538", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529015425897", + "_shasum": "687cb4bba15f2d784139bcf4f3a634a71d7bb764", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "687cb4bba15f2d784139bcf4f3a634a71d7bb764", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529015425897.tgz", + "fileCount": 32, + "unpackedSize": 277888, + "integrity": "sha512-ZQWHPkZngTWM8VstcP5LFT0XMfteZefzIBD1vJCYIEaAlq+7EORn0U2+ZgJB1fO0UlwnaRSrMMvuohzqFRbHyQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDQC9VHERY9I60X6tQro/mistD42pQavC+3PAtHSEffWgIgMvtqY3Sv1xbeuToBVVUOAvePvxVf10wUybP3CycXVRo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529015425897_1529015438291_0.7680338101320106" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529017025751": { + "name": "puppeteer", + "version": "1.5.0-next.1529017025751", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pdfjs-dist": "^1.8.595", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "861f07073880e41373cc74557dc6a8595db34c73", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529017025751", + "_shasum": "7e6ec989f285efd0dc19d2610ab6520fcce9bcbd", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "7e6ec989f285efd0dc19d2610ab6520fcce9bcbd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529017025751.tgz", + "fileCount": 32, + "unpackedSize": 277888, + "integrity": "sha512-tf0OcDWzCxHp9RhwpwHSTns5Xik7b36ccAUy1Wk4OBFB4SLgviyKWNVGszXj4zbB+1K29YDvRxAWn7wSSdhxVw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDie5lG2dWjBbu3oQv2jeac+c9jMaeHxBBmWpDwak+QMAIgB2SbSBJcNhf1CGt180jS7w63998vap9du45or8UX+Aw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529017025751_1529017037539_0.44948192785297314" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529019939040": { + "name": "puppeteer", + "version": "1.5.0-next.1529019939040", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "c430138845a44e20bff88b49843569f119e08d3d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529019939040", + "_shasum": "319e4eb3d4f2d56927e79b88499787d3033b7cd1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "319e4eb3d4f2d56927e79b88499787d3033b7cd1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529019939040.tgz", + "fileCount": 32, + "unpackedSize": 277858, + "integrity": "sha512-QSfSA4N3jRJZ64rO/2MklsmwnTLF/NAz7hIt+tBohq577OoXO95NVblUR72ltcXCM/2453zxnEOurpB130cBag==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCpdNcLlrvmRyCbkTwaC18zQbq6/n0ycBwUvRLfTDDvTgIhAMWbqskBtZxR6IHggCo1ekyxR8HIqjUBz+KqoUplHZHj" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529019939040_1529019950500_0.5606976830447643" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529020277784": { + "name": "puppeteer", + "version": "1.5.0-next.1529020277784", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "af0bd15d88854dd8afcf258daea95eb0e91d1e45", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529020277784", + "_shasum": "873b0f5033aa8ae475b108b11f01dd623f91029f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "873b0f5033aa8ae475b108b11f01dd623f91029f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529020277784.tgz", + "fileCount": 32, + "unpackedSize": 277858, + "integrity": "sha512-IdD7+8OvGgh08HqxErGwOGXD+AFISrew50HRVTctNtNQN7yc98JlsFhE0HrSzu+DmOJPSOJDEbtdyGSESz7CWA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEuzE7t7+Lhk3t1z6U6gTN8FvTWJtw0mBLssp78ZpLU+AiA8Xgg1JwA27aTwQ1CM/0XbDlmPl8QwFgJMA67t2lrLkA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529020277784_1529020291986_0.47651109398204095" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529354619280": { + "name": "puppeteer", + "version": "1.5.0-next.1529354619280", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "b20cde67c63a6344321c2fc40ef2d3cbf8c3ae24", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529354619280", + "_shasum": "77644cffb716f608eca1312d473e750629cd07f6", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "77644cffb716f608eca1312d473e750629cd07f6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529354619280.tgz", + "fileCount": 32, + "unpackedSize": 277933, + "integrity": "sha512-dG+UevN9xXgsM4iOon4SyDx8Qa9HR6Bj6C3voEhUj3Kr36aDw9R3ix5HDBIBA80XdnQmPp4Fw7QwWebzItuG3g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD1K9PaxhWdxbxJLVhtv9QqDsVbY8r2cfQhjhg3+0X0TQIhAJrYx3+D9rU2mLgdpOmGteJKFJqM56Rdq1ZrPeQz2CVX" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529354619280_1529354633610_0.11076315509403134" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529393801062": { + "name": "puppeteer", + "version": "1.5.0-next.1529393801062", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "f197d2e20880901af9a661395e703217f48fb766", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529393801062", + "_shasum": "f36a4eb650abc7b545f830c061a0c4d80c175366", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f36a4eb650abc7b545f830c061a0c4d80c175366", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529393801062.tgz", + "fileCount": 32, + "unpackedSize": 277880, + "integrity": "sha512-eB1oniysjD+Zh+97Ye+MLWugnRnKypG56IB/OJtluop+GT3tcfS3ummrs9trUTWRLDdfEQ7CH1L/rN8mOkhu4A==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCbScNntHsJryhI5f/kbuSZNOeZ87ttA+CHgpF2cgTaywIhAK7cL9BO+MZ+PEjJIvS9+6NoH1sGr+NOMXE73ipadMfN" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529393801062_1529393815737_0.7407089066188952" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529429863153": { + "name": "puppeteer", + "version": "1.5.0-next.1529429863153", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "37dbfc2608435ccb4a5dc4384e49e4efc230ffff", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529429863153", + "_shasum": "95f37a30b875de156c8a667c17ee34c9f438fbac", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "95f37a30b875de156c8a667c17ee34c9f438fbac", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529429863153.tgz", + "fileCount": 32, + "unpackedSize": 277880, + "integrity": "sha512-rdlqDn59REdIozwAb8N3q4eid5JHs1h3qrELILl5fF+YiviauNeCo0K99wp/TBagw57m+NbK0AbNKxDtI3Zb5g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBIR+ZacFNuFEL0nFuVJ2LPiLr8EcJbyLHbo6Dd0Y+5IAiEAnY/Ijf6CR+v0S1rcvZNhKV5gRHP8AxJEOirxoFSG4MI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529429863153_1529429874467_0.5821441464891086" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529430695195": { + "name": "puppeteer", + "version": "1.5.0-next.1529430695195", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1064aa44767a56e8fb7406e581ea4a1679d557f3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529430695195", + "_shasum": "1875e58e0d9d0e75d958db1d14eb68d33cdaea90", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "1875e58e0d9d0e75d958db1d14eb68d33cdaea90", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529430695195.tgz", + "fileCount": 32, + "unpackedSize": 277964, + "integrity": "sha512-Aj/b2phRzXIqEM7Sx7Y6LNgjOTSofqzp4KfMTM/oTd38hgBj7Wcv3zs33T6kHpst6lfQrS3EHBPHwVz2jQzRQw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD8j7SYruxN1P6YS1Dyci93x6n7PEA3uouNOF60mPTt9AIgejUfMzu2xXzjxp54gIC83ALkRiCxHxYHN65J8XjxURU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529430695195_1529430705442_0.8423878113138319" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529438841250": { + "name": "puppeteer", + "version": "1.5.0-next.1529438841250", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "567388" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "ea8ec1e567a8b1b7c34dfba49ccea927b43c2197", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529438841250", + "_shasum": "c4959eda00969da833a0c9a8b34e450985252d6c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c4959eda00969da833a0c9a8b34e450985252d6c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529438841250.tgz", + "fileCount": 32, + "unpackedSize": 277964, + "integrity": "sha512-yKeA1Gs2g1Iwz2ULC9OaU3wA7/AU7IM99Gc5hKvhdqmDq5j1C6il2GiHR2QpbPewNLtKbbjZMaJgOZzXBuDRUw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDo9mMamJjXwKnV5EVbBEZY/ghbvJxh4qyX9jJkig9GUQIgPmXegzbd5n5z1m0hFNa54sTL9n8xZTfOt9MCYa5O9pM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529438841250_1529438857128_0.5397092439091633" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529441303045": { + "name": "puppeteer", + "version": "1.5.0-next.1529441303045", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "dcae6bcff49150bec2060667fef7bd7ab71db042", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529441303045", + "_shasum": "3febc94d9688eb4b41196a1ad4cac33f9bfad6b7", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "3febc94d9688eb4b41196a1ad4cac33f9bfad6b7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529441303045.tgz", + "fileCount": 32, + "unpackedSize": 277964, + "integrity": "sha512-eNcvYU4efMmFW2udMXjrHDT+D1H2t8I8qBJ+Clmt1nbvELm6j63aUTvrmkOHTL3nAaI8MP1a9VW/p7xSNp/mqw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH81ErLg3qGhcMptiOpwXBE6V8FQLx92W/jY4lQZgvVhAiEA1wO5PSectA9o03x1s8VKswrEiHRcQKj2ZJNPw77pjdI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529441303045_1529441315031_0.7534033680191232" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529528205725": { + "name": "puppeteer", + "version": "1.5.0-next.1529528205725", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "a460114945f8f979e43655ce1e7b7b10daac5843", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529528205725", + "_shasum": "a991133253eb9a36052247fb975911a5a6e69bfb", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a991133253eb9a36052247fb975911a5a6e69bfb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529528205725.tgz", + "fileCount": 32, + "unpackedSize": 277964, + "integrity": "sha512-yWdiFcELlKVT0bJ1QtNo6e2ZkQ7tobmJeSxtUaJ6tJstgDF6xvMIgbsVNNOik62l6P0EGnI4XYOc/+g+I2xFdA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDAFtZgxb73MKmeJygxrhd1B4DUj9o88g69zWOcTnipsAIhAM8wkbCl0pjSRYL7WXZohxz3+5x6GwNZwPyZXBKVxWPK" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529528205725_1529528231873_0.5836980789889701" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529601789907": { + "name": "puppeteer", + "version": "1.5.0-next.1529601789907", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3b20839ab5220768a7d38e0dec948c201b6a6709", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529601789907", + "_shasum": "4b8e242d711f24c0b6502e5090abe6d8bd2427e9", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4b8e242d711f24c0b6502e5090abe6d8bd2427e9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529601789907.tgz", + "fileCount": 32, + "unpackedSize": 277964, + "integrity": "sha512-5+BHU7z8s5eA0aVfIm4flxuFoac/XN19uEjAi2cAdV91tVCLcJe9V91o/XLXjMW/uBpcARPkRMSl6iyWOzi6zA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDKVVB69wj6gbBPyy7Qnj3GoeNjwUKTGw5VkENBar02XgIge+7KNP2xzi+ej3t6bNESHR8y83CzdRSQ8NfK+bske3Y=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529601789907_1529601801635_0.8961742096144991" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529602796106": { + "name": "puppeteer", + "version": "1.5.0-next.1529602796106", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "811415bc8c47f7882375629b57b3fe186ad61ed4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529602796106", + "_shasum": "ecde5b7576a15054f6d8bac32a078b85dd917566", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "ecde5b7576a15054f6d8bac32a078b85dd917566", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529602796106.tgz", + "fileCount": 32, + "unpackedSize": 277964, + "integrity": "sha512-4+cb0HwhIw8/43Mm0DirnvjlIPS+8NHBgbJD/iEDrk1rJ9ROsuF2WsMDOUCzeWsWcpR57UlI304su1btQAfbeg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCTWAY6eEQ7g7dVnrN4IxwUWFJMtfSM4hByfU3wdfvWowIhAMiwhsuEyrJhTte4qylHAkA+yoxUD9fsgzlFF3E8tllx" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529602796106_1529602809544_0.17522889075467418" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1529964776684": { + "name": "puppeteer", + "version": "1.5.0-next.1529964776684", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "aae73f5fd70fcd242ecf086a17db6802d54e3c59", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1529964776684", + "_shasum": "dfd45cce1fd6f54fb4f8e7bec866566ba9d4e09a", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "dfd45cce1fd6f54fb4f8e7bec866566ba9d4e09a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529964776684.tgz", + "fileCount": 32, + "unpackedSize": 278196, + "integrity": "sha512-r+MOXnF8pSEogbbPsEw7JJgTWyMFJK/K0ecEBfNelakEmAYZhDjCf8m3NzlJR2xHoo7INOnEyVy4qh0XTjSYTg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDS3K+u63GfLzlpEPl6n+zRaguLy57dKN3yKPQlsarGSwIgE0qEE1baQG892q6AEzMXCjs1ISRed8QO+drMhVZR2OI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1529964776684_1529964787413_0.4842560215644789" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530045933494": { + "name": "puppeteer", + "version": "1.5.0-next.1530045933494", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "6ca43cf76187a33c62d8822fe363196bc3ebd216", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530045933494", + "_shasum": "6f9854496302d11f6c4fc4fef32b14491fe848b9", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6f9854496302d11f6c4fc4fef32b14491fe848b9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530045933494.tgz", + "fileCount": 32, + "unpackedSize": 278196, + "integrity": "sha512-btq/tqM2h7RAqch3UgUYG5M4vejgGlnkdgX630iRWcv//wm+cVJkj9ZPwQg5oJ/h1TCrnz9t022dxfMYPIhnfQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICpCo2AVIlrPBWA5/0RoQwF9YuPEDAX6ptdkNC4FcJsnAiA/DavzdD+AUsgeUa0NjnE54jD8BpiVMo1oz4bGeg6vfA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530045933494_1530045946109_0.4595156429152665" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530061507172": { + "name": "puppeteer", + "version": "1.5.0-next.1530061507172", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d6741eca083cf20a2debd78ed43e7c257b217b0e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530061507172", + "_shasum": "6c203d652e6bafcebdb3ea9428a54ee4adac369c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "6c203d652e6bafcebdb3ea9428a54ee4adac369c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530061507172.tgz", + "fileCount": 32, + "unpackedSize": 278521, + "integrity": "sha512-oG8adwz2tYEyQYrpnyQVwXnyMHDmhbCvscIBJhrLK6nMrszAIQeZ55Fkncbu4H9m7YtrDQyWborPBbtek8AogA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICZF/aGKyimmpMOI3kRBSZ+PQDhvdX/fzOPS+TMnDfyuAiEAqc9VPGKRxAmb4Mbfi/u3GWr4GZOkAwxEHW91aYLR3uc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530061507172_1530061519001_0.38301823963631" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530061501767": { + "name": "puppeteer", + "version": "1.5.0-next.1530061501767", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "568432" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "f55d005cbea407f5e9baf7d6fca251ad71873b65", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530061501767", + "_shasum": "5b3b58673535216e67f7a37852e0cbc9c09515e1", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "5b3b58673535216e67f7a37852e0cbc9c09515e1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530061501767.tgz", + "fileCount": 32, + "unpackedSize": 278521, + "integrity": "sha512-CK5HM3owRXCpIrL1jju5LQObVqYctPE9UymLsRUgkLSf77g8nC7CSzDQ6+4G07QhvIpXhmqOjNbmXzs/HTu6kg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAP6klLiE38ES4k7i/+lJu17qvpNbwx06wvv69fC8JwcAiEAqO3qSOjLi2OmfDMqHxIJNYYj6MOObN2Rt3aabeaTkAo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530061501767_1530061520963_0.2771939629228166" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530217505079": { + "name": "puppeteer", + "version": "1.5.0-next.1530217505079", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571040" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "c4acc637759dc5a7d2c84b553dae12d41654e518", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530217505079", + "_shasum": "e4331ad69d642c3b5e9c0a8b4590efeb0dc6702c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e4331ad69d642c3b5e9c0a8b4590efeb0dc6702c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530217505079.tgz", + "fileCount": 32, + "unpackedSize": 278521, + "integrity": "sha512-1CM0ec7/J5dZU/U/P+UgS//GoSyb1IeDt0FbuJGMVHp+Lvj1LOOTr8Gn+uCDfJsYUXqF1Xg48ekJRSW5Sblw9Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDJOkAveBdsKiglZbaX5v8coN+aGX9hrPfBRnZBckLW7AiEAi5VQM+bRiMlXfHlINuG4x2OZ9tuo1qv6ZboHtzmJFTs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530217505079_1530217516213_0.9577655672082912" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530237072145": { + "name": "puppeteer", + "version": "1.5.0-next.1530237072145", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571040" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "871b204fd130bb6531b4e3fe3d58b95e534a4b43", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530237072145", + "_shasum": "e9640561adf3db58623ada988c282a5f856f0764", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e9640561adf3db58623ada988c282a5f856f0764", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530237072145.tgz", + "fileCount": 32, + "unpackedSize": 277447, + "integrity": "sha512-Y/zSDQUGw2j/FRuHQSXadZznXWCEvSWJF27fyriJgNOdtaOzECxE1fHsSgNCsXtEa6QIQcrqbvWvMn2KeJ0rLQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCrB1dNhReTtIeeKJ79LyBUEu/fw9JXG2ben4W5NslskwIhANT/tuoXipYNWIm2ni+wwMdmdyMKvFbQvxEx3ScMFcus" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530237072145_1530237085629_0.7813855743861511" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530291793909": { + "name": "puppeteer", + "version": "1.5.0-next.1530291793909", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "59e7f7ebb61030cd8462d29b8960c93114199540", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530291793909", + "_shasum": "76c1d649316a6657c393aafa442e841e06389b8d", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "76c1d649316a6657c393aafa442e841e06389b8d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530291793909.tgz", + "fileCount": 32, + "unpackedSize": 277447, + "integrity": "sha512-iuoObS3e70JTWP1OYAWvKEI8s3NJgFE1RCOiBfkg50lwgHzptR53OMDv6J1fA1dk21UPxVTxGDtGaV+zKXtH7g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDE2Wryu6vPXvN/VuyhbVvr0LEksbl0/aQ3MrRnIqMDeQIgb7334lehnL4WQ5vlfTzKZl1u8fH1vUmuTYPOedY03Co=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530291793909_1530291806836_0.726566129553889" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530299145196": { + "name": "puppeteer", + "version": "1.5.0-next.1530299145196", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "5955affab025bdc9506fe47485b0e6c0bacaa828", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530299145196", + "_shasum": "74f095ccb134be6ec1031bacf48d3b36d7f4561f", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "74f095ccb134be6ec1031bacf48d3b36d7f4561f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530299145196.tgz", + "fileCount": 32, + "unpackedSize": 278266, + "integrity": "sha512-1L1YemJEyvC4g6pMqQ+V/5OVSPEeF/eWz76rtRvKvgkf0AyZLWmR1oVZJIHAXbA5foIHYg8OdZDG0HkvFRR79Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFCDhE4MNudJ2IzdTCy/TvY7kkCc2RWARFleK37UzVcrAiBpsbgIE0qRM0Hc4RsnOWXa+1EnQIwQVf4laSD8R69D1w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530299145196_1530299157366_0.07204652966106284" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530333501924": { + "name": "puppeteer", + "version": "1.5.0-next.1530333501924", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "fb7c4e09849e8c21ecdeff406d839fafbc4a8631", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530333501924", + "_shasum": "68c76e973da22b0f99dfe486e2a370723fde45a0", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "68c76e973da22b0f99dfe486e2a370723fde45a0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530333501924.tgz", + "fileCount": 32, + "unpackedSize": 278289, + "integrity": "sha512-/TBDI43+of9/Z/asI5xGN9d4xPuLRqJN+5amzkBhljJzKloe3Hs/LCBqPLgP+vG+9AT0tZb411phSUOonKpmPA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAZ79CW/NlkurEPMYMJpoA77pvZdqXc8L7u+WolKP86CAiEA37f90VrBQiB2vlHGEistxKLuyWUc/8wGLXhIjTepb8U=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530333501924_1530333513472_0.12486720580605182" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530747584201": { + "name": "puppeteer", + "version": "1.5.0-next.1530747584201", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "22fa00a7b369b8d8614e29e0ddb6aa7345a6a1de", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530747584201", + "_shasum": "86085c85671da2841c491761c06e37806991529b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "86085c85671da2841c491761c06e37806991529b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530747584201.tgz", + "fileCount": 32, + "unpackedSize": 278288, + "integrity": "sha512-lViwcwvfU/qvU/WsVKSlUigFr7+EB9qLKumwY/p983qtsigmg1NzwXJZ8Kfp6u4BCIhyQlAlRsNdvF7qsEI9Jw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDTKnW4wABefJMF2gm+nNLNtQKDD6pmLkdzcO6yJrRQbAIgVmN7yoq/r9FxflJ/A2YyoLhpILOVu15Xb+vUXEjcQxg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530747584201_1530747595332_0.4530378066778262" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530747678469": { + "name": "puppeteer", + "version": "1.5.0-next.1530747678469", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "cfc0571c1abba7a5597bd59441fa588ed59e6cc5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530747678469", + "_shasum": "bb02b86279a92e53dce51c2072cf87a5fffc26ce", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "bb02b86279a92e53dce51c2072cf87a5fffc26ce", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530747678469.tgz", + "fileCount": 32, + "unpackedSize": 278337, + "integrity": "sha512-cS3OeM7HQK8JRTKTi61rqz9jfH3S21G4fFs9g5vnE3SgTjJhWdcgEtOwVt2h46RRL4LmnswgQtgYXmOLwFozCw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDMN41ztwWhHAVdkOxnuOQJqCcOIf28T9k2skmwJHmPMAiAgoyFwTojDU6euOdOAYvgfgFEtbjMzzfjJ1hRAA0zAhw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530747678469_1530747689222_0.3578410819276543" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530749057441": { + "name": "puppeteer", + "version": "1.5.0-next.1530749057441", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "eb53a8fdd09c473ef6ce96696604ee8ba1c952bf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530749057441", + "_shasum": "a4ed5c31ddaf48ab41e45561935ec08be65b4ca3", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "a4ed5c31ddaf48ab41e45561935ec08be65b4ca3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530749057441.tgz", + "fileCount": 32, + "unpackedSize": 278337, + "integrity": "sha512-h509dTNhk2se4KvVuhF6GuPj9whvJm0dD3KdOb3m1kIeaPcV1AQGk1wPCxXFlF4Na0/w42Eo9W2edraQNYPXiw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCn7ORnTqbFapNDCEdN/piwVPS4K7RX25dilMgOJ4XlhQIhALFlzGzGZ125qDEYWj2SlCbX10mAmP7fG72+vdz4y4i4" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530749057441_1530749068662_0.03606497711958512" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1530771453419": { + "name": "puppeteer", + "version": "1.5.0-next.1530771453419", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9313c83ad24eedb5ecad5e83fb8ede689fd29733", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1530771453419", + "_shasum": "c1e027acd707c1d9f4d61d12701fc0ce0e73d79b", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "c1e027acd707c1d9f4d61d12701fc0ce0e73d79b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530771453419.tgz", + "fileCount": 32, + "unpackedSize": 281656, + "integrity": "sha512-YOFMakbWnM1gITUrCYldXM6BKGqahHRUTdBsv6hIaEQnrDCBDEpETjnAmP3ikXjKWvNakGV3aey2q6l+xgj39Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCYlMn2/x++jDFJkrG5sZTk86awUP7sXlZRhBc2/GiNcQIgRNc7P+9D123I1NY9q5R4+j2KGINz5+hz6z6rUbuB5po=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1530771453419_1530771463800_0.49103320846928744" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531162744899": { + "name": "puppeteer", + "version": "1.5.0-next.1531162744899", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "88362f710f816a17d9336cc16f17004eb941a76b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531162744899", + "_shasum": "18c36eee295ff378ac36c2d4a2407977ebdc9fa3", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "18c36eee295ff378ac36c2d4a2407977ebdc9fa3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531162744899.tgz", + "fileCount": 32, + "unpackedSize": 281656, + "integrity": "sha512-A49cn2s40VLces3dWnzNeB02f7LbF3UDPpje3IrfWZ5o04XZHlsbnO8e+qGfznGB7N5pgWQE5qUcrmX4hElsvA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDTo+0ul4vTnmEpLS3ao1p/3mFMRjkXEQt1uNEqIx+TcgIgHY4kSAaTLhLyd+ZgRvwnVaasdFcOHn3uiej/JjPRHjU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531162744899_1531162757400_0.1764475990740617" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531189632656": { + "name": "puppeteer", + "version": "1.5.0-next.1531189632656", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "e445e1c8b83459f1cbfca059effad6f1b9d5f924", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531189632656", + "_shasum": "e6ac5db820aa0bddd86969550b8d39385561ec54", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "e6ac5db820aa0bddd86969550b8d39385561ec54", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531189632656.tgz", + "fileCount": 32, + "unpackedSize": 281656, + "integrity": "sha512-qUHu0k/vyjKwkarvLf3HuCnn7mGQFg3P3wOAZvFUyh6hGAwn+2JuIzem801FjIFOi5XokFhOBCBFjAU/Csui6g==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD8b24Yk3UG+qfNhVAkEZXnKM/k9aS/lQ1DNCnYYGoFdwIgbd0dsAoak147P0bWQxEgfQ3L8J5iVCJsYuY/77WOHbI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531189632656_1531189651838_0.37344046383118457" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531354198653": { + "name": "puppeteer", + "version": "1.5.0-next.1531354198653", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "4f8d00e64ef895417941262259029c0a28e1dfa6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531354198653", + "_shasum": "de2a57dcd26e063d36a94365537f8c5f60168cdb", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "de2a57dcd26e063d36a94365537f8c5f60168cdb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531354198653.tgz", + "fileCount": 32, + "unpackedSize": 281653, + "integrity": "sha512-mHUN4DxxZTN5spEgI8uPUB3OhP/3i4BZwmqz9NyluqW+HGQJV8c6xTzyT55m80pnIbOex0pp/MhgBJhkCEucEQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID9mTOq+KWNafirKjmd4/Snq7lhYK+M5ZlZ/tyK2v/wCAiA/OHjlES7DWcYOvWLj11kOOt2MKIZVNM4VeCZYQNSsqg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531354198653_1531354211901_0.4225059275965637" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531356790849": { + "name": "puppeteer", + "version": "1.5.0-next.1531356790849", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "96c558d54461e84b41052d144c74a4919dea0b1a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531356790849", + "_shasum": "130185bc531d810ce47fc5f606c04b725ebba245", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "130185bc531d810ce47fc5f606c04b725ebba245", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531356790849.tgz", + "fileCount": 32, + "unpackedSize": 282085, + "integrity": "sha512-XvTGwzZTwYGuiz6YPCENQUaMo9iZi23rtbH3cNtoV1W/YSnEW4uZQ3BQ8uNEvs+tMDSpDGvaY0ACKLrnVw8H3Q==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDb7YYSyfWzVftWUiLRW7CjLEeROt4XL1r0nlE2ftUTrAIhAKSwmEKFzoJbU3uG1V3d1pI4RNTuO+D9vHCDO7MpuX8E" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531356790849_1531356804291_0.7466665170447333" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531359649065": { + "name": "puppeteer", + "version": "1.5.0-next.1531359649065", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "12bc1e1a62001660d4dcc6f83e6ae6ac28bce601", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531359649065", + "_shasum": "4a290b123c004160bfde20c1b4c6a541b9202298", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4a290b123c004160bfde20c1b4c6a541b9202298", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531359649065.tgz", + "fileCount": 32, + "unpackedSize": 282913, + "integrity": "sha512-Qs1OrKt22J35mglEzhugBEYNzN5vl3HpiNfQtIDm4IVasDZu960UUoHpVewAEKzYuPSGM4NtXPyos8bwyxTRmw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCDMiBVXee35/sirKCN7JErXeV8gZ/m1ONSZOYExX/PrQIhAJJrkQz78EbLDKnOLFBtSFuCv4vUfe0XoPYKF325hZO6" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531359649065_1531359661193_0.016221820787378993" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531368423225": { + "name": "puppeteer", + "version": "1.5.0-next.1531368423225", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "254bc80811774007125c48ad012cc8cd90a5efec", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531368423225", + "_shasum": "2518a8a32128a1de945103814c701a3baf47aa4c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "2518a8a32128a1de945103814c701a3baf47aa4c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531368423225.tgz", + "fileCount": 32, + "unpackedSize": 282929, + "integrity": "sha512-Ceg0wls+u/sB57Eq2OfH0CiXqja5srJO2xn8YktpYpqryBeUlvtOaAduMxi7xz4cGQEnZ+wTU3EdxlYstH3xEw==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCRqhmOlbrLFbDqaG+CFC5Zok8RNYr+b7Irz0qB5P/ZwIhAMC7YPeCMpawJFCEJcwjpD0GZbDZudSj09G3K09kzK8c" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531368423225_1531368435534_0.2220722325091644" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.5.0-next.1531368496280": { + "name": "puppeteer", + "version": "1.5.0-next.1531368496280", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3ebbf125ff3332f5d9aff204cd20025b3a6fb9a6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.5.0-next.1531368496280", + "_shasum": "aad0aa2e1b75285ddfed28ec60fb83755c6fd7ac", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "aad0aa2e1b75285ddfed28ec60fb83755c6fd7ac", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531368496280.tgz", + "fileCount": 32, + "unpackedSize": 283023, + "integrity": "sha512-TTn3jt/QDOt/swfs69741B0PEiKLOTgvUHkzKyILmBSxYAyFglzxHf+3LYlQ8qS9P8E3yiDluWYIdFuZPYp8Ug==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDM1FB+9tdRw9SrNbU/AlPygA6lMxa6Onk79OavTZfjSAiEAwxBcEPylgfW3q/t+CvGKQdx/ehsWsWdUUApJKaCV1mI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.5.0-next.1531368496280_1531368516017_0.22364363214326133" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0": { + "name": "puppeteer", + "version": "1.6.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "571375" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3762de7b91bb85d2f1979d49152af79a92a06bbd", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "10.2.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-88epdIp3lw0LxI+sIHgdgZdq/u5zRnzgU2vJGvcyuGqHQrtRUeICTexTyT1KoKhTGG0mAKFRV9c7IJ179agm7A==", + "shasum": "b6b6bd6a063a0b7591258613ec89a135f2cf8f2e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0.tgz", + "fileCount": 54, + "unpackedSize": 599124, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbR/NICRA9TVsSAnZWagAAER0P/RKfjPFSwgk3P+rwInYy\ncOKYXrpfwvE+6ivSzY/9nHsWtL8a/8P1P3eyo3gUa3UHl138QfOb5Z9/RyAu\nvDPOtBexkYztT8NgmtB5hqM62haTITes/GY9prOK36gF+7Kjc2cfwUoA9jFt\nwEb+Uv3B8K6g1ZH7YYhFrwsjPB4Kx08aje0omNY8/jzaIhr38SSFQwQuDNT7\nJchCMpq1qciCw/CnbJasUGwe9mQyty1RPb2GsSsWpcTD2bJyjgw9oJk/cJIc\n+aLKuosilh2olmh9F3pyrMV1ilf+JNh6Xn8KoI+BNOXEOKHnEoHOOdwDi45x\nLU84hZvyd1gbzfTcSm2fdh9lwmHiaya8wCm93qc56zE3IYnDnpYTS75o1mdn\n401Tctv3f66fr21UESq2ucEQgIxWR5hXI4qF3k/rW1TBsdwgZ2SLeVZ7UpxP\nFWh7u9rBbDviBFyTeglQu6HPa8zqUMX0wYazWqLNFR+y7VFlp5pRIca3o+8i\nnqi7z0QG+PJZE0W9VOKg4bw/3l+B6HmEtT97ivLgjiDVeA3k3pv8vJFjl7bN\nP1XB9jmBqUHb1Wp1OwvIVj3YLzwg5FL4SHiF983m7hv/jAqY+W2xJcG2LkrL\ninxyBOFq4Z2I4NCh0jIxYnQh6twsd+HHs3k7dcRDEXUcdqd+FUKxukiJHVqh\nQhsB\r\n=Xd01\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDfIKBwjnQW5UgrFLzp89nfqTjRs/UcN165G0QMuYrhIwIgH9p6gGUx8Tne4ptSP+PRQtqFJe6fUY0pLsVaPrqowVs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0_1531441992477_0.835726787932203" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532381444032": { + "name": "puppeteer", + "version": "1.6.0-next.1532381444032", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "aa57a873cf9721a528a3dc6f1d36632e1341c18b", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532381444032", + "_npmVersion": "5.6.0", + "_nodeVersion": "10.2.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-pBCBdCCqlc1Gy/rrSutm3Cnf8nOf7t8EMKBYuGI4zDAkquDKdeXkg/eaZLPv/3OZZjwXpvjVbyUyCyWu3ojKsQ==", + "shasum": "c8255be305e76d97ec2f62fbf1ce01688a82e14c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532381444032.tgz", + "fileCount": 59, + "unpackedSize": 629506, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVkkNCRA9TVsSAnZWagAA728P/2tlT3hd0UNcARmpd5Lb\nFmrXHnHAo6E+2JtvtmDnHH5xG2ax+5GP3K1yt4M2/9hyn/ri84qZ9RrQRZUe\ncdglC1koddmSg452Ekh/0F6dgA7brXiCK4SZFcJui9+7VOzzhq5KI06nbB36\nNVokPIHjj9gySbS/jP1S8qyaWxd7DeZAeWWQ9whfrXzVUDZQukVNN/NLop6d\n9hvnD2GLSA3ZQQCnc6JppvRlzGtgckCejMImdns3jtZB6Q/QjQhFMcLKCHa2\nmgnPHNfsFqsGzFBRv4f+zvsTtd+XPsyHhUIxmJimX/rSR8NsAQVkobNBrtVS\nxZxC9odO4h3PYc64+MlVGAmeqoOOjEtrredpONNYLq7Hb3M6Mm1uv2icf6sp\n8+Ux0hQZc2iFjcTcClNVne07+4FwNovibpVFB1Xmacb2BZk+JoHpkhcirzlV\n+E2VrZn7ImJxbtaCqA90Ae/I5+F8EQSBImWTLcfcM7vlacJIEVu7bHlAkzv4\nViGg6S9qt/xV+wFAfBKXy8xv+yOS9NbHeZoISEUCPAAZuBQEBSfC7EfqE5if\nrc4lho2t6yv1g/Qa4xN13BU+XEomWykJXDLVSTSaOTnJd9E6M9ADGlapSQVk\nGVrRATOZ1QGbGRHejoLa+j3uZNTvZ+bDHmnq8n/9+C9Jqq4zQP9Df9Q9KFjk\nZ0vw\r\n=KOi3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEchygPrRW5Dt49L0f2YatOOSQfm6EAw+KBucG1L55ZMAiBC93Q6+1T9CqP3BLihIJkkdW9QoG3UWh3VAKQdCpzsPg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532381444032_1532381453015_0.7804774505828571" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532390828888": { + "name": "puppeteer", + "version": "1.6.0-next.1532390828888", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "5b1898785b169e4d6e7bed5732f61cd9f6d77101", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532390828888", + "_shasum": "4e31dc254a2b563bedbfd6ce221619920e08a9ea", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "4e31dc254a2b563bedbfd6ce221619920e08a9ea", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532390828888.tgz", + "fileCount": 32, + "unpackedSize": 285568, + "integrity": "sha512-CVfOVKjmroY+FDC3wRf1dnDr+XJXF5HAJHjoYcp0IIa6SrSzIxqhzJh0tYUw1Zu+MpvdcIjq5hZg98JVUXE8RA==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIC2NGnDORk3Dx8PYRS4YVXJLglxZ7+O2vl+GbDiEYiS0AiAY5gXKhWmp7tBaIKxNrN9I0wCp3wfIaBIioXKWIKFOdA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532390828888_1532390841025_0.48040311845524686" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532455573607": { + "name": "puppeteer", + "version": "1.6.0-next.1532455573607", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "ca99a67aadf883e38c8d031a2068dff92e91251a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532455573607", + "_shasum": "f967426aa0889f8bda7c2eaab6a4bde5bf03362c", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "f967426aa0889f8bda7c2eaab6a4bde5bf03362c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532455573607.tgz", + "fileCount": 32, + "unpackedSize": 285538, + "integrity": "sha512-ubRYt5/IeNDBTbQc3YJxdYU/x7IlCh88K8z2d0IZi1SJqAq7uM4Ygqt/77ZHrZR9VaZBosdNHAC/se2f5KPaLg==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDrcvQSZu60qF/Nbk7rGRkj6ZV8ydoiyI63B7mwEf1FSwIhAN9te7+u92wX7YA1nutkI3oUSjYw0qE5n2+WpEBP73Ay" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532455573607_1532455588151_0.37471041593702337" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1": { + "name": "puppeteer", + "version": "1.6.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "575458" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0a4f24a94c474afecc802e98764ece43f7c5ca41", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1", + "_npmVersion": "6.1.0", + "_nodeVersion": "10.6.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-qz6DLwK+PhlBMjJZOMOsgVCnweYLtmiqnmJYUDPT++ElMz+cQgbsCNKPw4YDVpg3RTbsRX/pqQqr20zrp0cuKw==", + "shasum": "ae50021bf8b2172be8f8d79224bec215f1a0c7c7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1.tgz", + "fileCount": 54, + "unpackedSize": 599064, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbV24MCRA9TVsSAnZWagAAO2wP/R/Owj76eikZe3FQrZPJ\nrGIcCRdjELeXr4O6pmSCejTHHZwc3FXEhFQGqcuvjOV/q5bKZvvB3dId0FpB\n03Ga6iCkaocFqA0hZFgEjWYOmsQ+yAUwG7ub0ZPRF8RDJNHifOqGHyDBppc9\n7zJmvJQvB7dj0VGlgF4GNo6utVHHWbnB4xBbpJOTfL3BBYQlgCxZNb9jsvyW\nBMlzQHGTCu04mT9wYfzWsgkrIqhZYGntz1h4O6BDydNrIdbDyjpC251T0ATi\nyQsxNAhU6OVMmjTQJxKQHYbLc7mr+sIJJVKxahAlVtuF0hdepVys0mN2jf2X\nFByEbLhZXBgXBIAGjiuzcDtZX6yP5yJmPmDPRCh37yDH9kT3dmndNhujxgh8\nYLHH/geS6Sza8U6n+qcqOIBIyFw1wRR++OzPqdpfJEWmhZbzbzrrXfuz/AFb\nJtpt3h4RlvKK9N4FF/BV2XNItX47w1P3NDez4q7EU9gITbjkQyFq6MBNFbms\n55VT1qdJJU7jmJOQU/sXGXBqw8ot+PvvfxbJOV+JpvtmiHXWtCrqG7c0aEjA\nhpBGHIBE0dCajn1hikFVy0vKhKnXYjunVG1VoFcJQXMmUK6EkzHPt0XOcGIf\nRveeTSCjkiGlCSK3eMPIOx2NPAhDfyY/IDvQNgcCbB/dSiv8FEm+qmZkktEs\ncNh3\r\n=sXhZ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGGwQAcY8+XCYGVQ6aY8ogvO7oEJdd89fBwSoenQPMp1AiEAyz8x8eLKl68mg48FlhcEWESOoyDLnQTECMv3TymlVks=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1_1532456460092_0.6993230916855804" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532647628942": { + "name": "puppeteer", + "version": "1.6.0-next.1532647628942", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/googlechrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3d12f1f279ee827afc1c5ac965f6b15b4dfcc07a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/googlechrome/puppeteer/issues" + }, + "homepage": "https://github.com/googlechrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532647628942", + "_shasum": "319bb2606c5947bffd5c0620ccb13f22a91bc875", + "_from": ".", + "_npmVersion": "4.2.0", + "_nodeVersion": "7.10.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "shasum": "319bb2606c5947bffd5c0620ccb13f22a91bc875", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532647628942.tgz", + "fileCount": 32, + "unpackedSize": 285610, + "integrity": "sha512-XnJ8IB1ydOnVmU+8agw6GnneAl/ZahU3dISn6Tm8m0TDB1neuXFmCKx3yEJaTJbjnY1i0UnwtBFbjwJKb9ysaQ==", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCZgSSut3H+GLhidtxzRSAIDfYu0J/bTSbqIOqiDffiigIgTiD6MfKjAc9At2o5KCnyXkZ4/qLPenwy+seWRLt5pO0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532647628942_1532647642369_0.0759376927141171" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532974708417": { + "name": "puppeteer", + "version": "1.6.0-next.1532974708417", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "c5fe1dbdbb49c4a348cbe996bb7e87cc276c1145", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532974708417", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-nSmlP2ouZfrUd8U+AlKRdrZdo0nclI/0aJM9Kc3rxs4O8dg9wFCCm8oun37nnnj97hjKAj4mmPgVIxFs7X3Whw==", + "shasum": "638295c49dd5c7cb6671ebfeb1b114750b493211", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532974708417.tgz", + "fileCount": 54, + "unpackedSize": 600484, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX1a8CRA9TVsSAnZWagAA0EAP/2y8aIAT11zxZdyXs3fG\nglV8ZyNy983yI6KOcdUjEb4MKbcs2FG4adIf5NnlnFDuCp+kzk7FgSFHVHI0\nIf+/ju4oTq70e/txpp6cnaC0LlOvpO6wC+U+M55Hf2GIRvecs5qvXNTsxJev\nWnRGziNoBEqIqGARPLLdJoU2mW7DGg3+kD3qsxsko1tODMJWG1/anBlwTsXF\nnjikB2VfheWK8QgDd/8JCP47+JVcXcM5lf+50K32RqEkwORJrOWGX117ZwTH\nYdX7UgYqulXjGmWTnb/B8VTOaYQcxE5vvlNg9bWBTvG21eiZKRBFy1ECoYcR\nC5TlzQa2fMZb2LnE8SnmfN3jXz3dmr2ylewAN4mqSDZX4soVHlGcsaz7TVGf\n56/kw3Hka65qaeeC3cfth4RoUGu+s/qsdgz1XFwyWb1I1Oee+RRyXkUkeLzA\ni4IzBdp2Dp8+AcGpUzzhPM3/zxQsuS1y01vLkICOV8/VI66feDq2bsYa0l4C\n7/tJU2JkkvPfXU8b/SwaMLafZEyaFYL8Lslv23Efh+UzApc/uS/4O+UTnYaT\n8W/83Zi3/zkJLaJf9L26T0JkmPSWalHH4GJNhfyIwRbPq+lMMqPtPs2WIMru\nTXp8VW27c/JqFamMLx5ZlALq58IuUxjUNoQo58rut2OLevtGLxxBTIHOqaTZ\n8V48\r\n=iE98\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDVsTj90nSblbh8caleaH6b0RbculQlXRfbpZI5L81YDAIgau1PoGqKDNfxrseLz3R8eDOaiKLMQadihZa283leoxM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532974708417_1532974780246_0.4427469616850219" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532994218655": { + "name": "puppeteer", + "version": "1.6.0-next.1532994218655", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "392d3b94bdd1f37d70b201ea19ee4f73844678ec", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532994218655", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-J58oXST6g4JS7xpsmIR5Kv36vS3LcJ+yi2eyF1MjKD/o8A2SgCzyNgpbAjThRMV3WzLabdzBzH7i6MVKQuE0rw==", + "shasum": "db700df47edfa22300c59532c2bdfd908d0f74a3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532994218655.tgz", + "fileCount": 54, + "unpackedSize": 600366, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX6K0CRA9TVsSAnZWagAAHlsQAJHVNsH+RLWYttlfSiHc\n7w5hAYFyIz4S0Gd69WyZelATX3W2jzC4d7PUyDMZpAcWrnBD8eOy3wHeUn3o\nA7Fi9ERUhPdA8bY9NvHzayEWBZvEDt0xAlbKdwQN6z5w+cXPbn/e3ACAFmnx\nPvv0wLp2bvw4TFen6bVuSRWeI9hSddOS46rIZQCJvGJLAuYPfjasaWtGLcSK\nvM0y5286u6Dgmv3aV/W1wRqQzPxGc8RG8W5z0KAj9NsmOpYsVXVkKb2KURd2\n6HwnFdg+aiP37N4kvtAfm8V5OdO76wXY5vx47PBhBv4pEKfHomHEBVJcg+px\nYaCVkgCVKycZLcrPcuO9aa1NrtV8TLXeRWqIi+9xkeGmrcLb0Jj/x8YAlh+Z\nrypmzYth8n2a2DwRO8/wbYb9L+FhNUHK9SL7P4v/yQR6BIAJFmf+WEVEZoju\nS9qPfl3r9sFusiCBRrHT1iQE10Xdjc2wKR5IChyDrBAiDlR3Y5w35faeHv7o\nM/W3QL4lQLDVDCMHF9nWPYn28mwxb8shQDjY/WaKavJ9C1QcMpoAxngd7rwm\njo+h9lQ97RQOX6xrEv7443QCyuizjHe3tcZmKj+dAWHXLX7eS0YmhG93ApOh\nqfEq1Ph+oRC0X0IPOtNUS4vknkb2S8eUg16tGn7MoOmzxOqO+VxOOB/LRDcu\nmNfT\r\n=hTAk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5emYt7qSLxlTByCDfW/F6NcmkTkIdOADtYJSxYIIwNwIhAMwPEaSbWGTEdoigLvb9n4RnZS1RYzA7OrI3YFFOfz3W" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532994218655_1532994227899_0.30099241423635026" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.0-next.1532995736465": { + "name": "puppeteer", + "version": "1.6.0-next.1532995736465", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0b12119843f88a6d560924ff52b6b99e8f6a7cf6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.0-next.1532995736465", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-SXcP7DsPUklhxJ0wamkyfb5G0OIMCar+va6lZEroiJNqFLJEIzswlDET6atCcsKVyHsHkArg3tJ3uQoP0s++hQ==", + "shasum": "13dae8175f8c2e71236871d01c110770673dbcc7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532995736465.tgz", + "fileCount": 54, + "unpackedSize": 600412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX6iiCRA9TVsSAnZWagAA0f8P/jRADihzaECkWM21JG/t\ncAfMuJOA6nvrTeI2Q5jrWuDQxwY7MoWsW2xtHhk3Hu9QTLpe+sIC4W/BbN7w\nPKD+8fTeu0HqmZfAkwXUH+UcZrDMnCo8RxqIF86s32O4FLWGNOw8ANOfffHL\nDuP04S/Z49+5HcEQ9jep+XhdvZqKlF/0YGsbAQdaDgCFQ/W9hcit51Z0BUJF\nKwVkDUJm1DQbJ5wFzhX0sMbF+czIgny6pp5kIMk4LKm0N5q/bVlVv4CF8IiW\nSoos42MFuS0/UbcdRi4FbM2F7cX8FkZZ4cryYxmz+xyPbCL8Ses9Xb/Bp2/w\n2e9i070b4mbcZqgL7Nb0ezC1Zr99Hnh7bS4mKuToOSFqI9pZLQjevz+1NY91\nT7Z7FQabZ1YSZI7p5mRmMFvULIS3kgx25AkZf2QDgnMl1IIwh8RrR0dOOvPa\noCO4NxOcK1Eb9xHkOLv1bQzePEW7uU1yWoNJZD2FJZDmFO6PVe93ctLK2aeR\nWgCAk5DK5lPWR0ljV8npOieplImE+Hnrh7Si/oQfvxiJDvAD4RLBb4IQpG/L\nQWFGMFzKV/lwX4+wCvki43jvk5dl1l6vKp0kNgQJTXf/BKrer2iOUhoip/aM\nzwsVPPisDRoL4tx0jCRrJkgoQqQ1Mu0KUeskX8+6tE+cFi4r13h+LMlNLZhg\nB3VJ\r\n=hr40\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDbF1JV3HB/Gz20rSk7qhVyM/JRiq3RwAKyhc5KZIgBZQIgaPX4o84KkewEdFZ4KlOX+vQtP0vnqTJBhgBe8EcKJhI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.0-next.1532995736465_1532995746180_0.19186504445145736" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1532999286971": { + "name": "puppeteer", + "version": "1.6.1-next.1532999286971", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "d305c7d8c1dd40a923268eb5665c03342202a523", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1532999286971", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-qpaFOwWeM523a7D2lUmvtRqTX1CvTTVmdeiTLZ1xdsXY0LvvZV/xBC08cUNR7CcudH0ufZYYueL/o6OigG5DYw==", + "shasum": "9beac837c149692cfcfd0b76a827ff800babb4c9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1532999286971.tgz", + "fileCount": 54, + "unpackedSize": 600412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX7aCCRA9TVsSAnZWagAA06UP/1OXHGPIFptQrxhAWSVD\n5rBTn1sUDqIQhItBJRZOaeU/e8LQ8/DdGRTbUJqccDUzXrW/aFZWKP8bU0I3\n6xhy3zV6Cl/S96NZyvltYoLupSHpez8Y6bYv52ymvyn33W17O+lDJsyyvB9y\nF5GebqHLc0inFcZ5OJzDYyXJdIRYXN7pUUK49+K7AHPOgi5j1d49LixeH5vU\nj6BdL8INUa1C2s1I2A+8BAxCD7uCwkEF41rzpplODc2YxzJfgViXJicLWArm\nC8zhoea7mVTDpNIpF1MZ24iXrNeFDtu5+EQaAJW1nAnHy/J8ZqW5tESZWO9m\n/OMOmr0+QoPiPkwl6lt9XwSKmN8Iz8zZMDv9BpbskKsIl0tIQf3YRhtbj9n/\n0A8GOaj9T98H41YzOiS+d/PFQg/NCM0mWX/MGwJdQ3yGtG7ANRKGy8YvQpWU\nWR33cawk0FwlhsbVSj8LXyjqzQ0AEUjJ01ldPPyxilAaeAZ9J+88Dgh5wVPD\n+psslRLQYNBkj7Vc5AXOwr3f8FQz6kiuWrD1qnVLouATulAb2I+wJp1NjRu6\naAqt/obzdwMaXaf7nA1YoFtJxRjkMh+s71hvPycS1lBFyBrO8d7hNV5vMFKN\ne1W27cIP2Vep9i0bhw8HJlTreMfUoIAi4yPrYyi7nk82ucMmYp+3EC6A+ApM\n+lQ1\r\n=Sjmm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDkzbYK6fDPtq9J/1T35Os/dFHKbFwZ3sitePGO+s06QQIgOzL+5bbjMUN2r9jqlnaeeZRKr8CPFakL1cYtqj9/Ebg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1532999286971_1532999298332_0.17387577096313112" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1532999303060": { + "name": "puppeteer", + "version": "1.6.1-next.1532999303060", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "2c9599496aae044d496209435a4e761bbdead140", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1532999303060", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-UdZcl1Ywy25W6gJsG6mXtFwrzf4i7clLeZJPVY/yE3m0fZl+WqFmIDlIbyKGLOb8W2VMlLii+LVJcmu5ZET5/Q==", + "shasum": "305d591e87c8993375442d799345da7108873fe1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1532999303060.tgz", + "fileCount": 54, + "unpackedSize": 600412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX7aVCRA9TVsSAnZWagAAaBIP/iXQ1w61qSe/EQTSMQG6\nfse1e9dlGil8FVX478rUxb5Kx98sX0wWWYxdyIRbB4AVMwratSH+ybbQ+dXv\nBZV2j5hX8ymkzl1Dac2SQBZtIVSxhE61QAl1nDKuISwfBicpqwhVaalTnvQG\npo6VK9XxMqV0VLPsG4j9p+wcU1upOVKodDUJLxe+v+7CTLu1/CbLGco0EcIM\nXH3EUQ60tHp4saED/2Qt2i+K3VuHbd652gFEFsb2bwqbnM9uqEBb5MGB/XSL\nLpKHIldGHDFvQWF3WRJBkW6bq3eGq7h4+4R12V6qyaidJtnRVAOedtDbeczm\noW4xmPIZrss6Wx4wOUhh+STDfbnPyhStVJby9UBD4Id1eaTkUizpL8yHy+oh\n25TzrUZecg59q9VHt31u/hdWBoj3WfJN6fjYhIMhVE78cDUrtrsOVg7AR9wy\nrAOcYhplZDhO87tQo2x3/PGNU6pMgPlLsP60M8n7H+er+WwJGl47gGkELGaL\ncMm1wwVDjTheOlmTZYi+zABuOMhgUPuwpumYiwI9v/C6CZpamkiTuwasKPoP\nROjgPZyGOby7PLhEv9i5FZJdG0TKKQ0wJ8saxzK0N5ofUxjZ2oiX5Kt4t8PK\nxLpKpn/+iO5sUqZBQ3pa/YHk09F8oK9nKhK2v+kEEgfBIGlKQNznDhMcgCqA\nsw37\r\n=rmz0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDU8h6G6vbPo0lnkj94yaaiTBQ7Ic2f/4I08JqmHV3YHgIhAOKnH5XCp+1QlFypi6JHcpjvJl4j3AAzq9p6moWvTb29" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1532999303060_1532999317627_0.6131763830702317" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533001132257": { + "name": "puppeteer", + "version": "1.6.1-next.1533001132257", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0c825de1f8d4c77251385fb2423428ac79f795b3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533001132257", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Im1c5I3OZOroXPz8L1vxTxafVJ+sq8ovGm1T6dvdAK3YymeMAlPQHDqucqfuS6zbInP95X916KIAFCz8FPsJLA==", + "shasum": "2bf53aa5ceeb971988a759cd09c5c56629805d1a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533001132257.tgz", + "fileCount": 54, + "unpackedSize": 600412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX721CRA9TVsSAnZWagAAZqwP+QHoR7F0o5WrHpCcw0Ck\nJ2uYIEL3wm7uoUmk5e1IupEqshHogA8tF3wDe+FGCbdjdRULQAaF6HApBR3A\nH3IQj+W4F1jhTjnndl4UcSGIylyq1K9hZOdwF0tD+x2q0mhgpEIQiocexlZW\nk8iaJglWbUvXtTaPIr7k8x6WstrUG0a6dm5V6a8583RgaXD+BP0We6A1K2vR\nyzMFZ8/paqz4unrhCWmCVQ4iVswcfkFMgFBN9HT1FH71yyMyHiE44yzrWKbv\nv5L0wn5EL2/ZrFeFo5yM/+AVxa5WrEWLyXJmAVMcLhXBcgz1pXSgPvLCegfT\n5arsALyym3LRX08Nv/q4rfjjNXUEVcB0yyODU2M8rBrKiMHGzMdxt2o0CBPl\nDAH+Puq9ze81G8RzloUHCC9vrnEAfqIsx2nRPwnzSl+Qca9YuwDrijXrtsgs\nem+jKPJxWnp18NKqiVF/PYlYQGhEZQ3bYEmcC1gXS9tQ7prXrP3OPLwfcDgE\nQ4qySI6+eblvo0k8f39Y1KJ8gjv4qHSp+RuTA5AqengOUeuviSYTaBU2d1bo\npxyjwbE75a4ROCQIy0QWn5J1TLc4IU7528tdI4995Mm7pUQ3KqDkfTvnj1BU\nVtrH1kKInd10uRRmRhc+qaMjzFtnQU39+QOhVp9lDW/eiJydLRSm6yCJVbOO\nd+iq\r\n=R1JY\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDYJQrg2pW7k//UWwxn+GMXp1MpCggjfE1kKBX1oYFTKAIhANkDdyPg73kQMU982VsWmUDliTNH5FUN52r0KRetQOTm" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533001132257_1533001140875_0.4365526340171728" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533002407095": { + "name": "puppeteer", + "version": "1.6.1-next.1533002407095", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "862ad96bdeb28931fafac0a00cadf01f089ffcd3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533002407095", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-fQhh53ocKjJFeLuZxapy8tfiIGtUs+aBoEywoRkPHkJgd/AwNJ2DV1B4g+rjxM4XN2SHGUYnKP+WOcHgGid47A==", + "shasum": "2d90de7ab72ce9fd85a33a9e983da4b74165a56d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533002407095.tgz", + "fileCount": 54, + "unpackedSize": 600412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX8K4CRA9TVsSAnZWagAAp4gQAJOxSzsLJ5fMVDnfr/2H\nCKLQbWkIyveBr3rtySpRny92MJ+q0/M77q8daVg4mNXh4+WSWcZFXTtiNGD8\n7U4Hy/E2Y9B8dyUKqc4LrM/1+9BkHQ1HHZsEfdbNF1AnzQt9yARr3yx2ndn0\n/FbSz9sjA05Y3MMz5DZszmlrzJ4u44mopCXVr4aaVMKj8lUsexpOmf0LER9O\nhK2CsOm3Cmok2aR+FVPPmOWGHJj4dFOy1reJWfOMTHsz+NFq1dxFYou1PnQ1\ncur21yHdmuZaYrJx4Lkly5Pq5SvNie5Xl0OpHD1dx1D94C710C74I1ESShJ8\nUOX5YIVpIXwxPyi920jdX2dLCSbW/ZpWiMSg3NiDQUq+IpE6wSXHPVpq5M1I\nbPDPCVXVlO3DfYybBqwuX83hxS11nauFX1rjrvZVX3RzeGAuBN17ZOi2I/e2\n578Ss6zKZ4YUcYTmfJ6ZkXRuOjgWaC4Rjd4gsunxIQAwDh95/RYb37rivvD4\nowCf3NQcR/Z+WKnXOvOAGPTGWeAz2uLrNbP9I9NsRrOCO8cF4GQMv6I/0X1c\nr2imfI+LG1g85lmd7JmCUb4yMcwXR1fXrncZ+TdMhmoxKjJYgvuHwN5JT+PQ\nDIKTIKWRBKOgYlHH0jA50OQdhiulXg4IviAmY6xrqKIIm3u5Kkh/VMdCYxrc\nPQSO\r\n=kcGR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCsfZjfJIDbhpUcRLMRPoajWhSgeDbI5qUNyczfE3MPfQIgStX5UJCT774a/x9ZCimO/iqqZS24OoH2g7pGWISFE5M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533002407095_1533002424063_0.5215689062928921" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533002862716": { + "name": "puppeteer", + "version": "1.6.1-next.1533002862716", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "574897" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "5bcb7cf512c8ef73eeae129e143f8ca57e11bc8e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533002862716", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+FyOOlQ9+z2lJcCNiwZaNLJ9b0Nl14icO+AOMMSVcX4SPNsBuy/nd8mH3LkutIplg3v8gY/X6yzSXkjkReRT/w==", + "shasum": "57c35e29d4676fffd445957c0eeeda025ae0b082", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533002862716.tgz", + "fileCount": 54, + "unpackedSize": 600412, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX8R4CRA9TVsSAnZWagAA8SoQAJCW2UYC83xjtQCikoHm\noKo267pA/AxO+StLoRSYR8Sa+vEfECocyB5cn5vcH+Ku8kCYs5xcmL94oCtt\n6VUwzt2W3mp0rsFawVZ4AAC6sy82ZeZKp5pD2y4c0W82TKzCAqN35BexpjD/\nqbbQK64WOpACmoyHf7etLk8rfAM1ShIb2pgZ6wsODFJs0CUkymgYrgkeG+CU\nQ7vo9Yy80t5cTIX0XdYIAvDAcJdxHLEtQaFJXseUzV79ncGLuUaxK90Z8wov\nNmNk58iZFbtCD14zTOLAjnd73/BekhAosONnKQx8QWozZZxObjMMW7vT6L90\nbqiN3DY2JlYsQB4BgnWKI4shbuXeL1Ox+ykovGJGHRIxpdbEX7hYqO4w/T2m\ns7XS4wOTNjFWTlVR1DbE1ILpxR4zu89WF8slZILR6VzNnSlp1q7/MMWpMANd\nNtm+LQlkW9MQUOrX9xzO4C6WlvH2tAXba18tRPDMx73BUZI/j3YHoaSZK++W\nfpEpnBQLxEMur4zr1MltsuPJjxpvf8wRHPgZNX0L1qcVwcfEOS/fQL5Z4ONM\naCwf+3bhKSVfUbqlOCCiZrYxwX+4shH1hhC5oB6JKKCpJDvgU3w25tOkCbox\n6HKJRzCW5shP62p7LhC2w908PDncpfhZW5LPSVpNEKS+E+kEDYZvAWZ6VugW\nvsN/\r\n=a2GS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDcnJjhYWV1Af/iVoZuJ0tysoWVhAwiFsvyEoGqdeZXJAIgUX/giZGcs4S5uR6hag4th5uK132g+aNG3vHKu2R7l0s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533002862716_1533002872118_0.2654482884497762" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533003082302": { + "name": "puppeteer", + "version": "1.6.1-next.1533003082302", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "1931cb479e02c185a1085e96d678410048340935", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533003082302", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-EMWH4f4zOQjLfMPNJ9xUnPEJLdwETsoNLRMCHY4LFfjy36ZwoKXKdZp8lpuvmWc+/XU2gWv/lqhDJQsDt+ejfA==", + "shasum": "24460ff3ad70c54727ce82994e80dead1a1d0580", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533003082302.tgz", + "fileCount": 54, + "unpackedSize": 598642, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX8VTCRA9TVsSAnZWagAARTIP/1rOCzQdkVBrqnaZhEsN\n0AMZZqcUiNIPn4LrRMyVw2MyYx0UFnT3EHpwRnbEobg4PbZd5CI6vTogKcHr\npWe30Ek/jDWmSzXUJgWLiIDZHsS29ssSgBVoOyM1m1WeS4v55+U3MovzcSpk\n+egn+wLEj9dKIWHaMaNcQt7tCLYd+hzs1fC6SMWPVUZDBGcLA3zftLx6F2Fp\nW/lChk1EjFZA26twVd6k5D5rp1VRlEPUPcCFLK3iZJszW1c/ougx3SY7vyLD\nj32Nu/cDoqkjBP6qhDCc3u6dMns4wggZ2hIduu5vadVuq1axY8Rz2tZTorVa\nZa+7RB33Urp9zTTCU2E5Nk1yRcnywoUY+Png/JvOqn6GneWB+dhYn12qH8ED\nBf5xb4ql36XGj3c8O6PcJqSfg/KvoH1iZdCalgME+IGxBRdCbuWTKLKc+03T\nURyC2vGFXmqmSCWV/FeSP5GjVMiN6xJxqiiKrswKF3bxT+gKtNiluOzt01hk\nsWTNFZn3jTX0xyz6qsNvNUynBokibOGguAbNOKpSe7huvA48d/tuvdv8adET\nnjDZgHlCwRtCUIfaTkCvTp2Q+xgC2eqrCZnnlQUKIMHnOcdXA/WEXtNSaDOM\nOgebfTLyz8z8Ya0rLdgBIY0ogNWvrXpFD1TFkMkoJtUXNKzEh8I40GOceW8U\ny6Ye\r\n=NzgQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBhe1dQAS9HJmLFG8IH6HzxAYqrNpbUbpoIiHganzjp6AiEAzRxF6xMdVW0i/6qBpGdLhrrVQgswGmfGNtDAdq7wGjA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533003082302_1533003091502_0.3278210570362605" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533061595073": { + "name": "puppeteer", + "version": "1.6.1-next.1533061595073", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "3335d369d3c5054517db7cdc541aba31184b9d07", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533061595073", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-PWklXaf+TcQIn4/zj2vUPDAkDCyzrIyNwHt7LnibmiYkRRGaYF5HkiEX0Px3bs+YShFpjaO2IyzgucMO0qnZJA==", + "shasum": "75d857f4cbfe7c0e8e3d994f6d07f3bcaa2dc48e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533061595073.tgz", + "fileCount": 54, + "unpackedSize": 598408, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYKnqCRA9TVsSAnZWagAA5uIP+QFJmknXfq3VAZO2bgKF\nQ8oDgwzWHpylDvY8eFLQjpIWCVDrzKj73yFD7+/NkF8LVYn1DbcYKWKHa+Y1\nafBcMM7DXRbe4PF8WaG4J9uIcJSfpKS2oduSYHGAHIdJ8YoQnqgFvvHXDgAR\nO59cQUSscQNvU/wBtQsfGx7XrpP/RaqpUsWhbpPKiIRhOUgFHakgOwodgyHl\nS9A2dLT//g3E8KjTVCgu4Qn7np4tptlFEkIT3OOiNsGJB9mHp/K6dtKqP7XK\n/1RDKoFikx2LfiiAJ+fvR2dTKUfuLMHOW2ck8lIUZoDjMjmDcUK/ExMHfyCr\nre30jWfiAwYxQXWDM++vD8L0quhS0iWDnKBeOjQX73TqanqafFLheAx7bOry\nNaQgoCm8rFWfcmb1Bkgq5Tz2SAK87J63CIbvcqibEgVL03oR1YDWgAcOAFjD\nmXrdQ0kF6c9op3MQgwaBmpXJdjrX8xjvKg4mqiBc1/SOixuaeY1jiB6XEV3E\nroRvJWgxUU99MhxWf73StEa6sld7O+7XfDaL3EwQyMFl1lTYkgK4FP+slnHE\nR+/43eRbnNn7ZMFa8QqLEdvq/lxCBgEiCTqi4TEU7tDz7SyoY69MR/4DtzAH\n6VCgbYNd+HeJ4b07gbfF94aL+jhkGdU6ILbDCn34IpnkCQZt+uwF1mjtxk3E\nt7i4\r\n=fQEr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICbV7ETrXl2JcCNfofhE3SzH9h72tBnR0Yv7qcFvdJ2FAiEA6ySICrT/Z3ukLbdA0L7iQMemkb/hyprFGb96faVoE8k=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533061595073_1533061610741_0.08952485555568934" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533064908595": { + "name": "puppeteer", + "version": "1.6.1-next.1533064908595", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "25d7eff37441125b168a2abbf7e78988ed46af2d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533064908595", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-z0V8Cp31MmDX/k5mXWpLqz/O0lgECwB9QNVsnDwGaGmIPPIar+LGNcCBTe4+60g/BoNrX4RIfqkJp9/RUSN6rQ==", + "shasum": "23b5cf60d3e3632503fb3deeb4593c09c7efa6db", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533064908595.tgz", + "fileCount": 54, + "unpackedSize": 598430, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYLbaCRA9TVsSAnZWagAAgvMP/02/om8mtzp3BWe9Ez5O\neiAxpCOcM3CGrobjWPT2z2SS8kaOFY9ydL6n5IU/ePGV0COAbtzK3fkZSQ9a\nWROsY4GbBYpMR8f0gRD+rnb8fuK4sUBJjR4bxah+DhIishJrcmBxI83ljSQc\n+7RBGB/5uIl0zoqO8IfT1S+DU7WMUG6KkulQtBPI0FRghgpVu6EksJ/rSdeM\n5KHhULyCsYetxK/FM+/ILT1+iqwapXdGPHc54OXqONdAI7eccfOz1Bq1yqe/\n7rnyxNTMwlxzcAMk3W9g1l8b3BrxWyIqrzD+/y2ybqUy8d4rGoDEI9LvJytY\n5+iyi6nUf/xNqm9X7+iYd/SF2Wkmmmgfml25ISfmf7rJW17O0mePqM3NZyVn\nawacmVmsfHLekis7LTufOFUANA6APM0LMaW8Fukxm2JG0ouFLRkkpVO5W9Gy\n4IRNcXf2f6qq/Oqb1qeQgOWK/oRhRgj9b3lD9I7fElk3gj2q4QZ01rjGsKfA\niKG7oqH3RK64KpKHcJ/7gj4JxKsWefx1QHRthiJ+oYjb+oLIQKVQSJwknvAn\n4rGh8nhaFUvIECJIiL0LzHzkhVJSoZ3jPKViHl6KGrheMnqIXJRnu0JJSXJe\nBr7sWpilWmExXMi1BHeOXMEJj50JnZCZDPH6XCALR2GcYNAaho4psR61QgFk\nT5g4\r\n=f1s/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDv0EnH5fQqUvBBQbtwesHTkDTPSbjt5Qxr97DKZBwpQgIhANAtmg+exl9Sz6AfBqqHqHT6LmADLBhF5Y/M8Qc1d9LB" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533064908595_1533064922836_0.8063508489718876" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533068895359": { + "name": "puppeteer", + "version": "1.6.1-next.1533068895359", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "c018ff1555779786c3278a7b3bdb02c4e057a6dd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533068895359", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-UazQTzU8WZ+8C7Kyf59QG+rxMEMUeFK8pZDfOhlkYgYbHEYHXj+m7NlN+WlC/yE2SzTr6vnndKKS/JBtQax+ZQ==", + "shasum": "51a24a83282b55f373d342d3dad7d9513e6e9b68", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533068895359.tgz", + "fileCount": 54, + "unpackedSize": 599572, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYMZpCRA9TVsSAnZWagAAryEP/12F4ZECvbvf5hVJ2DyJ\n//ctWCfxxHO8oRctdpZYLV852Jk97wTpqbo08jmv5WmMqHNxUo/+XWaZ/xSZ\nZj6VrVYCGLEpGSzaCj4MlqwQLZ5K4t7Bo5t67cunr655kONRTOFXffaMkqls\nzOkLxuP4FlHNzEuUo3Dk5UpXduMztB+Q/21ggFLaMdmHTZkalNMF1c6bxhiO\nijgDIsbvJ0l83rZDscy835sEiCBX7mdWwb1N/AGIWkzfmiIfvoAB2CwZze0h\nhFFJFYihdO01y5XS6YiYjLFOaV7Oegq9ZXyJRfrPzzFm60CdT7TnAxJMqFMD\nUWVQwOfGGHyDodA2xtVwKy9lGHkLm7T4VtaBF7w/l6ufZODOabZw/1yuSGrT\nwW7sPCLDVl+77YvBCr9worH77aKOw7fDzuFSBEj3W12uIqh1a3wXt3mxYTOx\nU4UBzURh8DVpcVEp7Tvi4mZNO2YjfkK3182sw2/Jo18kvCaIXUIdNstkAUt/\nngPauSFff3jKJfmrSa6vPnHGIcSQRAhz7LxsktgmFBk5t8klN4nMO7JRSF+z\nER62rYYkmrnW+rIBQxEaaWTrmnd315kelJ3PFIfv9qGQMtOw+hhylUUGT8V3\nbgdU7KLP9lG4LZb8BGjoWgpR0JnxKoibBpwXt+7V9qAX91XCuBjH1RStYgYY\neQ93\r\n=H+CL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID470JxTXYZf3TcvrqkAy+ZqHMgMZ49ug9Q2uWWHJKs2AiAD3fC4v+HvYDZR5hGI8SerL+Hm2qPxSOkTATnCON6nag==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533068895359_1533068905179_0.287994998007421" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.1-next.1533075061771": { + "name": "puppeteer", + "version": "1.6.1-next.1533075061771", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "fd5d95bd9980534c1f7ed2c481b4f348b3e21dbb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.1-next.1533075061771", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-RS8RzWJKo4Dqjeot0vzKXNvNXctqsjJNmDB8Md0o39EkDpQ09eHpbdOcpEWoSH9WJUXbZkMPuZNySrrcJds5tw==", + "shasum": "f27d3a5da69026b4ce0b461819eb6838fdcdb6b1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533075061771.tgz", + "fileCount": 54, + "unpackedSize": 599572, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYN5/CRA9TVsSAnZWagAAcBwP/iGZM0R1YhHKue8+kOwh\niq43iPxuj8d7Vg8YHrg7S7N2st2BayVnlsVVjnSbhuzRORSVhRo7qo6ax/gs\nif4B9sjXGfq66L0zsCEACINNjE8137QBtsRNoZ4KuM4ZtUPvuE1CSWQ2CZd/\n0knQSmxmiB7wjWJOsor9ohPNKbctt0Vo6t+26G7PtnJU3QPgpcp7xDFAr5cz\nL6fEI7wx6IgZrDHH1bXDE4WGBXSyfdL9Aes3ngb8BF3bPHceU3P0PEnXWqMg\nsWiSPyePiY05iZGB7nOnfQzupx8Y7cL3jPbDYFIprRNKqTUXgmmMkD29/j6S\nDZaGO0klN5wdWSUfCusMqPhJhJOrNUC8OVRPmJ50ciAy9cO2/38jsatEEZBW\nDj3hG4fWyXoKG3d82bVhzsCy9Cm+PZ2wWYTqAxXaI2BHdOMBPyHuF9n/0gEJ\nivhkpKJm5c5OnLp+/u2ZaQU2e0WYNxunntbxuMr/WcERHJK/31JqT82CGu0c\nQq8r/7TRDPq0nwp2Lc/Nh3NYB5ZXV3y2aCePuXYcH6hJRyPGOldmwAYujG2H\nU2OmbinwkgSKb5D1Q+eQfkUSanQDgNVGdumKSZoRDG7Hd4Ypxn1E62nHvcyc\nKXsl4es0iVB2GI4wdQaN1FB8rbHnl1ZcVnJdn7+9VZDPxcbt4sHDU8EcSnKq\nlrWM\r\n=igMs\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDlz2mxVuF8ag3w1NWnc8tPsnh8Z7KawuUpq8XAv7TbbAIgeGUa4MrQ1a58sMY5zGJ43Qe2srzqc6jdXMdL/yzZs3M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.1-next.1533075061771_1533075071606_0.37641718411156533" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2": { + "name": "puppeteer", + "version": "1.6.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "575458" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "ed52acc183700220de75ebf0397260c1c670e7fd", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.9.4", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-KBgMr/ZdwIwDQWTqcAlGhnQ2Vd6p+o5B89H60XUfdmCpia2KViSZsdRjvrf2wYOxXSrpYx6OuCBzV7ppLuNjNg==", + "shasum": "e3c31f8184e8fb8b36e4263921bcaaab7a99b3bf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2.tgz", + "fileCount": 54, + "unpackedSize": 599110, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYhsuCRA9TVsSAnZWagAAIOMP/i2epzdMLgcloe4eTI8g\naVotsqzR8d5N+tj2lGKmK2S4Npycc7C7zWH8v/STqkYQvvHPb0pDOUNBAfrc\nOoqTBiENcYM9/0YOES0giYHA9Z76ExKAed/xRglpvJnHdEqW71TBGxt6Eoe3\nGWFeQ6jJnWFJNGh6p6XRAWIdK5EHi009CeVKh+AhHdt11rfHt39O9CkJFhr6\nbQ1ct4wjds8k07AS7Lp4ApEEg7PXwlQn9u3v+vZzdPsKbNAdRU01WzCP2phQ\nQyicYtFPdoUbatGzgaiwcbDfNu7RobBbKig7Rkxpyd0Hd3MytqguYDERTm83\ntpCQC7IcKVRgoK0D4VgCWwUi3wgcmFOvnWtaDFOGwqNvu1jYFV+xFnslJWyK\nmIOkJUKa/qnu9rOFHhPFAhUtNqjs70EIY6fMJkagAZV2WhYozTdKNsEVtXTv\nPoRynMrtW3YgtcnLEoR569n3afE75o4gBuoTpuraJOh//2z9/6Fn9Bq834s4\nEwtEWAVjXv0y0rNQPALXtMaBC+G8oB+XGPrYYrz8tDycKJP6dXXfrdHwqWRE\nk93EAym42CWa0Y4ULWOXyRgSbmcANHSgwVksJxK+sJ1gpTfDodf6FZH/V6I0\nE/7o595u7BPkGnLdikk5zU+HZK/udEb3SS3fki/EtvPsdutZ7VBcUjccaQWR\nBPI/\r\n=O8nd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG//fb8aM69HfOwaBgiaXvwfSfhIJeBPBOn0jUlgv+AuAiEA3r4D+FG3MkYdozYQP8AlL1ajRQUhVpX8h/HLpRYljYo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2_1533156141562_0.08170777219201275" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533156975351": { + "name": "puppeteer", + "version": "1.6.2-next.1533156975351", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "e36a7ae677554e0feafde52ec115d764b25f4edc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533156975351", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-8wyNuXrZU0QuO4sHBBO/8lw4PB8hYokj8mg1Zi9qSIUgAwHKydx/8Ru8FwODZ+m61UwBfMdO0K5Qv721dvTaiA==", + "shasum": "b23be34007a23d2441da5cea0333078f4dcf1386", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533156975351.tgz", + "fileCount": 54, + "unpackedSize": 599572, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYh58CRA9TVsSAnZWagAAP64P/AlO/wSfvXcMjLSr6gBa\n9gQFWojDD3sOtNQgSxqHcgvapowtcM4jV6kEj7UTQUpCmzFko1NwxymGMe5D\n+FZMY8Vl0SqGp3RwI/LIcjdbAe1T6QB8IBTooal7T3Taf66+mhb6fI0YXVbi\nB8YKoJhgmstC5ysJD3+xegvGd4foo+RHm6TO7XpEitIqMp+XZpo8Bx2fwYau\n6SpkZRQ5EEU0/rykK7Mv0PUfcQ4iqYIC2vUtSESomlrUOoB+/Vo+B+bD4A8u\nF47xeuUYwzD47y+APlpyOlZQaJvw/GSpHrY9+FA9UKCvmqXbpsarcEcVbdA0\n5v5VI5hN6sAxZp94lBvbaqysBRcxgpzobmhT6TIlVNNzVMjhWaCmLe1qyroK\nTNlVfX4NHNxnVklUIpB2rIt8qDGhynS+x7zSH9EFQntzwfMSERjntPo7WlOJ\nOwWEtlZD0ha93ov0LZpUrxnVDX+d8y6pI26Dw/HdTggolHA9VmtD/uRDgUtu\nLsthn51st1DkmH8k9F+rikqmhMG1nVvbHtS/c+/QU4/u69e9edjaLAjMecQu\n01+yWDW7DkqeIVcYUu6SoIlaBznDxCrQdXMQl+MesKQptQvdh7mBLsx/vrtW\nwRTDKdVW++FurMCMftPwIx/j3yaKO5GvsZOdUKkvHvpNtdy2hgqYb1gxRtCW\nRdAt\r\n=k7XJ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA1qOOstnKjGRRPlA1t2RQrXrCMJUpRfu8q/FHGntzsiAiEAyh3OJdzcZhZ2M6nr4NhFfXIHRp7N3P6vrQarIstuSgM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533156975351_1533156987876_0.0521120260472312" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533156985664": { + "name": "puppeteer", + "version": "1.6.2-next.1533156985664", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "95d867aaaccdb54c035544435cd0ae411f7a31de", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533156985664", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-KNTuf+hphrLLeWThoAv5fREGQBAa1d2Py+1s6Xdtr3QBUqlJU6ZXmlr9jtqUh3Ryg2WVR7fI++eoF5sRz6PFuQ==", + "shasum": "bc97dcb500906307ed22f8355e22dd383c2893ac", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533156985664.tgz", + "fileCount": 54, + "unpackedSize": 600056, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYh6DCRA9TVsSAnZWagAABPgP/02ZTOLRqhgxO3R+sB+v\ni+UTPoMR2yeBzjB4+QbOof1pKDRY3yn6gx/r1FdXUIqdoDD3l47oh6fJqr8f\nc3BUkQ8xAuTdVW5nWLgUhCvmNb2s8W0WyGCSXEfIkG+rMxPszVpXbN4qNdy8\nWFBNMZYMBtDoqzQQhzXV8uY+XtMPeoEKSQ79IBrwK5fPq3B3z3ShDKm9nI2h\nqGdgv4dwa+BoS6dnVTTGEHeMM2JLJAhir8ZdVKjtOGdaTpdt+w84qTyAyFJK\nmP9a8DAFJ4ssq4EoTL2siqopH84KkxTr5lmZ0Qws73iAPMIVruUMJfoMt0+l\nUm7Sg8uhTXpB3uzuKL0iq+510W+Mmg86fNixh+n1QcRAmKEHNDy5Fxy8sC2T\nkL9ukPueX9pi90p7kQyKhYchrdAufTJpTpErqZiWlBn8jXaYkXrnqNVhDhjm\nOe5xl39wFB5O19Q9gTQvh2yqc56v/DAQ1MQ/pVx2egayTfQ4hbx1jYvHls/E\n7OJmV//dYeKeDqSUCqKPdfclGKCE3eleuvB23CDlGdejjUUc9awOLBso2qjY\nCl9CIAJ9kHcJXVgCj8x2g+P42mv5ghrnlM6xLoedAPekmwCvhttDwNKmFtnu\nW6aQJ+wjaCCg8K7ZqPW8U9VUtyrb2RberXYeTtwtjLRKn2wmrezySbc6VRnX\n9diM\r\n=gbbc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE/hNd1C1EvUrWp53URxgHgOx0tt5b6NbctwixeKf+EZAiEAqNp7teQ3BLU9ry59Mt0arOHGxhQ2OV0cuHkmoE/zR1I=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533156985664_1533156995033_0.38773512562225765" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533160767482": { + "name": "puppeteer", + "version": "1.6.2-next.1533160767482", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "9c96a9283f7d29ee516595c4ceb8d3c25628517b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533160767482", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-mqg6VxhucO2eOXqo4p7rPNecqQC0erjoj20DuCVO53qPdxjVbM4BXtv28I7dGzqmu2vnapYc/IB9HbdKPqbMLg==", + "shasum": "f61b8f8aaf2b25f4ebc1a6856775024ab695dca0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533160767482.tgz", + "fileCount": 54, + "unpackedSize": 600056, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYi1KCRA9TVsSAnZWagAAsWAP/1b7VfR0aG0rNjKcZqTb\n5+oU9GGkBiz/hW18phSLUBXchfHiyX9/aWWerMt4oHWJnTs/wNlKz6KO45cT\nXKDfscArZda19HAiwE4baTwGdLEVnZXEoa8bgAcyCnTKm+fZwgUD4Qf5Nysh\nN+BBgxoUTrOBwcp2DA/Hc6cFOCbKabEBUgxEPq7ZOQZ67eoJAUIVIwBUWVyH\n0ztRjo551lPZrxpody0MOMOVqxHk4a2huza3fPQdEiKR4JSQNd036LPKn8JC\nsZbJBA/02upDXVewQUlPILzrQ9+nmsplJmzFbPJJj+cTYg91zQkfBcoqjEtc\nJxm6ZmfXcMrs0B9Mm9pR80wYdGj+X02lulgasXsUnH+DJLOd2pcP2fp65qVP\nzlW5ljd0Z258fWl2XGfaGcoFMi3rgJcR0bHCa2vY1uljYCxi67EJifFw7l3T\nEBH+bnfbGtdIl8N0S98wNZ7D502VZufxfuP/adU2ARhk6MVeow+/rptcvHCC\nstbibNUR+cvpqP3E5TeZxlhV1eJpEehej7ImiSVMKf75vGZ/s7a2MXJUsf3u\nfCLRfLYrRkd/RpkVA07uoPjEmMvsMZtFxOqowP5nWO0Gte8wYlbigpeGywh/\nFTC8kaPps1MnvTjmC5m5yL9vIan7udC6ZphfFmnEfKfLwULRsw5V6cjEm+5F\nuKZK\r\n=P/hS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDDyT/8kbAu3rkTMIb47xnWnAX6UnOz3a0HQakWkfNxsAiBdWWTFmJ3e+Vy94enjWtufLGTzVLKoUdbxeGOdJ0wPrw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533160767482_1533160777283_0.8905002065060728" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533163982541": { + "name": "puppeteer", + "version": "1.6.2-next.1533163982541", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "0c49bf52453202f6cd5f44dcfe80a0eb7eeeedaa", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533163982541", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ViOHmIqRgIsdvoykE2CABdkVs2GUKZhiTlG8qIQmx204hSp5qUFAVXJo3N1UgGFz6bdnorjAaVclzRxJeFA4zw==", + "shasum": "170b08aee6704e8b65eaad0f497d7bb4d1f12c8c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533163982541.tgz", + "fileCount": 54, + "unpackedSize": 600056, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYjnYCRA9TVsSAnZWagAAa5IP/R1QWEfa9A9XQf8p2U7Y\nDMtM1JqSssqgre00dK2IcvQCiYfnffo0FxdX93UvOmO9H+UehxOI9fMHsa47\n2/gGaOJyJe3763LfPoXhxSfXF5zEbmRb8p+XrqqPqFfwQFeuQ0vxEshVRxL8\nZjsX5xFuWJiQwYkzsv6HFERC00j9gEL5aCYkEGwD4GVFXzEzz9ADnugS8zGO\nDfsrRaXrhMfQ3QRMbzvCCXxpdwoPvkhyYkWb4hxSu/X1TRl4zomvhCOKBm3j\ni3hlQBVi8ZgTzLt4LrON7bTQSvmrD87pONO2XJtjgr9yQNuIlyMdnj6p8tdq\n8fcCOYdOGWkiU52tKKqje4+zJAAXEJ6427xDaLkkkWbdCLSKCATKNNC7dHDT\nWaoem7OmZ7jCCHmuAelB/uxHcVARos7XWhdFRASVej3RmeulyPW7QxiywHhs\ndlkQaplpJKQ8fm/vuqQ4jQoCQ1gShkV+jDGS4+Z06GZvWQG3jYpI0zMJysWR\n7u0UlanO1kt+UbuadOkBbVcxHoZEmYHu3gZC3GW5zOaAiuBOaI3v44WtMJ5O\nvQtxlS+xWAgNs8LIDOb8fC22ojTS2IRqqbw3b/d6px3PlrfN16ilzbF1wGbT\n5tlZ5ypUwOX2yIKk+oknTi/byhTvKB+31CRlKOy+FOYUKkwg3de7cdzvZlt1\nY9gq\r\n=cS8e\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFC/Ta7Dc0TBOICYVt3+FNrPsmqhKyrARIop5hZpqAxPAiAbROjx6Vo3IhHD07tAngcukcxpSc/OKhZDUW/Zl61nzA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533163982541_1533163991991_0.8306622674114095" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533165898296": { + "name": "puppeteer", + "version": "1.6.2-next.1533165898296", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "~2.8.1" + }, + "gitHead": "25632133e2683c613c97d9088968c48e3c07a086", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533165898296", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HqmptU+7skfnV799AZI+qtyKL7ro32i8B5RSwEz1lODBRIkYXGyhicnsuVeDS/G8e9JUdlPOAuK+8bE5IMTyzw==", + "shasum": "d72e8833cac9314436e056ab1958df631f613aeb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533165898296.tgz", + "fileCount": 54, + "unpackedSize": 598996, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYkFWCRA9TVsSAnZWagAAXn0P/At76gYVfQs4J0Hw4lYx\nVBzzFtwn1Q2pi6JxJ6BgUp8eVQz9WpQwJKYCEvjOJj7oQD/jFftBYB/v/VxA\nchZE3/F+0hIn/DbMv9Q0GMrylW8grRpGmj7bVMWsJ7tb1tkx329ABGX+dRzV\n9ZLkfRpSbhh0ntx3N5OtAmPJVKZyVBMOFdubcK7tWyA9LUEGmptAhD7T9onv\n1WP/VQJS6UX7GdqJBGxAKJSGfB1b70BLtdy4O03QPp2fhdeeDf+5b+SnEZkC\nCJ0sqLi8GXJE+HNa/bu6F+Ss758HkFZLN9t5+zQXuQyMwLb8J7Zch92nO0Rk\ndIIb6bbYJcDB+g3q1MuNwif4jjCN4b6lw4G/VWkFMvhnPRYxbbZ3UAugAICR\nH5SF9NVSzLmQvOy9DzRjAjExhdmYSxt4jjMWCIDK8KUcJ+f902Uys0DcrNbe\nWwdxL01jvH+TlchVS4YisvlYziQ9p8rSE1h/FUpamhoqf0VzBTjOotqqbjGv\nabQb0rlyraqBr9AKrP9CUJttY1M/vI/ne4KhBGHnxDx6aYi4Zv96Mw6Cw7C1\ni+6VAMWokpjr9bPlNbO0xSin1BiDRjBNenJLfN8JwZCdCJiktHwfgsBtoESF\nhdLJPw5jH4qt6Nb31mqiILdpioJ1YTMay4UK8lVgQ1CLgrvq3K14I7v5UJm8\nN56H\r\n=n4g0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICscIEu6k7saPu/45Wi/o3Siv3smFXZDH4QFmVO6dxL7AiEA0pVBgTjooa6fsCplsYPAhlz0s2uyJ7BqI/dBmgt686k=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533165898296_1533165910328_0.020231599644896292" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533580499948": { + "name": "puppeteer", + "version": "1.6.2-next.1533580499948", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "2e0007669da4676bd9dd88e09e3a2eff8fcfdb30", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533580499948", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-9R4tTMRkxltltdmj+SF3B9+HEksqcTqZaScmYerBysKcbUkuUhG+Lrr7YuVp/+BaMNOrUe/2ivhn202E7IshXw==", + "shasum": "e2fd1c0941c54063843ffc4e728dedec2571b7fc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533580499948.tgz", + "fileCount": 54, + "unpackedSize": 600324, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaJTgCRA9TVsSAnZWagAAgakP/1z6HaFk5T1ZKf6uq2qz\nzxyiE7/AtE48HZb2MLKVqCUHmt2UkJIHGnEu0vGWc3pGsSF81c2qjHctCc8B\nFP9/HiaG20JzERoJ8O+9xVQkpffjW2PHW3HFNnURzZxVMMyLEWSjE8mlS2va\nQq8TEZyWzC74+/3RtKnxONitid164FEP3mVeE8bPKG9QOZq957b7QICwtBeq\nntgGM/QMSkgx693U0eHIR+JCr6NdzRWXoeeH0BoyhYsy8TVh6Sg7zi5Gsd+3\nKf86O2H11SwQTLjNQX8qUYoZvC4oV2DCo5HQ17MVJSV3RLFMh6+IEg9IVd0N\nklwlkA2Ox3MM9x4mRhJJidFC0GC9CpMFEWW07VRGji6g6dFgNX/To/wBNBWH\nKnxjOY/NZHrR/ECMKr3yyiUSJNzPhEbC0gaa30xfrqTJDdrLOp40Lrc1bHU9\nB3KAqZyXkXumMWuOSmnCRcwnE6kzeA709wl2isfJWxYhRV6EwXZoLL1kBJub\n9S1gmjfmJq47Rpc4DLJE22SDqCXqimAd7NJ2v8Ouu+v+ul6TH8KtXxKZPXqP\n+TTrqg5klumKlPxtetU7QVsWSXewcLEZARMV0tqKlSYC9tfEN6uSKD4GFwjK\ndRI9r8zWa4JV74G+goU6RTH9qg/qZlOpy2BE6fPjGJMw+UZIaPWubFlCxcul\nLHRu\r\n=Xths\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHz0F5SWizphtQz8TpaNaeHAKP6u+Q4qa0oRDxR7CoyrAiEAtTW6GGqj8ElZBMu+ocvh/+taAFAm9HhYUF5xkauoV0c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533580499948_1533580511744_0.010804295746533521" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533673461575": { + "name": "puppeteer", + "version": "1.6.2-next.1533673461575", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "6825088644b26ac1f2dec0230047c0e7314fc4df", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533673461575", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MzxZFUIFz1Oh1C00UUcjOu0f0pi6nNBnfnpeZ5I3Y+72+dxq9ZEp0wqOuRKRvWikN6vBMPBwbnd9ZtlXmseFcA==", + "shasum": "6f8326a90f70513b9bc7b92453678395974f8cb1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533673461575.tgz", + "fileCount": 54, + "unpackedSize": 599890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbagACCRA9TVsSAnZWagAAw2IP/1pF4HhESn+m7EwPb350\nuAZzY4X3mtcj1FwG4Td+YD0cDhCKBAMtYz8CUj4WN2EplU1QaZHqAiPc+dOP\nnEFP5eoerI8ktwHcxZDGeoSyGJMQ4srSWP+fYvc15yuvOzKZGiuGqQU2JrbH\nZhzhI1D1uLyfOI2ZOem8UzXai133eRj3Ckc3ikjgTgM/pkBC2Px6zTIQgYqT\nK3xfpIHOIH4fFGSVFwEEqIZ3TPScLjgJvwti7sCDMZbhWpK+k4Bo46VIs7km\ncQOo4dIhXeAqMdMkK7Y336XtvU3qeTo/CJ5qaq8TWhwVVg/8mPIyxnPwqhTo\n5Ek83eM69XmoOfhk5VyRD9+kHqftCHji9XUe+E59eiqKesxcsWJhG9fuMY83\nd6gaBXFBv9ftpJ1k2cmXXvcxLEMjx+3xkQMat9N3CXJKZE2Ocr8D6Xelt9ab\n2KrOb3r18T+z/zmVgvnr1FmbqBca8QzBteFsZUIQCv+Y5l+iyznKe6BNPrGQ\n3afRKHkMt8TmWUgf5JxENmcEq7TJ1Ep59evs3FURJvmGBKVoqzFchMDk50ar\nGAYMbGOSf/7Fiuzot4h2IJYGhba+VdgDsORIXwXw0GW2jdo+pyk5P8Ai/vBu\nZ1S4JqnkdeLz9bFkL54PXVaMnVVSO1IYpCHk2o7ZqGCW13WbaTg9JsneCz8K\n24Px\r\n=Bwl+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIB31GvT1CxEo0l4ilk3nTXV4Wk/+zUAThx7tsWRsl0VgAiBlyX2AS//1y/OxMkQaKIHnrptkZvbQ9u7gkUwz5nH7yQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533673461575_1533673474070_0.7884427990846634" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533673548000": { + "name": "puppeteer", + "version": "1.6.2-next.1533673548000", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "735e17e223cab47551f03a78c87f6b630a91cf6d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533673548000", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-CjmGUicxu/BbGY2EDCLgLYf3tqXRLJd1qrdbdTYEVLMbl0L2ElHBxsrqky0jfpOAik7CdowHYxCPLJun2p1B7Q==", + "shasum": "ffc69a2ffb597c4618b75ef2cf4fec70c1341197", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533673548000.tgz", + "fileCount": 54, + "unpackedSize": 599890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbagBXCRA9TVsSAnZWagAA+xIP/0I9OYTxO2s9mH+GJSh6\n4XUh69YWl4Q10XFadn2AQDWoMrHJgM6YT7jbVLG+MvNQvEekyBTQqQdQcf/O\n6rWSZvB4vosHS/HKCgz9qkUPvBWZSbsgAuKWuf/e5qxNlIdiZTho6fQhSSJo\n6Loe0+PhIxgEg1XlGAUt2BtdU6u0yJ2TiT4awnI8Yw2MTdXfs6yOWo1WqWTk\nKlnDLKxdm1cvvXs+YV0uhgUXK7q5h6W49k26TZ6UiwrAgiS5G1nuRGnjOpmf\nQAzdWeSL8V8Uq7K0GyMJMMioPu4H1STFUVlz24pdx3ARXsvp9SaMKMBETWYM\nArBT14mgVY1714yesJp2jWIvZG+YhH160vo5osyTWxIjG87c2pxhjevtH4U/\nydTqnFqvhwEPllSN4HnWnPzM92QFLu89ix4I1e1qu7i8uwfWziZSb/AlBG8n\n7LJRdDvaKHE85xFU8RtpvXwHqV5vIcp81ItWgsAGE+ol7WFyW461Lu2dVSkz\nG2ov1W6wEg8yHcaUVxyizt5dWTgtEL0033axfPVpcict3e26zRwdHjIOHo8B\n8FcFtv0fcYtPGPqlv99tT0+ltQrPXmFtImU6lhfUK7EW3fPjX6uSi1fHOPz0\nn1BXC+QK9p4fi71hNPy9lVeCf87nv35tQE8NOvr4fg0N30TZBIk8AYslv7ld\n/MKw\r\n=Q75G\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCJiPmZSNfMNfALOY8BC+L4lLEbvQluReJQWLyYRU5s/wIhAOfMYvZhCo5XvdIIVwg1yQOvv7PRtZumhfZskckM1x8y" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533673548000_1533673559172_0.7261309387819015" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533677196394": { + "name": "puppeteer", + "version": "1.6.2-next.1533677196394", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "d8224014496518e8a38b3ef78eb21f7fc2463940", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533677196394", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-cd4IohOPtIyypaqvRPC3chEBW6Y+oH0SNjq+MR26e/l9ZrwE1yE77spixbFAaKmKqiy6tS4FLjSb9INlN6O82w==", + "shasum": "162a17ad57dfdaed1dd7adc26276f3b69c64bfb6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533677196394.tgz", + "fileCount": 54, + "unpackedSize": 599890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbag6WCRA9TVsSAnZWagAAQXkQAI+2z0WA6muaVdkXJLnT\nRzKSNQxo5UBfzO101wyZw4UiGAFbzAyZN8fI2EKzac6Qg0gwyA/4xQumRqHc\naBPKyX2WMtNtoqxw6i6oIyww9i6CJq48gyaqdpvSP+svTui7lqryH0wlm942\nany8ltIpMU5OiBiHCM7AKrnrPZfxZVG2bdxk/erxb/YGuX8Yctt6HqWSZmBr\n/u7NR6/xIXru6PPkwW3CCq56ApxwdHBPyXvNYOVtWOL/ARnzcwYRlSuXSYlA\niFQjzvAKaqIm7VF9ESN8uHezGfZT8l1VLixLYdT3xEJZx9u62goRhdql9tqB\nLoN5YVxIS+Ugp45TClPosQmMtgoGT9/FlZj22jGsKtmC83MwKNtmR9xZP+ap\nESWE8UicFmic0lo9p7muHOWpc/vqti0ZgGxWGgR2qbUdAU06xcptd1v0M/hq\nSob2/8v9HDWN4RmcmY0UlldcvH5XvLbVu/JrCIph3hBihuHzpIn07gJDUqEH\nWxLz5//Lk2+NZA5fNcnwSSAAuL1wjvhvg+gLotLlj3zR7EeF27TZAnp2UeQ5\nSDFmpQ46VXXgV1tOn2XXvoiCi6KHhxWOhwsMXaz1WpqeLz0l7ijqhGR/jF31\nf1I8nC7ArpVjdPKRRHzmM2xJX+caPwypnSkNvBKhp0rKCTe2KxBBOCF/Bfuz\nTxAu\r\n=NrkK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDMZEu7UORBtmvMoaZiyjKWnMtHrfu8B4D09YsWO3ybXgIhAN2eHki4AlxG6s3kg6WglG57ithrh0yxSMZmLkChR33g" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533677196394_1533677206475_0.4806603767190911" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533677198046": { + "name": "puppeteer", + "version": "1.6.2-next.1533677198046", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "608f5b79fe83d206ee89aebd7a3e82e9b83b52d3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533677198046", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-5YGuQy9Ys67aVfipcWZooHp4rRQoesIgrEzMfKaRq/ivOwhdXrqA+csJRjO+GsxwB+/peOEqZ0X3TAlKYVvdeQ==", + "shasum": "687145ac296199280df2c565c34cdb704c74106a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533677198046.tgz", + "fileCount": 54, + "unpackedSize": 599890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbag6pCRA9TVsSAnZWagAABYcP/RVlQM1cfcOOprQNXdzv\n7l/SVW72oREWKNVLv1p0FSgp7UJcXAsu1XkX/QxyGgeFp4ZthEjNKZkfuGek\ngjufszD1lmLeGcMXjHnscj4T327ShHUX2fY+2JuKWsj1cd6NK4g5591x8HmT\nMFuEtosEekLfXufjVjVqeqPcsf71aseVK00Z4rSQBJtZdS5N9K8hGl3ST/Wt\nmuR6RolrJQ5T4cTKOWF0GqYjPUI4Zgcgizg6AMiL8GEaUzCpAUh5aqLR9eOn\nc6ZUNuSaOgv7cA3gvg6ls6V4mNYBzzR3uW1XA9zJknmlgDMsXNJAglGwmDZC\n94tUEKcQJo07Xk1gKkHPqi1ArV9DbLGQE+SlbN4+SOSg8rrgrFiKPuB1nWqY\nuylKu81B5tO1VuQN8HzTUkF6soux0JwW6YzyPseXcxIFeFC6k0ZD0eBtTORd\nBqqTdAJ/gzVSGAF9fLMlxe08geQbenkBKRYSbYQLM706ckQW5sbDkWLXt1hE\nANNLu/0uudbIbD/36WYCmVNEUTyPZdBCTRtTKgNBGMDnE1mrKSLwRPAdCPeH\ntfK0Vl1VLOm6N/mvEDn73RHjRIFvTF2jYFehfuPqyh1t4PmM7Fob5U+kp/mc\nxpC2YgTAlBAhmftxTmbtAPddmsDNXPLD2xx4+zEbrvFblcTTmkqBxPpoT6eJ\nb70J\r\n=evkD\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC11Lf/tvJS6bKL2XypNGmEoCawGGx/9Cz9kqmqav2JYgIgHHA3hjscoIiDFod3t4qxm6OOgdLOnK+CgKDdO0PLDLI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533677198046_1533677224886_0.3963635036409825" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533766644133": { + "name": "puppeteer", + "version": "1.6.2-next.1533766644133", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "81d42c4688618f19b74513230e7e30c69599f4ed", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533766644133", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Ysy/9KAIYtzfzJfeTZFl8LzilN32vMCOwbOPBPHL+ph4YLV7s22qPspVBUPrKv6tclDoxQ39W4OZj5roM2ThPw==", + "shasum": "d317971738979ffc5d1e4a0ff4a9942886cc60ec", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533766644133.tgz", + "fileCount": 54, + "unpackedSize": 600355, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba2v+CRA9TVsSAnZWagAAMbMP/Ayp4w0iSMa4Jl/1fMoD\nxIWl2Lk88Mk4WEV4/yZKcLhK/IAzRdFCMhWDCf9JtKu/YWzo+JrHyXLkSM3l\nbNymRYh7kcq+tYk4rU07rFMWccmsLo2ete5kZBhV+JUC2CyWpBXE18kjOM+b\ncPFUKQ5soIHMkXY/L+tf20Nv9Hv9VUsFK3CnfpOrcVFKnHtHWjMX+LxsvcgM\nZSuCQf1qi7J/YQAHtK0YqdLslL3b1sW/ajDRiIk4piD1q/nrh8+7bzWqG+AV\nZNvtj+EsAurwwI7iWvvxlr8RcfJrXLNKHHJpHf9Biipw6hR5Btn7UrjSo+cc\nF4Ucf9AYYnnWUJC9KBMhc+6SR5AfPujJAVKRbSu7nEiOAOG2TvBDOktw4DZj\nz5CSgBI9IIwyE2NBJwMsGDD6utFjavIGZ1M88sP8IbdXK/9O3Y/XxQPlBrVi\nFiG5adgaRe+IFZlT34zx30H7JMiKCbU69hd3F/mE882LLI3cO5SSe89oKhyl\n560jlQRCrjDYpJMkseNtWzMbng1iMcRzDC/YzP2H8TKezWDvS9Dl45HZMkgg\ntQ/+GElwXgzr4nUTZ7RMXVp8Qv1Fr0+kjWVZfHXq2V/cV8nZAmqNr1TJvYGi\niesHRBQohwAP5pFlJJoP6INohtEPqrRq03qtbxCc+Q3ZswLpIiT015s8H34T\n0c1a\r\n=Toy5\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIClWyzrAeZIYtAqE8AaU+osLvL02sECpR/knQZDuClmDAiEAvR5FbfbmZkMhe3wveFn1PRCD3xY7cBKdrlbfPm5zx2Y=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533766644133_1533766654620_0.18253945402260086" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533777762233": { + "name": "puppeteer", + "version": "1.6.2-next.1533777762233", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "1be7545b7098ef6c286c3a4992d7bd372995db6d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533777762233", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-9sLHGK2fPwz9mo05wTGGGkgK5F6dRNoTf6VRqNKlIyvn3leX2aUxsTIyZccQX/yaeGYKQFEcKio/poEHG1dRng==", + "shasum": "b899067564ec28a2893910c6f612c9ae0551207f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533777762233.tgz", + "fileCount": 54, + "unpackedSize": 600308, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba5dsCRA9TVsSAnZWagAA8HYP/RWQzDcQ88Zk4us21XLs\nQgNZtwgzJztfbbWaIWC8gUdUnk/+BJMtE8Hw8D7c6VzupI9tmjLyxzAMypWE\n+i130fkMuu9Du/5yyC/hmki9RrSKMkZgKAMlH+um1cUXw8GTMsqIgOEfQ1+n\nO/KEjK6iUjHtshW2PkWdXzpG8lF657fExRWfBAYrt2ppcNhUXA8Zpz5KBv8W\n9TXtQykbSEovTTLL8FiPVdYVU5UQc4kEv1uS2GXcLdOCWrP4Y2kAjYO5h3iY\n+Sfc1lpdHF1flzQ0uAFXWDJwpozpX4NhscmG57u14yywm4I4aQGn7M/L0PnB\nl/v61UhhXhw0kf7Ah5l8MBN2Vf+U+kpAbfu6nGpKl6Kde8pdqCr7G49t8a4F\nhWD6IQKfn7GUGW9StKyWlAB5to+kN/xuT5z5Kf0gx8NBt+bVLXNkoH8tGrbW\nUiTLG0MPghUrtJpKDTBELGgtfDpRocxUGrIrvShqO02SF+lM1jRO7Gl8Hg1K\neCxsnD2zDiKgoR2jpBkXoz0QzMAjuuW2Xjdp9JMOSicLn0UOOwbHBCktt1nR\nVQP6ZqPD6VR6/j9YE2/Sdlh4MuroWLnpU8EWmm/zfSuGW7z9/GgFTGQdOB7r\nQVYNBCf5EH5q9LfYYxSSi2vCHnlUrC0x69g4RHRvyDbbLi0Hh03q//x06bFQ\nRIYD\r\n=I1iL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD1p2eQC0Ui2sL9Nn3SL5y0lO7DaRfoFKbTrtaMJKJ1qAIhAKYDlKrfhExrc/kap+oxI+1EHXHKw+ohD9PZ0XRSVwCd" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533777762233_1533777771511_0.5727684819684129" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533801194001": { + "name": "puppeteer", + "version": "1.6.2-next.1533801194001", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "40466cb3a45312986ed126d932cec896c9f13dbe", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533801194001", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-i+15M7vL9yyjovvZkRbEADcFCpBfUQUhb73tmHoe2RSQ9S2JHoLQtMc9/tr8nZA5ktc8GC3urWqoUNbXR7dHzQ==", + "shasum": "c3b48f5988a2a20275344025fd2255d6c61e36cd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533801194001.tgz", + "fileCount": 54, + "unpackedSize": 600788, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba/L0CRA9TVsSAnZWagAA0IMP/2XW8B9Ojdqzj/zhYMzV\n9TVWn+WScdW0/UGsrj3hEGOL2KdbhXVZgtqS3Xp8I3rsvBkKvadKAI4XovVd\n6emZiwgAiu+72Ndu61CNQ8a1Gvz4h1GTpBokidbkoEzUoXEVfrFAcanKBSb9\nSxELOlNgvlCBFoIpMxpfMQjuHYqRzYoGWgb6mkLsANcM+xCUmrd1m1fkji9C\nthp2G1dfMgyV1/18ViokBdtambRwWvyavqbH+EQHTO4iMtfCn+UeCMxpr4K+\naJ7V/9zDw6mZ9rWuu3GyloYJQoqJCxh9mDb2U0eblL+SghPPCZLVLv1kV653\nVAfiQURYSZUqEfzCvdNBQ0IwW92pGz8q5CklMUADr9bSAgPcE3Ncx9/yGE3X\n3rT1bkwnUrOTrnKeSdg7W7dh4vtXcHiGggZmRIUS5cK69uwGnyPqZz1aeb/a\nsn6iAh9bkw61LK1DhloI/+Nt8pR34Rg7xVHZR6OfI2nOmUpjvl38P6L8RCPW\naCz1b2/OiYpZQGtwYqO7as8gLbVfsjF0dSUK0IlppdwYCUAIrGO/kLgS8O41\nW9zmrUL8/8PKXlukJlcXJQD681lJPg9XpY7WSJMmkE0NVxHnRo5aalSzExd+\n6deAI3DxoD2SmJtp4KDg8MLrR8hc9siBnrFodKAWTGSg1Qb4hPGamO9ZEn6A\nLiX5\r\n=QqIM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBttoRUg375mZF9Lg0puUKgnFlvT99XaEKdsi0S+F6F0AiADL3xSTjGnZ/Gv7eHKJsd9ViaO+NnXP7Q+bxI2u0Tn3g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533801194001_1533801203996_0.2875790520407544" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533838658133": { + "name": "puppeteer", + "version": "1.6.2-next.1533838658133", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "8c713ef1bd0ca9f83e1b1b8560190245c80b688e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533838658133", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Hr4AR/fPfyE0wtzKqRu7SE1NKKQyJLbPdMYTRsdJElPmdCSDI3TzULxYdk8fX4XrrJo+mW4gbcNRU8GPFlEMNA==", + "shasum": "db7d5127e1668177cd5a8c8d58ce13bbb00177d7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533838658133.tgz", + "fileCount": 54, + "unpackedSize": 600934, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbIVOCRA9TVsSAnZWagAADM0P/1UmKzNIeD6/KEX24GtG\nDae52nV3Ow4iQWh9AQ/JT6Jswq0smU3jf3km1zFOCTNIXsoxtUgSzKjYAFJ6\n71YsAs67FQ8v/mqq3OqQVZ/USkWP3JfrNc9lWqHY/kubLq3SBwGP6YNIy1iS\nrL8XBTTzkrcA9eq2EcAqDzFPJ13FXRv7cQ7AIPoMFrWPP6V+ZPbbR7ghTsmd\nkO7hhE6q2wdoRi0C3p6dEhSaGlayelvH7vWp1opyBG8drOpfY/wRsLU2rn6A\nwlsrPHVGV6XGeTIR3RF48owRPIPUqo38RWOx3FB3mW2ZNWsXmqZfTSwCqrfv\nkKfa5UjyEaZ7URM2V76XUNOCy4sU+mVRsAPfGvcfnQ+i9Lye3zm2UTUqEx56\npVSJxDwNVZ4CoffT84eGXASMXp1L/1FNPkPTHVF59WCwiR55bhejUx4oexop\nHvk08w7MyomzW1WSiomdmaeKQrOuy5p9GAXSRmhtHYFuZOaTq6x/3qd9Q7Bt\n/5qf3Rdp7kf206TlLvfuoIxvvN8i6UBz8r+/Fo73VRuBCmbaGZUpcDOzzeUu\nLzdiA0npOJPR6RJlrl7ez1YxGtELDwPLACwC0f312weQo4Y+MPkBdQVbqz2V\n4MyvbypcWKA+3Fre7RtK3rEGfHLrZIZjT/WmcfgpWeQlRWqDZ+XwLhVbto99\n+ihJ\r\n=DZn4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGCUepPSGhEWLi6BXDEV7lJwsJWJLbHUMVOXyiqk8yWSAiEAj2HSrThXA5nh60FE5NOBr6BKAssh5+yo04FgNF9ofYc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533838658133_1533838669311_0.0857268608804449" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533851342918": { + "name": "puppeteer", + "version": "1.6.2-next.1533851342918", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "b84404c94ee59d47308ccf1c220f1cdb091436ec", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533851342918", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-483euraFir1W67MrmqjEoLROfGApe+fr2bf7nJ7QrZbPAusR8nvi6dQSvWBGv6cMigT6m3MvBdBAl4EdH+g0pA==", + "shasum": "731b326ecf58e37dc6cbd4dbb820ed52fa096d69", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533851342918.tgz", + "fileCount": 54, + "unpackedSize": 600934, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbLbcCRA9TVsSAnZWagAAycsP/0XITpH23H80df0l6sjh\nLsGUGXln7Y58Jff1QvAVzMSHWxAwkVGSajCCV6JKP+ze0q63Ei49n9j6z4OR\n+Dycxj8rsTCxjuTRj4fg/9+/2jHrSMRcrkJ6jqI+V9qLOZwB3g2fcgrvgV1A\nbi+moOnr0GyVLuRWnDU8FCeycHi3nXdAeFD9unSCw70HrkXDA/7LYxjMs8jW\nG3+RIfOusJIgLvSL2Dq5cf8CuO7qD6EpY9SQnzWXVsMgArM6YuN0d2nlZI9D\nO5F0ncWfxyYINfvXfIPsLZ1tws7fuIvvl+BZ9MHALuJOy08vho2FohLoWYyY\nf4Z45sdn9Q545x7Qv1vg6YRu2YF2REdtNg1bz5DbrP25DaJp7MNNt5wxOtxc\n3YWu2GDrh1BylJCO0u/hB8YBbzauQYm/BDtznIoYKf+lh2Zz3vgRtvcEDxcm\n+PkfU4c5ps97mbWounFCXQBn/Kj1QXRab5Rh+erV60A3sfun9CNW+3tAZGMf\nquHRMqNc1Una/e7jxV+UrLau4zbFBsTLrA75oRUo+iVrxyFDn2yvasVe9mf+\nKxVA1m0zwAiEmRR43fY5Fk5UQIdP7GnETuFDXuAjQPgtISefkXO5PrukV3mL\natIANYmQQQMljLAFbydCxJNF206TJ9N5a9vBJ9ANHt23/1y0PZz9PUNbMRVc\nXzgW\r\n=QEV7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICZx4oV6jX/uWrDDHN0hz8wrWZZkhrW7VwiGQSG89ZR8AiB3kZnXpL8nJNcGAlCLlK5CmACcRyYqi+ZChm1mpRHDPA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533851342918_1533851355537_0.11741647844286307" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533852010323": { + "name": "puppeteer", + "version": "1.6.2-next.1533852010323", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "231a2be9710f4f918b3dd7f388bf5976d80d826f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533852010323", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Fmup8aG0pvYi/ORVJQPZBJZt5WQhTpJPfRIR6s/HO+XqdWAM4beuTGSWFooWegiCVWUNxqdpBVUxh1qIRafTBg==", + "shasum": "d2577908255492a06740b915272c6f64c1bcf053", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533852010323.tgz", + "fileCount": 54, + "unpackedSize": 604062, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbLl0CRA9TVsSAnZWagAAHLEP/1Zko8sjNGAOQ3BTIifE\nB+Sdl/AWkFJ7qdr2e3WIBSO09+A9INyGyjJGOrbJXa/Q7q8BLxxHDgM5BY+H\n4In4+6VHZi6j1h+F7XEgcfYSD7fA+ZECWSLM3Cw/Jr+lFYM8X7KJgwP3tuDv\nfDseQKJM6DekS11ScKXUnHLBoa6g381MnXO9W6AHI+DHHKryqoh2RQriQOne\n/eda5h04Kos0L8flKghOCdcG4iny7Li3V4/3DuaECfl47Npntwq6sxv42a/K\n6/dMTFGv9lslsMzY9uVNlqpCzcrMzg9Vefpr+tdek6wISLEDVHTE4JUV2svD\nPO4Tm0AP7jqAnOjroFJOdaduJli23qohkp6oDk6rauWpeZuBlQO6A8KsiXdF\nADIisECJmYr6bxOhLcroiU+/lSq7ye/uQCmiCXRDWDN+Kc1RC4BL0E0Qmfqb\nxreQpSih5v+fzh8Mc+h0q/0OEnF7RPOBGtL15lHjUgO0T0WB6XpMEyhFIl4n\nrIdgdCe1y8cL2Bgf2+itoNdT9j/1OaXOdJYHy1z/LPyuJ2qrOjrolT6jvYO8\nLBF+EeIAA6hAJwofP703lKLNNIkvgQU0z+KoEGgZdL614W7+ZjnyQXTvAoXh\nthOEAyIM2hTqozVvjPfbhed0IVlktH52oIYEvZ6Ug6F7aR5IGmnC8+UpeQxT\nnns2\r\n=ewj4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDkwmzhSwFUIqUxzGKTAPVTu1HtNufvS2BNaEtZchPaNgIgVwWNJakALdvzkErML1fc2O3CV0xwAPEsXj4mFPgDKXM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533852010323_1533852019557_0.5898441485410342" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533858839474": { + "name": "puppeteer", + "version": "1.6.2-next.1533858839474", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "204c7ec8c45087adec5e970392efbcfe0c545c94", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533858839474", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-y9WEUOdnbSRESfFms0X0phKq8lgtPzFTYqYF7EAmT9aN7Ow8MPb1aFUr+ZRpsyZLpGrMIhgifyyIYmbHbRIS/A==", + "shasum": "00358f2ffca231e9bca0d2adeb315e5c00f2f154", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533858839474.tgz", + "fileCount": 57, + "unpackedSize": 607168, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbNQjCRA9TVsSAnZWagAA3KIP/1PYkmex3IQJcc6lZY+4\nEXdoseRQ2T8hX5bKmu7Eu0DBG+5COA8A8oK8hUWfEld5dO+GOIDBwJJw9t7R\neJnGPjhRp4cJxAnX0Stsuk0sJuEiYQVY0hI9lQfR0wlirqvgQ/sJoDUmZCEA\nh5YhJ2ful8BBlxjiWryNWZrPYXWT6CoVcWqDovYHdm5JuwMYeC65FQUDXrFJ\nkOPab1cVFUpGkVMSnvTD7rnkvOaBcDDL/FZnf7CgdJeuV8/2shalk1hD91cE\nBDgkBpEH6OfBOY4amU0YSUADB+Fvn1vmoGy/W3zFycCJFuEzPLUn1Fn0wsBc\n6K/zpJYLpegvj+nGoqu4RDqLLWHS6zAxVGNGcN9SbMMGme5ZU5fPJeEuKyog\n+HxhkHjGaQ1/ayrnBZnCSEFIidYS8nDKPlx8A+zTnG/+KBWf9k0u+QK57Du/\nmAUVgwMo+PFYVjDd6glg0tLzLaDSgfkkfcNu8HCE2hwCdxhe1Ugf9dQSHj0U\nMUt88wL98hGOB1UPLjL6MPkFgaJZ09wbSaM1piBruAp1HeUFkeFTQiqeYdAN\nYEP55Ux7w0MO3XAwsVaWPoBBc9cmjwgKRLS3SbaZCsK/JVHiUK2g3QKagVlV\nNsW9/Pptkv2OdZjWAKZGQ6ld3t/7eV6fW4OhUSuuUcyJWl9oijNi/QnLKlhk\nVg7I\r\n=dHb9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC/YvolZYHGAKHkgP3eUFeCMy6XmbkcmPvUPzfg4ZclGwIhAKCk0ruZhY2isM05FLHN+LyxdV5q8rr8tl8B1nAcBmXb" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533858839474_1533858850711_0.1156607557121252" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533862299087": { + "name": "puppeteer", + "version": "1.6.2-next.1533862299087", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "28ccf5d795e0b3d2f3f5504b6543f681a5f9c7b9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533862299087", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-n/mPz4VKuzxR1ZF06KacReqDTTz04VUXW594/Y2OwQrSweYNhIdPfl5m9wW53PcOctWKU+Bv68XMzdR+7zvwxA==", + "shasum": "3b9af2beb63122598dd4733623c1233e3ac3bc0d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533862299087.tgz", + "fileCount": 57, + "unpackedSize": 607168, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbOGkCRA9TVsSAnZWagAAa+kP/1m5CVxsktxLGHFb1L73\nHxoGMhaC83RCc2+L7LbXG3XZhz9gCYEkqeV8of+2rIzLAY/X8qPSecRNN93s\nl4wckFPt7xz9ZTrp9b14oyZUNAyg6ZLQLP2oYDin/VdKyOf44aZ5JhwDmXET\n5+fLgIoI6EOIozeI2TyE26tSn4b0Qe4ehRXcjybPTkwJ3Z2BJUF/6jLiFBQU\n8HtitFncKPADBTA0HwHLeJ+fg1qyVdtTskpEEUJFnPnhOIX+zWcjkQ63QHBp\nAEYUfs1oOQcYxemn1Vgs9y0JDuIdQELRqpjcu4FRJKuNd0yHyxUJxDcSwrmD\nv0/UFgJWHzWRlaUmSvY9tCAFyhBE/gq+JjtLsNQPtp1ICHNjRudGS/bVeWOZ\nNOeK2wrfSZ/GQyxq2+AskH7wVtZxWTI9GsXgUv/7IFN0YUmjwvpuxuDNvpXd\nL0IAPaWTkR24ygo7NiEwiTj61E41gYzM3TduSQHLAK1BdBvR36n8CsMAEIDc\n06PkdbprtkFC0ksV4bJQ5uvs7BnK0aKarjIOV/arkVN7rukWL86xbu+rEtTd\nIC54/5yLVJeUWEp3dbAkZYkdMaVcgJZi+0mrZBIwfF4PZVab3ZO7x5ZfuPHJ\nDYA21IF+GKiKkkrSfASVUPvYJb7h2ZDSv3FPc2BdUd7uQKKFRh7Sghv4eRSh\nO/HQ\r\n=7X4X\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCc5WcEZkbFkWXMbqFAfgHxtI7SBE5yr/VwpKIhPuV6ZwIhAJH6lthEqiF7MXEhKlSmpYEiZr/KDvlRAWkiiAmv+t4j" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533862299087_1533862308025_0.13503067971473004" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.6.2-next.1533863808662": { + "name": "puppeteer", + "version": "1.6.2-next.1533863808662", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "be7626fa5e8d12aae38e639b8c5b3e525c5384c4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.6.2-next.1533863808662", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-3SYcz2xrSznSc2Fu3zCR3QZ0wDyWoGTj7/b5BmWaCz+MTRDRH1DtPmEdG96PqFUFKL5LoWsdsSjwH5PRceHPDQ==", + "shasum": "f04e81fc1f1ae3209314af5aea3f5b5421843fbf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533863808662.tgz", + "fileCount": 57, + "unpackedSize": 604896, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbOeMCRA9TVsSAnZWagAAsKoP/0lEBz5LJKn85VZo7j2W\nBckj833A2WlHZRyzIpvOFgKdkAsnj8s6wBkH0+C0Vr3vOaOEARRQNzqvg0Mq\nV4P5H1bgX+7esaTrDYc4fKQjK3w+QXjIr28dn0k0NY6Jv+i9YHydAzJvd9oM\nVlcbzIKIQ5ya53iKZY5mjrU/uYRbHAPchHgGkMklFXV9uKVzX1IEgIVw5+QJ\nv0GxWgoGW6DSoB+dSvwFqZFCWRo/4NHze820QME57CiaMWyGCHN9cNt98k66\nKRm6k/2+Z/25rij8p0MQIk4S8H4Ehsvng889IF3/9mSBLYG96O+bjScQ6AQk\nsWS/TRiFf5WnKGepBGCVD87xXHtLFotJQH582vx27twEi9/ldSFpOAi35dAr\ncMoIG1FOCLdXKmfVsdu+y+xLLBzYJOGUtVtlJSO0ALbwhvZOyqRNDetXUo1S\nIQ5gRseBnGuopZyZbuK6/2UQY6TSZW01HFIGJK53VaCTEJWFaDP+c6woeHtF\nS04bEmaFHVjsR4rkCdzCuJKwauzzKUFs4lTosQStc2ngzXvIimQBKzdB/oL1\ndi9HYlIJSaIUKkfz1tXX9ltWvgtxbfDPg0cFX2rQiDvIItiJCpMdmxP2ykpn\nkdN6KEZBUe1XBXjJNrnCy8qMyAbELRwtvFXJeZAgm6VCsddKWIb71o1YUXcS\nOr+X\r\n=NZqj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAq8gjMehGMLgdLr0/64lC3aaiqXGL/DX5NH0MUybAiMAiB7zS8/o6Xete1N8iKDJgu5uV5QQsIrpXOOeLxjuZbNQA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.6.2-next.1533863808662_1533863818822_0.9306867117854936" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1533866199198": { + "name": "puppeteer", + "version": "1.7.0-next.1533866199198", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "66caee4c609eb5115538c76372eb9bce996e08f1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1533866199198", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Ho2jAvJnL6MJX2E2ZesJU0FG7HUlCpQDxKkakO4+z6dNLjAgiEqejUCmYSMtA7NURgG6Kp0+2/ThznWRBkRG5w==", + "shasum": "6fc6cfc186eb052919105041a773c679799c717a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533866199198.tgz", + "fileCount": 57, + "unpackedSize": 604896, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbPDiCRA9TVsSAnZWagAAPBsP/j3GREexrDh5h4Acenob\n9NqowKtxCrkcTuXfzfXpIfT2etw5WdSU0AfcQrEk5/Ez+7hi3o8c8oMx5vbl\nv8XdbvdtMANiB57PNCSrER/cXj+ZdHSYpafc8HXae73mllFaIsIzuVYCh5bm\n5fxHxowdrYp2tRUbsdBPNEal4mZhxy0u0VApUFVwx1+2FhdEdmOdtQuH0Qol\nXbtWfmTf0lcc0Mh8UlQommLUJ+zYB3EQKeGdaT+5y8nAAsLhef8mbMg35BNs\nGOUr4AWgheSuIGyrXOgmCiIlzFNqSZ7JfTnS/IzxozX/16DgNl0t0BDoi0Cz\nWER+CXOORN9a3EZuU1SgHweAkPbKYeqCOYqBQc4d7VqtBLHH8Ol30zR03ssl\npMYSO6EtVg1rTZuY4Qbn0CHk6lVo1XV3P9ZjtbWXA4V3ilbtuggq8XbiNvfW\niVGuWgVCRPF1FfIUNAuFHL6XfWQyBv1c4F+543RpyiHkScWfEtP8s5UFanK6\nifsSPSbOuokklTT/FW0eaGUN+xtvkjPMkcN+HC9mOYZokSdb0qZWG0EQeg6k\nMrFkHrzgVKCXBnMAObr6kU2rcNcdRCaZpAbftm5RhTfn1QfQqJs1PuJ6IdjP\nWPpnPev6zK3N8BKgOTkWaAVqLDHRXJLonbDkb3zrSIZorgp1czVaKN1N1o7E\n21MB\r\n=U3i/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID0M9FX+dt6bFXTEIMTkcZ9StRFJvznAQuJuuIrmtHpSAiEA06p87f6l1Kf01FPC3j6xuOPEm8rfaIiGCP3TClHyaRw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1533866199198_1533866209658_0.06049388003139766" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0": { + "name": "puppeteer", + "version": "1.7.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "66caee4c609eb5115538c76372eb9bce996e08f1", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "10.2.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-f+1DxKHPqce6CXUBz2eVO2WcATeVeQSOPG9GYaGObEZDCiCEUwG+gogjMsrvn7he2wHTqNVb5p6RUrwmr8XFBA==", + "shasum": "edcba2300a50847202c0f19fd15e7a96171ff3bd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0.tgz", + "fileCount": 57, + "unpackedSize": 604877, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbPEBCRA9TVsSAnZWagAAlHsQAIruQZgisUuzpidVa+Qv\nGc3pIB+IH0PTd6786dZ0NWKRgMs2LYn4dOnpix7+2H00E96xHfUSaCQ5i2AI\n8HxQT1cV4YYmXqdKxMjNFUMpQAJBxOyRMT5hWHROc3g8RWik1827GKtZHyPy\nlpGCiYuj4qyOMX6792+GS+zjXQZEaEUxuMXDT/0H32xekdMqHNxgRqpcO6bA\ngmUz+ndq0F1P028DUIUvobxle1jBqylWCcOuACq/5WGw7aLsednWDMcJHtp1\n0WPgAzHLSzocltutziPyXTvkfb1iyXrb/aH61qv78Pw0nUnFfuzEuVcskQsu\nhtgKhZG8bJLSgcO7w6RgZN/+C5lqKnzyh+Cthl0NXKd3apBwqVEg1kpR1Jam\nYte4Nvp+i1uAgGUWh4bRyC31lXg+GFidgtHBG30lGnSmPoo9GjDV7p0s0wRM\n1XIEBauJidy1Bv+60ryyCSpb3o2+ro3krzIYK7Ll79CLSaUazIEcPDpBsXm8\ny9n7j4qjh62iQ3SvDcM8AJNLvBx4P2oOT7L/cKD5Yx6pEUhl3dR2HVGnGAVH\nZvdRmeVpr8qJ0s+6h4tDP5SE1Ptg/ePzweh+iDyPsVC8QBCdfeZpaWgJL5pG\n42fMtW42bEHkGu/uuscYg3iu+zjRuWhToKcjl+DlNK0JRvbdH6UMblP5ONBy\nMDct\r\n=Y+6u\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGmXIqfdWGGZZ4aMrpU1gZJ69+yYLy/HUAyX6kcH7YrkAiAll7fqawwcd7sAH1QrNK2qIljikYyuuO0BFmBho7Ktag==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0_1533866240505_0.2152474635329158" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1533868079660": { + "name": "puppeteer", + "version": "1.7.0-next.1533868079660", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "af361c8ed60ac7710e57a2c795e2c09fa56d5837", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1533868079660", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-mN7sPt6+EHsNRo64elzlxvLUXGeEv0We43n7uqk2xEuO1bkGPEKdeYisaRXh5RQ5EfztobTF98GdxFNmc/tgDw==", + "shasum": "287dae0c91237bfbf53d11ef5aa0a51c2a4330c8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533868079660.tgz", + "fileCount": 57, + "unpackedSize": 604896, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbPg7CRA9TVsSAnZWagAA+goP/iFYVBYaq+jA/8Nb4M83\nKBErQ+wF38bT93hISUef/Ama5Aq6nlDp3Z5cxdrhH9DLnnvCDDhrQ4XePIv9\nIsZr/gNw0PsH2RWPRkye2BRHCINybLSO+/JfpxuQ24T1h60lFKB85lscKwju\noaw45enYyxf3F3HlGic6TbaikKnGSQGn2YGOfcMF0PtxJpogcKT0Xcn/lgnD\neBBU7Pje17ROXmEcJp27ugJgQlRHlBOTvjj+XXRUQC/qLKLz7YO+oxJkVzi/\nVQsCvCGMD5dpvtAADiHAEx1cU25Uapj49GwLBFKreA8tL/iwV6DFqKQdn3J3\nyIWbSOJXZ9PdiHlw+E4fhK/Bhz3QvttY0WZfB4H1Q+4VDCameJdV0u8ktgvy\nSCl7lXEPQLoB6RdoPpG1src0A2WCcb8XSM/eQbmouTXsP6DZ2j6H1g8NCAJH\n+oDa98DFjbmX7VEGgBg39hBFegfSQKCu5srROp6TdVZ65WJpKX584t6soEPf\nUqjnZ5SMX1XjkRY5/oqcLQE6B5LWREWlrMynufFfOdAKhHlWf3MTAa2tCbn+\nIIvLD3GsSFZNp68JomnwyB4CBV/c+MtGevF3NDr4enGtkBrD8tnS03kJdtHp\nTUgla82YpnOd3iqFmaSiaaqK60kinsg0GXs6URYhFGyZ/bHjm1sctn2hXfcf\ny8Fn\r\n=+pQm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHaaaqlUnGEub6kES8G4WAM6oslXqzFc9L9phIw2nZGqAiEAhjmWdCXMiy4Pvbwaqruo1APXHZh8LBf7rGcv2+sP0UE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1533868079660_1533868091363_0.7687132171710076" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1533868439500": { + "name": "puppeteer", + "version": "1.7.0-next.1533868439500", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "3ae85e4649d4406a02882c543dc44dcf462a921f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1533868439500", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-owm1hK3SdxnslYqQ27BC60q7pBIdR/8LI2pv8lP+oeAvf8KtD8OLEUGYVaIJHk8td+xQq3w5+vtlVDa3ItYn/w==", + "shasum": "d3544a0d72440507902f25704f04a0c09eb7dc01", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533868439500.tgz", + "fileCount": 57, + "unpackedSize": 605280, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbPmiCRA9TVsSAnZWagAAesEP/2AWpR4D2FleZ/um6bI8\nXq/6RLfNy13mgkJYQnZZgdKlh4u4PqSV4KLJm6iMfyMFqIBa19AfVcSFCj9a\nES8JzMzYMH5KcMcMD8G/Fr+tJBbYE4zpdM3g6G4XZENrVKGIBx5UZLptA85E\n+7HOjVa4WxV+hUPGuIZoaWjBjFBnUrw/HP9auSr/cSph06q2ZKW3VquNBFFA\nAzDGX1J+cX1Zo2mlpHULwmfsiayxPJ+fkNtqKTsgZMKdrghO49yqtOrZ9+cj\n1U+VtfHWVDYaGpvBxhB/JqVHWjOSaY1sA6u3TqHXkgU/4QrIAOMvUcRBGEkW\ntdu2LRlGkQUtG1buLnzPdg6u7l5GiAwl3caqqDgpkeZXaOe0Iziu7v+nbzhU\ns8o9JpD2hGZ9E0gd9hnbZoWyL3GUFjKLJHQDpcoSCZPrRtnmmTlYQW3VtS4t\n7XHszcOpfJVDHSRREV71aYlhnsy+i4oFVo7dM2UGM2MaohkMwf78koLuVoam\nK7LVCDcaIA0ns3LNU2D14Jz5TQJU1KTZsQpaFxkoZ8zXZit6KauDaifB7o33\nVhvZra4dzax1+nxx51ZG3GJGgUr4tpC5VPU0z2ZvQrV/q5NLhBMy1g1qjuy4\nKofh/WOlwihySG0gePLFlCG38ZVMhea0dJWTtmuYDIzRW/3FKmxXznO6IBqx\nxEBe\r\n=DJQ4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGK5X1ESMXCtgFIUtgxzFaMnQ8xFg7uVVfkEuEas0PGjAiB3+MpPwAqsF6uFy3ZjdLxFv2LSxMu3fYN6MW4gmRLDsw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1533868439500_1533868449716_0.6763375270631311" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1533890337095": { + "name": "puppeteer", + "version": "1.7.0-next.1533890337095", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "579032" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "b8e0d626f37c6c5e676b144d2b39ee29259d0d8a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1533890337095", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/YC5T5w3XpiCIRde+MRwzWmnAvUGKo6HjvBTHY7Kdjn1ilWf0+k61x9zCB0XWHOa/As1WMA1i0nEdEkGE1Asnw==", + "shasum": "2e96102423a10c1b4e725b4c2b0d4c1258f33493", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533890337095.tgz", + "fileCount": 57, + "unpackedSize": 605399, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbU8sCRA9TVsSAnZWagAA4LoP+wSiYbVJAU4uUeBwUIOz\nOjsEc0V8D0dPvEGz1m/h0X0Uj9Y+50RZa/EEVMS2DNknY5UfDzKWd03Xmyx/\n47yJ8tMVPvO1jwC3gYJYajYvbSaXlXQci7rLLKoxdYFzEl8JUK9tuAstxBGg\nqf2+wh/Dqu7EQ7EETRjKpn5bPEFf8RYogHuHozRGbHWyypou8vCzFsIRkEPo\n/hi8zGBmAzsermHClityd+M6hmLmo6t6+l107cShAidhMk3E4Z5zlcPL5JGq\nev+bYUDwb7xrURhZdS+id1QenXA8HVICwyhnm31pBMwXuzSiyMOCTgNg5Jal\nYzBiVQ6kLaD+tVe7z9i+jNq6+qwLuGU/jeTIZqA6skfRbTKFKhvj6UhbYHge\n8y+K/xa+IIrsFGfTTDWwaao6WKezOUzTfI4XXk3fqP0hAINZfoXgTFUEUwlA\nUdJo9uiNbYTn+KIZWczqRhc0/ZGVtseFBIk84rfTJhi7L+g3xgnJMZ0OI7Sa\nzgtelbSLlT5OU29NBkVQy+ylzCRk5cqYFKWkbLDjyUSVxs+4YIL6B2bxFVwf\n8QBCPOsOvtdtC5tfs1fV4VA3cSeyYoIhFBJYBQ7/lI8oqeQp6cz5RhFcqmeG\nRkBz8h+5TYE88WRjtg2JM6pUaML53Dh7/2OGUDyhKNDGxhcafwSyKX+rV/gE\nNj0k\r\n=J8wR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICgDJnePUdcC4HEdCm9L7sJL62tbs/CxdaI72n61eI7EAiEAwuNVbdr2LWNPP9TlcYZx1bP1Ku89dH0CVPbEIsN/wlQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1533890337095_1533890347452_0.5125857278205961" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1534384626788": { + "name": "puppeteer", + "version": "1.7.0-next.1534384626788", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "ce783274efd22d8b2634a6911c5dd5481f9f1455", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1534384626788", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-S/EoACQ8qXeBKs/JWT6wLsLq7eGgYkIXDOd/YI5l/PZeACHa57Qh2+H7LwzjtQU6OzZWtjQ+lK7g/AdVJjs+Mg==", + "shasum": "6a7be18bc22a42b048ccefb83f760fe1346d50cc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534384626788.tgz", + "fileCount": 57, + "unpackedSize": 605399, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdNn/CRA9TVsSAnZWagAA88QP/irNj2ofjmzxcz6UKBXM\nT1eHMYcXt3VtfYreKvIgzabJMTBhnm3/Q0b3sveJFAS2Zb5fzGONU01F/CAE\nb/v/asDsoLAFNYMcqoZIQfXp10OcTVZxJjy+DZJn0ZyANuGlAeTNgpqDT37a\ntgdAdmrcf6QUdwRWOn9aHdqZAhVK8opgwzEbNAtAUcgR7nJwSHDhmgg8bTng\nuJgMExPBt/odsCd5qZKJIVOBehcxgFmfvjo6b4nzPvfWDUVmSHdv57uIrwYf\nBSviFIak1rIaoEfPhiDADHuWgFeAUWUdu6KrBXv6lV3w3wItLRSt6iafGQYS\nNlK929qLA/4cINgHhW7Hmxo1Hm2NLKyxhfxb2CKrmOnmdaITyDefpvcC6qTb\naJBqDfLAAh3r7C3QDTLN3Pv2FsNSQ9LRpYTP7O8qyB652t41gLu1JvVv1kKZ\n1tj9q90SOXma0ryTkInOl0BYAC3wKCtiLrbEbzdI0YPw8M32fL/Yj0pCBs7H\nQAL+mP68w/AFyqJt9zhFd7xEdWokTe4BIZlDrjjZ/nQTOB4sEZv+a1aT9/WC\nIFuMpH3J2QHugRjDGoPmBCUflRL0PHX9I+Lz1zpTphbSJpu/9ZJVjpvWccLZ\nRXyUXggQI3DNaScp1k6clwMoovJ52atUxwjESm049FPFAC/MsDGS+4nsnyXu\ni5W6\r\n=YdHp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC7dOgVHWeYNS9cWT7h5KimVwycaL8vNdTTgis3CcDsvwIhAOpuDe35icSPvJwx9k+TYnSccw4Uc3WOE+hubsHj7UQe" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1534384626788_1534384638642_0.8125272499986824" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1534456245810": { + "name": "puppeteer", + "version": "1.7.0-next.1534456245810", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "395c50624cdd82efa5516201d587b7e578944acf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1534456245810", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/WmStuvDGzNDTDRYHCVCrUYPmKLZkJwBln+Be0RIzmK7dE6HflVvsLkOMnHCQi6tB//gb5hJEFWaGgPnAXNGZw==", + "shasum": "d49e3af7560b955c73cf7bbfded0ffbbccb436c4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534456245810.tgz", + "fileCount": 57, + "unpackedSize": 605399, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdfHECRA9TVsSAnZWagAAfasP/1PzrhGlbWqP0lAC4O9Q\nUwyWIT5tdF+gcD2swZw0Yc4u3nPI/+88XKMdKvp5cgjfjZ9AYLjyJdwfCdbZ\nSJB54nPHxev1oj2lduTUltkBzZJF2XM0u+rgbXqnOUpK4+mCNNm1SQReOGoB\ndHSku3bgZXudlaKgxRAACysmc3ZxTxpIY4xpXLHsQ/YvkZH4A2B/5WsCX0BK\nVbmbVDu/4FngCxvscH/20/uXDyB4olIe8dZFIRDYQySvXknlpqLEWcYpLar1\nxRW9jkIIxIzUhbtx+F66LIRLePVnS7Shl0m1MuRF39OS6LLNb3Bmxv/eu92N\nnhT4WmR9sNAx9367fh6sc8yKSWq+XYC+h752mr5UgNabH7GhXgCY24wvBfWM\nYpAP9nYbTPXKv35/ckqMMZAINBaMz/kYiqLrEze0SS8KDpvLWTK35HEkF2XO\nrMIxaFUPx2KHvSdGTApAPdtqdR1V27sXjLHZB/FexYVqmKyxRMuctaV5OK3z\nnTFVzQqdOeQsSBv/3BycSE+8NfbZU1hJmFzkjz4nhpHVCfUbBKl02duw/MZc\njiSVA4tldImlRByT5jpTTjdjwvhotorIv6++XCOOSrLkFG6vRmWzPHLAC49D\nKp4Ban9iZ9vLQVJNKe/uyjinzkE9CplIcAyOWQVVILawJr0lmEst6qTczwI5\nY8kb\r\n=r9ZN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFEiw0QDsTvhqW2mLZflF8NFUeCwV/GOkoz2zTlwJ6nkAiEA2G2E+Lgl9DCyd44ImZW6NwwwEXlTAQlQoliyE1Vw1U4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1534456245810_1534456259678_0.4742471413148601" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1534456313739": { + "name": "puppeteer", + "version": "1.7.0-next.1534456313739", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "73c43bebd8882cd64098a23e874a062e4de916bc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1534456313739", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-z36xq93qPDAmODF7SaGR9OSHUfjKKqijTNnBPg8ldRKn8/59BxdO6HYhIUvb99SuWHrPj1Fgr6SpqMHRiM8Q4w==", + "shasum": "04d12dc680c5a70ad1fd6eaafb03ddb0ddf61f85", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534456313739.tgz", + "fileCount": 57, + "unpackedSize": 605399, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdfIFCRA9TVsSAnZWagAAH9AP/2MkPEPZSrzi3kJ7fHQL\nDzvfmq74gVrj1wsuunV1xQR6AnaKxdDgXITHZDueRPwcEEx2d2INRwJ7vnMj\nHTz0RY6AN+37MIU0Ri6IqmZF1K0nidESZhr4Z0OjHct8RPxwQ9awatwLo2rj\nXrs/ISh/jdp6LLLzShGSIncNm+faa18TR8ko3QGXBXFhmPL51WcvE0+LJp/l\nQ91EnswVoJQuFLhuS0EviqoFZsdh6eivtGAgISedb18StoFWDwzfCg1odkcw\netykTFftw/j7HC2xrWhkZ9fo3VNHSaZX9/N8eTU+WpLH/7GJz8G4ihlTbNtA\nNzsjrOhfE8Gaq+/s3X3xLGfR/aRTG3E6MhtHtKJ+ocmqWykAdRK/MQGJyzAH\nW/FbgAKQUg92adw53Pa8HjV6AnIx89eKxozCnGXggcJ++ZpnHBs+Im+JgQ8F\nTzVJXwkJBxWEZV6Eb0Sjvdsevp/+dsYeVwDd5pZ4aqn5fFdeTQpf1nI9eiyG\nSrKvBZgCNwYj59d71TYsMAq6aU/JfxmBDgK880QdMjF3m2PvLlB+T8M68uBe\nOPC66qD2boeuE3yioP7LTJNHE2i2uVlCQX44DU+T0x3QsvPJ7UOEuRYTYQo2\nm/m+Fc1L9R13pvcTKcHc7KpU/u3PtuJeXsJDguDu9OmZlZDFTABKr+hDFyWE\nF/rU\r\n=fIV6\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHqstQwmdK2e8ACWhSSN53FNGuYrHJcXWckkblsULD7hAiA7LltJWXlWd58SArplV/QtDogQGLlOfS7soGBmiY5/LQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1534456313739_1534456324697_0.6923250649066366" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1534461562178": { + "name": "puppeteer", + "version": "1.7.0-next.1534461562178", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "d6eb3b4d5257cc620c417b375fb61c3230b178a6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1534461562178", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-qR78zJws9Q8wi3GsbCax+7x8aWlBO72LY0+PgZTOe3FPBa6qv5nxiXVOXJKTBTks5ORioM2GTKKhm4r1ELY5Mg==", + "shasum": "d3af2ec5d4420181d85ceb541be1deb5e5ddb975", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534461562178.tgz", + "fileCount": 55, + "unpackedSize": 604023, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdgaGCRA9TVsSAnZWagAAc0EP/0vz4XuNirqM/CsiS5Zf\nGldt0MGqG7cxKB9U9OFzc83cs+EmiAQojGEVswOHhYGR+D8pRvHJ/y1mkCnP\nareXFr5SH5igQN0AkIVnzmOcFM1tPt9pTR9u4QBFjFPs1sdTf8jRV1B/SlHu\nxtIeKrlkpEvMtGepCqhajgpC/TSMGSLtmnl8Y2tr/ZZ4BsxmYR87NY2hLOpz\nyvwniXU/adzCN892GoNqVGtOAFU4A+UOfhXkh4kAUHOmDVEsTbwCFm3zZnQL\nVXx5Eh9JYugvVx5EoZKT57OUKYDKRIJ8X0ihFNvD/uvBNchyIv8tyPI5+afF\nMihCKbeDXTsvJJ59d0U4jThjy4dYNTi1xsx5OyLcojgj/0SnId7Bag4OFkMr\n1jRdfkjAs+i9sW3ijGeYrfHQDdtf9nNInX+f+CLU6e3hOnaTIXBe3Wn7R6/s\nDIEzMvIEkcnFupIlZYhN59UhwtS1mMp8NPcnHVChl9K70DPYF2z0X/RAweIp\nobMA2zyf9b8wF8kO6PLesf3yeBNCGLQA+BX6OaaYwiuA9v3OeTJ69Tdt6MfD\njojabSl0dr+4a4yJHKt8dlIcgSIPTvAuxEfWiQlV10VvCSvm8bq1QXPW30/6\n6bOiVpLj9+Q7ER8uCsnSLwO+o5dostldV6KhM+EiV8LkKz1WjYwwkKkrNWSs\nM5iq\r\n=FSjX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDr4iha7rkc4UtRZp8rUnaMYwljIQ3202cwd3Yvw56qvgIgFzAFSOXmyvO98DlVVogw/4Ao3r91Iy6aeaE0UlSmfCw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1534461562178_1534461573919_0.7313323056121959" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1534528433343": { + "name": "puppeteer", + "version": "1.7.0-next.1534528433343", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "ce64ae22f45babb900632de54d8122d49e652587", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1534528433343", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-SGrzMQLORxatwwLXN4g4FK3qS8/etJzZEeXoB0tucpS5J1MkQaXfxNnEHurHcB7KXLMSGapPhkXdpzdSL/yNWA==", + "shasum": "495cf1476e7f5f8577c8a888b8435a146d04cbd4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534528433343.tgz", + "fileCount": 55, + "unpackedSize": 604023, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdwu9CRA9TVsSAnZWagAAG5sP/0nBdgqJT1aJP7alVH3h\n4PPZZHk0d51N3Fsc0Ngv72BBH6ghyfd3mEGYeR5BRHm73+AM1ENmnZBEL/rE\nN2HutR8LPY7QHLCCdfLOtPuxlPUpqluASl5zT3wYkj6VKpwGLO8XGfz0DVHC\n/yOEWqnzhYqBLgr9S8sMpCvP1JSWCmb/tQ7r71CG9isOzlhugO3QeO4ekuHh\nzd7JiPqw5gVzMoKwfuZe5YSmbIijZagiqD5kb+uhEr+p4ZcAqWvGi+fTywVp\n0bcnLKAUQqHasuNQXV9kw+7t77r3f0xDDwm4LzRJ97cqKEUQ2prM5fPO/9/Y\nFLh3bXA2NsIxQIiQZn/jRQla/2nUjh2NgCtznGvM9Tkgm4eE6TBoZT863w0b\nxS5fCmJ6nS/dlqvgcfdGs1k3CsjQkZ8funiDRtOuv6EZGgAYtzjnFlB07hrQ\nIgv59PAIKUFZZZrJ0u5RKUVflw/eBe8fSLJHOUQlyHQm8IwGEtyLyxV0Cz4D\nXB2TTTpzHcAsekooRfvFRB35Sz638Fs9oVbLLmpqTtMo7zzubp+QGyULGRGi\n7YYuZlz9TWaGnAldE/XvdywfKFrdOntG6buGOdkrswzS+zmhplr5+bSSP+fU\nbY512R2CS4PS8yivKdUf06lYB9ZZn4V6rtC1E+ptt2yjYATAp3aVfOsI7VEl\nmN6y\r\n=Z0Yc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDtg5kL7lfPzSHCRzpyXvN9iYabJEwYfWAE6c+jI2hYBQIgS8wRaoR9H1/FSZXyq+ocG0coeKDuA9hDUbB8p/JOEWE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1534528433343_1534528444871_0.06325536223446626" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1534528770278": { + "name": "puppeteer", + "version": "1.7.0-next.1534528770278", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "d1105afaf8fed635c593bf2667b81e5b0bac1fcd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1534528770278", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-uhY0fdBRmSFAWSO50AItg0fZbnDJEUS5w3qfbtVbDUUwYIgHdfKmnc0qDVIu9bFZ9G7AWvnrcECl9y+5Pd2P5A==", + "shasum": "3bd20e7e496cad825cccf11000f6166f1813b09b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534528770278.tgz", + "fileCount": 55, + "unpackedSize": 604023, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdw0OCRA9TVsSAnZWagAAKBAP/i9GFd8YE/VMHKx+dwOc\np2Eu8zOsfguCKnlQzl3FbxtGGpal6KZte9RGFFrDxOZRrBkjQhJk2kgVzaYh\nL/a6uMYiOa96mTW7uez8wjvLcGnukwWKaWQFsPveu5B+6KO7jLgfMdNlYZZC\nImJmXtVTP4RH5zNMvD7Grv55e3jR5XMp7BPsySnwYFjRsIdIgeHaiJzPtrQx\nznuWjv0Gmt5LduQOb1iCLQ9Afv6ImFDXKkEF7fi9unvwaNzW5hYKq1M47fN4\nbhucy//b4ttibaJ7t6TLcLPECcvVuExE67/w+WHlDAMTkA+JP3WJ3BOBV0pn\nKvY6OkeZASMttm6BuMIy/kgQLyZsAZgJ5zUmCRq3ZDr127dhb+bm6VCMQ0cz\n5ENGOWmt11NhJ0mMNW3zbuItOkA3Yqs6ANlUL0RhuQSCZoEiQpuaA/O4Yp0d\ntV/fqroEbxIhjA4gfM4pMo0GoM1VW3wFiZkaUK9e917RxBm1/MQebtIov/l5\n5jqqG6pJoT46VI5MzUpVMXqXSfgeXpdM8LFVWQJYH+A/nDirjwh4e6VkEbYr\n4lQ8ltoqlbtE0T0RChC8WQnlcRFvG3bWH6r1mSwuO66H+mkGOHLADBtythlT\nzdkJSYw3yTxfeiYsE8SuYt7e3FUHiuSRX6ywCB+UhiYjbUOqDihpW4yvgZdb\nkcBI\r\n=QOJ3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDlT/TerW7y6O/D1TBjEOSH5XmnQx1ZC63P7vVtNRkVRQIhAPICtTz4kogGUrrCPDAXAOBS4O8qBHyhWqsnqRsrR9Yp" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1534528770278_1534528781430_0.1375604976285949" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1535149239491": { + "name": "puppeteer", + "version": "1.7.0-next.1535149239491", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "3d7ae2a2591a55e4f94c67d62a22f7103698cba5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1535149239491", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-3yjsXotMVNp4vIzvJ/QbrnLuar3Jy7cqddltEeK9ozKbSjgoT/Bg3DbCrdm5kwrTsiOZYwSuQE7LTfLTzn1GAA==", + "shasum": "f96f92055befacf57181fc8184518cbd7f7c78ed", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535149239491.tgz", + "fileCount": 55, + "unpackedSize": 604575, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgITCCRA9TVsSAnZWagAAlXgP/A5NEKOK5kkycUKML+Sz\n3e8sockbVmpUwiQwKv9JuxSPmc3lPE+Qmga1ANbl2j/YBavRBKl+ob5U8jPO\nUagomm+0XkD6Hr5R220adz6m/xhgnQvBq2SnV/OXK3n/5nu0oW8zTmHY81xV\nK7cW4xXDXlYngYUvmf7/USknx3HpscruHeLmueuqVWlD6THjdXaY/R7wiaVn\nppSETX4p+N1UZ7V9PNLVqTSxSVK2SX4Rtuff8LQCk6lDZmKY3xTT8lPrENy2\nQv3gYX9FxvMZWWhpVlenFcxhxgahHo3Xeg7WWqtJS30fd5GhKgFThouHZZHD\nlosScWCpC2RAWmI/CWstJKHyn8CAZOkj7k/Bb430zgS64uwxWUE8c+594I8Q\n/F9J1B2+nIGf77BzjKR42L5HxzAgwPLX38X7i7T07viSjJYVG72hxU8epVz7\nCgbMZaw9Mh7tqKLFcsJm81+fA/psBQ7+lxZ/NSbKPIvqG6SPAkoDpTIWkYVo\nGpiygp0YIECnMQxWpoY8VIN9KS8RX2DORg4ceKWCL3hC9jPHqX43wPNp26xD\ndWqAHoZ2NqboeGYM7OMHoEsbLRx2OST5fUck1tdhdegMqXtkwBnRJHfRUe5Q\npB5dlWLunZShzD5UurdOL6okMmPP8urRvhNffSYR0+G8v/JBDCLOU+KuHrmm\nfiNJ\r\n=ZALN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCIBcwcj4v9dhAYhNQ6PLyYkxMonuV8t0nkJKb6LeQSG4ZAh9TWUrY+M0shiVLjXHN26l+cAaSDmRbi0+IvniMwyIB" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1535149239491_1535149250187_0.16659192384212784" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1535561219970": { + "name": "puppeteer", + "version": "1.7.0-next.1535561219970", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "583214" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "bfed64fbf67d8e38a1e7e3b936c9182ae6d2d3ca", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1535561219970", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Wmtq31TO7vcsvpXiw/VEZe+ujnkBmqk67ciaCznh7kOoDtXhTvSzBSxhWYgfBnXChNucfBc9aX6rBDtjWG5r2g==", + "shasum": "3648ce6590286bc86451221523cd58fe72e160ea", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535561219970.tgz", + "fileCount": 55, + "unpackedSize": 604575, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhs4RCRA9TVsSAnZWagAAcbUP/2jg1gSmJT2NGz4fDGK7\nAazBLlnQ20KfaSvXRLaNGdtmPWT7JW7pS+tquwsVyhWVA7Acho48kVbA5Vya\nS5agKiVJGugKo6w4Pbw1P2SXTdA4lb0MNKxwcjqkSS9w0V6MXppgJX4+pkui\nT+FxGlGNTkgYD5bI94+haIdvk3/Mdw7ki25jNQ31t7SdC1fWJjgsw7ugnEsm\nhfGdv/tArC60C980Ts65T+rqDWRfdYt78uXQi+CQPd2mBOqZG30rClCaG9X2\nnh6OU+OhAQ0CX0HerQiqZLoEPqUC0uimhP7kv0+g+bN8tzDGGBeTHUecyYSu\ndZqMkOBTFdqvpr3zt3zThN4sd69SLdGQZvqJNN2tjbI0lSorSchh1rF2IEsc\n1xRXnNHu9uSBRsnXlXGuESWdTc0MmSRL3OOCWCiiTygj0G5wNFUaiYJFYJOY\nktIf2iQjWMQjXwzLoc7Rk6b5vwqhkBYnGQpzVwYYaiesuzU1T9VHxxJU4YwG\njcgMK36p9NhmX+udhftB92XE29tINEc83MaCJDWRVufL35qrvK1nS/A6Nrc6\npk+1Xy2lKbEnPc/rjMbR8B9MF7GYt20jnCkIC1r1EHa3G+tvKQ9q97lwhaT0\nbfdu14EE/MCJCPy55w0u8l78tpDfApV4RAF0Q42gwSgD4DRseRg8aApKohCr\n+oZL\r\n=LM7N\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB+H5T02jOtQt9dSJiyVmlXMw3FxJJuzj8j/v/IZD2d4AiEAmBNthKmYxQh6dY0zd4ded2FNdeK4AdiZ51v+500oSI4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1535561219970_1535561232244_0.3367344598089732" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1535587532424": { + "name": "puppeteer", + "version": "1.7.0-next.1535587532424", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "587164" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "df459ba6cd76c2bc28139a1d5de7037a71f41161", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1535587532424", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-rPAVRM+F6yHNEabv6r2Xlx7SSPDbZnWdWCtgbZAbu9dTZt/LUQQCCFbWfL01FXQG6bxKuCBQS5AxTgPDviCjmw==", + "shasum": "e3a40a0efb5b043c91db266656bcb914c0552676", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535587532424.tgz", + "fileCount": 55, + "unpackedSize": 604575, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhzTXCRA9TVsSAnZWagAABvcP/0xYj/Cr6lU6H0Aqpcm6\nA7T+I4kJSbSaP1rnTy3k5z1Cm73QuG3UXZjvRQ+tqM0dxvT506SOJboBeG4E\nnSaQgjgRmiqD/Ob+Kcta5JkMvlfM5O0zaUEWx36iNMfHuX+TSBLXnNkrXVZP\nukoV1Z5G/i5iDTPc8WrZa1JHI/alug9V4zDHjLUWNsqj+45qKtJ3LcO9M9Xj\nHmtCtC42fqf6QWk7WVWIUdY/475oCQwjHNyficXBwqlze3ncwK8vx4uU/vjT\nDa28ZuqsUpQm7xFk7YMfFyStC4XO7AjBVoV7unjgT531yw1UPFebNczeVx/p\ngJwroYT0BzTs7PwPEHuck08USiqlPBjfv5FUhboYZ50CZ7PRQp+6Pm77Ei2G\nbO2vUoXy2C86Eoe9v3dEsAf0spkllXOFwAcEVaavajRGekJB/Fs9ZWYdDukk\nexpMoji+BgmETHb5dtMn4Fx+3kMKDzgqQvS4iqRNTrK8/k/zh+LcqVk/Cfg9\ncu1di7+uh8bwJ8Epmxcim+QscVlJDz4By47kCOMsD1oJGQk/1Vncq1Wkb25T\nE9WrVQtHcqNHgEuOo+YLuVmP4AZJVTzosehe6qehHmTnL2/gowgHtpWPMjtz\nEL17JrNIWSL2uKq3WbZSELIc3PjG8i36pzZJkXzpVAobfY04/WoPrU141gmI\nm9fZ\r\n=R109\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC3J+h4m6WPKyQ2rN7g+L4utrHyqGwW+OhvOenP+ieULwIhANhl5o2imhVoLFolAdXN/ZbD2yf7Wgs63ZUygQnWC6YD" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1535587532424_1535587542682_0.12610262650215476" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1535668689898": { + "name": "puppeteer", + "version": "1.7.0-next.1535668689898", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "587164" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "50d6c2d3c620ad733d959f1c9b199ef932f4bc96", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1535668689898", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-nCP5tyeBmf15qlnDnvS7VUTts1gAY3ve0IG/X3gOlmbGFqWJUjAOgKoSA/tadKL77Vxvzl7Inf8Ne7vyMTvzmg==", + "shasum": "b6ac71a3bc05a4f1a72ff9a2bfd9e8be960edb3e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535668689898.tgz", + "fileCount": 55, + "unpackedSize": 609057, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiHHcCRA9TVsSAnZWagAAmeEP/01UeA1mJhfYGxKrFLdV\nyNKkoyMxNKIjvK5DrYX7YKqfw0j7dhwOxx3MWWB6gRsYXetiCGGzr6dOm+PP\n0nDLVctkcT5HyTSmNFlGt02ziIC1LUUSdfkD53C+yjOY/KrsK6dP13s+up0l\nNZjvTRvSJUPZuweh8PciNcVZBrNYjvggBJ1SEbp6hmWNUguqICPxxt49e2GI\n07VpTTglqI8+6lFWP88LGZBa8Iws0BhmcMa5w9djSpZkDpftepNZP1hVSrwq\nQmGp7kNO5PJFw9ONsrF//ITLN4lhC58QuGamB4ctL2NYKEx7k6BgKRxWVmTM\n2Dd71BepV66FOspQTiMU3CCkcYdRb44DUOvix1S+Yn6aYYYmwIq9a+tzLYyI\n9S9jCGQSJokpKXxgL0DEDTxkWsjf33tQVYRtQNjStLVsL2xypQdEzRZoEch6\n3EvZaM9Q6RXv2D5ujsG1u2+FicglphyPQ85fg9VajKDfvWF8MlrUwzQzcyXE\n3/Lj0azV6tHD2fu2Wnx2o6Ha/eUlH/W+iYOC3lgaaidSW/+Rw4XiCC0f0TGw\n3Hn/D/6k8rfNX6Lz+bLVbmS5RHasnnvquYkPJQAqDTKUXLi4Egv2LJLh9DoW\nrOyEycmUlY+9IlVjLZ5DbOg/pfTXZzcNlGs3TilJeHkbO/RoLpSiES1XFDDz\nDA5G\r\n=Lzqr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEaGu4HnSe9qOnhy04myWEXjGd/rzp67RdFCC8i+qfzfAiEAtIBMrPuQvyEdHRAJn1dkuZHy9qI20R7uAW7inxaf25g=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1535668689898_1535668699280_0.29391055989784687" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1535713393176": { + "name": "puppeteer", + "version": "1.7.0-next.1535713393176", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "587164" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "10009973fb1364dac8b0f7cea43512c088fb7f64", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1535713393176", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-jaKFr2CVElbnqM99PD8SsCeBRerZDBzn9CNwpq/HSUWCFREupzRKn92E29QyO+wFc6qHU6DW1hsdNDBf6ZQteQ==", + "shasum": "c928aaaf1c6c249c0ba671b5af6bccafa65dec38", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535713393176.tgz", + "fileCount": 55, + "unpackedSize": 609057, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiSB8CRA9TVsSAnZWagAApvkP/1DM+SVzw6FLXgx3Q4k9\nSj/d8lRJaJq1bRFMRGSctmI13BtSTxI6RZKm7/6kwYNFtHk0Zh7SKBVuBCek\n5pLc6ejQY2bYiF1xCkcObFDk+ob9/vb6dk6EMEUz9VIV1ABvGQcOswcKBEq+\n0G/K4Uev1ssQG0KjEschTpZLuCd1OXqpgXFEY0VP5CfcuviG+qlGdrAakgvg\nREIQUzO4CcNM0Wi2rPFHwaYZJg3UIghiPmgeObLnY/3dGeokkHH4VcP9oPZm\n9WLp0wDsdRkoRUPMOwDtujbSoeX5hf5hdWiL08kV4Ngk3tlaOuQoJeaB2cbq\nuil5otgf51xMhbxQcsDls1liUGwLUxiJdjQQhsSB0CCHJizTG3FC9mVidFdH\n6agOx6Yh1+XxCkK99xFmBM+OxaDvmwoJcMV5Y7Ymbv82PwweQKu424e7JCD8\nl8Vs4wK4k0tvn3ovyfKBwzX0LfB19IKEAAMU5WAYn2M4lE9/qee6Wmk/1aY1\nxlypp+5XQuLxVsLf7QIaX+G3UD8QepES8cMXkyxbPuRqQNF3BNWPzK3d8Dn4\nv22rlak/hIlaw8cuDtdPzSKFhb3yVVdHEJLnzQI0uELzal7YGfsjjUJYqEJw\nJb1GxdZSgpLgJqIt+LP6ZXzRNbw5TFlcm2CafnKONzr3FAsOcJhcfMaHirvc\n0S6g\r\n=HcqT\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD2y1w+wXhDse3mTxxaq/oSlwXAeGwb6FzcVuqmiozyOwIgZk9XPcH3/slZVor0e+4O9rOsyUprqP3XmTYIozjvWLU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1535713393176_1535713403957_0.4807898303441487" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1535735247500": { + "name": "puppeteer", + "version": "1.7.0-next.1535735247500", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "587164" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "17029281a92446fcab2357cc52dcdfa7239aa4f5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1535735247500", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-tBIlDuhYSa1ldEK4baZ9nj18i7dJMAI0UNrJYFe6Fz3rT0uuPsFgD3xMZFFsNNY+Sttb2aJNlqFo4+RslDeAnw==", + "shasum": "2844e3218c2ea15fad9386d2d85b376feef7750a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535735247500.tgz", + "fileCount": 55, + "unpackedSize": 611073, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiXXbCRA9TVsSAnZWagAAC2MQAJxV4shBoS5Ehx6uHjea\nCEk8Y3yV0YGhnVE0sV5Bnrdeonw0jNxgAv3q+Bfu283PpkHxx5+mt2/Vb2yI\nICA0UeLqyLMe3xc/aplEkH+IRpaat/xuBVD+apcWPLLodC5Kc6r7qYt/ko6j\nNNxwe/lkB6NGGGH5mFIyBeYV02SqpqSFhMw8Ru8d9eUME+owhyENAG8toLNF\ncWmHvFldZ6i8s9XGzed2SdUPB7HFKWjQLrdzKHCVyFxjr9EuwZzzQQJ2tIr8\ng7HVmbH0e+xK5DxqOACy/KRvTH9/VswOPhLF2fI3whQV343SfB+fZGVGfWx2\nVJZ69GEPUgc1kgY1ENpQlWqgoIeuEV5BltYJLrU1cqw2k28xeMH7vZo5CF2v\n2vEt/mxfuzN4uCG2SKLkD9VlUIU/yO87FcFZA6YTaapqX8lH/9gaL+097L0i\nhYNsSc89lYM5LYIcwLpg2f4hf+o8qzaZ0kWZga85bsVycd0C9oku5D3K0wrM\nyTZl4xXjO0kLT7yWBn9SYQ+8x7kvJ7/Xt7JopQ2mMGdMAm1cn8+fyH508KhS\nR9UnX3Iu0eLF92Mccsad4aP1Az8LpAZQuFfChArgwYFMQMyx/PW0jTXSMTaL\nW2MUDeKyQ0pMIQ2JgvPHM+YQ6tQgdteHo/cr2wOW2xJehHvfkZtU5dk/L4K8\nWxU4\r\n=nMJk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHxSxiNtPq4O2lnLwdnGwKANXmSleHaCCFS8jXlZeM0mAiAnUXTZSRNuZtiw3Pnjc0DeDSDNkfy2Ra1DRfjnQTtHaw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1535735247500_1535735258230_0.5625219381875102" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536001811008": { + "name": "puppeteer", + "version": "1.7.0-next.1536001811008", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "587164" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "464f3b4ca28563d799f40a3c647e3567b4f1cd68", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536001811008", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ToMjdBEZa9zuO5kxgimiMG0UXKJtyxSHw3PVeEsug7b9R931jAimMGBH3JeuEBNJajugNJWtyGEG0ZqbKHXdIw==", + "shasum": "762c2f961cb34f68df925e06dd22522180b22135", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536001811008.tgz", + "fileCount": 55, + "unpackedSize": 611185, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjYcdCRA9TVsSAnZWagAAZ3YP/iJFogYRLxYypRVhNAt6\n6yrAPOfGefj3KjsfbAPD2mk19pLQbhl95su2dDtgzNdUlPzvDwEEGVHm8oS7\nRBlYGRGr5jV2nooRpJL0ivRJZswEGPMNkibXFKGwjcKMgRBZAsBY8NGl/4i8\nCLxe6QlCSjwP6+Aoe5540NwHLqInadreOKDug4rQeFsNpyHTkic6EL3qna3a\nCXljq63V+NpoTWs7AfeGBZq0lyN7AfSMjNmPdYaORWFVaNue26ezIPStfM2y\nLVPbnYwFgvgGoqjWT0YkFfmXAOnTojzDD7e0KF9X6nuTz3hQQtPhyuqIIW5V\nLkSnM06e2Yk5vuxD0+pX1cnvlMdmvjQn+J0Kzqw5eFgr6IZsgW6wzRcKui/t\nF2WqQGJxmq6CjPRco8IkbVWVNJ+o0cJvJiM0k0T7fA31YgavPY9ZIPSiB2yn\nU/IOdi34fjRJLtaB0/1X9Ft+AtvJ5S5c3yLP6s1Qs6eX0doQuK/otvBo+OAx\nyv6MyEMMkIrhmcYSoJ2/kDKQkD36i9wQ6JErtgS68WF591am5d0p2lS8dWAj\n8kaPAK4GxAFibsMiDMEUjtsOOhMBSg46XcaSF6oSp14p3jiwwXQZRhwzOpSm\n9JfxVja3eblIRuIAcODksR0Egz6ue3QNq7KTxNDbkICH3Nub9ZwNYkP6ysz5\nGeVN\r\n=lmht\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBNKPk/0ylm6ulbSkxWveuVacMv/TiJFy1GfMBnXBMRJAiBtlOjzIo/x57gJTAZehfqwxmPXbR7XZhixKZPkMqaBbA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536001811008_1536001821167_0.4985641611205067" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536052077376": { + "name": "puppeteer", + "version": "1.7.0-next.1536052077376", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "32c0363adefa39a418d0cab1f2d2a818d391f017", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536052077376", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-QuDfLiDzldJuCgfAaWbz/A2XyXhEugCYYAWK7zoUyd5C+Ybj3Cg1KPt4nRIB3c390gE2vhp9dyAQqpuJG+2ZUw==", + "shasum": "6cef83492dcb7814fc1789484e03496aefde9ed3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536052077376.tgz", + "fileCount": 55, + "unpackedSize": 611185, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjkt9CRA9TVsSAnZWagAA65oP/imC4HSqcR9XaJaaITT5\nA6p7J8gXmTkVpzoPgrC9k56+DaDyIEMhAT7EL3L1zEAMF43zoKu1wBQO/YWk\ndU8jo4YaTr5K3ir/VDc9s96xdic6gTOCHzqb0IEwc3pFVn+Ha8rGwvBpvPpF\nyJ0kGsvlKWFNJXDdQq6p8LDV8zwdVBuN3qrg9wrn7mUqC1PY6ET0ktAvaior\npwH+ZwohKjw84/E3VDFfUjKrZzQsjixTBBVjhiftiG4WT2dZ3BjdGPmcPfCh\nyV+qU2+eTYYafqrGozNCdoNAb6oRGlqZ8yRCstd/uYBfzvWzk/fWRdAU6fNN\nTqiMogcznHdNp+7SoGMNEDRbhOlo+TDR2xp6w4O4+IvrVKCZH8oMIgnVzaGM\nu9me2SYmnRl1B0Cdo0GMgRYjifxZkyVYp2/q1l2MPLEfUdAo+Cbx20WFuI+d\nw6PrF3fIDNG4fNd1N+gxn8UvL2xMuSz07aOLu/RFB1USRueg9m9kgXhyLJNy\nfJs5QmA4BxZVoE+ze6Ty3JQzIFBQMDqQPcRA1w2eafov5Jy2xuRajqma2OnY\nlY6/xh8pOY0toZyRuAIBfPye/ovHCxncZBliHxi614gBKsTYMtp7lFtHKX1N\nyDxxYWd09BerfwgGBOhMzkXZ21DAcq3kI/x0F3te6mrdIBY9NhpfdboMeIZB\nUEfI\r\n=759a\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDdLXAB+DXP/fN4/gICOEG5kZSPjj4K9WIpo1QIL5qwiQIgNIzRpIKB1G4G3J1XfD6HhAp11pkyZYz+or2CTKaJeTg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536052077376_1536052092439_0.5695062053223248" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536075421260": { + "name": "puppeteer", + "version": "1.7.0-next.1536075421260", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "cbce839986e24999239f1bf7bb9bbde1a7576e08", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536075421260", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-2ZX5hymywXxi3Q/XXXRlcu2n4rygEUNJjPQVJOOR4EFaIuL9VdDM+5Sk80+tID4w9b+NPaM93tqe2B5QVKey5A==", + "shasum": "5d68cdd35f10c1d997f2eeeaf92269231069523b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536075421260.tgz", + "fileCount": 55, + "unpackedSize": 611185, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjqapCRA9TVsSAnZWagAAJm0P/ih4dgfnNqSnWaEkIhS9\nyj1RC2dH0g8JbJ/wVpXonKHKwFTQ873ImMKQlsSugvevgQWZyaN5+XYf/+0X\nlNVp3bz0UHES2AgJ6tWrNVuHqBMd8pJvbNPiNaOHQH31tirnC2yi7aQfqGI+\nnlpVDZhTHaZT1zXeI70WgQ3ykwH38EfihpI+Zpc0yD/w8jz/xQMF9KzA0es/\nfWYIi3XDb2V1karnXGE55EfwV8xyRSEHkEWnsW/kvygmyMQObcsWZPot8gmc\n9uNxSVQe7u/H8gw3GSjy04Ai7E9wwL+cNmz98/m806m7Wbfr6Y7wdHjuSi35\nd0Ot6IaxT08FtFmhZd1qSa37nBNM3LLD0EbD0r/00ZALVbt46CoyegrfTWZl\nCFF7ZM8dEOal85XSl1TbLfjys0TENgZYuKLpzj3WCa8XRGjAubZQjv19cRjB\n6DZ4q5jixUnkhcnUZKFvqXomJN3U9aueaYYYO2TGtJP1OvCwbukMYli6Bxa/\n3lKwjbT0B/XeJYovyXVmOkQ0Uh0xoMFrOq8VAXKaLmxDKdpwtjtZCh3AqPnx\n6bKAfwXk1yPWj/5f4R/nz1WHaRHcEFz/4uCpM0asDCR+ntSeRfd4crm2P41s\nnqN9P7cBd/tljdtvRpNfvHqThW8UnyPtT1K4o8/iSFQvJTFw/H3shWo3k5Jc\nKDzV\r\n=Arnj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHjonIMRUpWncyEdS9KCsHCWA9uD4k2/ytyrscixoSIKAiAaJY4pKpliStrGfxentWu8oJ771KCcBGQmg5bWYEXkAQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536075421260_1536075432331_0.8030331259419095" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536076579608": { + "name": "puppeteer", + "version": "1.7.0-next.1536076579608", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "93f267b4bb0b5114ae5d89aee26a18d474f53889", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536076579608", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-LTnKcz4+/GIneK5OoXhEtiRIi2OpzrN3ncjs7emuhrWpJ13sfLoI+Ir6B73GzsPu6v7O6qnRsnAVNPd/F0adkg==", + "shasum": "58671fc05ea2aaa04f6e49450096bba7881e2966", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536076579608.tgz", + "fileCount": 55, + "unpackedSize": 611185, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjqsuCRA9TVsSAnZWagAAiecP/3iBFMFTItEuCqkyzQh5\ngZktpOCEF3CTMA+N2BuAxGfKMxmG0qkhsSBrsCDq1NvVPZ1L1VIX/UWUUd/z\n1Ky2baJO5YtvTynD7DngezDYJJ30yhgDJEmAJ/QXtaXNChJ0IIN5jeNuMa53\nKQ0ExPgRYzAyV1u72dojI7PjUZu6OGebWyv9WRkyCdyCOC+fmqs+B/9e2O/n\nqbqmxP60SnBhwrBlNTo4PF/Q9CIn9Be0jxEhtOT4JFwDzfhOt0QDbfNyKxEn\nevM2po8qZNiryZHSV/ICh3tweVX2npFreWGJEzd0XhOr9VH842a3K5yqnDgw\nLbjJyw2dcUK2RHsTq9YrNIAtBA1MKnFSLa5ixzVNU6Qf1Dt8iX4l2XfBrpDW\nlhaHS6JNnIh/ut3hn704z80J6fG/IneBjuLfFJQmB0HyKc1z+ySEgvV+rcTs\nnJjBThHxEOt8lNtVTEZ34dcAdrE2/2PUrhkHYCRNTDAwZDpRek/8uYLLpgl7\n1m4W0RwVwETCMeB2LiuADOeB8t6EDcPsISgle3lLRAJZuBdSnfmlpblhleQm\n/lD8oFQCv4K9wY2IfHA/O+PC9Q1dUF+UPpCUL2yDJZJe1/MLRYnFWMUlk+eY\n5tnlxPZOVqRLKu2/FbmunPN03w4l9ZtTE8lbCZCWT5Diz7OFL3chyMnMNzw2\nioMp\r\n=gpNA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCyYwFNLdHG9pYio0tbMZpFG2++/HkpdCWsjfYAygE6oQIgSXr90iXa9kTVEJ62ng4P4vUBSDIJVwmiasBXgmOOmq8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536076579608_1536076589711_0.016863414804004107" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536078965668": { + "name": "puppeteer", + "version": "1.7.0-next.1536078965668", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "2de5a42d1f20b5c9719c8c5506fd772d73d7ec70", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536078965668", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-dbK0dM/SEHuei/TJME732Or9i++nGxJzn9FS9phhBv2JOdZlWz79jAt1Z1RspDlomdtUldjgyscA3wxtFy4Ehw==", + "shasum": "98a21a48545093f371126e8166bc79677b6a13da", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536078965668.tgz", + "fileCount": 55, + "unpackedSize": 611316, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjrSCCRA9TVsSAnZWagAAtYQP/Ap5xz3M9MQbqMMhAMNS\n+ec64E1IXuLJX+H/MOPWkpAba0pwAOClQRlKLyZ2TXUdg0OsWiW2kdIyKTGt\nJGYgkeEPHUQrv27XdOfUzsVrhwm00ew+3hj2bZYe5QSL84ds58jZ0e4RHtGY\nq32zHthjVEm3ub+yFIK5D91GTwlV8JybWrYA95LfyO1Q4IU4/aR+ZNfuUi/i\n0RSif0Ad2la9QIkxNf9fqo98sjD8/RY9+iDy3RrJ6FVkDNkp9U7tX2RUWwfu\nIRcVfRqeNd2xfEIxgnZM7ktHjKosNxMMNpVqKqzGhy3lzwcrbvxMzpKZthGw\nE7mGsKfHMfvlWi6kWr8Dj6jra4zNELHZirVwIE5r+IgLrQ1LGuepaRLy3Kx/\nZ45BDwIYx27H5JI9XNirz5CgV0KXpvIQ4wv/tw0Qq6pgFdPcf55pi3cy2F8G\nU8p5SGVggMKKq/M+LLc01GGiPcV83w7695UsxgIxZRqqVm6V3EK1EFesmLzL\n/Ii5IgJC88Gs2ZP9vqxKw/uHBMkZgl6DipLHh/+IEY+CEg8CryNz20YZvtaW\nmjusKYAEHupTtMzWREpBaZeJgnsZZEYXvvCpxxPRpMOwwI1eix4skVBUIHHE\n8pXCdmiZX6qr4m5vQdxqs4OlsdWHrkc0bP902rGHWZrPQ3R65F1Rd4CwmbbH\ni04U\r\n=jdgt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDbS+1l3I4S8U9pGhM11GYwQEhbeUkUYjrOcRfQ7lxP4QIgbquhr/Nmx3GVVdMWW/UmzoBnQlcH/zLpAHcl/L0Vo5c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536078965668_1536078977641_0.17693495922900038" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536084551248": { + "name": "puppeteer", + "version": "1.7.0-next.1536084551248", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "22c0ce63ce4334047df6c2c8457569c191ef44e1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536084551248", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+LOhbsNin/FzKrJP76JEw55OWRI9MrKpGRKKO9sYFzOeahSTEFfgJj9BkfwGw7jPSOCbH4ywNgvIk0/VpULdkA==", + "shasum": "d5faf5bd04ce131cb425b92d4f3e29a5283e8c0f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536084551248.tgz", + "fileCount": 55, + "unpackedSize": 611316, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjspTCRA9TVsSAnZWagAAmAMP/2fCOXo5w/9dGbrCtwR4\niHWYCtnFpQaADnDYFlfvrWreLC1qlLKKsRHcOBTxjT/2J619Ra9dC6ubVyBE\nzfupZ/N8rkv/3xz8yb/FNrasCgpIuqtb+cPLtpZmlRHRH+o6RrLZ3KpBW3VD\nU+0i3mSVkU8fSAW+kOwcUw75lZb0Wqwik4HFQxXbj6gwpYEBS2eqojmo1mKf\nLRmPkW6JNYg1aPdYPNU4t4cqM8C7iVqIuHy3STOoc2Ql9ok1Ipe5AnhGuDY9\nsrXqpC9hjD9nA3IoYKpzG9BsiXHc6RgwRPCZh6WeTi5k/Yg5ZX2EsknE28N2\nDmIxiMlSAi6IlH7XXPm3Z9sNTOS/57r+vb2tA7ctFVcvdd1f7tV278c5os8k\nJW9kSeS7Vm3II81FLPWVYtpB/4eQEWjpiLYCj2FYDP0rhGh3k0mK/HiWRk8g\nVwlajs1Kgd98x4p7sfvxTWaV7neMVwW/tdZQTgApdTi+WyC5GO254QzQbGJx\n7ynH7Yz8NPYhG3pc+xTABR6Abb/HwLj0iw7JyQ6MQX+KADY9EwywrSarzPL2\nqzn2PD4iqmXmaihbAIcn+JhmZPKn8yofAU9Afz4+w2j/lFtSNpX8unGHJxA1\nBMLZbHnmRwHk+kpP55ujUyME9moBTmAn8hO9tLLTdqxlD4lzMEBOuKsoVnyg\nH6Eh\r\n=XW7Q\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAoJFp78WZXdc9TMvFoEuRzTClT9aPxajlpx/xmoZ/e+AiEA9SBueZa/07XcCmvl3z1bOyENvaXdYsW5Bv0Bq3Z/Kh8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536084551248_1536084562696_0.41292934429873407" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536089048222": { + "name": "puppeteer", + "version": "1.7.0-next.1536089048222", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "52cf16c73c48c3e36f90460f5c8715ae06a6415a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536089048222", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-jgJficKHp/MoqVIx14JWVDW0UGK2Z7Fe0i/39kSirNtJuZEEqyDpdnqhi8RGCWVoDgyj1AaVZNLygGBMj8+0HA==", + "shasum": "faf91b1faa69b1327cab136c419f56e9fa4e9c09", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536089048222.tgz", + "fileCount": 55, + "unpackedSize": 609588, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjtvmCRA9TVsSAnZWagAAEYEP/0hsDk2eJs/Lp6vBop5w\nrghh6fItaEPkiG/3N8Pr0BuxfBqFUDSPPLaGmvKWDCPRm1v72R/FGnZNl2Cj\ncWCbJNe78NH83/bnUkilUByTonopyzeWgoQMiicgJD/w+Bu3XmEDJOCrm+2i\nJOj4QrYywZDxY7Flmjl9ycivJuU+GK6umFOaj2EjolyvSv0mkdChLXRsXyqs\nfo8PrAIdsIWmk+CIajNAndi5BPkEgzd6V9GsPGisaiGysPz6qWAd+r5nGbRX\n9VRCRe2mj9yjEDcAlnOAs02afFurC37E6lroUJ9hciLTraH2u5TbX64qc5j9\nCdbAq/Yelw0XDMOwGi0207e1sdkHITG3lex2hDntdO+wAoewnnUyKEpbP8DP\nfKW8QFTZKU9LSJ/ye+kfhgBIbTuN5/8MuUgQl2cs3OAeCzX6RjKuVQXzZv7T\nIFiGfIfYHk664f1n3dTUYq8V+NSCNPMG1C3AcC5F6IUpa+sP+VhrCj6xvdEl\nfE7HdCmsosERU5HczCX5Ypj9uIn+hJgB8fP4R3wCl+dk+YM54+j7kkcODZm8\nN7DYx9v5sYG5ou8lS7fgjMQK8Ue+qMDucz9BTfEXisyAYjT6yEc9ApPlPAmT\nlRf/XlsZmdR3lnf3S2d5dA9eG5t+TBbESic9tfu+40ODYR1EiGYw8FLwYyof\n3Iu4\r\n=CZcg\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDJ2gOlRE0+XTEtga+ueRX4w3c3AbqgYD/Eeq1qs8KuUAIgdh9et1cf4Jkdxmc2Gmsz8h6i7PeFNNa4i5S2tLVeZTk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536089048222_1536089061900_0.23001468185612195" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536090149346": { + "name": "puppeteer", + "version": "1.7.0-next.1536090149346", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "1ba2b8540dc52791e70c2f2c076f50e135af3b75", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536090149346", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-37bqyWdOegM4X5mgFa8RT29bxwSJQdclE3RGCMV8tgovY15irkCETYHXV++L7fqB6lnG1yl2atjNQrrL+N8bqQ==", + "shasum": "bc83f8cab790b0b6f3085afefe217e7fd1d891e4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536090149346.tgz", + "fileCount": 55, + "unpackedSize": 610046, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjuAwCRA9TVsSAnZWagAA+1MP/ig2LKK/Bm4wbWnkFJH4\nry3z3pXgZLpHt3dw0qdQzgWUXDOKckH6VGHTxNBwDSqk3wuAy+/mL1Sb7G+p\nKL11OyJhCzXIOD77zeorCkbuwbowcSZB5wCOwJxT2FsBOzpAUZR/OX7GJ86N\nGTw32rLuXL8/qf5LDSozlbgJAMugPADFBl+esng8+PIplKWV/HAD97YUGd5J\nXYymGeXkisAUeFBweap7BmeDX5qp7BFI6Rd0/1TfSjGA9N57ZmsJmsGlNExf\nABoiKTUbU0yYGuvoxg90LIFyl8/SJ5b8NE4ZqW6oCa8dXl1X0/4rGqJpBWZI\nHu/PlZv/S9iTjfqhRmeTtSTH7Z9cHPzqXHgEflhnKZPQ9K3yzKrSX+R9Gq5b\nZeXNmLcQFmnAUcVTeos6+jxFj7Ccm/o5tUqpbOGS8R/FjyZgSTmnfHZlY7Wq\nKF13levW5HuMi8bAKBAC5OnS2YcuzQzGBm3fjE1PGazyL3T7NREJweCuy32i\n269aMOWP/VcvQ5BTXCrtg4vIrZ3ofBGh1iJmUD25zcEmpqVQ6AMySqyxcDOO\nqpyNADvQBm2RNoEnkGKYXRIdD5GIJNVNZrqGrhq9IbbBAnq0zQfnhKO12C7j\n7gvbmyLOHFCqk3jOIrW+EPsXn5CJ8nPbksBi9vMiyQkUww0vx1imN6f9hIHr\nJb6z\r\n=kNjp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAjNwg4RBUSFiVc+88q9yh8BNksoDw8ATIfRIZxRcFoJAiAa0pcNqECEKg66rdoLFuNlmVn2YdaS/qK9XUaqwcdadw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536090149346_1536090159713_0.12110162494350396" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536097322757": { + "name": "puppeteer", + "version": "1.7.0-next.1536097322757", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "e07567f26838faf08fff004466ad5153ceb55581", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536097322757", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-zOrEbUmTveTMs+MchuR5OM4n4hsuI0rW9p6E8CM/mG3sL4tGU6PfUDK155edF5cYIwQzM86v/p8vfo8FtM6ycQ==", + "shasum": "69609b2eda5c7c8c2dcf512727e0b2949087dbb4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536097322757.tgz", + "fileCount": 55, + "unpackedSize": 610046, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjvw2CRA9TVsSAnZWagAActQP/1Aa7WAwdF61Xo9wdfXR\nc6FKnJjm2z7LPujO6cd+yUN6qQV3hObH39inqQDnC+9+GMEpuorHlLwCoVZ6\nwBuLZ4BktnBXZMWm1XLBwhvVrUOvb0R2r1x9LmcQvHJnaU7UhSDhkCPfl4fC\ndEiSHMYI1gkjHGj+LqucLPy7dQ84FycbvZ8liLIBugCytk25zybeEt4dKutA\n2864y7vCKXdbvwLK4g+qhRIdqtyWsog5q3xz9JI39GQHs4qB0YcResk81HcU\nqKFi+9SSCu8QTD5Jvp/4Qkys0PJyRp/PXXEi7OmES8atWuJBOwJ+xYFqUIvL\nQ/5MRfoWAhroRyXU1CoYxCPqU1+BdSmd4yZcACqh6JbYpiQymt9XkHe9iYP/\nLJEM00BDDFtnMIE89SxC+z2WoFF0y8vbGilqbHjkj1HmYkN/IfjtFIAZ3Pog\nJijBIvsJpHDTnqc0Xz7hQznRlHojWFATzpcaTmK3YqpN1GmY+Hm15e1I0xJY\n9beUBgiYNODX/U3wKb2txgurivZK/U8y31+6VTjf2pBvdPoDdd/XVV5uqgVo\nAWGBf4m2WwEOod+xV7NAYbV4c5AmduRYtlK//Tqi49KvO/uCtQRjJ9t6tUHI\neCZ1zfOdEVC8n6s4VYhkGMlEPiIE4OJ/G6u9Deuq253bpcQXuJFfxpSVWIP1\n4IiN\r\n=YWa4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCP2H6jYe4d2HDLU6bBXEMGdk0gLkHsRbM6+t+km9zTbAIgRnEuPfgkkxUz25KOxVu3pHDz9Xhgi1YBo4xQoZKd3IA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536097322757_1536097333897_0.3235029054093672" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536167692060": { + "name": "puppeteer", + "version": "1.7.0-next.1536167692060", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "3364659ccafcf41101824943b92b3c1e23193e21", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536167692060", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MdQUcbftGZ2roJWqG2yK1WrgEu/uCDtzEt2CaxL6EdAfofEmVr+srepEu/2xl96MWuO6VQOhOry5jFvLT8gzuA==", + "shasum": "3012705ba2db4ef0a158605fab5029e97cbd9ff0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536167692060.tgz", + "fileCount": 55, + "unpackedSize": 610046, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkA8XCRA9TVsSAnZWagAA4nUP/3Kd3wI4fpEkhsUCwbQE\njRiFv5t2tziakognpjAmCZwyARkmIbIyYGxkLXxNuW8NT8cg7WmtZ9aF0UT+\nS9UCKjVJedMjhS3oQoGZCd4uDgLNdkXr/BojAgbdYVcXGPSLAY/bxsK08oae\nEgSalJfRYKnHrUBgqt+dKUx/cHGhWmiCeso1LYOCgXKPg9WgQItzOAC3DLeC\nVg3rC0O4gU/S+k6NCLgsCFAQJc3oLIORtCTNb1/ILNv6XF7XlYxxjWOT/H+X\n03MFotP79NVFmiC1/Gz6sz4w183jvZJJ6Q8QXg0urY1oKvOKOWe1PRNorMbp\n36P9/PjNbh2ZuB/H1ab8iR7SuCoKeCXb5S+DgZcUiWz9270zNLO2D/Emlp5V\nu4H/b9FVYotTHUgBC2AJxEJOJ+IwJFb/4uML9kRKAecQiOT/vILz49NS7CLs\nvsMKJhmliqly9fQvKuu8xxJnBTTk1gTMf4kbLJXVfuuYqpj6xAoMtlYJ83F1\nrZ1T+k4tZyIAud9dZmalhMeYiJCbJtOH35fAjf/u7Q4o4mbmVrDR2kdmLEl+\n5I6IRp2GBkD/yw/7xA+1dNZp3tvUJKEM85bNAosqQ0/cZ1tFbcSCuQVzBvq/\nj5fGuEjsqzYzz/cjk6WSf+j5wDV7zwx4/vuvB5pCnzDiDeesRXVTDq66NYoh\nITcU\r\n=QNy7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHGuZZBTyb4rT/4vlvVOfLOhvpaA/+pxeMej5guXeKL6AiAbpSbif+3HeU58VKSQ6+07zUm+ymeoauTsIebPjLXXCg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536167692060_1536167702637_0.7609828466643418" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536176172701": { + "name": "puppeteer", + "version": "1.7.0-next.1536176172701", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "7db4f0f7985b039828830c79f4a5a8e7adbfed97", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536176172701", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-L/CIVt3evPNZDmo/YJbPjB3lM7M1xsoKSntdBsspVVGJXCbGd5sklgMmGDA9TjO/5w+WjBK/xfpGc52QF772mQ==", + "shasum": "bd17e3056ae3300a42647e077873fd1ceb758434", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536176172701.tgz", + "fileCount": 55, + "unpackedSize": 610046, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkDA3CRA9TVsSAnZWagAAN+UP/jpJfyEesTg8E+IEueld\nvtbNELk2V8ZEpUgkT4s6eYiZShXFBRdO2jmKuFUbLtoNNP7Gfm1u7mxkDlv/\nzjaRdsErxNKZPjRFN60QZNKHBV4eTjdEhAoOCoW4ZwQ70OQk3Wmd0VT5lrit\n7ylByUZ6ODX50H9Z3QN7vH4HQECB7vzKk94owIBGDx38bqSofKHvhU4IFc2c\n9qIsW7SwZt/hZPbc42Pl7JFkaGB/DxUNHE+m/30C0F8i8ciNYeHUNHBqhbjQ\nNAseJt7tCZGjDQw4whYEUcgY9rtxlW4aLEp95CaAqZSR3YQCzFA7Dklmq3r9\n4aaCA1ZRqR6PTXC31KM4B0zYipOgm7IOX+ICcc0lCTR3zTYpj5T4XvSjidt6\njFpewEIwAFnpnXVBDrxLhEkncsRd04FedWcbCgWiAL0A8eCHCC+SzPZl67XY\nd+qMLAJps8OPAMEyJF3ATpFAuiz4kQAdMah5dP2vE+3gV3QRxLem5ViF+M4u\ngpUg7Xzon3OLn/jCoFch9HxBcN5vaghSsh/tdoymp8fhveqL9ASr79f/W3Lu\nsUv+1vIw/MlMi0BwbWMbiJSVJ7nXyxYg7s8MHec1DiPp0sTviTnBQPiFPefX\niy5ojtEmu/Q3Q2NHtpwipqmihbHLylXZ7eqinGkC1LqfRj7VGHxR2Z9yDr66\nflb/\r\n=eNKi\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCOphQzkZ9nI3Q6Crv9bjIP2do6mbIEIIYxL/Z4ZEDaDAIgNyA5qUZHR/i/T4/YJah/amJ5gWpJP3iU1hqxO3y/Dso=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536176172701_1536176182614_0.5425173350853449" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536177940806": { + "name": "puppeteer", + "version": "1.7.0-next.1536177940806", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "84c2621dd4b6d30a4ebfa54a1e91203aa101968f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536177940806", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-tFbIAuQ4pSiLjGEwRx6KTPThW9MFbNLdqUNo+qrxvFNKTsWnNbqfmcF8FDuKNhuVo1DgzpI3uzvroXSX4S721w==", + "shasum": "751196f5d9a980e7a91f0e602126055f7e1db1fd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536177940806.tgz", + "fileCount": 55, + "unpackedSize": 608350, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkDceCRA9TVsSAnZWagAAoXQQAKCL6ZyTZym1zIue2zp2\nRgZBRxoV5N2MfQ0D+zudYSIKlRG/hfCLLihHRlH7sqMpBGJu9/mTTajHqSDD\nBGXYY56vivmOhPwy5Xrne0TfUdcUwjsGGzIotUpVfTKGy7/x0M+DXZ9PVWos\n5YQee2nWGiqBAkvFhppQcYOz3+eMxh3sZlz4lauGULz0BydgCniAnCIGjuMB\ncKp5QfAL7eh/nADNIl5bvbxA05SRL08qIonNIgV6EBh1JdWt4JwaAGXrPakZ\n4Vy0Gzk2yLLErykpYHCqJdPiBkc9szp/Ce5NlDUD/RnB/ePsBw+jZeziIO+A\nMGJtstZzcCt02gcaQNTe+/QDCiexTrIbuXscywC97hXsyDto8TE7CPxhDVsx\n5e/1kd04127JEvUE+C4Rv0s5lGgLpqJEJ1IDQ8zJUQ5C0foaya9KsskpiGvL\nkpV2kxUZ62PNR36qbnIMsp1cJZk76sgPqzDa/wIEHvgVwIv/bsvHzJ+nkXpB\nFhIeIyji7FfUlNkgLVayFa8CmiJq/L7e5mJv5w4QCaLhHZ7wVyLoi9sNSmHu\nMtjC0TrZt2RqLIYReDiVXH+B3d4rjoenglVd4/WISnM3cUHfCJL1YxL6nNgN\nK2W+LSFvDqdZ0rb2rf4rqmUc5jrgNz3VgFmdXH0yS0xlBKD3+58t0j2Onbhe\nKG+U\r\n=8LSd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCKMmhl4Vu009C/zxN4MxlfVW26IsodhDNwwcW7pqcqcAIhAL99ZLWRybAgnGkbIXhUjNHVSwbvnfXiVnbF9c8xEw8A" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536177940806_1536177949940_0.6455532174435885" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536177984039": { + "name": "puppeteer", + "version": "1.7.0-next.1536177984039", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "7f9e276733a7dea8ccc414147a637862884403c3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536177984039", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-DJx0j3PMVNK8IR/xtfCiug64yuxlNQ6hBNSlysyHZ4El3V+nxeYsdEI3lUEQ9/S8se1cgnavAwtbFdhnx5bs5g==", + "shasum": "8989cbd953031a885c3fb556daef6b82ffc91c51", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536177984039.tgz", + "fileCount": 55, + "unpackedSize": 608622, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkDdKCRA9TVsSAnZWagAA20AP/jQT4oRV7R68JJThacV7\nLK3cPOVJqEnz/eEkDLwzA6cLen6r2PypHoSJHOxvx5N4h8zKB6TaSHMmU8R5\nm0jnspvKJc088UZnqHTHGY1t8smjkmKjjVXRp16LOfJBW3wTt5Fq3m2AODVv\nTxaOVIPAAheDOfSKJz+mVkOdj5o5v+DU5Cfgg3Y7mUbjxgs7gQM7pFOdhxsw\nYeIk0c/vkWWcpe9HQm78VirmBILg/M3LDKT2r1XauzP3nS9/Wi/NOshKxXKF\nnsbXhDCFMPpHYAsV1v0N8gExwKK7pSgRvpuSoE+XtKQYuOxsOI4q4MFFEMA/\n+/jw+9rIgZ18v9eFEmYPOz7xUqrzd4o86CDZ1Esq4FiiVxHbRwFoxdOO3z/P\n7mmqUZf5SNKO7OanpqoTgKxAbalyvviXO4jYU9A5UhIIpG/Gff4lv08kWlkB\n26FCVdX0iYJVsiBXVCw39LC+kJiY3OhEaAf6Bz5/5IyBY9EZUHbjfwXw4i88\nfMaRLqXfhszfI8QKZNKGvWw47RyQxWIft6I0p7N+jSNST8tx79kF+jc6kOtA\nTAPIlOBY3HuOnowGE0Dvlqjkkx4Tr3QajahVgjXrFc5PPgWp6V1sw5Da+y8E\n0bYM3eSdfsCq3NDn8eL2oS2YuJXq+lfWX+yzhtxh818FOT7KicGhVZTUH+pg\nXZQg\r\n=30vU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGl32vTa7jxCMY9WWSdmVSNCgTEo/CG7dGRUPGRzgRywAiEAgxL8y7Llpm8hvOovHRE9hktSuehGUsQl3MOSwUhMW2k=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536177984039_1536177994023_0.33783268613662965" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536184951011": { + "name": "puppeteer", + "version": "1.7.0-next.1536184951011", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "d54c7edeae44800dabb87e52ae96180a16a149a1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536184951011", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kkZ2X+MWnKaN/A7IJNfzIK0Sx0E8lQ4mE0VKwpI8MJhoJSDaI5yS9XWFuRQU4hffTT72fJFHSPthSql/GeYVNQ==", + "shasum": "e1c56a04f346e2ca80b8b0e9533a059854d6f3b6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536184951011.tgz", + "fileCount": 55, + "unpackedSize": 611904, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkFKBCRA9TVsSAnZWagAA2Y4P/j6lxwjB4XbDgoUjiuea\nCiIs+NzL+o8AMeCRvUXSp8ewkK8e97u8OCzuVSkve3LjnzK9JTVjx3j2M/ZU\nL3U9xZfJVSjNXRZkoOFRoDIjNU/pYo6UyLNeUUn1GIz1R7cMVXGDWC9NmPi+\n6JB/5we7D8oj7ARksjX7YcC4lqKC83u2eUfFu+5aLurolZrRo51iXKyY2P8G\n1cgDNtsOYB4A+7XNWdf5RlMJ1Qq6+XUOFxnkDntaJshD9Fmkvxza9fAL/tfc\njKR4l/vOwPoxIcJN3RX36SToFnDBKoGfM0aJ2JudTDV5Tfib/isXeUDuMAts\nrXYw5jVqhQ/4glMmGPxLEKjj9CTOECJVkkVo9e+YgGcx+WRmB57erlwWcDNg\nIt8PfjFIwpq1tTa+jSES1paKdrRq99dfahrPykynz7stYnRYD9xNAsa7lHu+\nnVbCFeErQ3bKgbEoHsq/lF5mouS4NpnyhLc/oDtR1IsmZ2SmtVMvNfcRwNZ9\nduvJzlpyPvr9OKmNpPmdMa/NeZyfLcIiuSrz6Ktiaa3O4KQm00TLS5r6T/+m\n5VCO5ArZfkFBSWTarjur5t+cf02LPmzNDSeVLRj4Crq7wP3z5ZLs/Uj0Mnk8\n1j1LQE/bb8VklOS5gmfmSYi2vb5CeefH9y9+l2iJOPS3obsRLzkfKbP3e9iG\nJjkf\r\n=cKFX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAhTfUREBClHaXv4P7fYPi5mBLdd7SL2J4ct9PCLFGcVAiEA5N62KvGVzbbYC4EQ29VbaNNL0t77a98asAwce+CNiTo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536184951011_1536184960903_0.4290696669381282" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536184959160": { + "name": "puppeteer", + "version": "1.7.0-next.1536184959160", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "28d92116b7072d43665c4e7b964e0e27167a9053", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536184959160", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-B1fXUOBiazEUUxMUQxn5XuH9lbIZDaVmrzYoP0Yc+L9oER3HobsXhuQRI19BGOxIbgx1wOtjPr4TXoAZg5MEOA==", + "shasum": "fcb8c78eab92ca81354688c607ce3b573f28ca6a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536184959160.tgz", + "fileCount": 55, + "unpackedSize": 611112, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkFKJCRA9TVsSAnZWagAAXP4P/2WOnpoRbH+KimIn5Kjt\nCLvh+8aoaQxsjw9V1Otx40CkJS0OrS8J1u2ukPqmhceBE48ttcikpZHiEmD6\nh8XEi8Oa51QAvoQR1EZIsR2GpUlN4hgxnd9faSJoIh8E+ysGcIyCy9JqmwqM\nZjdKh+WipOvTx6p6tVBjwFDtWBGys7f7tu7w1roLdfPNoxby7wjN0/VNX+7J\nimaaXN8NvFquiZFboYuuqUSadZNMZeUG6X9VRkCHprsg5gHi8ltVF7qiDKm2\nQsoakzmxewnpV20DgDRR4uUCpiq6LpTFQycGbfxZnBN0hjSxY8lb8RQo3A7N\nmbf7Y3OtbN62AZ41oUycA9K4JJY9JJxxVS1r51Hlnzv1OQCXph7zMlbUL6Vc\nK86IPbJA9ujoXfr9D4Sl5wnTPITe7PHBVTsn2vOTrhcIUNjNPZC+FlanpIwH\nEKAAjLiwlq60GwJU0fz9XfRmlkyEsueErF2BPMQGkznK/la9tEVKn9Uw9qwA\nJd1CqEmvtlhYZzPkZKtU7fwVfPwAugFHhGUwxViKHtNxRgmwqk+txzOMSstS\nJMRRAnKeq2+w32D9Jc+tZETXZWcaPQe7s3gAa2JnhTGipC2EtT0F+2syXINy\nkVar6I7/rv2k9pHXTy/CF33EldK842JiY64oRFG3u7OWKS6BrjEvHlXIQ1on\nJggD\r\n=Z+eS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDlUoWUPvZupqw12ML7uho1XhptJm2r90bohZgRaYWDcgIgabiU9EPsK6P4noU5RnSzJ7Tz7i6kLrO4sj2hhSzeFzA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536184959160_1536184968964_0.3154539786183741" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536262621679": { + "name": "puppeteer", + "version": "1.7.0-next.1536262621679", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "f230722ff0e9d0a10913a74a00febfec522bcbee", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536262621679", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-UCeH1URt9X5YOlNfDwlA4NcSxdCvhHlOSPBwjWQ09If5jCQtTc/VxAz5OEJxPhXSp0MAa6ZoNHWMqLRDsM06XQ==", + "shasum": "c093bc595c5a1b7714a40086e287552fcc4f3946", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536262621679.tgz", + "fileCount": 55, + "unpackedSize": 612476, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkYHnCRA9TVsSAnZWagAAkQoP/05H5L8zuAmaMHn+MlZJ\nmEoFZUnnxf3W79iG9fmWg9ozheLif8OUltvOVUx4kfxB4w1X/8Y/nnyyxJub\nH5LANxYVzqakq0u1y0Z54YCliO+3UNI6XsmlDyFwup3d7dVyptHiOH6ek4JG\neEBtp+N/vkpNXYeNJY3jlQVN2ct3nC0vj08AyprhCwgTIYS/Os5lV52EhToV\n6a9xuwhbl2B4F/9ccnpmDzwgXbbZ/14wADvrR1Qjf7JC4Qu/ddPwrcQfMoM2\nFqVw4eBXs1tJT01ZSJZ+TEcxEbRG+aSjN0NBizTn6hrHwEHn9xUCkBSYZ+s7\nJ6vNPhmWlGHJA3rX2ItGLWWa3eWVtDKnHadpDayuHpCSsgDHuTCNSKKrVq+2\nSSHB6Btou9b3v29TRtN5oa6CKt6Jy8+xBaD/Ln4eflMGxVF95dUuin7xUr25\nlj653cHm1LGsxz8xYYu9a9c0ceSMz1cUT4pTB1KrqEAd+atgGo2VjXFGmrid\nJvmC71SyTNqBXSD1D5HZPw/xEWVN+qe85uJO6jAa0jSXfa16ozeUzcuywoTN\ndqzIiNhFspkwcXPHausf1BaOj4dOHmzBAVh9zJZIr0P1Jh4vjCKIqika9B75\n2fK0Xngc2BsJqrT1uJOc2+ySJ6roe3b2sfgPai8QTGP/Km4nOgY+B0bTSLk4\nvjid\r\n=9Y3f\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFdeiA5xHdk3lROFi5KWR1QnaoTbTER6efsgqqXcWBNnAiBzmNrMVg2j5uu0RkbXgvP5D3IhAsvv+LTqYBTvdJm+bQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536262621679_1536262630739_0.5009199298350362" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.7.0-next.1536266490601": { + "name": "puppeteer", + "version": "1.7.0-next.1536266490601", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "42fde9b5e2f9d08c8a134a09c240fb1b531bc771", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.7.0-next.1536266490601", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ayLUWeYs1OoeJ8Mxytjcd+7AtRLdRTainXsRct/wRQCZbL6dN7jx+TnGlTMfY8gfCW3+DYeIQZTTxRdFHERy2w==", + "shasum": "5d5407289ca615d80193d4fd1b2898902b13ab3e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536266490601.tgz", + "fileCount": 55, + "unpackedSize": 612476, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZEFCRA9TVsSAnZWagAAzvYP/RRFrnBha+q7/kJr436c\n16W0OSWFvCzEhl02QtP0/q+sOPr7SXcj29XtoDkwMxmDfjSRayByYZHz6Kiv\nTUco5n4zxSCHTSRFdMHBME/a4FAHqwKNA2ugjJVa5bPIflpQ4Gt4vqfwlw5O\nPbJTpng41mlOKcAjGZ9NJrtTGf0HK0qPuP40Ks6A5tP05/jjOD9AkFa7iZnR\nHG4f6W/NDs+EB+ezQ1+4jDcoX9WH6+teINwCEd4B1v8N09pQy/M1UX8HRKmn\nOAt+o2jW4R/71AxDiCbi21uzsql1A/gNfAgbycIiFJX+snhLPo1HdC9cU09r\nyr8VSpbtJPuDlsTR82wTSDjoc2mfR6+5JJUt7U2symvXm9ZtJwGse7peuKsN\nyFDP6bdw5cPQbHT3Ny9dJDi8eHO3MD+sQK4G5MOd+6v1XJoTjkMZ+rZw0Zme\nYvrxfQX9JoYb9KoXLu6pGuqnD1LMkNHx1Qu49LQT+8HM1YvYqNh7nJ1wL+Q5\n/vmN8SbFWf7oh2p9XNahfOByK4QWvf/CmuaJwnKOKt5KRYLy1MB3iASecoGV\nyBaJDHRNe72gOM9C22IKF80tjtI1Gn8Wpo+pGUjBY+q0V//Qyjx8qY89CQjb\nPw94Rk6lnZrk/cVzyLkX96WqJjgm37NS7q3FxNPdDw1K5Xnv+f+kt1Cw4+jN\nTjjf\r\n=sL13\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAyqLuKzPsp7uOfXawAPcW406dAHjSyJi4hJG62qCQzUAiEA+1uYbWYhjzwx79pyRVwCfoM5SW3W9CTjJsa2eCrCMuY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.7.0-next.1536266490601_1536266501036_0.7697608831207599" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536267134761": { + "name": "puppeteer", + "version": "1.8.0-next.1536267134761", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "aeb6a9991e01a82153f803c727abf8d56fb072c6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536267134761", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Uu3dMsiM3Jkh8061fjPLk5Rn8zszwzcvtlVL0pfcAPmGM5s0DcT6QsjDqmD8mMSf62wjwGyAwqNtzEa0gfgxpw==", + "shasum": "192451ccc8ca2b99c01c6b1a531803d370a2cb82", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536267134761.tgz", + "fileCount": 55, + "unpackedSize": 612476, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZOLCRA9TVsSAnZWagAAPp8QAKTJ5J1in+omBPcecC5l\ncRgHdfobbi59lzh5Ps4mRCstYPc+F1GGrsuIL3CGLakZ3oEpiosperR9W/x6\ndM9VtS9jCPlVX5QoXY8XrjdOjsNmZHhr0Jt6LH+Ax+g5hCNKLESk7A3OmzGg\n1meBxRuKdxQGd6fc+bl2uPwFcxWzA5OyX4kroUMKPXMmlBz73XvXvnNdrte9\nDouGAoqg5EvFvnTWFJkQsJNlaEx9wiIkVtVkf2sWGb+OH8WKKR0304GvLD7T\ndskgNy956BVHS/oBkPW7lJZelnKSKnIKTz5r4VO/Fcl+A6PmIppDcWPIkkTN\nIfgGsz3u0RYlw79eoBJ2bKHk7jO/2jzwXTpOo/2G7GU7MunwNuI9OrtfAUdK\nAHLYljNBuMZQHG3MSiP8APAjmEvElwXeNmzbR7n3LP/b5cELNVsGX84yTqmf\ncLq4jeVcQXNk3c4OxwWepnAUD7QLLAzRad3nIoiAU87/BEciBKY2P0muUGgL\n/CpvQ6ZrDE6Z19TcA1znAbP2WPjVCsk8vCzN+app7jDdCptdRCWQ3IUiFays\nzdQtEl2Gj6BZDHbg/B9J2r1Ly3H2PU7M36khCqlldf9Hbo7lNOkOdjoE5WNk\n2+YjQaUG0s8mK3t0EDDqJwDFjyuikWDDX18zJmB0CnNtjD5x4bq9IpO33S2P\nntuo\r\n=2CVV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHNDII9ViZviTEI4yMGhjl7ersrMUoWDXZiCfmXsKmFJAiEA3C5PdF1UTwCl4KjXfDxOrYBopLl7OEnHaNBo/fdPwZc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536267134761_1536267146483_0.011569375369285817" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0": { + "name": "puppeteer", + "version": "1.8.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "aeb6a9991e01a82153f803c727abf8d56fb072c6", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "10.2.1", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wJ7Fxs03l4dy/ZXQACUKBBobIuJaS4NHq44q7/QinpAXFMwJMJFEIPjzoksVzUhZxQe+RXnjXH69mg13yMh0BA==", + "shasum": "9e8bbd2f5448cc19cac220efc0512837104877ad", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0.tgz", + "fileCount": 55, + "unpackedSize": 612457, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZQ+CRA9TVsSAnZWagAAJJkP/jMnkYfjf7r+AYI8YyRU\nKNgni31tlc5XrcRSuAJ8kjiw63pf6QI8dED0iim148/61V6UWHVJOL2R/eJu\ngtqh1h8HB8eDvlguLRkbcakG42pzU7n/cTMVQecJm3Rz3DpLf+fJFYexBlmr\n2ESPYqpVfm9fcUXMP9MGzb2xdzwSVH96aLQLpnxEQrZrgr8EVr7KbLsjnwMJ\nYeNAKFZyq7iEH0ZPspBaQ+ZxIUX9X12Q1KPiZohT1xjCFrFGx3vDChH23pon\nxVBr5u9NUBGtLdOU/TXCT24MuVSEqEPYWBUy5+cMA75rWnUWDHuk8Bl1uZAO\nAo9PWEBjivWESc5bfiC9B9bc2WSs8/31UdobOlb0JyR9h1g9lbAP0QIare9e\nbZ8gE6iX4BJDWNZZGLn9epSf2Ey4Z7V7zOQqhQHlZi9ZpcE1iqL13XLIwtS4\nGK2wNiSga2GMIlN8BFOQh761ObL/Z89dCOApwRHWLIECHewxKj7BQ2gRDxd3\nhzWgFQP59cEvGpS3Fx5DI4QsR6z9oOf034h4kDc8/Y/8LtCn9kiaMBmygP79\nO16pdypBFkCHLFnf4rOsEvcoPsXaur1q2bqgGyNJIicxHtrdXwAvz6q/Vp+q\n8InwuU2uhBGTtDx4J/qs3P84CVicv0fYa/AobGUoRAH5keUa6hacw6z35jZ4\n9+rt\r\n=rkxX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFMog71a8qGOEV36PFH0kkHsGAqwbUxmgU4T75N4sDYaAiEA0w8dXmE9ztQ07kLNaLsZDgry9OQ/ik1fuZqtFtvlwko=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0_1536267326096_0.6263692028766783" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536267991002": { + "name": "puppeteer", + "version": "1.8.0-next.1536267991002", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "78e9d5c422bc74403fb22191484a68c9b579c362", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536267991002", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-eKPE21mejMNLEQEE7PYzmQgGuC+OnWjnXAZ/U3LNmwqytVmOooLI3wbyutiGpgh29bcxddVKgg7RuKCPBELHuA==", + "shasum": "efc5d30cfc40f4aad5705072fe740d7d25fce342", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536267991002.tgz", + "fileCount": 55, + "unpackedSize": 612476, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkZbiCRA9TVsSAnZWagAAwwMP/i4GGi1or5pK78w0SwBJ\nAkvaPh+/hBCk+eVgJqVDfbdyaB7MdWoVEeWJqypH23NlyxYQ/24v7WeQQ3d2\n1GADrWYDCzgnNrQG8AA2vltlLWD0/3L0Ynxz8Io5galAMwrvcxqfSHu6/eBc\ntxHxGgVqOzfBqV3h/FZaaxN3FH3UGwTEkidHY/EnUxjSGjHjEbFuwn+RQtOv\nAmCZi0h2/LEp7TAUd5ctONLyff7wUI4e91pmtokcoJrTCvOP/fsoLTyv/vqq\nQ6BVXjZIeq9dYN6XpAJq9LIgE2PQvoZYUyLytZVogCQDarjLFf/HWuOyS1k4\nFNDjIYRcZdUAyKozUPWwrO2pOaQWGBA6OYATXjHxVlpeO8C8Uo345dltRmXs\nkiTUGRGUjrxeJSVKGGv15+1fhiVlaOz8VFp/zsbDbsUIme6ZLDBpyWX4ogeX\nJ4beGlacPEVSTl9cK8zmqxwupeZsTLSAi9Rq37yR+amzvaGdR1YG9iRe3TQg\nhGjtJHxa5F2G+NIdU8WzpENrM5RZWBAGVYawK3YtQcECnNLBq+oe/2XlOU7J\nteeJCGBOncVNqbFsN+VzXIaJ7D+HU2aziKRXSH3SVUBV18hJKWDTJUioE32v\n4RyEjppgrAjPwiK/CMSQkg7s4a10HZETEpCL9Myx97z0BBurhz1yTsKazAdZ\nsjQV\r\n=Aa4j\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD2m3bFFiY4/e8MoLkPk8nRBOEjUaNLNCzMnh/GMLaxlwIhAKaIkYHsZur1ybjXw17S9l9cmd5bwkCMy5TXeEVbxJN6" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536267991002_1536268001520_0.9967591613506452" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536313779891": { + "name": "puppeteer", + "version": "1.8.0-next.1536313779891", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "c967aebc8404a6747f1b9dc67f439594c5b09e2c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536313779891", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-yFpUqcRGSLZbqJgQr+Fjkres9Xa0n8osjD4ZU5nNSVS+WvcfCUPcDaJsRit9CtmTvRPY4+CSz3/I5XtxfR8R3Q==", + "shasum": "798f72ba4fb2bc7eeb4e4be0b6b5b72852275dc0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536313779891.tgz", + "fileCount": 55, + "unpackedSize": 612476, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkkm/CRA9TVsSAnZWagAACkYP/3P5wAvGBOBNw+ISWdzZ\nf+dZ7IgrABdpbgYIoSVEAQk8I7JmzysC8K8qzz1F0imkQA8ncLVTZAZf42l8\nAEMz6mY2tFOaqNxYgLh/OQDe301yDRbf/clYylWvxwsIzwwqK3OxrpRgSNo3\nw11iipt2tvi83Wpile6rfgF6ixamxW85JztX/ZkVtTK3MpMWEBUP+fiHec7z\nI9IUvzObCCwOQmeIj9IItO8saCMEl3HeH4rf9sgwqE0THo+t6drcPnde3RFV\ncplI4rssl9YKdfPBxlMEx6Xb0yechwp3HFAo/QWP7N6tSNbsRNtLcHrCzJOd\nlavn9Pw+LhWXo24fDnCBV2Text7fV/MRQT1FndR2f44LKOAlbzLqLUUp4C9n\neEZ6/fXYjE/nVPvfJm9e9OKf7lftkxdfbA8mTCHKlU+6N0vgUa9jSgkfd5hm\nOmrq2bvH9qsTsAuFwXbeZfOub0MFVjjalbfVYfU+D2IJYjFacqFbz2SUa6fU\n34W4rs7SllEbjGAw/ntNZ6Az4hv8aR6lBE4np/BgbDziBpoURxnP7zbwQHl4\nx4aRg827CSLlWIhiMxiX1OOZeVAwbyZQP9D9a05FUkc/7EX3eDlImDE4tATc\nROp8lMFfto0+h707AmxC01zXT5KcEZoMpGDzkAD84QcEQJqmWDQ68gWXTL+x\nqNMp\r\n=eOXZ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBKHPQjqpMuAL6uj17erEcldiMJowQpOMUwkJt/PlAkuAiEAxQEfSwXfwGwUcUK0Jw+7PVsQ2IfuNzH5UFvaQlTS1V8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536313779891_1536313790200_0.7228730753493202" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536352705819": { + "name": "puppeteer", + "version": "1.8.0-next.1536352705819", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "1b2c8113ba39899ee52e670c035cf009ea35bd93", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536352705819", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-5fzw5pLPoiyeMk+2pywTzbLb8U9yZN6BxlBlSKLOCA4LXGv4LI4gu8AMYhv/UVHn0mU2CFxsUC05Thl6H7Bhgw==", + "shasum": "438fcb67b00e46e47152c6d476caead884ae68b3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536352705819.tgz", + "fileCount": 57, + "unpackedSize": 614368, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkuHMCRA9TVsSAnZWagAAdAAP/jVdHsLsxGd2UiQt9/YH\nkPbsdYeYtPvhxZSP8WdC5Wl7AgxBdVfCN+hLXFsbIeT9eqH4RkE2HXpdbWKy\nGm9mGCWm08OKfXnKJM2v9JgQ3hlzI6QrMcWO6n6f6lVQ+PI+zMq39RmvDcRI\nGU26CZBnNzd8PnQjKkAkmdmHfYCb9nNelk/Syx5ha30OS15aToSFVUYF0VCv\nOITRQfOG++IS3VyHCtWRxqi5maJD+rAKIzkpL3FnQ8kHZoqP8pcjzR0MNVj6\n/D/5XyKb7vn4L1yTBvyoxOtto/r/R8sBvcTt1P2ilrEo0LRpbbjhTyQJ1EZZ\nZVlEEW958KbfltTG3HDaxAEJgljWrAF8lBCgxq9rJUSP00Mers5VbH3L9AUq\nWZsVOcVfPi0nM10T0tjgh4v8vbOeI9beQCcEgYDTDcICNmiseLAZ3Jg4JH43\nt3Vhm5nO5sEoi+ge39Qksu7dLmjONyKMbhNXueHOR0SgWLsCpUKFXcrBVD4k\n8pgY9K3kmgodSRi3KXQ7oXFZw2giZ5Rs64OqEMkNRi00B5z7rviVAgDY4+ml\nD4+uylUrUPAwaskSi34T6R7/uIpwFTqIzxLYtfaoZan/NqBsr+z1U9eyI314\ntGzk7NMYFvxust96H8vRyM6vr+rbQl2jdB2yy5QQD6FkNIa3iFIZvyLyxPCz\nlGgs\r\n=owqf\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDoS4eCQQ88loK787LVI48sD3jKHxBo0lYot48OKbdMawIgGzyW+tLZGPpIaUamQebl805YBQnD/mBX5oBfQg8CL48=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536352705819_1536352715717_0.3025305683221413" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536404184361": { + "name": "puppeteer", + "version": "1.8.0-next.1536404184361", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "6581ee974c6919a589f0ab5b9eab036b13bb0c22", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536404184361", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-XUPosL8E1foY1c6kqUdo7KYQWeub7wkeWP6wOsuBAq+F9zAHs6kMNwwwIlSvHrtd71Gv0u67opg+MDrXOIs20Q==", + "shasum": "2c822388e94b6411dcc9f0c669fdc171bb3f5256", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536404184361.tgz", + "fileCount": 57, + "unpackedSize": 614793, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbk6riCRA9TVsSAnZWagAAK1MP/2weg/yrPHPewG41NH75\nslgWjD5KN/zrkMsLZ7+LQXW2Mgeds4Rc5lkKr3vIKQ9f3i8pQgvz8bveQHFV\nYLEe4U8Te5Zgjh3BrKT2szXdNQWdgV3Jvp8FqBhYFPcPkwoFR5j7P7t1f53/\nTfH9iTUCeAjyIpMw5OHyrqzLDoRAQ3T0r1Cqu2WgIUT5mhSYsMFmmXWr0N2J\nCJY0BVLxq0hX0ugBjIjYZopGYYP1s7g6cu5m/3zcmX7/F40l+ViWbJwzX9uj\nKkg596ppGvBn4GHDq4nSECjfjZYnCGNlNw3ba66OQePw/L4wZHvW93ZXWtKC\ng2Ns+FHOgPACHy/Ayi/89coyYvhTXidJnnZejWIrQ5w62KaxTKADrp5k2w3C\nYDgK73+vSOY2YAW8P5votrAUfZXmNTkWyz5Hsh9VVTanqSca/XKsUzXmeypq\nxKgm5cQwlFRRjY5fCr5/ip2b7DjV8iHITQAwmLekJu6qZQ1jMfNPUoTUlm5Y\nucRjsKn7v2yUxbGvSiG19pYJamcHsztUg2cQNZIWpGZ9y35gu/Pygn/pJ0YJ\nbl+cwnMtrW/o4jlHNRIkdPqcRImWp0PwdE6DtpSs3KVqvOIYfkB9PLURvKDJ\nn2k6HMLimj7YEg0XkSINqxOFKJmXUgA0jygTyNl6vz2m2gKfjgKziFWYVpYI\n+F+V\r\n=1xVn\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD2pgx3Bq8cYGv63pQrhQ3uQjFICediPuYxDaB76quL+AIhAP2aym4ps5rSDvnLHZp9HnRspghv+0cLsLmZO8g707TJ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536404184361_1536404193403_0.23186687189308963" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536664892181": { + "name": "puppeteer", + "version": "1.8.0-next.1536664892181", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "56b3bd809e6e600dcaf3c4dcbe5d4b47f45ba8a5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536664892181", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kEONr3n+2iuwnVbLI6NrjR3hYvkK+W0LpEdPFMOmk1tApuP+TDjkF4bbdE8+5C5N5d4U2Qavcuz0E1a6jsOHQg==", + "shasum": "0adb528e4f383ec86389a5d3ee07a524ffebfe8a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536664892181.tgz", + "fileCount": 57, + "unpackedSize": 614824, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbl6VHCRA9TVsSAnZWagAAbmAP+QBlLhMDSS+rZAeanaHv\nvrCodFfK64gzXJRLMg/9sG5W2XA6/wKdSTd9PCE0NYElNMR2aML+IEIUNwqb\nfuoQwET28zBdxF8B8df0Uvqm0mejAxntoUpdXItvHpQOejS8IGvjYAbs+WVX\nLVCh1JIwBB1LfXqK3IMat/Tl4e+RQAa7L1qwOcVqu8sd6t3vvy0PF/YpSxOe\nWnXrMvRpzoun9b/MYubUk+2QK84ULSXYYSiNQtkxOH3yxIGp5tF/sTTTMyeE\nXLFRFRSvedp4Z5tdpuLLmkyHK58F9irlp3e2FzLiXnWI16FCdEEL1w6W1MTZ\nS3f6XkMLqGVt8HJYdTgQRNWL0nq03m+w8/+/dxgNNaPzFerIrRaCq2aUsOqN\nU/CofR+qJwXmHNqXBmEKWPD8gb1qfmqe6QCXWzShFPEw49LRxhMLtlBL874m\nGxKl1U7PeK7Ei6u8K2oTIRZPou2fT2CS878o1gzacke5SbArDSbicZeGTm2y\nEVGGuqLkGyL2iy85wf2/q/IGrcfs6jOIqKGRU0hpdni8+Dvpx7DrC8w7Rf7K\nXtiubyzVdToKQovfhgi899ELT1PCw/vusnGXwYYQ3IunA/AWyH3y0m/ESaaF\n90+ZAhrkphCAgr7uYH1s86qEr6Eemu9al0OAvjufPalVkmiqQuyuUJR4stRk\nbuJS\r\n=aOvq\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFkOoF4vsO2eHHY7kR2iDYUJqt3tGCZSLfIN+3PugGYQAiBNc1YzpH12xrTF8r4eCMXfh4a66ayRG/SQ/k6ZY+hNiw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536664892181_1536664902597_0.21326358364202047" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536687830102": { + "name": "puppeteer", + "version": "1.8.0-next.1536687830102", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "9c4b6d06e214946e38999b9325c7d10152a1cf69", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536687830102", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Dh0WxNnHhrEZYA3MQadeT+t98Gh16TfBXk/gRt2IPQIQiFD2naSXKCYhofwgP7wsfQTYgqQbRGoGw7EjCjkUiA==", + "shasum": "a04d96d04f114e60dec97feb9e6e2b215584850d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536687830102.tgz", + "fileCount": 57, + "unpackedSize": 614982, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbl/7iCRA9TVsSAnZWagAAVyYP+wRe5BD7bvrx7PKj+jpD\nRSu0NIJB1gWfJOw4dTE+vL8mqi3bnHDRmOZv7MyaUoo+69niSZrs1aReDG6Q\npGoB27gGmDpL9mirq+leLaj0wRRcapzSRLZd0yLpZdisQMVIW3+OIIkOeRu0\nOFpUQMub1WNLEJaHknJukcDc0aba7XkiXrJC5CDtb81CbIx4mukkJRybS7p/\n9Z7DPED/pmYq9g94ARdZKtE7WzWNzG6aM4RlIFYe6VR6W+nAfMXUpzB0nuLp\nAuYt9mDB0PHC9ry34wyOZG6TmNcjBGY8PNAvg5/DmN01ogUzPkBQTRQxw7Tn\ndGJm3mY3ZJIIMXeeCLKrlyiT3W918OXUN8makdcQoz2EDn1pQXQ6hIwX5CLW\nV6IZ8uQghQo/Mibprk+Obt2T6yY4ZaJqjHxnLQXFgzpdiycOUNXufRTfDfc/\nlY2QWSOePtpAxM0cX/fEXO7CVvGEjS7kDBkrDBpbIkZDUj9TQXFWpZfbreYS\n/IH88zelrUeOtNAVRwcdFzM8chwqIPykwRp04Si1xQk6WcqLPuLs3LGB/Av+\nFN8pdN+5Tc0WQRktNQ6m/oCNGB0v/1/Gi/hXZgLojSe5K+QkHl4Loc+1FyZW\nYkR4eDU/wUbyGIaGqD0IcyZYQyK9WjQQ17XOl3wpQZuN8LJ19+uq5PmFHamt\ns8kl\r\n=qwjd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCO7LdcdFcAcwtVCTekUeN/B92Jy3znygZcfvZsBMnnogIhAPb5NCHWOEZcrkbISBZkjC53YVB2wJdUW7R2aPtl8HhN" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536687830102_1536687841473_0.015056110397006162" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536689410489": { + "name": "puppeteer", + "version": "1.8.0-next.1536689410489", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "c644a3bbd3ee9722705a5a672a09828b9b90651b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536689410489", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-H9UbOzmWacyumBhZtnZ8eVjtN3QdSQ/PWnD3xaQZGFYFe1dowFeY2bREvmRRpBpbX5Hykmweq3NGMVHnXw7RTQ==", + "shasum": "0693d8decbbfdeb4f08178ad2bb7241c918406aa", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536689410489.tgz", + "fileCount": 57, + "unpackedSize": 614982, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmAUNCRA9TVsSAnZWagAA+o4P/0crIR7MGx/lCZsKOm7D\ne8N3H8AqnsDgJ7yTjsoYVR29spJGeop4qHQfk3iySy66N7diY5WNV40rBOYD\n4v3v5JBdZscD3Blie+2g4aJtI8lTcH9fl4TykM5cizUf1kslNMktajtJAFeQ\nySGzSYsRavL1TOyBKNKcINred8fE6eRVh8XNn1pkviy95Z//UR/Eg1o6Bytr\nSOsjCyLSqzuY4ieNEgU1gggytDdhulTah6KIQS9sur1QVn6KmRprR4++Ilo4\nTe+KlQneU9yB5xw3BdiwilwyiYfdFwrnXGV7PFarcHqlwZxNq3J0lu6FHRHv\nKR9EqCScP4caXeC11bAYRiiQ+oSvC71HfISOC6Eg77zvgmjVss5x+CAl4z15\nZG/ms3rHJrLDOuFk+e2ivbgnHSwefg9FxuEKglj4VfY/5H3/Q8SSHI2a3j57\nw0FI2Cn/ee3ZHK6W+w9/ItlhQKZ3j4xXyzwxu4PtV7KJvlAHujiv1lU+aMbO\nh5Tv7WCUQRvqx+dwOrBNFMavqnWCI7nKvhVjCTTkzyPFzAWAAay+cC+OZrIX\nLJeM2AS9FdhtxiPtBNnlQTKIe/9lR3e0p3QhIoA/b5IJTRt3utPiAb+Pv4QZ\ni5z5GZgxL/gt1/OOhj7cORSPzwCgIB4aBIji7pQX26gJaASNtpUlNdzaDqIF\nM9Qo\r\n=ErNe\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCxD2BPquw8mBftEkPgdgWMs6Wp28j2yiGskr7UQSHUtAIhAI0LteIUIlZ05YJxGLnzJ+YA9IdeE/KJYH637GTnhK2I" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536689410489_1536689420959_0.5361917973516284" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536786749184": { + "name": "puppeteer", + "version": "1.8.0-next.1536786749184", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "588429" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "7ec08017292e9346592620a768182bc4315807bf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536786749184", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Vw5Yxd/fFdCb7D+zoGnUWCLAWPdRUzbDgchFyNFIdaNoTUa98JRAn1GSwmep4edqvW7ARcXeDBYGQL4bPJkeUg==", + "shasum": "60222ec4dd3df3fff2dd1297b187371e35fff020", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536786749184.tgz", + "fileCount": 57, + "unpackedSize": 615308, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmYFLCRA9TVsSAnZWagAAaRgP/RqIJY5fImUWg9Bku9uM\nwCAs7DkwZKMat4BcE4x2GLfNaplvMiameSTm0ZoIFHGDoXLOvFKsBAYj+rr7\n8Ui9vtAXpGC5POBeHMmA1rWFs6bPAlVi/vyJEr0WWL2X28ET9yWo6CVFm3Ws\nGjDGLU0+cPQ5cpDcDZS3l7ma2AFFBMAwO+tOXEFuYB4pL2CL26Oj1z73M1da\nl1hWql93RAFblKikfujBKaznjg0W8vB1bsw3uoB1/2SwSqKA9FOPXMVlBSmx\n9y5gpQCl69wiceQYLmP+buwT+0/bhGSs1rGGitnNyKv26rIgHVOKAu6VFTWE\n1aqMTbbRhqrQHVdtL2PKu7jm2ht/XY5gpmOMOoPnY2DR1KrA2ZZ/fybQtIOo\n37CzIM4EXhtDvk4JbQCZb0yuEItkIQw5EdXVfQVOGKuuVVdXDW78r5ULBQXH\nksY6+jHLxt7IN5GIqEcEPmendrokwWBAAeu52AnSZh8KlVDqiTzwIql9zFAk\n4x7ydBZeXfwJWUYkeY+q7NcSkxXaUIU0SaO15nutROcjIxVpHw3wspdc9WE+\nWtPIHRmUOcAOYHryksW+E0gLnoyVQb4QTrxQmnNrFUWvP6khktmWgUz8Pm9g\novDka/oKSCa57ECRaCgU85Xf3jOWcgBvT6I81MNrIdLhMF01ku1CSI3jsThw\n9ZfC\r\n=Yzc+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGcEC6D8++EsEgtntzuzONXUaCwuWcoTanVBF+zcclG1AiEA/f38M5FKXQt8NQ4v20vNK/f6oSEPg9iU7kN5t76afy8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536786749184_1536786762605_0.5769239393671379" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536862670912": { + "name": "puppeteer", + "version": "1.8.0-next.1536862670912", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "a582acd682812bda2863e25196b7c3f6cedac2e1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536862670912", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/fMdsjgmB2x8cyXV73oHwJoM+PKulaz2kv0kY7m8smGqx0C+rh8VazTWjIZJZOf8QY1yoxyIQOEvMlbNLIRD+Q==", + "shasum": "83fbb1766623b24bfef1261f7e2c917f14a955ac", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536862670912.tgz", + "fileCount": 57, + "unpackedSize": 615308, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmqndCRA9TVsSAnZWagAAj84QAIp9bS2IFd+XDX6gV2jz\ndWj/57lwbMn/mmudvYaVFt+daIDki8VXnEXgBozgH91GFm5mC69q2DLCbkCU\nsP3RrdO+LlLoEtURm04pqy9bH9GbaYqF7bR1lti4W8kuY+QRkMyZbNFPNGoX\nZizYpBgxKQmzZIRphqQtfbkC34vmQM5QZhbpm50CjMxQhcDJ5DHIW1ECdnTd\nlRAGAE6Yk9Ryx6dikv+Fea7h1lEcWbpd2ZI20gjRAJkK7+VICc6EmzzLrdb9\n0Qg4PMtMHJ4F1psmL+0BGuT+I61boxU/E4yEDPrDTvBos4NBBmg9vGItJb20\nU9SgedCzb00nSyXFKShBmMYX/zV5cyjNGjkv0nz1zNXq/qIP62V7txJAEOer\n9Wx4tn94ZDv+scBX+QjIJhtwF17wP2d5oBJ1tufLaxbbODkN27ZP4a0OLw+u\nkeEgjo7rsYB4p/1s/d+82x5Hixe3ShT3Gqft1PYNdhjdv/uzeHC5qPNEr1Oj\nK/m5x07x3IO09Uivk997tKdGjx6Els3x5BFlb+NLfq66Gvwfaa1KEaUjXa3g\nQF7xGKV5XUP2SALsLv6CVz+yoFhf/79zbhATsje0jm+itXjghcC9pMI2zEqU\nOCW51uClzDxi9OzLVTzqfZ0BNpbNh5yHpUk1oXAvxIbZe2yVZ5NFPTv+XJqT\nCBj8\r\n=8noK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDCVeAnEiyvLh5K6zZGu6dELCfm0Ueh4rbofm6H2gwYCAiEA+D2U8aUV0XvZ9CUvcB3gyhD7VRL/zbPzx9irsUa8h7U=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536862670912_1536862684537_0.6603036981743664" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536863348198": { + "name": "puppeteer", + "version": "1.8.0-next.1536863348198", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "gitHead": "f49687f747f3467bce2608ea0421eaa099a8081e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536863348198", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-tFX3AZfE3EUEUun6kX6vMjVakVT3bU1L9vIf+Dfq8paoNi/MXx3GkzRbP35GEcyPW0FR6qckxWjAyquasJkbCw==", + "shasum": "27945f8ac2a848ff2bb9c974ac8383a8c398f931", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536863348198.tgz", + "fileCount": 57, + "unpackedSize": 615308, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmqyCCRA9TVsSAnZWagAAZQoP/34IJKWob9mU8IjzyoBk\nTpk0ZaqfMC1z1qnbpsvp3rxXrdRVKE4zfocUqI5IWwfvQhC4vN9lbSpNCWmc\nMrNwm61erTRfMIXGYUSdkr5I/tigF3LRlErw+M0Y9Odx91ZScAb6UYSj28yO\nAoUsROKa+pFiD40N7TqSvzN/p68LvLp7HZPfNnRvPgyGw191PvgFOdCXqT7s\nFOpIQiAuy9hhk1T7O/7nDoNvOQw9T0vasTwnE3+xIqUpL0/jWwM0mr9v8Rbz\nob+oWb6nBTF6il3t6lqdBnro0pdydw70CtpEUbfT2RoKKcoYUzlrg74ZOVSj\nzjY/BIi2aQqTeFR0StIFB3cwHYZ0onayOLVvwpx6kWaJMvYc+WquymCeE4ap\nczpyezZUpKGppQAaGPSRaLziuZPrvvw6IldHc6wWxI98vQZF4rEf5/A21QnG\nl2ZPRgY6HY0luaRR5FzR6QMgTjUMQ86pJ0oAWn884FoGSdR2ncRFOwpglLLA\nMk66b0wMcZ9yY/qD6BhbpAbJZuWAwepCYqHTWnO1H0fZ1ANQPQhlD3TRXO+O\nZREq2PsEYMjAC1cuv6myFG5ewzkc08grkzNYqlv+RAyMEPaWXjewHaK9/wOr\nkHKXOD7XiD4yC28QUMm4R11V5txjx4pT719KdxLDILAAQPz4dQ3akz9Fk9ZQ\nM++v\r\n=BDgc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDC6ow/imfUOZsOi5ocPy0zYzSKyVUdc5PdzzgkcuQpNAiBXMZgwxvksXJYYIDZII6KTBi2WpAH3wg/9cPJu8rK5fQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536863348198_1536863361742_0.2092269828094111" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536865920560": { + "name": "puppeteer", + "version": "1.8.0-next.1536865920560", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6ec3ce6920095ea3c660ddf91567fb6dbe1714ef", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536865920560", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-jMtc7M0O1pFa7JY6il88M22RnFCpegiAX2i1A4nJuLsq0FBP6z/yiqOpIp12cPFhjbIZx+X7YxBlFwDjTBz3PQ==", + "shasum": "e9324cb031b80d7510816948d5c08ab2fccf81eb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536865920560.tgz", + "fileCount": 57, + "unpackedSize": 615668, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmraPCRA9TVsSAnZWagAAwY4P/3Q1DXWOyLVoqtlY68uA\nRsBjwsLbPTc8vm0ptNl+LQIjX5/sFIkI+5hwHCtaRyFv4ZQyBid2LonosNLq\nbpXNc5Mm018nB/EMPopeX9CNH8BpExhIZjv6NSSxtrbBKeZrcpJoXlGQ/1OV\n9vahe0WR1OLukHhraMKZIJyq71WsAMrQc2xeetPEpUb/e0fO8Zl2d3ZJQNkc\n4YODGmZn6VgT114Akg/gxNb7N7D589jPa4t5fvXeFDE+yfxOADzAaZlsoZjW\nXBhBUVj7VPGr0GwDcNiyps9W7maW5266NAy+ARYd6snEmSU6gljGZ5OiHRic\nACqNIhNIUEoE3Km2Wix7PxH+ugLF8L6pMU7KfhR5j28/Ou+bWEUWb8wFUUux\n75ASdhb8u7TjdtFuy4xoG0y8GYq9uteNY4Gtsk2MFrhF1muBrTTaEhNJuIn3\nQ/TuKhdOrxGDMfEcP34lq7c3DnCpyyKvZfnLoLUePYqIgeC4WU66BaQkVugk\ngeNW1/3ZOQpPNovwJLwuMingN6/t513u6SBrkpMqVVtOmvAegDNRIAbME3uS\naVlLECRRqj8GyYfSuJ89JWZDhcflijrSqHoSMZd7J4im40nZ3NckRUkaHVr3\nMQ0KhQtViL6kG1yDSaDzM9dG0Ry3SSc9jnLa8RPFwXeuJlgwMgKX6ST+c136\nk7RY\r\n=RpnU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQnX5ggvZnQnOJHQYVFr0R4S31yEPlPBHVEWvMtIgNmQIhAP/tfP6kWKvFroSWhDOiLeay44dq/4FL1JAS/8u03bOL" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536865920560_1536865934888_0.5071838559408643" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536919640452": { + "name": "puppeteer", + "version": "1.8.0-next.1536919640452", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d929f7e2137d2df6c1aa6d61e567f5e0fc0a578c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536919640452", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Rj/uksDF+rQd27ud11GjH1xPRQlzVWccc93tMc0c6y/NZ1avUR27Xn0lUol3v9GXEt9k0NjbMQXshJvQkjFREg==", + "shasum": "a984ec139009762e1909d008051de88799e328a8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536919640452.tgz", + "fileCount": 57, + "unpackedSize": 615873, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm4hlCRA9TVsSAnZWagAAJDoP/RROXaSj4Amm+BYoscJT\nYoBdw7Gy6MVwXqEzfqdL6oE+iG1UgFi2133aqbef0ddnhdg+CxtuAapByzS+\n7H7eQFRu+XozmcJqvOoK8RpXTeJ2UhQN2E4jtrP6KhriL7BDFfGWHtoz5zcW\njt70wlQ3+WXSTQYfytWfH8tIG5ivoEn4xU+SojwUuhHCPwuo84WK944rA2C4\nbqvJgDBNHF25bG0mifsPtzBfpBzJqtnhoPxhaCQH+jEjsnqeAEOZXc5qmmLI\n5Gt/bEWKkz+XQPrA/4zsngRIZuJiVBULRKl2H1F7slQzbpgB7xjgW2ux1ap7\n1SIa3trK+cPKJ79cjybSvibUW+zBLjMrnqohE6CPRBMRZiYvGUT9PDhbxyDB\nZIh/EDRab1DohM/M+pDzA1WyKiqYtpJnfs59ypBJr5wz4CJt6o7PdeBS3i+5\n07QJs74ExjyYd7GSOKuou2fDFw/p3pg1+TZUefWO6cEyZVeE+ZfGftoludg4\n0g9Q5tnMrGailNaR4LLtw6wNcLr8zGGDQDOimjjRDiSqX2u3+6l0ta06/jFF\nhqwFwiqkp8z5qfRkH/ZfW2UqNdN3IvxTwCaVm8cItURFW9tWUf8gQFl4p6eI\nz2KqwmkYL/dooz0o0i/Egzxg5cdDW87BzlOJhrvJsVMZrZHJOsbSC4pD8rLA\nnnUD\r\n=rJd1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDf0DO1Nno5ZT5LoYtebvsJ03MBAqfxzqCfAjAxiCfZOAIgPUHGN756Uxskm9pjuknluuHvgqtCY61ligShjOi2nMk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536919640452_1536919652814_0.33596792272314047" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536946017235": { + "name": "puppeteer", + "version": "1.8.0-next.1536946017235", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f0beabd22a3908a7405b22b8e24e3c9295e1455b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536946017235", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-XBfnoNcOEDNm+cpRfz/H7GUC4ttm1PoV731kZvHcc+DsK4Zx2wDXrmx3TTpEvZ4wUuTekmQJ5LaP2Io8kfp9MA==", + "shasum": "25021c80c14b76a279ade69ed6bf1b23256584f9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536946017235.tgz", + "fileCount": 57, + "unpackedSize": 612966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm+9tCRA9TVsSAnZWagAAK/MP/0QXfLm/clGEGV4UlMQz\n7HEEMX9h2Doz03GFApocBkoouH8RHyqbDdJLiimvNbPWJ+irEjFDr74h2dVW\nA+Y32A02jRh6prLKC/UJNjaRKoTQGckVnWDg1lMCCFxcs3wyM8Pz9myIZm1u\nFkil8AiUAsGdNNgQ9GD4mqu5SPT/TknTflOIS1JCdTxPq9DlqPR7yD/MJtGH\nRSAbQ5wuTJGeBVpybfc48BGTZbhPob9GL6Zer+qIEPHVXTD82Jkki8hbn6Op\nuP7tW2evpfgn5JnGLi9b++Hf9T47LOd/YIGdIqbfj8GUzv1K2E9Nga9FEZyO\nXQE6FkTq7sejqer/3+/PpWPaGZw7XBEnGEPYUHwabZxFCzAlxiKqQYxfKltB\ndqOiU2TnMjN2xyTTPDsTpY/3SZJ7XaEbo3oEzqa1oSdWZ1CL6Z0JwhXBttHN\n9qnOAEC6OlfOQXp/nvuEYaWwINhuWl6itogwQeHonK383V/IrFkh3CaPvXiL\nl1Uj469PF9uLSXFhsX4LrSekY2kOfQJ5mApa4cu9F600yZkRZWkEwzDJ3mqD\nT+35HprTEiqR69WieVUNrgN03P+IEDDHhDKRNnodK4m8+uN7MPdBjiFn8m9a\nXp6OtIEkidT2pP6USJQ0u7kD9xCGRWuAmRvj0Y/hwA5om/EZxX5BDRCq8fJf\nOJVO\r\n=Qjp0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFVlMGuKIzXBJGcS4GU+KYiQEOwc+R3Y+DTYxmZB2RgsAiEAtWS+bBkrxqQhruHw9L6cYdBBWLrwjnm5Bx+6qYHY3OM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536946017235_1536946028501_0.4580767431090891" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536950888728": { + "name": "puppeteer", + "version": "1.8.0-next.1536950888728", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d547b9d24a803c0adf923b3a821ae5f43e79bb53", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536950888728", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-K9lkv6UGbRGJKncCNwDNGEYNnH/ALqlG7zZiXLWqZbd4PMJ7AAfwUCmxfeMNOvll73DnteZI6DZNay2x/t2pQQ==", + "shasum": "02d9c47d7dd5b9dac807aac1d4eae679d90f8639", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536950888728.tgz", + "fileCount": 57, + "unpackedSize": 615018, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnAJ1CRA9TVsSAnZWagAA/gIP/RreDpSt/ozw7VfxkkJD\ndnn7HIMkePIZUdB0zEopeNaixFD2MLIouQnIs9F5pFZRmk00MwjjzbK5Mbn6\nFfCNwmu7hdKVBneL/viqoaFEThcDHJR+zGY933M5S+MgXD5dxGffWX5zYcj3\nMXvPDUpNywRpL1qYf9hIGCiSL6kAdMR9fvVi1plcVZMDuBcSnmPsVSHxPUAL\nLer4hcPNyIjl4KNBZrLsAdtwpSiYSb+s5R6zgWn4FKiLaI5kDv++M+i/zqEC\nPlloop8gSO3HtatpHoYl2avRJs6dlc0hPVFhx0QbwRZ8/SDQREg/vXkb73ae\nN3Y/USmUM/Blceeel5ssilKLHD6pG+aArDvOR3UqSK/cxLZPaTkc33pl454/\nRnua+8k/KNXq8HGzvY/iseJhlQxoP9/XJKFpfRbDWNoPJ+0tN1UfF56GDXLe\nkyJmlQEQ67wN2giQfASmbFY4IH4F5TTMZzz9KOxjvWhq/dcKI+s2u6jnfusR\nfBGouR3Xd1V9yfuj2Sv34GrcHmK5HSIrlCfuV8T69N6I6ltZtTRYeUZb712u\nWQLsN8iSnGD6pMcVRvb9kFC7xoiRg+Ws3GSMKbF7Yuj3RoF20AzX7ruYejRi\nXrxDsHZbBMsZfKSSjJSNcHzmGRbMOy1KfIpByI+wcEejRcMgxJhH10TnU+Fs\nH1LM\r\n=fa1j\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDfcPjH8Aokhkg8xL0yDUmfsRYMy8GqTiNq9vbW0WC1tAIhAM/ICKbw+RuZ6V+PN9hTG/iHDjzxD8wJNZJP/+3uh6Rs" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536950888728_1536950900859_0.9762402694799945" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1536951103472": { + "name": "puppeteer", + "version": "1.8.0-next.1536951103472", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f5d388af7dda492f3932f8c21e9f132e306565a3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1536951103472", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-3t2v0vidTBpMzKTNWLIgJId/tFqAF3df6A3ZCAWFob0kfYVHmemb4qOSM05nNeKg64Nw5mvw6ECmVRpGtxM1eA==", + "shasum": "3b010a538b3ea9decb1237d08d965d42fe083a48", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536951103472.tgz", + "fileCount": 57, + "unpackedSize": 615018, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnANNCRA9TVsSAnZWagAA0sMQAIXAjzZvlSMkCWHH6DvM\nM9dKNYWfp80JrqJYFNmoTQU9RmAdD1yLlPnryPT3qRVoCpYKIt9z/qejSecG\nRX2BfWN5pHh9MFZcrn0ZNmi45v/B3jCsM6tOpYIBt2YpOARDwZcdKuO1IoDt\n2uBUnc0OWRJ4lrmaPn21Uhc6JRlDdzprxDm68ZM8HZH4oP5dTLdupordqLOe\n/MfPQHXkI7bTGeRxiQPENkhMqAqLYksgsxlS3akpz3YYVYVX3wI0kTqJ5JjL\nbkfKuAk/39cym/O6El5kuBIvBjRgng2gEIBEKOBG18pulAMelnkBbCmR42lL\nxELsmYWB+PQ9csrj6yjl0fonpQYtObFVB5wehat9g+VGp0Wh+iI+jeuyT1sh\nS4fn14PINFY6Nl75a4V55pFSKsfINUVgspe79zORK8lN0J8Ol/2bHtUXzRRX\nNXg40sdGHbPxcwwdUM9kGsj3S7mbjqD2ytsUjOVqO6xWtLhtRdvHwmAXmFS2\nlOPvTkWE+NqK4b7450SrNgdOlM773g9Km/uMZCyLREP9wA/oVakxLRE0Jj4U\nHIyoIbeilZ/IG+Q2nYMau/GjMR7ajJjQSIfDNcKVlzNLXyoWQh7yTZIAIxYC\n2gevkGQf37kR2u/TqZi3SHREpYbgHL5mmHVOd70Z+hJH5+XC+ULgqSW1sEiF\nWHat\r\n=kM5G\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDK+WPqJFwP3DvHtIr9WikIQ2s9/lYo5+NO2H6g69x5DAIgbJNjq0jDEK/BpZdGat99tGKWIUgcZO87KNta7bSwg3s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1536951103472_1536951116434_0.21473707824283372" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537204703840": { + "name": "puppeteer", + "version": "1.8.0-next.1537204703840", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "590951" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7f00860abd3c1efbca21351a8bdb12422dbe7aa2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537204703840", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-yd3INr0Dq9sG9p2QXgOIh8+ABM0bAfe+eYqTeEtbVb0s9E1AfwHPxf8aLbP//Rn3YDLEnwJE7AY4TVyrq6wcZA==", + "shasum": "4c6df15503e0d99a708a3cb8da79fbe4e9e93f9c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537204703840.tgz", + "fileCount": 57, + "unpackedSize": 616346, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbn+HqCRA9TVsSAnZWagAAZ9UP+QF2QB8vDR3Z9FanliUt\nEjz+HWzZtaQ7jN/+zA9vL5p1QbInTxNUA7RqnIvMZg/RbHDN9LcHNRUEnXRP\nQnH4NTE6uRwmBhIyLQLqqyco1tCwpD5WfkZkdk9pWfSghVfCYzRFcOJUYOiy\n3EKpqOXtOijoCjdmcaB8g1iZkhuD32NYd0rKamGsz9Km+cu7d977bZhWYoTn\nIAIImte+MUQcdcVN0l0KdshdWGQYHGP5JtoUtRSs6Ce/iQDtxXNLEP/1Rx6l\n2UzLxv8iEet78MQktQCMzXhtLW5zIO10qLsPskfS5CAqjy4SKTwwcHJQKBH/\nzmDj0tDHT4hR56HY618Y2C1cfxtmtP7HBzLgwZQabJYAqcRGCwRHmpbzGBTR\nTFvhvQS7FzQPLjQk7b2foKkuF0nxyYCqjrx2MaoahPBkXaIBGElUEQKkoecD\nSClwJIMDtm8JUmVCejsIoMKrU0f1ITU5+J+Nc4CD6bSalvkp2rcgfnpcDZK1\nEV58zsy1kkmrvWwtLuERMC8TQXOuinuhIJQrzOyzrldRZuo+uHmoc4bAQoOS\nQqiFdi4NJ/VAA6qtHFAOOoXdKyWNacuGshwqEMdrqLl4bFqWQvTosXFAEx8D\nkWSDo5UZtxZgSBSxY7G2FOSLZxOrSX26nP3tEd6e68xOS2ICu0IKHQ2948oJ\n2nyo\r\n=cM1h\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD2Y/l+GRs70wB+X7sbv4PhGaoCN6XsxVOJDzrJa1kH1gIhAKV+lboqHePYAG7bo6l6Yq3JtjQ04CgKC/NqgP+2OyPE" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537204703840_1537204713897_0.18038400591849402" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537223108573": { + "name": "puppeteer", + "version": "1.8.0-next.1537223108573", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a1a211d9e797f9aea80206a018271390a6958a5f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537223108573", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-k0roshkoPmMXsYVOoBrwqHfTTvy0ooUjhRM76xOLs5yxaZe/ebnJXejb43KOs6JGTlCMsYYMiP+SxHHzqIxdvQ==", + "shasum": "3a5eba68e3e8333d540234e97a14f07aec48610c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537223108573.tgz", + "fileCount": 57, + "unpackedSize": 616346, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboCnPCRA9TVsSAnZWagAAGg4P/0E+3u5mzXKH1mGf0nRw\nqLij21EopkcJZO2F1MhXQxLTfzLhSPOxLwtCaYQqZYBNl4Ugh+mClk/xzmmV\nftnzRn4n0ySLj7Hhn++XTv+sxJEyu1m+h/h2ex6mERGKe12cAdS2JnFL+GkA\nGPzy7VbIOE8HAmZBiBtYLd1Xeli/vuv2EW89GlepYikAZo0DDtv29Ag04m6+\nRPpp3SXMRUGNBy9ti30fL6CVt3y8LPhHRn94VKl7TTn3VIe4XKjvTPjS44ba\nUnqTmSsl8jYtokURSwmwQA8JWcrVYaSK0SCJ6oR8OFTCA6uDcT3HAL9PJSSu\n/BTy5HIpu+yGjqQ/I6v2xIhhSiqfbVcwdUTZRu0o9VTad82xid6UVoxYnS0o\nxZUpkB0zXHdVGPSOM8ZFn4d+anpQ8+49b7YFVrjGj1wUqwvz/8kW4we+Vs3N\nAZo84lTKkjS4F8/leOYfLS5YQgOkhia8GSxb++BJ99PyvdBYj6B6+qhddYxD\nW5hxaw0nz0VQEVBer9xQLJmzdKeTIkTPWKShHR5ywKPYslsB9MQiwRcjSmE0\nLUFANEXu458UhQZFyW3jmbovMiyXEFba5TNIVN2jTXaodHzUITxSSpEfn47f\nMIb492HRZ3D12aJNIWTJjQxh5jBVgaB9R/gWK55X5ojY0Iepd+jnjcdbE1gH\norig\r\n=qJCc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDl3egFrb0MCppQnHB3vahL+QcPeXPDkO6aK753wCZ06wIgR2fTEMaHXVjxBUFNMLoALrOh14Vh3oIWsTn09bwzqLg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537223108573_1537223118947_0.017948086651449424" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537226285635": { + "name": "puppeteer", + "version": "1.8.0-next.1537226285635", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b97bddf8e5750d20c6ba82392eebe2a3fd2dd218", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537226285635", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-RL+uLFDduY61b83MSl/4E8XWJt4NvpiTeVSefS9HweYNHKmvomW8Rk2Lu4Hgy9K2Q3lIgC15Y2gr2s0l6CGWOA==", + "shasum": "47e918f5ec8fe59b0b574220f5e12b1f7e299105", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537226285635.tgz", + "fileCount": 57, + "unpackedSize": 616498, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboDY4CRA9TVsSAnZWagAAD8gP/iSC/1JbvcznAFUzZWzr\nJf3lDmvPd4iIxlLubaTkLaTEFPob0sxWRoMIwnFJXSHra35W+nZ2x4BdrrA4\nnN5unZfztRK8SrXIB3CGffY8rC4aNF2QqPq5aygsAHuQYjNvC/r6J4c7x9x1\n+hQ0ofB+d5KIfZ9aJlSTmu56CJHXkXjqGn1KlWl25D9KwH/YXl2i4hoLIrOZ\nsrMEtW4YAFCcKsJ6jK4P2BjGlDKpSTuxdebzdM2MhAJIjgjtarNlohUZC5ju\nAPVyALyxqVNbBeKbj5356AWWMSmVRMidxDUKLIa7Hg+AtdNRXhnMg+AaT43k\nZwMDE4V1xVYLP/pk5YBkUt3ecpuYC9CcUCwIQuZ+jqOm9KICS9BK5sUt7fOc\nD7s5BhH6nTaxnTs+UVs1GaHVTiyOFFOYvRSvYMUDWke0yn4KkKaWoA9rhEe9\nDu0bjEWhOf+utNF5PtAo+92mFNsUJi4NzvRFh2R44m1w4TGjOryfKdZGMMSx\nVK8R1fUe5q/l4hhQx/9GW9i0dPLFWXho5DDv+gPFo/FtpnI+SH22/YFm1wXR\ngbYEq17uSXNqnW4K5CBG84iz4+hQtTAW27jzijXrWkx4prYmcKibWmJEJdtU\n1MVxLTd0pLrxRlFEAxGzh2t60SFIEgUfzf0SLVNnJxbF+ZD9l79m+2/bI6Du\nCXWQ\r\n=iv4W\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID27mZrKKz88+vR8BXhusGID2xv0fx1MpaMmWz23lCcWAiEAwgFh1hbYYmPmpJONpvJafkdVdQSDiuheim33sPQEz5s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537226285635_1537226295859_0.5210897738309554" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537362098762": { + "name": "puppeteer", + "version": "1.8.0-next.1537362098762", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "27477a1d799fc3235c9e6c42683aada0dbb5737d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537362098762", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-2+YITtNpNBo4vlxXl+l0UUkUD3odnR1d3Uf+aUt5Ry3kV2nSEgx87lnm5Tx7xfHW/WtzlOahZatZj9CIhjtx0g==", + "shasum": "01a43228dca5eacea84e7e55cb99041ede24a7b8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537362098762.tgz", + "fileCount": 57, + "unpackedSize": 616498, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboki+CRA9TVsSAnZWagAACmQP/3JfRLIc3HJHHwTFZiQ3\n2yMHjDyIim7Uyq5ADyYurqeStsm+4UFwnqQqWKn+2L2E19uMsY3dLnkluTTD\nfImcWyxl9iyy5GA8+jeEvxHV4swmGS/TpZ+wFgLbHpi9esRl4cyPtWNdxu3o\nXD9qGYVvzebVm+ZVSkzc8npRjYLpI9BFTYIzZWOL/sL8cKQ6eQ5MfLhs4BBp\nQ9Bg61kqT5YWjD4G3IKwfaWzvDPYSeYpQ3WD5+yQLc5QnsKWEttlvw78X9TT\nlewjK4xfRWacr25Zm+QBr/IOVUYaBAroYmdavAk+V6g+JBJnZmL35fmtfKvo\n1ceYRJlbklIU+AozIk9AKCai7cLmV04cVnf6mJ50rC9hvO9MWJt7F0I85USB\nsi+D8gnmF4PrLlZsGTSfHtfajrRZCPt6QJIrshTqZJBDMURr8VgMOevprdOJ\nRl+/XQ1S1UV9iP4uR3xjJtkDBfEoDnx+yRocviryI8G7DHAB7SLC+7aV4h6t\n9LLoaZ0qpYb5+9ziTaRPlnmq8d/RQAU73+0Py8l2nnTCbjAyQf+kxXcwXqdz\n2lNp/JRw17zArfiHacrUQ7Uv+9qc161OAbKo9an2ujZCZGrucpq/jTpQOb46\nDZ07u/WfKY9vHigV5E58P6bX78761rhrudtOcYgO/prOpGw9oz4I0TyrTmGU\nF+jD\r\n=dNQ/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCs4khGXN36A/OQN4zXn3qLhg+3wIwtcOYzO3cenM5K6gIhAP73IPZAHXLeROO0gjqh8poUHyvZXZH0Pd3+Hqbd5liT" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537362098762_1537362109643_0.8495535308804101" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537388094387": { + "name": "puppeteer", + "version": "1.8.0-next.1537388094387", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9223bca964a358e8105efdc73f2606f637a076c8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537388094387", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-W/Z1cxhv3V4Ae/eO63XP//u6CLbNZJefWLlTTHd8NJ5Z8RxoiPhYlSLASah/ycaiwQKVPSQ57CsLUaEJtApkZQ==", + "shasum": "aae1f631cb7ab5d020a3b9f26c40501a07a5d53e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537388094387.tgz", + "fileCount": 55, + "unpackedSize": 617838, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboq5OCRA9TVsSAnZWagAAaNAQAKBBhKpJgM8NSrjy6bVs\n5nvK0DpHjSGnROAbcKqe3ZNMZo4WSf7jl8lnBObNKlIiIsDQ7erKQgV2zcKF\naTey2IWbQoKrLqZkeM4ImaBcvXYMPvynoPGcOI/5BqFj25NkzFiN0R5svx3U\nu5Ver3ZG4mpAL17djgo5EdNWXxxpjomOsaS00wUH+XdwQvKS+9xaHuAbDmRB\nwYJpyvKXqhIe0ggXb3gEk0Ex842pqm3xLr88QRXIC6XhByRQGtE6s5n3/TeS\nmNDAHVDltesM45TGhveBDHk5foeXcStMREsT29DgCa8rAQzC2+toz55GOTSD\n9FndAETdD+DD38hlyCFhL4VDpPb91M7jpWCGNuhtEm89ajLxHHTsZvepnqQ4\nL6epDChYVaZj+xYskAfCQAcW3//jI6/b1Pt7Hjr3iv08JNVzNX6Sk9PNWNKr\nhhwBqPMvG92TPba0pLO5U5t8wQHZmJQBpb/ZGnm23gB3OXQxZsZ/7BwHR1vW\nWzx+tbmMqwoPmfIYFEK/+GfzWuifBxq/aEBnK0lCOmyRbB4uG0oAh6q2Tehf\n1N6ckMe0mMD30jCMZzynfjwdR2bo9e462Be6R6yWBtSYrAzatxSi3v7hVw7f\no8lXl2/1J29G4NEE987KGscAdQIxPuHWwvBYgNqdjlRtkDvOEqztlz2KV7/D\nhxYo\r\n=ImiD\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFLRoCN1i6TiTDIkFhgW7afzKLVE+sH7ssjyyLhwYASzAiEAwWVXh6vzMeApUisGC5EVG6KuzWKnzl+LLoragMeHg2Y=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537388094387_1537388109975_0.4505321954081942" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537390700271": { + "name": "puppeteer", + "version": "1.8.0-next.1537390700271", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0b9d8a62717ddf5d77a0ca6d6bacf8d734054853", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537390700271", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-PH1PUZBHJHYzqlWYmtplckIRNe9dD8C/crQEAmhQbL3wwivAMczC6OSq0/8DYwrUFN9ylFWX3usVu/w1Uqq8Dg==", + "shasum": "53b636800b2976b580aae585516447beead0d6e0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537390700271.tgz", + "fileCount": 55, + "unpackedSize": 619682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJborh4CRA9TVsSAnZWagAA+j4P/3QS52fXxm4ObcZQKytI\nPFVnF/cmfwRMqFLckf/b8wSmrf9c4nvCRhZJmKzdiHuCk7TcwTguK6j9Z23/\nagbGBCYXT6Gb1WH1tAqIVpw+2fQ5IffdzXhQi384sitXA42iV6Qe33xo1n/o\nm5/XUpz1SZi3or9iemvMk7E36wWJD5VkFX8zZyux1j5ivp7soc9+AsjfHE+X\ntLLXue/GsjBfp5qMT7TeJTkkEvjqi3Fd8RXwGHohOF/MvhMTnitXWoMV9TGb\noEVRGehm0Y9Gny10byXyxuFwQleteWq69gbqnY1j5Mc/aa3dlw2KZ433f24P\nDg8Y5oJHUhFZUWAMUvYaxeYH/GIxhp/cEATGpBFyRdfWr7iaAFaQjfx/cmd8\nUNOYvH5eZjv2BV3nDB3rNTst5yjQpXY7ZUVW/j7hOPBdBKwddeuNrA0Wifh3\naniZi15RM9+t6aPVON8s6lO4yYchD/j5PkW9KIFOE3izAIKIUITkw4pcYcEi\niMV94HwYQFLCs3rNRp/4MgmoGbe0pPXcM9LlUwb4byZeQgdQsyqCt6gK1ADC\nKo3MhQU9VhyDT5bSE7Ron0WS9BsbR7CNlfn3v21s1wnMbg7CGH348RU+0xgb\nmAVDTgGX2ln8jNblqxUS+j2I6eBmAjI8Uj1Yu7HkFXcd+JYgITzTX0GtDMfG\ndUuZ\r\n=wq94\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAlSa6uTRJMi0qqWip5dFx/mP6QwWiCuN2vDF5Anegg2AiEA7eXOVmkSESJfoVJVsXgxIa6f/+v+jG0dAc1xOt92t+c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537390700271_1537390711946_0.5849705373119505" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537455065839": { + "name": "puppeteer", + "version": "1.8.0-next.1537455065839", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "ad49f792a44195a615d9f7c2d1a065a02badd15b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537455065839", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-NCh4DdTW6O70I/fCnPaFe+xqN3QJ5jU1rZVvXdcHkdMDJuwcdWlVAYOsOBxTH9GqBn6blJTiU6UxP6TR4OQ0/Q==", + "shasum": "25afffaaef94affbb72c5ab6ca5d07c30e01d1df", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537455065839.tgz", + "fileCount": 55, + "unpackedSize": 619682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo7PlCRA9TVsSAnZWagAABxoP/joMepX8FslXcsbbw9ME\nUGY6XWZABGFxpKT6ZxWLv6jqIhP1tvWaj6+XC+LvBlQZZpw1sv2nv9CcLbEO\nQymKbvEaSpGOaw0Lt668dUv90MgF2HERy3wKN9s6QyVQzguFyS49vqcyjYtb\nUdVy3ObQ63ANIUnJ1vGd8Ru8lispw/jEnoLN83sigEEp7AtWBhXFuzN7Rtxi\nw6im/5RtQw93mvhnEOacYxUW7WO3BYPwANh0M4wu/rozH2HN+sU6lUslnReb\nr2JhkXQpbWwtLLfn4ofAFMejHFrSlnQFMK0SFgmh6FV4+x1o5/MnDqkG+v6A\ngjD2Md03SacdaV2mJvqV2W78UMh43Fyrsd6Qo6MQeZmLZJNBqLgh5auH9pyU\nA2cP4XajaVI3l5D5ktr0aDYXaqTv3PdAi42lDB9+pIFnoWznDjXVLCai09yK\nE+WJtWx1b0YXq+soOgSrVNuU2aWdZaAbDm0pTVJfY1Q3F2LuXmfl1rlmhyGW\nRVqCuBw2pUOqKY4roQpOgJLHEOIDtTEqxjBiCvVnBk7PMMIgnS9eDI7cp410\nISiin1/GNuXUW3vYZnxlXpvN4Zk8EwEj0c0o58TyyPOYQWpSGUYZHOXiKeOw\nyUaa0wHTRHvYIbcAMNv+6GIIMIvwg3NhQWbcEuYhXSavK+LhedgkTdBpK4vl\njDwD\r\n=1ssO\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCoDrCfq4hg7kT7Ib3F3QCRKbMHTrH9QOTTohCro0Di5QIgX2+tEXOHQv8JyIo0bM2fEGJcL7cZPQfEYcg8aQRntHo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537455065839_1537455076286_0.892604070300111" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537468425440": { + "name": "puppeteer", + "version": "1.8.0-next.1537468425440", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5acf953104a09d7d688d76eadced6a4eba75d5d1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537468425440", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0CFX7MrdzWSzV8LPqJ1zzLgS1uGY0rtMFtIw0Irs67r+awuujmyD/RHT8vbwUY+kEL9TFyN4yzG6iWZt4BpsMg==", + "shasum": "e344910e9dcb5bbf3aded6279518f7637e69a660", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537468425440.tgz", + "fileCount": 55, + "unpackedSize": 622330, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo+gYCRA9TVsSAnZWagAAsFEQAJfI++bgp8HEs/1fwiiX\nAo//+u3JXF3err1sSt99svZ58WdzXQNK/bUYj/tnL2+fqWm26ym/P0y9fjfR\n4UT2c3OqWgJpVGCCgSD7ML0tiDf0WtSvDJQOFVYMwdY1yIt3t02CwQzPfHxj\nTnA8ahSGxqWRGajjVPPhPHdXi4fbp5CrXnVQ9uR9qwL/lohyrzSODzxIoRqi\nbr38CbAchuaIteY5/9z0HwzRg2UCIPmggAbxU3M75mEYgX96OFEeUwEtYtj2\nHu8hJmvfw3CpJ3SEjFcmX3DlvcKsEYIPJ/ihBkAQ2od/anNyjn06d96Mb7H2\nwl0W4Ax6r38Cwa1TmS7qTOqTWdhLdO1sRz6Lqq1V5OGvl9OV0b3zoHuj+CYp\njcf1ZXf13AqQFBYpvC18s6ZDgAZS9hXiuIj+etQ3fRVThNnAay/xuDiXzAyU\nwi55COI9C0KvU8duRlQE6cYeXxkmzNdA/8yQp8eaDlG4xAgNfS458R93fBE6\nwFn0nidFhDI/+52M6BdbfqKZrFeExnV3jdfllCV9tsvvREBkEnTB4S9IAiq5\nTGZSsdfOURKMb4SCevOzBzhupKsr+MlXEDOrQm1XkJGa542bj45aAxWi0Tuv\nB22VHNDaaJ1OrZAO2oQKsfk3VV80GgI0nRt+53XeOVt/BDxxNfSuovwi3VNx\nmwzw\r\n=3XHX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIErNI1XfgNvyKLfCJS8kNJM5eqBrE0S2CeLlopZH4Yi9AiEAjz9Dn5B0fC4/4N4xEG0U8BBbVl604Qa/GT77VmBJMMc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537468425440_1537468440045_0.6688961885128815" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537469893945": { + "name": "puppeteer", + "version": "1.8.0-next.1537469893945", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4e48dfc7a195331ab1ff987d98290a6ab060a353", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537469893945", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-EPZz7tmtdHqFb/yGrhmMmAP98hq3uNE5+0D2/JME9omsxZa665zxUlzeRBlUL01JwocaU6kV30cbJAA47r1q2g==", + "shasum": "d73ba06c5d6fc60c553c2c7f39e09194c2863ef4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537469893945.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo+3UCRA9TVsSAnZWagAA/M8QAI7LxPH4ZSAKerMFuqwb\nk/M2B3vWe4kbwHIKsCgVE8TJh/vg3ahivG7csX3ERo1D5PGkoxUW3aA7Erid\nraFc1x3WrM34b6D9yQQIQsfJoR09kc1D2VRRJXNGGM3AkXD7Y+RKT9GbRPiz\nJqeJkojCKvLiN2fBrbR+BcTQmPDcCOYuPogxcTkRsmC8+mPLaCPi2HKrAPIQ\n0eEsrBUkbdM43p0GsSVdptKBG8ZhkFUovNGB919b7I37e6HvMSI/Tfqow/8c\nH5NznP3Ru37E7lnoTUf1urx/aBchrw+bYQvsH95xSamxzakIUeNEVUXZiZEF\n6+LPORfN5AAnFesUjBVkQqCRxkeunfovAtSn+9nzihWvk4+7NiAJ05lTNlOB\nE0shfsEh9M8s3ReoYP3QBKNLkWptlKJcidtdy7GJJXxDej2tLczB4O+Y+O68\nsJAHYG1etJPz5Q1rKFjmOd8fIDmWzxf7zHk826ysucDQGETTnkAubx7ReNIE\n8xfiWt07Ko6FKeUq/9+1jy5C4hrkPeU/0fsn2VAGZ5qxvpnNiJfmII0x4eMz\nSdzUG2hsvf+EzjFcP3e5eXm04BySI972xYAI921KpIav2oA5sN8g140z2itr\nn2ppj1dtmJUmFCT7sR8Mf8vBb7UQlWP/J7HiexYnSfJTq+Vxwcb4I1osoyGT\n7NJ1\r\n=fHoz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIADyP+uK/QxVfyFI9IoPA9Ukq51820UBn9dOhtufHoNaAiEArvGcli/JaeJkdqHoMU2AVXSEHJaba5nbVIpTno1Qanw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537469893945_1537469907409_0.20483090866401898" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537566876820": { + "name": "puppeteer", + "version": "1.8.0-next.1537566876820", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "907d9bed6d68ff850d566296104ef9a07cdd1b0d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537566876820", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-DEeKLDMB17JfqoHUsfGsI5F/f6Ef0bzvfKXFftOvwAMPFilCGhMErNsT+iO0XLZSMMaqDfBgGBeNnNCT4vNgFQ==", + "shasum": "4b2515e4760dd76917acc1f4db8fcb37e95153d3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537566876820.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpWirCRA9TVsSAnZWagAAdPwP/0NQpxGtYkn9sv9xBkOT\nDLPHV51IMNYZz0FmMnLzTx/ePt/ge9UNW+YXCoKwJ6WprdiZl2HpUaYkEMS2\ndM7L0buCPhA8JTif/NrxKbREAJMZ+N44YSBFD4YgUsxHwD1KZtFHBbXWK+fw\n+JvItuetyC1tvxc0L+ReRsGPOWhQQWSTzxufCVYhON8FfF5cMIywCVcKcmFZ\nUyuR/yJnZzKIXhg/LdNOEK0ubnXdD2/Hb7RRgNWYqpirIx7gOBZhIeMwyTJG\nxipxAZGzF0WvtnviOZ3vZmkslh98lNcAhGd0Xpo9e62hQVufxPi4At+HKuWZ\nz7KpnUcz0TjIoLsva80efZuLUH+tSMj3X1jGeHF7cC3tgDiUOW2hzuKASEiA\nZVu9pH73hfb+TCUEUkt+3zzoBEfgM4yD+81Yz47SmoYCzjVmTAdw5lFCG25n\n8nX5jfbDL9ODuwKiBxxXm93zQUA7YGhrA8X/Mq56725WDYrbmUrt1sqPYgbq\n3+jUk+jj5sQaO5zKUzrZCut1f+O4AhCg8YyknoiamxmYVPoNNgs/iVcbL36t\nhojSZAe/r8//dF4M0/LqYQ7j+2aFiyd2KJqsnt584koHW8KBSesaPy1hgokr\nlLttFPa7YV9S+/tPwnt26oddSnEvV5zEO69VFp3YKz6iI2NVj1aUgItTZOHS\nsF+2\r\n=KkP+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAJ/l0Xh7bEMzhOq8vS0mrnjMu39bjclgTCtZPoms4awAiAy9bcyR8Vb70Ieyjtk7+uKy0kaaijZ0O7QMyZo2VTuJA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537566876820_1537566890403_0.7694827762198733" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537568897412": { + "name": "puppeteer", + "version": "1.8.0-next.1537568897412", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5b3ddf554aab5135e8343bcff7738c0a2ad3667e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537568897412", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-cT0RfK01O6w0aFbJXer17B6v2CFJCVXHvvaceoIKq+4D8HaASrCsCSSUOOMEAN0HOYSQXjtSFq1FfZWxXxNnkA==", + "shasum": "6645e51fa3f1447b76cd461215b180d2d6cc89b6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537568897412.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpXCLCRA9TVsSAnZWagAAwUMP/3w2HUwAHJCnyecuAmkZ\noZJ8hre1aPlbmX258FmnvF999vQ/Gv4VnrICwc6VlMjT3F/9Dk3MjLkJpxrO\n61oqK9/tlKnmEk8k/3ue3sCzGIjbWKlaegBsrcECMzxLVGzWyxppGaW7aZ5l\nCZ6l5Q3NbTqRB3NdUTbI/ktwxlMHO6T7SSPrYH/NpuoGEiZq5OCK9MPsn0Ve\nrgthQ19xXQPZdhBt9D6PrpVWaG8V7UHGUXLErOvN3Yb3buEeTEagX5pritfK\n9x2m4Y6Q10jb3KwEXaYNPjsQPwhV0i9thO5eMMHak0lK7YeQlImRBqvTOiEC\nZmSe8uovP1fFBh44qO7G1LKAcEqhumJdDpVczQ1xHAl966/2vVARty/9tlE6\nbz6qUKVB5zLEozeUAnrux6kbN9q7t2ZqxEmO00sBsK80aKXxq4hL7lEZj6To\nFfIs72ELvuIlQDoKzcVW5NM7+WV2xkhOJzrjoXutVSbGJ8eNhUMrVR4YCtX/\nce2L9WG7mW6ldFrFDHxC1FxT1rReAmWnLDN/VBTmTry7OMoldsMg7aOBJ+oS\n4avSNzo+5QQ0ICUACbndW7g4ZbSHOvCQ4VF32DWlLGhJdVw3OcTt30si/9yZ\npgTc1PrKY+8blYZS2bdLxBrWHKmP5KG3fixWTwZRqTC1e1/zl9HEzTAhnw4K\nBwxC\r\n=C0eS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCyoNMHWIxee3I4CuLGbpJ48YHFEcEJ0fNmn6j2QJs8ZwIhAIsEb0bb+yEUq3pV81RckAcYoSLx5SR1kNGTTRO5N28k" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537568897412_1537568906512_0.1897805324445634" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537576245114": { + "name": "puppeteer", + "version": "1.8.0-next.1537576245114", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "12e317ce17e7612817dd4d38ba048d7fc1859805", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537576245114", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-9KJGpMqf8DFtr3HvplvnN5Cjv9emP6T6rbLPD5CR0CZOBHjSw/IwjjmNm5qrjAoiQaZ2mGuMEnHum9FtnT0tJw==", + "shasum": "b87090de19e908e06e637bb8b8ef6c9d2706e02a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537576245114.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpY1DCRA9TVsSAnZWagAAG4EQAJFRmn7Uw7UOHV3uZ0yG\nk6sVQCwFqSKJSFM0M9Ly3T8stfo7zRSIsaCVYXNhpeyHss/tSvhHbdAL+Y3m\nE3jI4ClvZETYNQn2G/TLq6TnVDP6abhh6YvOQoepYeigUhGEV//NclpXIjL+\ntoBz9TMZ8gVuhmDcBEZoRJj4gC31s3HsrC5nKISclXtgr0693AUmYTGH5OHD\nz6M73ZtLEO0n9DnhrdeXFlNF5GfDkk7IGPSMfGICIMmU/fL+P+l1n4ym0/JM\ncxnDMDiWbXM4DEihARPGo+k2DlTWo5qRYee1OPsLOKlg1E+IXeNGM+oRnOZo\n3dffXYSvwbzbv+cssTN55cRqyFtf9X9RhV/WeIDAjfqw1UwJySUceYM3PGXY\n8sULyxbru8hGFogdxT6T2l/SlwN9iA1QJya9J3VHek0WLbLeiVqwZTIIk82M\nt2uf1gzjjXUxG9ahGmnZoxka9HyJV4O8eVbZqgwMg9DmCuJwhPDf2AKaK8zI\nHxGWWGPEC8IBJr54VlGW8YWqrw0u4hbSdzjB3MfNniukUHsw3U7uRrGee2WY\ndj52UXUa1AvnKpCqAkG/gCqJzYy6fY5iA220xL/ZRyaofCeOL+qOq77ix5ER\no0Mc6n5cr0ntxAX+BMEEd2EeD0qT5n80cQZRzuSLD3UH30jm6LlRMRXaXHhi\nMkQC\r\n=iUB3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGUbGYMTSV4Y0fBdvAcbYdGJ/BKKYSsXAc1x1vgVVAqhAiB6VsGj1DM+NWpYECATKBXQT3b68PF7dvBBVZrCC53lFw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537576245114_1537576257688_0.6850736074473027" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537588058879": { + "name": "puppeteer", + "version": "1.8.0-next.1537588058879", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9c89090f73fd4dc06748ce39f0fc54c0065ac23b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537588058879", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-B81aq2N22/kkirScB8qn+MOPLKI5Pmqv1fMpFuLfUenKkuBXuFRpiidn6FibA+5Ai/42UXge5ppmu6mRuCyjBw==", + "shasum": "d23fb105df3bdfeaad1033d0fc4961cc5f67e979", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537588058879.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpbtmCRA9TVsSAnZWagAA6DEP/3WCGyhuY6B9wToFh/XC\nuHPXfv7XO7KCLEhk5hDFh0uWC6I20W/pwbCkxcH01DYwevGy/JeMzdtw8K2A\nnIkA0A04bXoj+5s9yhbfEwEvljW7ZG3ddpr7lXLQ/t/vTYyG+nQb3XUwKGtM\nruTEgUmUXcC1gPYnB4BKV89MPmmWd3wyBsPLv9woWMMKNk40buuwcTxtm0UZ\nHo+bOxVLCyEauH+ZzhzZFqcci3NfAQAlCk580XPF0JuAHt12BBfAy4BfE0JK\nh21yr3D9SGsctF1+e50fNQtB/39HruIm/cZwkpSHGu/CW4J/WsUkbew/2XaY\nqR7Mu6DSNwtPBWRlSZJ59PifF7PA/AvO04SLkP3Fk8hoBOpP0VGNGy/hz1eB\nEHxbMdGdq15zElWwfrb5nHLcWyJtPrZWcYv9jN4SsCSQU4PdL/03otY3Ohji\ncjK8I+4DIZAT0u28bS8Oeen3bkW2xyRI/J1iwnU5TIhFShiIdPQ9Bgv8kLyV\n/izazKOoB8bNo2ZzrAtX8NKi08zR35Y135dHVsqxuWqsptde6zeB1J+r8FZ/\nYyxi1PsuqHORRjZEWBHxude4XPQQsflfeSxMlYSf+3xAXQd8h5y4hC0BEGQs\n2UEg+tqbCZrCypuEEPEJcWP7f4BwQJb6SnMmHxSqjrzeyun1iSw+U9zfMhAd\ne2fk\r\n=0sm6\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAX1vOf2xS2XfpPBR9tH99URF/SJyzPKGtAVSI5ZpqhfAiB83z0k9F7NnHfUbpLZKo8jizO3iUB8p8tLJqX9UeZCnA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537588058879_1537588069781_0.5811252318137903" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537818606608": { + "name": "puppeteer", + "version": "1.8.0-next.1537818606608", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "591618" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "85aca8e1a56b5698f447ffd55b148482bf8db7ae", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537818606608", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-5HQln7I43to7mmK5hWqKJVwjUB/C2TKH8G1L9vjViiBSW3VB274Mvfs8Tj94hLYLRkMtsbLXnmdgCcfBRTNI1w==", + "shasum": "453cbd6bc3c24a77ad43462a617134770c35cdb5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537818606608.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqT/5CRA9TVsSAnZWagAAyPUP/i9E55s2oeQPI9lYc6fx\n9vQaOllK7v24ErjCl/PGs/u1yz9MOadBLJvLvKuK6bUYmiDvMA9iDKR6ozA4\nlTZpYJm5eI3xHVDL5AgyyQKciS7RQeX8JONekLMa4uGGoNxxsaibpEvevKlo\nH2eB8Z8MK/RW+liK5ddqx0POCex7i+wShmynLz8IATvtmXOGLSKlEsmm7Fgu\nDAAqy+Yg2oCsdTIhKdx7+JZXj/65+UrlV34XzVoUH6FWI1z9DxKHe/KaOe8N\nky0WBuTMv7I5ezYJyPA7TTc7ZPja1ROGRKljEJgl7mKiMJYV8iD4zA0UHelc\nWN5C4nu2Jb0pLfTRXAwBEJC+p+RtbohPxxD9Vx6N5CYb1MjcjfU735NOAGMW\nF+sJwb4Hew+w3tFvWF4A4sJS8/upeqODZuKnuNx6QCFPtiT1O29/64jVKnjB\npgJgKfHxwLZVQxO/NNw9VBHW6K7z1TWRlMzra0+kWQeJ1CXOwyuLZkEqI0g7\nXUDVvN43gcezKJG23ujHwjOlaUQ47WxKPA2kmd/+RQtDqRld7qg0Lyyv/dMb\nz8o8dEjqRhl6SlFkqF6u2LvzSb0VOWyhRF6Cu1LsHR7qE0c0UpSpndQ5+Guz\nuia0O1ifwgS63Ns7pVl1f+lGyirhjtZZH5vmAhxCOaRMzKfDgJ3Ocz5usDhr\nPuGo\r\n=Q1A/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCPcL94weGyPvHGBBDT8sFcyj/UQXuCQtE8peOI0J2FvgIhAKE0FhXH857NlLIw9svCDr2ZoSo0Q7WXE1itTjITqH/R" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537818606608_1537818616571_0.84567266051474" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1537978905474": { + "name": "puppeteer", + "version": "1.8.0-next.1537978905474", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e75e36b9c2c0fc47b5bc97ff1f556e9ce1fa2e18", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1537978905474", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-JSNkaKpCC6sbpNB4GIEx2dvCll3iFlIFx4Uik1r3DEYVEvSViapZIAUdeoXBRfH2Os2RFuvBDumF5mpPERHT0Q==", + "shasum": "c9c9bac9f851a869f18cc6317bd842e7fecb6be3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537978905474.tgz", + "fileCount": 55, + "unpackedSize": 622746, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbq7IlCRA9TVsSAnZWagAAbdgP+wQBuuMwssh3CrcztsSg\n/rcurIeIsGFos+hiSe+lbjKGoQ5aZQNdSwYUDuiNMLdNAaidjfNy/v1I3Bfz\nyFKW1Jji3KaGitEL7Q6EWkUSfwSSo/Y93G7z+TN7soWl2UT34U88raVfbjzR\nhMMD6aJL3eZ2gESO9YdgGnZmLJijddHT70ebyyn/rCeEiQOUCl2SjO5KRljX\nxm9LPUCCwETTFxgZ42+VU8v/IMwp7d2QGHHWije814SBk2jbkGakHUrgYK34\niXf/YzdodDuCQJPw17qdIsjmpMyZISeAkU+ZiwmOF2P/5K0nF9JYFM4PPl77\n9KIIFgk6bPXsnR+r49NJ0oxNxju+FXI+hMA3UCA/DTP1/yaLjsz0p50ESSc0\n5YrY2P4uUSd6oxZhe6jKK8F7A3nV/c6XG9+s5YgQrJ4w7K9t2ZX48mSMkbM/\nCxD+dyzfLTmIys7LcA9RifTLMi6Dmj1DP7UaRFb6GPE3j7dsOjihUJHee+f7\nrK/GlpTyS27+SWi55EIavPh6SsOnJ4cTVWRPDo6surwpWLUfacgcsqhZDoOU\nhf8S0bPuFzcqwsnF04kkDuu+Mllq5cx5wkInU1hUwdRK7oORSrl4HV/+QYCi\nM2eefKvkro1QrBCRxFuG+uiwup7Nz1yGI73t7GQl5H6GJSGKWK+Ekt6KeF6I\nvAI/\r\n=yUgS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFTbsPHX+ZbyVOSiJDgrm+Df+GkHT9MTQAI1ILutB4o7AiEAmvIIPRxRcEZJ5gsWzzYB02UDAyeFPtbw84KDYStwGaU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1537978905474_1537978916356_0.3908993717697784" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1538070839127": { + "name": "puppeteer", + "version": "1.8.0-next.1538070839127", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.0.26", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.0.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "842fee860b788fa9a179857a0c35615e5f12a9b2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1538070839127", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-tIAiOPbUctgECHNcXzjI93vYfCdJTBVla+F6NnocmdkfKM49UNaeN3684j4WN3H2LV+8Fj0s0W2ND8/KruVZyg==", + "shasum": "cef826c679494f30466c7184a730fb3733479b44", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538070839127.tgz", + "fileCount": 55, + "unpackedSize": 622498, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrRlHCRA9TVsSAnZWagAAFPwP/RFFbYdKt96RGWRRvWQD\n9+ftzS2C1uyPCPV4GziWoVKRFEJbhVZfHi6Vr+QVgGwX2DXJZHLmNAp17f3X\ngZ0U6q5BCSOEW3EmNeAbBiPpkgTTGVQE5n6DZlc+vyMfqELizvdvJvOkOMxH\ngvLTklDkCR/OezZTSKP5JKRAHsxiGJE9qtbxDb712y1OXF5MboY00V2fGRkR\nkZ1J15ycJrsISLFxk1Q3NSSgw63+0ig2xbQCliX0Da3qnliF57UhAmTYsCJ5\ncnoXcCiZABh1EGRcmE530xfINVVSfWwRtf0ENvqWKvp9qm5HxTsKGs+rhsRT\nyeUPL+vNFk211RRh2OS6ivHvc0zDRDY5aBUt6trIA2T5DLsbZpcUsBOk19Ym\n8p8//WwnwiJCNnFt+8BGlxckKg4j9ZH3j5RpbUYu632UXa7K1YrNulhzRYaF\ngNzQ99LLSmZg5d/I1Mqhktb2XKpML8l+2XT+PLQbCYPlcLDlKlxLHtptRYGW\nMz9/Yi1TF+0HJbmMGvpm6XxXPML90b6SDy/YghO/sL+jBFS/4KXGJ5AgMEHJ\nWeTFG4Pdt8pf2caAfIH9LXje1IDqxDr1In0zWI8XJIeoKDKifufw5/Aoka5r\nGNnNDu++0QThg1tHxRm/wz642vANOA+bryqZ0UePRNM+ppSQqcw+qLfbuj10\n61ts\r\n=/27x\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQtk1ReNx6VNnblw6u8D6vcqlConG7LZEKLNibZeY6lAIhAPye/AoOliR43DGNkiddQkQAUcukbQqn9q1sOgFDW2YT" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1538070839127_1538070854625_0.6586320337420026" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1538512930517": { + "name": "puppeteer", + "version": "1.8.0-next.1538512930517", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.32", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c9657f88196dc97b200e81418ec24b41587849cf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1538512930517", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-x419mpSMxj0KcAqx+TjJLdphagX8kSQl11UFTrdAuPw/0Ol5xT732mhx0tveU3RpyZL25Iq7uBSF+telOk/8zQ==", + "shasum": "faa429be354707098754758dfe99d13b2c58c49e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538512930517.tgz", + "fileCount": 55, + "unpackedSize": 622839, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs9gtCRA9TVsSAnZWagAAMN4P/28fmNl1qDGnWSEMrl2W\nQskgFWC+ljNJ4JXLEaqVzFiFMdmwY/nUv6roK5OTefUsbuJpvVYSQMc0sB3K\nqompsog7xKhfBgS0B6w5lgUjxnNce063oRBF34M7wKbqWzSZo1zQ3/N6aNuC\n7vVEt+oWobvYxpnZyOy8Fnn2m9hWEjsLnTUCk+k587sdj4JI8KZ2JKA2hqCj\n8+2nDQJ0bAreh121ie/N5pLp4yU7CyFfzsM08l/VqR89TpPtkqUo2FdUli4W\ndO2XA716t6hWMnCaRFiYGb6BocnVZAO1FPYkoN8I7pg1NXisEHmZXagKlAQG\nZlYnlbAm0KEDipOiro9excqTeVttDdD06IHW2dZCFM2CydYRUpgG75/unScZ\nCDPekZbuBwPEbToUxEfBtwGmwrU9l8sEWce5uydXY3IlyK1sZTFDh7HVdo/Q\nOhZrPGmqNR0BuYHesH08oLruzYDnQfPQgjQkIDy0IQyD6oLIsO9czxuHSBpq\n3mNM5taNS3DdhRBURf2WP6uxR1MSp0zkcmli+NFleDyVT6Orz4E7NV49yPpM\nRxSX5x8HO/uq0701+4Mq/lxZiBpKxCIfgDQ9qjVV7KL4pCHo/AViEyflBAX8\nM3g+Xw9tSTnmMQe5KwtEo71j8QpmuvQaXj/rTLOoTGtEiXqxihJGLztZ56EA\nZ5Sj\r\n=xND8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAjidHRAoZPFJagN9yzj29UmmhWBNuB0/ymUhcj8RihvAiAw4Jd8XDKi21Z5avuGS3w9koqpE1avFSAl2vwkw+g/8A==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1538512930517_1538512940436_0.1308583280056732" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1538611414237": { + "name": "puppeteer", + "version": "1.8.0-next.1538611414237", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "cd54ce388eec426034ae7b7ee5058e54b5ac5da8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1538611414237", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-hFOWflakel/ylg8gcfEIoCVmAYRRX7aAVDwq6zL8hBf4vfRCVB8TCBuvM5cVDaASOYK86RCQPLrV/G7PV2B1xw==", + "shasum": "a90c2048f011d208b544779e093304732a5a6afd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538611414237.tgz", + "fileCount": 55, + "unpackedSize": 622629, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtVjgCRA9TVsSAnZWagAA/KEP/iScgLgkyYo2S1wq65N6\nyuuT4ORz9sTIINFM6sHGr+BzVmO6oTFYN7Hzoykib+pg6pZdRNmHhHOpGri5\nIeBS1TpHv2+6ns53o1YYsHlNKf9EYs7tsJemBUNMW4dhsnPtW8kIi6QB2l0q\n1Uiehivn6A66PV/zv4QauemWS7VxMD1o+lkrMpRVwtjxV4foZZblKDyHeJIV\nMGCNl8Uum9YZSLIviZMG1CgzvpiK/YkSa1TqOMQ3rCltAlOJbWDFsiLjfCcq\nrAHBADfSRPQXnODp/ZcBmkqbZY8m4w1oVBwpeBBTbBDRAoH3mutxCxjsShz7\nXdEoh4PWTrfAJWRE1rWcNkS0zKvCOpk5X16HOw9HLMAhNhByiKzeGKWzP5c1\nsmr/YPu3mp6eB5mCcishMvKRfV3lh4L7EM/D8Xbx3Rs49Hu4q0JyX0TJXHTx\n4qhg5TewwhTbyy6rWD2ztBm75mV8tRBHM5KkSqRrtX65UnQMVmN3UEVru/UW\nuohJZmmH2xa6rCXWxDXp5IRw9weY/z0zBBqkqf7vjUAZjvX3/1vAlr3KYMQK\naC0h42Jc873XT2FZA8tVJ7ouyAAw5jhPyPM3LSJhZ3AW7UBU+xRDSB5G7w1J\nQmdbvLTk/rY9ScvZ/10VSfWGXr1TVM3Jq7Dy5vK3BfdwQ31x/ViNdKwZKe2b\nnECf\r\n=WnFZ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH0wCYyVps3p0j5L1xa9N/U6YyWpcyeyiAS9ahepBaT7AiBRuoOlkfB29VbTVOdK0rg3vFajjXKNf7q5U8D93v6ChA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1538611414237_1538611423607_0.7761173283719598" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1538612893058": { + "name": "puppeteer", + "version": "1.8.0-next.1538612893058", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5ebfe1a0dc89f88d3c784e546c34cae42cf9906c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1538612893058", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ZyPSeX2obRr4fMowQMdACt6QM2w8K9jnMzt/8Doj+yWvSbMpELLt8LIdnIgfJfx8u+n4rk54co5UiBJBCZFW4Q==", + "shasum": "9f1298de1af7b4543348a9c341f2c8fbbe418d39", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538612893058.tgz", + "fileCount": 55, + "unpackedSize": 622558, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtV6nCRA9TVsSAnZWagAAuTIP/RwSS6csnRoT+9Lzxp2e\nAe7KOI/a+0wmV3HzHgFAruLrc7l5D6FqM063YQc+UUwdCUSjMI+nxfpRaPTG\nACfdQ8BRaYi4/TYIwdaGQe7rS57qEv8aR006teiD7cJ+byb9kh769/qxtv8J\nJMSGZu0UVDRpAmbAroAm+Ib8cFZHwdhXyiTlK7PWXCa1aDZ7TkztzHHrz2YG\nRtWmEmaByC5X+scLQHO0C9S2QtEUmqyQQV91F2Z21mwirW5IJrechrfSNiDt\nvyyhSrKWYvLHpR3egOkTxzUBFLFyKzl/e608o4Hwzlhfoz10fLXCatneDDBw\nT84biZFNSpSj7dxPIdWgmeBu/sI6ODEaDwDMrV7wPUJXvgjs27Nf7TRfwfqk\nuM7+snDG72bHeoN4ltkARDCDwaOoTzS5BSR7hIwi0aFZJl/CBD0dc4m2zTAo\nBAfbITon2O7b67W5TSE37EffjKxI9DrNc62IpIg1QBp2ENmxchdu0LCqxsdl\nhdfGtgUC1ZEuCvl3JQiYfO89dZIA+JKdfTMW6upP5oZA2qx4CA5j2zR8/OSL\n1iDita8RV3tjj+dDdITOxFzrobLnQI0idOh1gqtecRVOC11qNRjZ1bm++tPb\n3F3BN9GkifPVa/BY0+ekqSngTibm01/6vepTYOB+5UeXxup4aXYVMJRz/OWJ\nwl+j\r\n=dHGc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDsB0ftPuTXFasUGPHCU8mmmjOHxZZWwit1eHWJGa4+kQIhAPgTYgDZFJU1A2pwIT7v8qcq1Bt8JuPbNzXy/J2UNF2P" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1538612893058_1538612902545_0.6941039616457676" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1538675072506": { + "name": "puppeteer", + "version": "1.8.0-next.1538675072506", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8becb31754e5f6377398dde9bbcc51d8951d7d61", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1538675072506", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-4QCEnlkjpXnTYrciBLqMLxiDSrVTTQl6P9iqysnTnx7uS+9vpx8vMYo7YLjQ3HUfa7Q8/bUj3Q4faxVuW9BbPg==", + "shasum": "c291cef895e166618824142bd7b54afc8b1c2c63", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538675072506.tgz", + "fileCount": 55, + "unpackedSize": 622558, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtlGKCRA9TVsSAnZWagAAR3gP/Rly9gToPduWCvHCDBhX\n1iZumAVuydASSNV58V6mmrCZVIMQeGCMbb3Vn9h1MqQisQaRoOPwImok+wOe\nkAC+kB/PhQb6fvbJfyNXovnFTZkZjgkT2lyC65kcSvYpJD3mS73DU9Jl0pkR\nCS2D9LdkaPGndi0UFiDrW8lPCnbHhfcIMD8cZ8kiLCpFbdCkL85slUjEKYp/\nsoi2czwY6Gg8YZ5PyiqIfJAsy959CmEayfXpmJlC91uQKmdfRYAr3rDSiKdf\n14Jov74n6oLTpqHHuPYTNDVCFW+E8k+JYu/8w8Ya1PrB0S6KH4Fb8gWm7JSy\nG40J9IDY3J8ST+aomK3aMG8fZ8uRD3k7Z3KnI/SUfyyTn471VA4/PcbNzv6J\nXdVtDSdj114twnB+0v2InWDMw7Vky4KnrGgSyqrxI7FVeo55M0HUdKNlC5yU\nJK0rhf+1FIXb/nPB9ygVjjr58zRQxUtaB1+4yAffOC1BRkLGzAXvv5cYcFyr\n7JLAkMbVB0Wy6tGg1BIXNwWrBsJAuH8lugiZYv98BiUpjCqQSW0y47w0uCfs\nDvo79uM4hOQlUCsAY3QAHHSYAKYE/Ys8cyuYJ1DLV0fvjirrWlCTLJfKOm5W\nHOfLpyzzT7rudAi6gkXHUTX4folnRv+XNWKlCNaP7MeNzvm2ne8wfOaQ2BFa\nNdF1\r\n=ryB/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCYcA0llxpbtCNqKlJkdZLD+WQW1620Qt/QES7fsbFD2AIhAKrZ4KZNHQQsm39SUoFLpOcN7UwB7B4JDzFe5wVRKV6I" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1538675072506_1538675081965_0.45150860712381324" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.8.0-next.1538688354136": { + "name": "puppeteer", + "version": "1.8.0-next.1538688354136", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4abf7d1fba5ee9013c3e8b9a4fd434b7979f5945", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.8.0-next.1538688354136", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-lwhsOPpA37VGGYtpYYMGCkjYxGFzmurwgTglaFOKVjT0fnxZB6L7ApEJcgRQg71LqTJsQsAaJBf2655OwzTdAg==", + "shasum": "b75af20ce0375d96af10c736f2fe383e295623db", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538688354136.tgz", + "fileCount": 55, + "unpackedSize": 622656, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtoVsCRA9TVsSAnZWagAAufMQAJ592Mow5GHcOH6eoezO\n+hfYkBSSrx/JTeZjpaUiPeS55sfY+QpJ7x8QtSr4xy0hr5wCDPU284kq2UOg\nv/Uv3aNoz9SjYH5MAN+KD/w+2qsJFfZvhULUGySqlWgM+zUCaBNrFNegYp9t\noCgmjkz8P1Yw9a5kbUq7a3U9lDYcF5Z57Y96shjQY9oKweFs4TlGSZeUhAKu\nWpRrnkvgae2pGwNCMvyWIvDtbbur27Mal7xYvpCJE+HTP7mw6eTW5EyWNik4\n6+xr0dMwWN5dPfAPkfaZhbKTjg2mOTWQ8Ds2YQng38T+Nxz1ggT2vm0uJPkc\nvzwPP37uz7lAqticAFaAQZskGc/9dq5eENCsX61QB14RkL9sKpyYZC7Kc01m\n2nT8SZW8LGgzSWU/5//dTyH9Hu75lB2aZ1WlpiFg4gVtwNjoF4cie55Fh+3r\n7phCRStBS798ZSIm5I0nFg5iaRP/f3aAU/ZhuBsFqEYeEdLrbfPpuuFQunci\n4RAf4GSgRoJXMC/tm1rkm6SOz/gtCJgf1R6saUjEd8SgeNHVcH1DA30N5Ph+\nazCqleqqPM/3o+e/SfISvmaf4hkh2pAGtnF8D5ucr2cOXNBrLtLh4QkEnNax\nCqYy+3RlifbIS7ru23JHYq9OoCWHhr4C+iMjWbA+Ea8RgzCH4R1cVrXgVHjX\nLPRW\r\n=aNRw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE+rE6sopxIf4YR+CGA/+Ky/+55dz/JbSUL4aP34a8bgAiEAgHjU8v+68KSQqrS1NFbyjNXpQ8vX/CvvbrhPscPP5Lk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.8.0-next.1538688354136_1538688363855_0.40997665893436475" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0": { + "name": "puppeteer", + "version": "1.9.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f6c05e6efd0063930a1bead3cb38b2901d8cbe22", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0", + "_npmVersion": "6.4.1", + "_nodeVersion": "10.11.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-GH4PmhJf9wBRAPvtJkEJLAvdNNOofZortmBZSj8cGWYni98GUFqsf66blOEfJbo5B8l0KG5HR2d/W2MejnUrzg==", + "shasum": "56dba79e7ea4faac807877bee3b23d63291fc59e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0.tgz", + "fileCount": 55, + "unpackedSize": 622637, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtoh4CRA9TVsSAnZWagAAcWgQAIM/KsxjlggZxSBKOFXz\nnaD5dsL8J3Wioa+6C/TYyCP8lakWlv/ze9s3wBdsjB0BIz3WQNebv+beJsIf\nvnZlWvSsKiCLQgiv+90Zh2wR/dkcWViWjT5Tq5uKTyN0+HLMFVJp3QgPWR0E\nmwHETisrbJg0XGacq3rJ/sNflU9Nt28jI+qic/cH9ZmdGL2iX1WduPEDViPu\ndg6rH7bNd7CShHtBF4ptdsbOgxzCtc3A16j/yCYmwczo7srs2Yy4QX8HUctx\nY1xIJUmbfy+bd7DRk3FGR/XbCQ1h3jkwN2LDz8J+gA7LAUwKaEQnESahCjv5\nt7KbJyHs+U17H6oQUHoiPND1qOG4PxVwjz+TM8N4Dhc6Mqhe2uSf9Zrty+Om\nrjHlJRm9yeDQGoRsCqIAaRAjC65YKQzFXcjCJPQ5DiMDKZFToCrxvyciJF1F\n5Grb0HPt9LFtbB7Pwgnp4a7OCPmJOaPdwUwG3Hz2vkaREQvc4oa0+8ZppA4+\nDKwts8VLLiOG9QSo2NO9UjzS1ISkeYef7ffKncMBk81SwodbU3g2VPExSCuD\neypmbglvEKvJtlJyq90jm6Qb1SXlEzN08NHTWDUcrtCwtNM+icbs807w95or\nRVmgAYJMZ4oI976rDMU64lnrqt5uhzZwKGrpgOtCFtHIgnMv6ai78dGjcsHM\nftkZ\r\n=cbJ+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCSOxGta5uMpEUOLh/v/shOo1DdqTE6LiThwbYoJKnuZAIgWN0H+ndgSqwj9PdqVHLffg2b7CzCj7PihMPwvtubhMY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0_1538689143927_0.10929492302768562" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1538689231174": { + "name": "puppeteer", + "version": "1.9.0-next.1538689231174", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f6c05e6efd0063930a1bead3cb38b2901d8cbe22", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1538689231174", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-aMZoLbJP8FiRPYb1vxv5kWgfETcrgneUq0BD397WpVmvAyMbx5ZWIPqCav9+8P6wiUFfexN5J233Ci8f9RTl4w==", + "shasum": "1f7849d877a47ae4393ebb6e7c758f7260d7ebfa", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538689231174.tgz", + "fileCount": 55, + "unpackedSize": 622656, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtojZCRA9TVsSAnZWagAA2ScP/jbzxajNirFhdGshyOZ9\nJNpgKAUxMAveFNXDhZ/gzVCsYXHoaf/THyrwGf+PIrTIb7f/gEGVKZdJgQld\nkqMA1yUNF7uuBefC7aVpDdoZ56u9vceyJ7YShZicvSkkyQDxCzU5IHy+aeYz\nTlWx4q9FUaBBr9KOTwrNbXaz+JHOrj5Io1zvO4PdO2WKhlgmjD4xHsHNHK+a\nnZrhucI9rmYnELmNl5Uqd+3zdw/eIv878cBN+Uf6tfmOAFjuZPjSihO0KS2B\nlHaDsHktfQBqcbKNffTZAT4aiB6dTCa6bBE4ovhxrcKPL4LIjm1Yz3GuJ3/7\nyjZHEj0lO/8FMNozF5jzoNMtHEww9dPsJFcO6bsHQ8vFeljTq9kvS0L62/ws\n4usTifJEUNSR+kRPYEpqZMLETGCgQMZtfc7NhaV9cwFxPnSKPEyGeDTWFjGj\nZm9ya88/FPyENB2ug/aqLycLY8fy8g6OkoeRbpLuUEqV1JXmRc4263pivFH4\ni/znW3TZNw7hFXOQCMtJ5L8YoW6hfjUEoH1e/MnFnLhBrTWl1v1+xInqYJf3\nVZj3tPK0EPHFAVyAIyLJQI0A0rq7L1Zf0aVAI0qZfth5X4AJ07knnXHAMQIM\nTx2sozVpiTCn5rErMzKXwfVffP/TUcRdZzvKrRnz7aCM8Ei2G4aZRlgx4T5d\nnLoS\r\n=0IMG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFqOynXttUdGK+0ZqFEDpkFQf+vNaQZL49zhGVywiRrOAiEAwh8iE48pLbh1umCkRYA3q1dr2HewM5xuWHMcbQCYSW0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1538689231174_1538689240342_0.9069329511985447" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1538690157991": { + "name": "puppeteer", + "version": "1.9.0-next.1538690157991", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "af4209ff982310ba7f50ecaa1b43f47b14e33d88", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1538690157991", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-mYKqUefBnOwWgN9lcr7RSeeCkGICd92/q/stOCkno4lV6Vx47/ryDb40GbIb5JWqV/vWJtEJfnWMI6HUpY45Vw==", + "shasum": "29e08d976bca7674881990aea060276622c881e2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538690157991.tgz", + "fileCount": 55, + "unpackedSize": 622656, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtox4CRA9TVsSAnZWagAAb84QAIGUCFXoa1UVU2yzCX5Q\nXTkyEFRoIyXDIQw72TKrgvh1vgRZz172P0H/2kR3IgAw8EoKb+19KU+tFYbj\nZXZd81yk25vtHRsXbTWfwQBCc5bG3GKYWAMlKI9xqcY3vWTDAvkPGcNppEFg\nV3sv02lJzmq613x9dZ7w04ZRmvuBJjbPmD1HMgtg+6dOv3z3KNyy1lRHfKJT\nPTXiLlTHQtKna/0VqCqxQEzt8/25UWjyQm9wSYqzwSawCrMBLB+zakLkZ760\nHoNKyVpUAbedUJC6HtKqSuYrNVpS2xwH6G186gYUhePmgHHlzFxbmKjK1XDz\nxceMhlhUjhQA56YLyhQdv10nkdB2ujjmNTZQOG6atOqdKZRhptOLiRbYLRbz\nVxWNhQwbgen0WHNW4d9bE3e3c1XQxyUKjG4Tw4IYpdIZO4YPjy3naXLMVX9M\nAJk1Lm+e+BCVzY5hKWrynE9h5BAmUJFPnyoeKc21g3xuzZ2fGEB0/OO9na47\n9q5wv+Ibf3JxlZZiEK033D11eSejdOC4HlLPC86uWSEENat5K82qwZ9Qt9T5\nEIRE/8fsK7e7SxJyJqi02V5OIofUsod9JCv+Hw68PIEqkMWGdFH4rwvFpcHs\nbs8sp83QlEvMI6O+pxbjs0m1Q6fdwo1Rg4gybWZ0S4vykFBcWOa/l1d8E+gS\nrK+k\r\n=briL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDvyzUj+JK+Oww2KYTmV0TaBqfKe9EwqM5NyTh1gxGZHAIgLiV8E9dhnjvmC7KBMhq+TxMvrrye2IiVgtgv0u0XK9M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1538690157991_1538690167833_0.9706487717120507" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1538694722140": { + "name": "puppeteer", + "version": "1.9.0-next.1538694722140", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "90d1fe8f6fce7b0061f3d54cc5966b5094175d58", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1538694722140", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-H1chHV788nVusoBZ7cmOhM5XWFNNCYqwH89mkput4XNwKuNgjO9HOSUMjexAruw/HdHxVon/ulrBpc17bNBuYg==", + "shasum": "fcba6245db0531423bdebc316bbc9e5a3dfc7810", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538694722140.tgz", + "fileCount": 55, + "unpackedSize": 622656, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtp5MCRA9TVsSAnZWagAA0hQQAKAO05lkr/jTHD8X4e6M\nW1EAjzQij7+UDXxnOflH1aQJwfKNm7vminOnGyY6oWW/QC3u8NwGTRbXKa9S\nbRPsXS0NZarzC6A73h5VaHRF+DwZD4SMyxzXvbznuq6jIQw2Jv9tCGDCpD4m\nD0eOPCw4U9OpQokhJynJW/lrAw2NJyuAxVwuUdDYmh7953o6+gdNASooCnOx\ngqFLZPDQQSjp0xcxt0Uk21Ug4ZqQ8kMx4SZL3gKK0UpgaS4GdmGgOL0so7SY\n9z6DhkqXlWDz5Lv618IqfxRqc7jIMgp0lIs6fb8B4mNrlwmlZOkRiqFD9+ZN\npjaKLxHnA83fNacVCehuldXcqGrf6dU/tpRWOyTrwnqPHWcvnx6IF1hCDgbM\nenZJaP7RS/bOosEqiiNDFICg6m+E+JrRGWaI7FEPn5QamEZ7avZ+RQWpGjAN\nWElvpyQbbpCI7suYu0pEUv05jKxuVMrAidLvhqVn2TorJKhTWZ6s+TiLzV1M\noDhJAjeo7MsX9t9Zkbo8hQAoclJSFpkeVdsDpPp+7S9jkCcO9LRExNktqbWN\njm16CAcOTNxnx8e0sETztJCOKnuY/63tvnR5Rt1N0UmZ/9rEU/LpSKLZJV9s\nj5Y0jJk7zXKA14T7jPmJXadtnm2L7l68z2QWQY267LQTOjQjjXQhiBfTzwC9\nETUo\r\n=F+Ar\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIG0UW+tnpEJuSaz6Yc7wV9c4P45i8eajQfju/0CkBiQXAiEAnXnjZpgwzQuYWZlkGp356GAhRzCE2zIZOlq7cr8a9kE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1538694722140_1538694731606_0.8359433306782738" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1538768278224": { + "name": "puppeteer", + "version": "1.9.0-next.1538768278224", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "07febb637c78cd59e22a15166f816d838a36e614", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1538768278224", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-dLd4cJkve16zemikIR0xeJJPmXdDOyt+Hk6EcA6hMwfJGKRBJJt9RVTT2QPs0kKBx0HyKtqa1oH//ggC3qEegA==", + "shasum": "63cd2c38eeefcfdf64f73483698da9e0555a486e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538768278224.tgz", + "fileCount": 55, + "unpackedSize": 622836, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbt72gCRA9TVsSAnZWagAA7EIP/0K1w6xNpO6sbTZ6anq8\ntzctXsiciuK7Ol9rZlHbKQRffGBEN4LTa5GT0SFysypcvdmj99rCI8ZMx8xs\nvgBNzDeDFKvg9SgIXuTrhZFe5XuFOoC0y1txxa+urfBsFDQXnMtDZt0veoBa\n+aqe/Ag95UeeHC0diJU7ab4vbzJFnfZMbvbzvtYSlshkyDgMTK5cyabjieNz\n7MC4obBOzY4wO4a6Gabc+Q18jTx3tboCHQid2O4Etcel3UX/Rmqrv/SjPRdY\nTwh62DporfF0dKDSBT6gxUciIjrf/TQYS9ITfuJ/RL953XrJpXW9wRKkiUxL\nIt+4YZupUHpT6OFz+h16+1YA3p5TBlVme2G/dKvq5xDsKIqmUaMyxJXdHy45\nAm/4R16lhv1omaTKm2s2TbGHxBd/WJ6fkKXh9DIXo4LY/HfZxYwzbGqoQwhj\n/mDXBDS8qh63zj2zZXw303XG6cbMk0I2mfPWkG5nKr2+42lZYpNRUUZu/ln/\ngKbJKZE8FkEZ5cEyf5XJM9k6WtaojEFxX04Zr8HO6oqulmiZVFh+w0CblQYe\nKY3nlvHYIKfoZ0GzYMWe6n2Nqrk3gTTJePSrwtfYxh7tYxOZZ8xAsEWqoMpM\n+7AaBzAvwV63LbqO/M6qSR8iLTRhh1wzNdDpTOE2HBxxxzxrhzMcdXypsMJA\nMiAm\r\n=btTp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDbgy4H5CTeBFF7kypHv+83FkoVowfFcHyWmKiJ/XHtOAiEAolp0+C2QuqKwKZfP7GskZ1YZfMFX5GJQNNOTS4SrNbg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1538768278224_1538768287750_0.9469586019598204" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539120044247": { + "name": "puppeteer", + "version": "1.9.0-next.1539120044247", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6ac66c3547fdd95fed97fc90b15ac0b4bf178a86", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539120044247", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-g4c6l4OkVMjLcYCC02mxUR4lH4fCKTs+gWTcDPE6L8N2Ts58DSy2V9ZA8D+RahUjP5hnXMMI7rJLu2x3YPsGPg==", + "shasum": "729cdbfa6473afd7f04ab886ef847d9beb200e98", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539120044247.tgz", + "fileCount": 55, + "unpackedSize": 627632, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvRu2CRA9TVsSAnZWagAAzJgP/AlpHisVpkBkx8tuWgAa\nkSzTwDHujZBT3VxfzbpHtxV07GgwOi91oAyrqkLxFZQJU+7igDxDwpQpRZGJ\nF2skFKsYKqII2wSKb6M6Ser8fWjix+rsyF1k9DotK49HitAjJypBgOlSqbHx\nL1QYsqOCSx8UpOmR6BZLOTX4sc5Bynf4x146wY1kICs8Gk3jyGYfemBf1/lZ\nTGYMWEs0sb1ExRpBXGN/6bxxp/abFkiqs+ycxG43fAWePVBjOWquiz7yGRhF\nrzRmH+jHlBzAeBGZwMXDOjHpV6gHsS+CPJjeYP1VkIVYAUyOaPxHeqXls6QI\n1zJhcjySZ63OUprhS+aZJvyDY9tGPu6HLB2/CoKjPgh0iDg2IkTR1SaRjg+L\nwde2mdwAyi3MhG+PLV9E/DuAF7Zxq9fo9Cq9qjjw+lMtAc6QoSf4n/EKgNSP\nDmBX6xplHUZMF9eIi2tTE2J7hV49mgniWHMj4ce8pe7tY5jj/dfrioDpJzgp\n93rAYa2JtcVt9+BRMcCoi+Vgg3AYPnsvOI8LzK+1NAceqp2JeCuZqK8+zZ2l\nOjY+TzfK8aEo6IE5cRBhKZHjm0q9euCEiP0Gr3GGdZ/TAGHltk3+r4v3LI3X\n09o+Bh5C+CKYmtPvrZdm/Xhz+TavrevBmhAu6gCDZ4iYF2oe74yArvZtj56A\nqz7l\r\n=q9vg\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCzcpwG9eJPK46Sq1k0c+A0nWOwzZcMzolvC7WVRL4lygIgBm4rHBEsR9VMtrkuowe0yWc2dKj1EggC3Be4h9nofn4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539120044247_1539120053856_0.14289672639891138" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539120211700": { + "name": "puppeteer", + "version": "1.9.0-next.1539120211700", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0bb462c8f59071dd9dd6f5a854a3497f2f5497a8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539120211700", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0N1yHAM9NtTJsV9ruG4EGeTiv+Y95kUr3UJq+olUXweW9UHMk/nwOR+6GZmn5ump3XhsZdllp0Qmm0kinG1Bbg==", + "shasum": "f59471f8511c33ce11c61a23d2e1f4c38d98f6b1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539120211700.tgz", + "fileCount": 55, + "unpackedSize": 627682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvRxeCRA9TVsSAnZWagAA9H0P/2rI9ff+S//gB05xzPSF\nMbgfS1kkmH3z8vYIOpU8RA3uS/4JwWg6QWd4GNWrnMZ7dq5AITY9THmQww3T\nIF0ZTtrin52QVd31aP6mzJfFWw6CNFaiElWI1KzK3iFw3W/v6Ze5OyOEImze\nrmtXN3tirSufV89XF25ROM8JyLvnp9KyyFb03dYofenB4J8DydzYvNvpkjBu\nfFOQXrc1hZRRke7H696f5zJ8wxAD8wYh40ofhsd3JGiDvFNkIfT0PFvTxUuG\nlttWxPYgrw9yuX7o/YUCP+c3VFFdX7ZhICekxVItJJx5rXNVZyV7cKbuT1Wj\nGbnxXP0Iusgjs2zMPmQDaABLlUCRaG0U9EziS32qBlnL3W89YDU1JCYrUHH3\nAs69+5/6NTMzPSdoauJ5RrlYI9j9yFYh+4rkLKy5rRTPMgwh9vZ9VhVNa+j7\n5mmXI5WpZ0jFrr6FHX3oEysOxx9N3FDxWaLz4hJuIxB/9Hdeanolq1srgqSp\n4Nxgv7+L2vuJDaWiTXbRVx7NWIuFsqquQyMMaIDoFuMW4O2DBnmdBVkA6LLy\nOsKgY1FGHJOkb8f7xT1EV5uKyIyA28ycoktPD6kx9RUsyGn7khkJw5F6cg3P\nJWk9fzC184J+29sgTbFNWZ8p8sRTmMov+J6UiHVEmUdpa3pN+GkmDBwQwgkl\n8BAH\r\n=CGQc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID1Pyks1yKznNJgcJX47ozfefaNzJEfh/yKKPGmX/i9CAiEA/WY+VMN+vkHamiAbDJg66nAeZX0Hcsvv9rXtQOFUwdQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539120211700_1539120221885_0.9159277842408953" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539120534494": { + "name": "puppeteer", + "version": "1.9.0-next.1539120534494", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a04dedcaf831b69a7e375bf4442d91ba06bb20a1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539120534494", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-5T1KnNgoZsz8BpFfI03fQQE5CtlP17jWu4csvxl/KKjk1VDPgcJxuGZUyztaahuhuQj17E1WESuPaEfgsxKXKQ==", + "shasum": "c2753c686fb02e5b6fec2f13ff4998c81d3f5aba", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539120534494.tgz", + "fileCount": 55, + "unpackedSize": 627682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvR2hCRA9TVsSAnZWagAAQ/8P/iJUCjbopsbtvva9HQHu\nYd5OufYIH16R0wYyk1AkkHXMirdCfY0MY7Sp9UA1b0pNAexHxHDuAFFHeZhy\nDiDjp9tIRdjIe+u86zH0vogMIcj3RUocbT+uOvMp/dHX21KYmj9w1q1fvU4h\naMZAMv/0RjcoSCJftK0kWnDCZAl6+EjPTtdagvB3wb3+SOj+jFLKUf+vtAbY\nxJpGeJ1j6hSrewcfXsqG48c9ynhhZ2Eq0MHxqKyGIWW8h9xzgrbtASp6BSLC\nEMi8k9KcuZ9KUxgikY/ySTAT+41rRYR4WsOVX1xeeBPQCI7aGSbHuxuieW3t\nB2WO/kb/DuoyPh0DOveXsvM2ujZWaNNExBDzYuE5urObKT1EXbIGrTd+bEOA\nFkzI7VJnIxohILyevNqDujHyawg0TWgZZWrprOoz3DjLxNFDT1fWu3s8a0Wt\ncuIoF/eDJAO1z4LRKHme3xaefXdXW5yhNRLo+d4+W89A9Nxh4S+ytv5V+MKf\noW+LjxK3M59wTy8rA/ca3GrnUhXio0KW3Dq4LB+jaVXGBZ2KUg2eRiNXOeWy\nyy0hb+mNbX3P57nq+sjK4Ita0T4ttTMkUTWMU5oVq5tRLFx7NCtB0RrrH7/Z\nrPCS7JQSPj1PHmZtHRKy+OTUc09kemqV8q728sN9zIoq4WzX5E5dL2eHAF7e\nFsKF\r\n=X80L\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDHThtqk8+ER3FOfsZwhZ9Nyto4vo8zU6ctmv8Esh460QIhAOQVAMsHNy7ZdCH7eTg6qfbOouS0RGztzPZ3bqXg8VIq" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539120534494_1539120544256_0.14464197526819644" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539377578495": { + "name": "puppeteer", + "version": "1.9.0-next.1539377578495", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "594312" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0fd3bfb986f1673e1665a3f5fcc70b5f1900fa32", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539377578495", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-bLCXbxuvBNt8xbk1zyWpJS3XX7xHvMQbEHLm6/qvwGkNxK/DZtwtvus7qLHBvfD8zObjgLMxpq8IO4m66SAyzw==", + "shasum": "eb10d2beea58e93ccdef14146d4fd8d3dd2b310f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539377578495.tgz", + "fileCount": 55, + "unpackedSize": 627682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwQm1CRA9TVsSAnZWagAATGYQAJMz+VSJ5gsW94rTuT8n\n5HDlD1NyNOW+3jDfKzKfXPx6Ufd2xHokxA9GQlOF9T1tM/qHLjosrLMVLpkN\nFjvLTcFpchWuavFcfTzWbWPSRjTy/BWYOzo2bmm3F4dzoG+Az0B1noPFpS1g\nGsSdJc4h625XW0RW3U3+Qhk6OtteDLJOWhp2GpKs1xD1sRsuitl9zYOT1ASq\nxCOHl3SnmC7LOC3xdeJ3LMxmGyrJkTZhAv6tpFoQlKExOU1/nDZdiNBVR3ZJ\nFQguvY3CFymlm/IlrV86CSs2vI9Lds0+ZuW1G6ez/iz96bswZVYQJvsgv5vD\nsomk4RGdxojKgmljDU0B8n0uBh/qlA5AA77AHHKK2RGOZ2cxtjIVxk3MrBLg\nOZ4+zRV89XzHKnRXp/R3SjvhK9bBlD1XXgAEvdECYMtuUyMrtpMF8t6rXrvG\nSrYwO9sGT3PgeY3pomYpxq83OmtRRuBGD5vZqWl+XKyYQOILIB9Nn9DIAjoo\nQh1V5XjXTO2Zx11xQ5Y5XekdSS1werOdJIOWIIshcuMrDREb1FovH6dSBc3L\nvWmwwC5p1AryivXp/KOBOL1kTZzTGLa4bmfeZq6H6GyiabnmoQq27jVblJsS\n66zaLAVVb1/QGE5yVo8zeZWnWI8KA+6BUysbBptOU+zq6H/HHORVMc5DV15I\nVGlx\r\n=FgvM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCxrYrRt672I3/DIThT2VCCT4IpG+4Dh/alIyoFwes+ygIgZJFARv5kHuoK7qmRejZwm1D2INTUMoVZqmtPSmEEQtQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539377578495_1539377588482_0.9125150761791652" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539714521728": { + "name": "puppeteer", + "version": "1.9.0-next.1539714521728", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a4cebd8e6aa2881eecaa67603defd73ccd7645ad", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539714521728", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-66s2D6Jy0R47taaphbqTGZSwNWJQ27K3Ivud0DzPH6ZsaMmgJopHhK/GRAcxx4oLKAPyGCT3tACIsWxDuXfA8A==", + "shasum": "bcb3bcda902adc4bb16b0f3b2190e7ed70366090", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539714521728.tgz", + "fileCount": 55, + "unpackedSize": 627682, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxi3kCRA9TVsSAnZWagAA9esQAItHtCHABfnaJJWh4mk/\n4J2lBnLUhBupGTodaiuDxOUp+x4t+7QbgepmrlIpfiHdwptWwieWE0R6j62r\nUTbi6j2OJe/Oa4rGE7DvTaJxakqegmy3Zz+zO2UFy9u/SbpP+/Dz3T4ADS62\nCwDmBxOvVHNg9T/t9TTkaGWAwm4yRytSL06YSGoPKz+ljP7MJ9zJTPyY3ea9\nk+jRjWx1geWf3vPIZg6b3NMqxkZXZAtTexsf7/YZKuXuixbqNH8qQk9VjL52\niVZq8xBRU4JgAJvQIEw+/uuZIKuwUUFKYYUOif0BWyyY4aoOkKcP+MJBKLpo\n12kzaMESAsXZ8RguiqtikT5Pawtj0wOwQdJRJbno8xpj8rvb7pvceE2B8fxs\npIjw1lOkU+CxLVOejJjAdoNMIPMHlVAyH+KO1Sng8OUwwSxghzFepDgDhmFG\nlVesbWzObqK71XuUC3h0PBAt3zRU+NJUhid90SGACIvL/3xOK1567chNMDj0\n3Ub1iganFvrsAfaA0Y3lmbOZJKEypdeOpPE88Xh25d+Iughz0evvnzBTNH1W\n7hjFqRS2iefLvnhKy2LmQONp8VMq/7/vHU95LLtV1JbPpxJwh13VNhWvvMzP\nczUMsf6ZA2u6gdb7eOfZZI2x6WHQys8oSZJ0XjTS6LK3+IPejmJWkGElNLw8\nwqdY\r\n=HJT2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDzwsx+BvcTXQFM4+2SjJrUuCM5jQh4ju3g3P5N2NMqxQIgA5eiqaOBqVtNpUNdD0alx6CthgM8T9OFIs2djFXAvfU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539714521728_1539714532176_0.7314253534980018" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539734295322": { + "name": "puppeteer", + "version": "1.9.0-next.1539734295322", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d025d1f959ef5193e1faae61244b87b5cd8850c3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539734295322", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-KdB5k9JJ3tfskTW3jUAJJRQ4V/IcwGEdJStWiEKaJsJBqY9gnbKf+IvufwlHUA0seDoOdHGaUuLy9/IU6UbfBQ==", + "shasum": "22264fa6d8bc2cc181d8673e4feb00c619514170", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539734295322.tgz", + "fileCount": 55, + "unpackedSize": 627688, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxnshCRA9TVsSAnZWagAA3gsP/1U9YJM6tTS1JIrbcEJR\nAIVmjrVcOZGldtElW5iKQhotzN2F5js0UCM8159ucVbIHG29fRwq0OBTdRdm\n/wT2gSDiZ8QGNS8b6VFJ7MT7oNjs0AkZlzktwRPGaqdrJOX2HxPn0KjGtpXU\n5lMDosXwKmuLO+CJupG0pM2GpIyURVTRt1gnsVHHFmsdTCx0wKVdtgebkiAp\nRYcoBZtpJ09kNcLihpo4IWyUDFSiGtOJDvPvnzoZiaeBDinsaIm2rmZQjTie\nF6/SQPXF+dTSGGulOeROEanb3w5c1Q9tYuLizCrfHkb63/tsm64MpeEZYQWr\nBuQF4szXFDUAxludjMZari2lbYM5KkFjDATyR3Oh76Z5Veq/S6lBBWmJlcvz\n34RhbYe00lJbDKpDlR/gx1qUh3/aZiINqEoVcLbzqEgB8J5/hDJW+UYLsy2Q\nTzBHrI/BhSW3fhvgEoZD37cfE+sU6AiZdgWUPsVIxc3rldo0ur/uyRAxOTCc\nb7NJFCKywUbPz4h/f7vLXEbpvVIU2rLnKwOMAANLx0SZOVyg8es7ZZFw7gKw\n3y2Oa6gj46glskV/ZapwQkWvAOOB9r6XA55PuMBbmut3n/WhaD4y1jgg8bY5\n9yAFbH84YweyRnJ1uSt1mliui5iKItwCf+ffRjvfNKTkukL0aMQ0HlKHcPKL\nZxe4\r\n=+1J/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCALhSoe2h2iJBAFWGlYzIUecg6SmXkQUpyezTraoOzbwIgYMT0AXol4/w/69jniH2Z5BXLl2XpNEwn3OxVPvggUNM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539734295322_1539734304999_0.9452367848130145" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1539736052365": { + "name": "puppeteer", + "version": "1.9.0-next.1539736052365", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "cf8c62e835b565feb9d19639a3832a59d9b07aca", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1539736052365", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-meF6WR6FPYRM/qRcyXe38kpS9ftuWy+Csh6/HNkwf7OYTMFZavLcNt6p034qTSJenATBg94HF2eF3tHpIJiCww==", + "shasum": "ca2233eb12c2d8de189d634ac66cda73fa1cffc5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539736052365.tgz", + "fileCount": 55, + "unpackedSize": 627688, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxoH+CRA9TVsSAnZWagAA2BAQAI849/a9WlGbCyfpQvwg\npatrrh0y9PWkV9RHtPNkT9yp5dDI8MydluAMbARuaTOY3piy07AHxaMfL0Y5\nJV094J5bkj7JprvALKz4XBqcYOebtmds6K+eb4+xv8Gd/udq4y7Wi8p0uq73\n72z5Dl7Uo9RznVMHniysTmlFtZ9jLKguJewjWp1bR+bMO3yvKWokA6kDNLlD\nXBy2t+8rr5I4xQpSYD9CLQ20vhUcNX1g+q8sHl+zuLfjyZXogQE/JTS+yptB\nmXBxFpQADPu8s0+KJvkmSdExiGTbdpbzAjGGrJRUAi2/yqiZhkIGqzq54keP\n1tircav19CM5DcX/cmRzGdS80aTADjXFdKBFHphwWuWs5j+qO0bP7ahQJ2zn\nfP0qwmPDMrCgLBvPMOB8Q5H+GZYlWgkkY60bCgF16AA8YUFncZ2QBrBuF4I4\nhCi/GdmMqzV1DJGL/DzoVJ8tY5IWmvgVf5yLF7Vi6aVktFxySR1jSwgaSMnx\nh/o9a3MCAIknGBft2NKUWuVLCXDClZGQlgML0ps6YmdLMz7AsGUS4F4+wxZX\n00Fx5F2xG93qIQHCeGjWCih/di4qNS4sez5cst+WTR23la6TgBCzpaXYy9JC\nZCIVa46NsVFw8gUzjVCiZCt/EJ0CPMYXSujXgSb/mkUvcrb1Mm7uo72dpIPm\nmIFe\r\n=YUd0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCoyV+ZhQQCeX6Xn50X5JJhqMxdT9QAh0NIMr1M84gZOgIhANLVstJYmxprWdRwWff86ihkfsg3+6ojZr531yFzXOqs" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1539736052365_1539736061832_0.7013705472125298" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1540492188882": { + "name": "puppeteer", + "version": "1.9.0-next.1540492188882", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fae441cd42fc410115ce9cec40563e21260db9b6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1540492188882", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-hmMgwoUQQDNuzLx9gbN1oZrNKiP12MyPYf4FBUHhQoCPZX+83IuG99I/2lv7Tq7NqrNCfgaZovZ00mfEDQGzhw==", + "shasum": "024f3238c349c37a347f9fe17d1f583a968bc33c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1540492188882.tgz", + "fileCount": 55, + "unpackedSize": 627688, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0gumCRA9TVsSAnZWagAAEscP/RkQLQHgcp9BkWkkmSbV\nLOa3Vyl6TAs5VNhkcqzbY/us0iQMbul8xu06pRmki4GowrvhBY1XiwczKxH8\n3oCh4fWi8BYasPl1j0qyoxz1Cna0jGqPXUWJerqzTcXl7NN7D+sqzxZYHgSl\n0Eyv8jfqGF9CyfYutPJZnW7E21PIXHueVy6GsJRmydaRtCvdw1PwJNKmCtRP\nsWc2WB+ACeJbrtFPwSN5qHikwRX3J1ydeB6bBYAuLTh6tEC2u5ko2uLTpIMk\nBU8nIQNUVY/0SShtNvfaSFjYFqpPEWVpGqLmeBPmRu0VRUlyPAQEJ3wAWfwx\n4I4lMmjjwC7ELyX41vdOL21UqHacQ0ikRh3cJqHqceEw7cPKCbD1BoMJLLU/\nIXPCNHj7I222VYW3TFgz6a550cwME+JaCnuaEF4ZBCQzuRMuzig5Un8W6eJA\nB6YyWnmf9HVlzUyYx8Oax/trDnxd0byaWRxeCghTgoTo1ZDkEY+yZ00ZO1LI\nkRgAEh1iCu4eR0JwZBhVUfW2F+Whd6OfvhSZ6nJs49XQyRggTlLlZcbWR08o\nhxC+SzgShJsm3bhijW8R7pKTcFrBQj/TLsQF1WKGa3yA55onzx4AjyVsd8Y9\nLlGFanLr/qmgc/ZcOCB9EddQvOG1jYBoAL+Nxypmx1PYrcz5xwH5PpRGQgoQ\nIvqT\r\n=Cw8r\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGY0358/3bTdIlTISnJ5803Jmjz2czlahXklc8wZFpi9AiEAz8JUYXuYC34Rs2MX17EedLovYTdngTc8hzNanIubc/c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1540492188882_1540492198108_0.24074705269724173" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1540493070953": { + "name": "puppeteer", + "version": "1.9.0-next.1540493070953", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "81edbbb58e5b572a9317928b9ca90efd8259f87a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1540493070953", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kDyv+GxYuvoKB9TYwVDR24kBwbYALl3V6egiYAnPEMpylmctova7dEooIlCo+4QOwExQzVn5/xZQhr86SqcOvA==", + "shasum": "98540b6a3edd69866e0e84c9c268b1311d03d54a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1540493070953.tgz", + "fileCount": 55, + "unpackedSize": 627708, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0g8aCRA9TVsSAnZWagAAPvcP/0B85Q8adCRbGzJuLkqQ\ny9L/81+Iwa5Qnuh7dfUs76W4Fsp4xLhnmeN6SmtKGsm92DxwV1DmMh5P3aLF\nLtO/HdzDWeza886cIrjsz5lr1NAbZQKGjWHfeeTHWfPFZOhP7lj3f0mO+I8j\nCSF4Y0vLdSclyAJ7uuDQb5YPQz/H5PaBKNQ5bMWw0kuZgqPhATGVWAPZ3MUr\nfOTZ8lX7t6XjDCL7GITJCiEGsxO5jPGZtfb/u3fVrMUTSZr5dqd/RMv35+ED\nXO0ozV//yOcUOCIu3uibneoAznR8sORbBbvw2+KXppuOKQhhYxqyroBIVtns\nBGoCJBZa8iqvyVfey6+oF8wJ2dVpFE4RinR7ARM4uK63snORMajFZPwbsUF8\nqrPl090V/WWgeUOfkhPrcb8GtqwiJ7hVJCkFPU7uqiQ32ykcPTmlI5ThCjp4\nf0CnB1jd0Rp9Xn4Lg8D6j96NFgWpOu7wfcv4z9SwdYcZHsk0CrgSyOxdtUkx\nD0dV2K+iKBexFZYUMU28kNj/JfGaszoQhgF59IJ7saip8n5w3H9/2reTYiI8\nbs/9kY1lmhOxMuL0m82idPktVBnPewYQbOBBO51K942CwJCoiVgHcZUahz+K\nn628+kxH+YxuF5qgtWOUiCk9DkNyXc0C4UGtSBViR+fWuiwujeXx9t87d0WH\nZaib\r\n=79ur\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDk+AjkHDcrfrF0CTEt8Q8gMkJaUFzEKE7EnVitzBqPegIgC/VqBH9mGz30xBCFUQmy/5HyBKJNBneUEMwXA7WdqfE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1540493070953_1540493081585_0.1832746532570526" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1540604446651": { + "name": "puppeteer", + "version": "1.9.0-next.1540604446651", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9800b2c3c2d31379badb9d4dab1cc8fc95aee48a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1540604446651", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-85Tlyje+Ad+jAXpqz+TlvwAOCxPyu0Sy1J7Y8j8g/y1hmAd9HSGDIWRH4p4BX2pSwVrjuKfFYgw1gk/wSHCGtQ==", + "shasum": "377fba0c5359f7dbac88890ab984c9a0d402863e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1540604446651.tgz", + "fileCount": 55, + "unpackedSize": 627708, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb08IpCRA9TVsSAnZWagAA++sP/jrNQzBlACO3KlTLHtU4\nqtOpp6zIH3+iGZA+CY0Pa+uy2SLIyrm6Hw9SsN//6EONkWFiqSzW6mE7qn/2\n28rsVgRQ9dulYv5FBYKx4rIa1OOG7Y3oqo3STfdFGtTkKtqjRbd1PfFogCLD\nFnQj9L6yqS0fuk9g20AOQYXpmTh3uQh9u7ugunVp6carlbpxLXRrVsG1kfrJ\nP7/jQMgTXhfLIMG8bTxQrMjNuuf++0nzyU1LJNDZxZehxQbR9bvVDpURqaqG\nd7G9vxkph6C/LUti0QBrpsAAW3S2+PdgdPx+SssEmn46TKPw8vmFyxK1/jQk\nSro1jADuk521ddkR4s/fF2junWhJHKgNYY6vg3v3IroceOVkHTJGwtmv2rQt\nsjTLd3QJm5TGrIYx7e9hv2AyoGk0l2/jhRWgdAxTT0ZFgJxF5presHRGYgZm\nyQmK4KnfPFs6J9tAKXJST6k0OYdT2yoGtyWgWEB6tVuBP4eVoGYfIvAgnUab\nLiprdXR4OwqzDL7WLjfwKRgGt6cXS8cRmHEyHyzG+EoxfN+5gOtC2uAM/7b3\nMQlk2jIE/LlPQ4lft4wMABbozeoS1LwiFJ+ofpVDMPh06AMzLxH5vAkq5wL7\nOyk6kwf1l6PTjyjc5jVzu0whCAVeNE0uzaG/pua5EXfT3Vk6/K2LqMcGNika\nA1ki\r\n=MEeE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQClb5DyR4ZSGu/zvv++mvYp/uCeQuuuxLxo6UBH8MjjVgIhALJJc4u8Cu6wadxWrUyCsYf6jqeJFZ7evS9h3evoN8Mg" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1540604446651_1540604456953_0.370398439855788" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1541028853238": { + "name": "puppeteer", + "version": "1.9.0-next.1541028853238", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3dd5c28f90a9e939489c0541c5aa520564fae280", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1541028853238", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ppaVmPbmQGiypTDvczAAjZ2DhGMVYS6VhUxI8fNvEl/Z340nenMKusTWCKhxbfX+IQff8e4gl+xZ9twj9uD9Zw==", + "shasum": "af1e7e7d9280541bd310d4fc5fa33eaa341dd789", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541028853238.tgz", + "fileCount": 55, + "unpackedSize": 627964, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2jv/CRA9TVsSAnZWagAAnlgQAIkq2rH4WynsNSJIOx1w\nPabGiv5S932y+EiUwrv5rF6aUSY5xP0PwXItXpHdZkSTyU4DQRzg40sbsP1b\nQbc+6tm391fkQ5CRx7OGK5JzqUxj80Ht9hJnnQhR/VTZsRNzBoy7ZpzZfgM4\nksBsGSySOXAQdpWnDp9F4WiETD0b/Wwg/Y6LJw89USvjbrxxX5SxeMNsB4Kt\nvJaQpD1mF2fDqmDSxJbIzWROLXtRyu9MAQd0QSs4UX/uObKWs2tdw5I4mqkC\nFPGJx4O1nKemZMjySGoRfUaREoMilYb1s5i2NZsLnqul2Mx1FhxWA596ahmT\nbvl1UCQWqxibZo7notm3ZW7HkEz1Zqcc3A/5ayH1yPInq0nd4Q3kSXHXRIxz\nEKBkPGcQ3r5KF3xfs75WfGxYFAeQLayFAmfJfRVjXDcVGxpNW+1toAv07sVP\nZvUpe1si7G1UbuA0DKqUmOYDR7g3xgf5gA+tUec7vUU5/N1INeV4721BkHrr\nJa0iv5Dt7YFFWqcJEbeMu+vB0ze6XTxHi2nHZ3wMqWNgYvS7zQN3YgBpwrnG\nl3VZ8fJPJf1DBgBoSmyWSC0S7Jp+FNlhZBmOT49UW2h7Qp3zycL0sKB9Cd5Z\nIU8m4jDeHr423K6+aXemWRAQn89VBmy596jD6s+S5JlxFoqYJC0LlforlVaX\nIUcc\r\n=dz1f\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD65avicWSQ3CFG9M8cLjPzW+N1glTxeCdVNpZIlWfvMgIgKVimLSGBE1mgpSm6Su8D7A5wjcU8IqU1Jw0yhB7uEyE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1541028853238_1541028862389_0.08575678861328528" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1541112234493": { + "name": "puppeteer", + "version": "1.9.0-next.1541112234493", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2a88690582cf01c8a338a972b352c34738e6bfdf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1541112234493", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-GdEJ4UyrRRd8zaDeqeo9ePUSO/woUj/NHY+ai4d8McScveeRExTe19qjx6M0l2PUwXPOhWcaJWg9+OZYzjR2jA==", + "shasum": "970707586b6c55a051f0f783781049b66ba48e0a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541112234493.tgz", + "fileCount": 55, + "unpackedSize": 628210, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb24G1CRA9TVsSAnZWagAA3XwP/A7NZES3vpGOiI6pt8Wy\ns3adT/7GSEDKI5JkQovAOanWQIuZ+07KLpi3jtsKfqAp2N7pykAs2gYrZB+U\nI6yPSt0MIAmIAisD0j7GBu3b8qcoDajdpn2gtT1iIWIxOl4lz/MYUXxIARyL\nb193Q41MRASCITwAWhMCrd0XFb0WXPpegOtGgYi2uRK2+7SMuazc9gTntfiT\nWBDkYY9Lbhls913euslbe2KNFDKoWz5cvZbZiujl2RavoZgz6PccQ5hemFdx\n8kX+VrILpSSwojwxU4Eh0b99qYoOAw0SlgoykGEPrm9g0n6xlyQz9VpYHoHA\nlj/9gr3gsrWxCusa9tLxe50SmBtWqPyV/lQBVQWmfL25mojFTJ0tUZkn1ZGx\nH/ZSAFhTI8fZac62KkuUEkOsz9fjxvMUAAOjupbnO+0F2OJS2qH3Kqey6Jav\nJjyNZJDY31paynhM4ceXIjaI4eH5EplKSrqZG10MwZuxk2wdj1Bf7Z8AAgt1\n1jJBKTJ3WEp/9dmECVL5I1GhsvXncKW3X2x8fPuEjs/DOykO/q3h9SXapq3V\nvJMNTsYKEBFWTcQ7p77akd1ox/SDCHWjLe3yNxdueCzjR2qeFF9TQlNIHFrK\nlRR/+h3lZD/enwC9r0Ra5VKI2mJ/7viqOZx6blPoBoQdSIZequeOqJhI7sPa\n4D/U\r\n=gIVU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDD7sxvBLMQXtd2monO9GhNp0F/WUS5TlMkz7lPzUEwYQIhAJ71uArCTZJt8J051kM83Sqc8QKEqOGISlsVw8pqt0Ah" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1541112234493_1541112244462_0.9022832602374105" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1541112473441": { + "name": "puppeteer", + "version": "1.9.0-next.1541112473441", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4110087a601ce2c37fc441e7cfa0012538d9c5d1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1541112473441", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-F1KWbhvwYa2LqLDzoBtiakKTaENeugIOAakdS84GKAQ7178Hk843FBmDTML9Ln+SYw5gPaOhrxSitKlIv7lYQA==", + "shasum": "e7d96c388e6553e2e40b81cab816c70ece238728", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541112473441.tgz", + "fileCount": 55, + "unpackedSize": 628210, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb24KjCRA9TVsSAnZWagAAdtgP+weoQsoZBVHqbuvWV6NG\nzp7BEaQ+9mHHJcAHiexUWrtQjkSmug9E+t2c8LmAqXeDzTFXXRZyPwRjq9p5\nGPP+wKOTZJvOh32IZ5HQ19PyviplnaF6AbkEhrANjMFS6Sje1sMx+5/t1A52\n5yGuXTbBzy0CjeWRbvFdqXpgi2aQ4yLjen2DLHqNWwYHFIPYge1shr831Yyb\nUd1WtHcVAgDn4mVh9TXqFHD+bxJeuspfFLfUAa4CpfmHF8APmiYKaQv2eA4b\nNa2nowG4XN6yhiu/TWkSJMA51OFzNbcQ64xp4vwaLBQ2FlYNTmMxQfLS0i9i\nY2vAKa/AQiRzLKJwMnQmTXTBcagVpIl4QbuWnl+mUHGIdIUb8tE9fCwxGmWi\nPmhwdKdAh/6/hA0Fo9vSI/s3skMHp2zbJgpQHmuWETaDMOmAw1eURrzIQfQ2\n7IIDTnVnNQHK69B9fFuWcMN0hn4JLOsdLa8JJRJRtz1WiE+y1zwq2BBWR8WY\nZO82y0O9hoR2zcL+0GWbo1zf8CaIBTCydqMv0v++/W4jk4F+fwxEIQKDpvdq\nYkrLfsN4r7ZFga/bVCAW3CU3UoaLnwk6e6je19pVjGSealawdn1vT5cx3biW\n7FDDFFc2W212oWj8k0ia49kJyUhvbKzPOoNJnhABuTrER5jsI9ABHxisAL2d\nYxYw\r\n=lmTn\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHTYkwFsNHRZJbJ12JJnTJ00e33jURM5dSG8l/Dknlb0AiBvCmi4JqM91CEyK27P7AOXdHGNpzHeKR9BoV8i12PVsQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1541112473441_1541112483168_0.9193990293917791" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1541115972867": { + "name": "puppeteer", + "version": "1.9.0-next.1541115972867", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3596c5f7e2686de355249b23b26615d9a11f6e5f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1541115972867", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-j2iduFTi1vapKojcJnpdm2YD3h2yMEXzCPsBE0deUXjp6J0QZ4j5sfxoAzs7udw/Iic1VjYQdx6a3bFHsRdNxg==", + "shasum": "b3d53ac908ef467e5d4e2268a9b96e6a2ea15be1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541115972867.tgz", + "fileCount": 55, + "unpackedSize": 629502, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb25BPCRA9TVsSAnZWagAA8G0P/RAlMUU1lnhjfFMsVHSp\nMfkzJec+oEs+YPgKcEf33fWr7CmhVCnls2PKFptZXkdeiLHBa7kd80PrUvk9\nomTUdt2VU+tDafXrePgknMbsOA9AsQdaUMY9Q1URPhSbdXdN4fmfmdwx/beT\nLTqnGeGq6Xmxzs+ol2eJhN8OELIFIXPIFhXUBytJA3iqjoK33VcYRS617U19\nRdwcPi2O9JbH6k7gLEqT/zGgdw+q1dCAHgVF6LzZQwh+3sLs0f0aCvQKZfU2\npSaV15DD3KjohzPqMATWPFVk985JrS65wW7MCwrkJ1xqTyZ9aC0bgqyFU2To\nG2kk88ZYwtimlEveeO3e9Xg46aAmakKLfBv80qXP5BydYfBEJjtSMGcBp8zK\nmZyDtZQurkJJjiO3G/cV1YouIZilapdH2IRJ7EskU9StkM1aVaKCHsITeHtO\nLz6fdhZ5HEv80+0QbupGS+M5ywgsak67545l5s6UAreJJS8ZzquJqHGtROBD\nuXKtZHt8jrnujEedYSADqeNyTCr3thk4Qsb1ZDAFxutXOUVJz+LWz+IUeRkH\nwHqb83k16AvPTD0zGzpCCWykZudEklS66HGLVaQve1eXd9539PQ9629bEg3n\nMnuHGKVmJER0clxknynp8Id9qU5XfBlcBW86xoiIrHSABSrdC6ppjrZR9o/O\nueqI\r\n=NI+P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCfkFVvZU8i6x7Gxdd7uqFvWsbNMzlMUfprK9iXHPyk6QIgbzM9pYdWwdsYSb/B6k2lbOVuBfKItYcqU2q6xK/KJi0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1541115972867_1541115982736_0.6534294574760797" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.9.0-next.1541123853272": { + "name": "puppeteer", + "version": "1.9.0-next.1541123853272", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9ba3261571f3cb636f83cfd367f8ceea7e6e3588", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.9.0-next.1541123853272", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-TTKnPCTM7SZcDJfUKWK8Id3zg67mytnM+O/boR3u8G/b7I1NQ0bkuUxCDY10MGZu3Qwh6pyENLrqPy9qObJA+w==", + "shasum": "01757f50892a01374a2223dbce828d21cdca63f9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541123853272.tgz", + "fileCount": 57, + "unpackedSize": 652180, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb268XCRA9TVsSAnZWagAAD2EQAIm5sIbjPrK5gb2cMlUG\n+QMIoEYzyULfO7sxWQH3DTWKAW81gVeeYUnDksRclRn0cHxtJPaXiybACiVu\nN0gZArNN4IFJzeaOK1GXQ5Y1itNJCeA6fd4lJiRGriGZReyM0h1IxF4MSCCY\nzzHu3yxR9ayluSDFPx4aCqlkRGUabBeW5IxdI5KZKQeFv+YQzWJlfVaKUmFD\nUu4zaMIlyeY7Ecix0+I056LpeeO7mOLR92HsavnBzUxxgAptGpQMONfZQxWI\nfhETlQ9dU9aR6VQ53UHBOOzDqqsoT+18enFMIOM4doYqTub4Xtt5pYfzmNWY\n3MZfoTfmZX4nkKRp6QnxFVvpPGILSLSNDKwmlgjI848P237PzvmUtAYQmpAs\n8SNbwKTHsvgwxbWyTWGgWpsv3QPiXNYtbWxh46xksr7Buw4V2k8CttrF+CCq\nb5l49W6eC5s1OyQ8xLvZn9ihirxMov743fTB1ni0OaldzElWptnw3O9NDP3n\nVYIS8g8Vf4cRX4SEobWZLAdIVxNwFPdu2IwJDlq1B/FyBaxyzzq7ZLwLVq0i\n89NvLYaLEMupiQ/sZTqc1CpJ1lqN70bkNEvp485dXF4h+AdUwqDIulNSEH+u\nTfHidUyGH0Ct/Jt8HKUXVhJ+l6lOev1T4h649BpcHsZI9XknVXwisalLBT1P\nN6cC\r\n=wU2g\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAEjbqtemEmhQwGnEKcmGpU++WxwDnlBbkUIUSf92qQxAiAaUFZPMYO/StSTJ9wKPDu7qdwfcoNGMH0TNHvgpqorpQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.9.0-next.1541123853272_1541123862956_0.6313364499093996" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0": { + "name": "puppeteer", + "version": "1.10.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e9d89a2e21b1698414fb2721eaad37b763362468", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.9.4", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-3i28X/ucX8t3eL4TZA60FLMOQNKqudFSOGDHr0cT7T4dE027CrcS885aAqjdxNybhMPliM5yImNsKJ6SQrPzhw==", + "shasum": "e3005f1251c2feae0e10c0f7a35afbcd56589ceb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0.tgz", + "fileCount": 57, + "unpackedSize": 652172, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb28BeCRA9TVsSAnZWagAAzNUQAJlQENMVBxN6gSxK+gI0\nhIPA66vQ6v5JIfau9i/BiVRcDC9shppZAZ4R1E0CdIid7BiCynSHnJGHmS5y\nv62BLV53cumj8eCjNAZJdkQscxxWm3iNQGTZhMXxJiKCTEz3boO2YROi8rg3\n/xZh7a19KRS8ppZsf+XnTRrGXdG1nc7jlSfF19dBvjaY0+P7Xuils6WcIJar\n6GnoBCBRGx8Vv+gmngLkfLUoZRx7OAT3HRbmVRuA4J5VKUuLEnj6sWUBhdiP\nESnF2nX8HmabXbsH13lFFqxUq4YH9p6lWE+eeGQgSQCavnKYv8RntyuvUN4Q\n9lz0WSFuFVIUN1Thq9WYDll0mCqLwDzrwTABTp49M4YXwf6arzRJYd4JUjA4\nc+4k/GKD5Je/ZUyL9gdF1PuOCE/Ent/Ofh83zSnRgmRw/bVuCecHjeXfnTM5\noDub5iWGXJKgv8/4oDC0Z+s4YkuB0dN6L+7GDIxFdNI5en4Q/ZnFsHR9ngNM\nWiwyka1FPcd1Fn6YmNTnsFvNXWtzwVhtJHjj/t2dCa1I+N+smT6ruvsAfd/h\nHW2abkstdzrsYzdoxKyY5jhF/Z56sumgc/lVu6gYsi9lXreOwy6CFXmlDAPv\n5p0QA1lRm7Lj/pgMr05rt1Aj+yljHEe7O02zxk3RWhSZVBYSYr+g0fSxBA2o\nvVfL\r\n=wMbr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8ABbi+1wPh4r5etzCoGm9XTG5J9GaQcg+NAbj3MqI7QIhAI+vDBzSJklO3awEc3NN2v6NtqdShcJGOZetUCOn8YeD" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0_1541128285445_0.2035993914533749" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541128319410": { + "name": "puppeteer", + "version": "1.10.0-next.1541128319410", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e9d89a2e21b1698414fb2721eaad37b763362468", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541128319410", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ngSRg/aXan1TSMSXtlPV8y8UjF3tYM9iiMxJQs4sAtnYJdjcB63KSeTlloADGF793cR+O3yrF5eg4gg07/G34Q==", + "shasum": "68a7b1da8d3fbd4d5bfc4b44ae47283379cc1113", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541128319410.tgz", + "fileCount": 57, + "unpackedSize": 652191, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb28CKCRA9TVsSAnZWagAALoUP/imyQ2Xf3qaagh6MqWU8\n1cyX+zhfAnnrGDMhg34giPtCaUACwD+r6LMKBGXXwUGStkaBJI3jCZRDwNAE\nMWlvnZNKxp8v1Z8vunKMmRh1ytlaN0zc+xyil84oNAe56dwcCX9nepatqMJ1\nz9MiJEeX9Pol+kKfYovFqgXlaFTZ73MuJHYvIsbpjKK8xrLsFhVy4ybUIP/g\n3QoZ9Nh0B2xo9ScKwHi0DNC1/bYHISRIi2Rmj1t4aQ+quokM+FIY0cDUSR8T\ngRi5OyrklVgQjLfuKHDd+j8pR3z4AaQuOoyPz7BO+t3OR+8zWph2LPiHohqk\nLWIlgis/zTA+nwcMUeECrbiupEBTv5l1wkOQTfF1ZAbVYl7hrcHC6p8JYa+W\nk1E0d6OzEEq22dGgeZg9Un15cFE6Cky1KUg0TSW950KgeQezEsGa+g7hQOkd\nJw2ZPfB9idrglrOm0+BeHht1b7z5wWec27FVEYjrElabtLbaOViuqPYjkLW5\n5jiUF2uYSrUoH5LJZLB8fdo+84k9kv9abiSRS26t59cR+hnTjiKx22pgbhE6\n9BJ+FcTIsPP5rBeLDo7Te9z63otZrauYGAbc+yVpMhzCpku9lePCMdTUKQAp\nJBy8ZXNKLC+45sMRsaEsoVjshVO3qBGJnBoHN0kSOAxfxW/hE/QegcWoV1PS\nXqPm\r\n=Pwml\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFLW5YL0czJABbxQJCiQ5Nyf5cW4cnvze+doKiNpQTFoAiEA3lTEtM14S+OyRKy/1ZSN/z1sT58oz3bNeM05rzUEsuU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541128319410_1541128329621_0.7654157781684747" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541182312825": { + "name": "puppeteer", + "version": "1.10.0-next.1541182312825", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "60a8d4115d5a75150c690027df4cb81c98561a3f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541182312825", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-R0dx/dcRLPY6vzBBGAkngQgyZUCTgb8uamstdhxnau7CzT4zaqQBs2hkn339+UGOXztLQKttk7aZ3XrQLOzviA==", + "shasum": "96ce09879416a0fa1dd1ebbf47ea9fbb2718d57f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541182312825.tgz", + "fileCount": 57, + "unpackedSize": 652191, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3JNzCRA9TVsSAnZWagAAY0kP/1qBGi7FZIv9Xb1hQrjM\nyx6fwXilDxdEMP8e8VceRFgdyd48dXnk8QP4ncnicUa7A/Uvmh9PaZbW4X55\nmifq2gz9wRm8+oPz+L2cE1nC16Pnmp+VrM8CIhtsSrWlNy/DPGMq07CUhftZ\nC2GYS4Gm0BNjIrbPyLYrtWx52+Ka9xvdcg+/ntj/3ZaFdC6IVl8vuQJ0Um0f\ndTMKytCXyYAN4ZAATRa23eoOZCeZBtKrMfQkD2NlbPVy6rtYHOsMtebtSF+q\nbclQPN+5LHAp/cGt0DIUcxgbBMZ5wquOqqU4USv63cNcMH9jyMYhORLwKATy\nTR5isnlKqPqkBO3jcHVImgZA9yxXkMy9fy5DpKQwwP3egf+45D7IIWvIWjrG\nzQdsZdOlV1en+pTNF9SrRELF9c4mYbZRefVCkxCibDBHSV2zi0vXFWDJC21X\ngmePAQvCLcNycJV9gVznpVB7ZCOVfvrUxI8s7wekyOi6FlRilC1+t5BCvU46\ndlqi7YBUVfrqhEY/Uwh7Zf7KLCQ7o/mqOzan29UF/K8SUuzcu/REuNNXqW/+\n5+Z6lVVFMZKgYmx2mcBh/deJ2+9hc/eH1LODyXMxevgREo9iCv0zTP5onpKD\nIm9Q039dhxNcWR1T76s9TbPPEbcXXdreduehbCe+JpRhVjpZ1neMQOZI1E/9\nFjCR\r\n=xp/L\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICdN/H7oaEnVmNU3E7P7wKJZK+XOL4APdLtZQ5SqcamXAiEA7anbwofmkEqYRlH2p39kasVRH4IbaDLWQ+UfOzpDMP8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541182312825_1541182322725_0.6218705842881189" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541190395602": { + "name": "puppeteer", + "version": "1.10.0-next.1541190395602", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "599821" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6b65407ab6ee634cede15727045c6395419d81fc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541190395602", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-lQ7lfxrvIWBcw2eET2kyFO9Fn97wJeg1X1m5EYtLUMq6GM4hSDzAZn1yGsLZBL29qtaoN+gz7OJInjhRJpmXrw==", + "shasum": "b76b9412aafaa1394fee73ac0e6c3caa46e624b3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541190395602.tgz", + "fileCount": 57, + "unpackedSize": 652191, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3LMGCRA9TVsSAnZWagAAHs0P/3A16wzVOJNapmVg00n0\nQpOZKSEX5FtNsLZ/5ZDnwhcS0cTeUKHOzO2RmzMhhH50Ee9qJQfTeMv81W0i\ndeyrJzGtEbdItpagViswOngmAPqoKQ4V3rOYF8rXBKP2aJcz2Vt6ktsovwvi\nbVqQ0ooCxah+d2avhVWflIqLzjt7Mw6UFbIimWQjmyVsXCUlaQbr2VXXoLWf\nG5QlkkwhWm/rTQirzUK3xkkw9/rAgUuutmKHeSedeiuNUSSBZf8EtUVRwgDj\nV9H+fsi7C2/V57Uf81JMj4wvL7tWpu+Gn7KfR/Mmki54Sn1rgULJZx7ASlSF\n+EMMCODkBFYpADYs/ajimw/8Cj+kIqlO38/7L/QWG1q0z9flMtYrTysTghLY\nQFPeX23BQMemv3nLeDi6I1/UadjQioXU2sqzRA4Co/Aitj/XfenIkN1e9+UV\ni9mJjokCvYPH66nlJ6tHGXpPijhZzrKOpXHS7Gr4Z7BLkojVeFNVPU8G3aLl\nLc8imORDks8Wcvl/MDYcWbhZQleIcVQqKMlvVwM4MFAS8mV8XjVjoQb6uhE1\nTmtawVQC/zHJpfj4M1kxZbgYvIroVz+Qn9oU8SGbHxsb5UbJ7MPe5mDIsgbT\njkmyfpT3YcS3RvOb90NiA9RoMaaLVcmGr17FscAPpi3VsGwhvE4h7TD/aFIt\ngn1S\r\n=8Otf\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbfnLFRKB/IFH5s7OUiaSK6Wq/2ByziHwJ7vpgKRey4QIhAOD/kHJWqHiBkoNSxaj3dU+VGUme2ajeJVKwUYC15P4X" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541190395602_1541190405761_0.39322429308688567" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541204340403": { + "name": "puppeteer", + "version": "1.10.0-next.1541204340403", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "604907" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "52a103024b5372d5af24d5dbd7932e68a83589c4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541204340403", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-IDZeeSF7Xl9HIM7nmefUis2excbscjXx0118Dg7IWpUu/T1yKyz6gi0bN/p11nhN6QJh2m+gWI8wagXfu1+l8w==", + "shasum": "852598bf8996685e5896f01204ed8c8dd5e4e23f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541204340403.tgz", + "fileCount": 57, + "unpackedSize": 652191, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3Ol/CRA9TVsSAnZWagAAa5cQAJWINNxsfMH92CzDHzCN\nfh0CxqD9poOzjmXhyCyvSijqWfwqV0WqOhpkuw0cDbJ3MvQ4vpqZFBVwhLnY\n9HF72VFLCB8jmG6GqcG91/SCPDTPATwMQPCcBXD6/VyM63fqF/PqFSg65Ztb\nxEy7m+m71ndUD0KROWPuqqPay1qStro8HMHtvZBXGyMsDvR2x42ZXsz9w7fs\n28Iy0rrpby5GzSS26TuR0GlxrdAtiwi15DkoepFyK6E3nItsdHK0HlMIKx98\nAd6O+4bOs60QhtyJFYLtbC4aTRgUfeUG7a1w6KpxBAy5BmNfaXt+fiXJrEV6\n3qVog83CZxwGkTuIoeOqXpnYF6LPR/UaxHL0EnXGoMOQkeow3eVhAk2NYz6A\n9f6I6MeU6HrHmA13mTSO2jwMyeUIwr5gEIqcXXZjwkzfobIgQr9hsiyXOGpr\nFvfqWd1qZnDweEO2PiZf0p3AMBVI2FaMlncGjt26V3ifTJ8S3GOcRERMoCxi\nvx26bgZNtnE2INcL86WpeGbiRxNCmSevL8+Fnqhgmnp2o7j9SUCZYMinxPhp\nWtecxOHe4gHodOlkcL94QFhliUoVNFXwg+xJDr+aZV5VaonZi9V1PO3qUOJG\nUncNWDVLk6QfPdjriZFwvtqYI1pusIMvr+rRnc8VOJzWc27HtSQuzlR3pa6V\nFEN6\r\n=lwBF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB9X+EWxSjVnGs/DldepVrPbOD2evwKBDmeEiDay49BeAiEA8KKorm9fBhJ62eHKBHHa7mA+B29qxcyxfygQY/zG5xw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541204340403_1541204350338_0.40578355826548096" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541361083518": { + "name": "puppeteer", + "version": "1.10.0-next.1541361083518", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "604907" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b9f2104f439327d0b4bca6c572ecca046c0e4cce", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541361083518", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wuXul/0UtNNWi+MIFRZZAW5KvYfAQPtiVm8tlCbI6thjaGmI3lXBM0Bm3ORz1VnhR53HHOAdcKq4oArORmdrdA==", + "shasum": "d46bc8150032e8d56db2fc8bdc424f8724d868cd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541361083518.tgz", + "fileCount": 57, + "unpackedSize": 652191, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb303FCRA9TVsSAnZWagAAgGcP/1EKQtZ0bY3W5F2Gn6mI\nZZCwkaNQp0Rj0PeCm5bri3duAfHgRO56p1oCJjokTmOSl5QdnP0Fa/0+/YSa\nTN7WgTmNkXZ5qud4YvkjEy6dud8NT+ocV2Ztmf1YfwLHbC+qXbQSWBilrAZu\n9zReEmf2S6Hn0Ze6vDuulbr/p43SyANiSyACWrOscB8QKNpC3zXzNX6rO3yw\nCaNQCGzm+WwQ/Q5aV9Gi8rx3RAteN+LOQBD2MtGBsZNZ1fXbRenwa7LwXuDS\nmklipoTiCh2n+bQ24k6HDdtfuxjtoUOyOwYUAMENkznmNa/vOP2Ors8AToRr\nNkgIzkE4USRRpAQcI1h4qi5+UjADGC4byAz9leYGJt9MZgPe74QRfOawP17H\nMSEezc1dqW6oHMpskgJDFPxX0bNhkzkUXRjRaUdiitdGJ3xm4tvnozsxoV1N\nt+0S3PV/Rwt0ujYmkxFTQ3Ot7sRuZ/8L3xwVcCQnONXubrva9p1vMux1meSQ\nXvs3clKv7ds8BLlh1MAsZNLgHpu7qfWZVBtBOhr4PCVoPXOB2CBzk3hwOVBm\nSGkMM/kij+1GqstyDzRHVZtEUWWrdkcp+a4EPrQTw4+mW98VhU16+XUOnD/M\nfBQGcSGYqy/hUaEa6vVKRZWfCFbs7XycVNs0iL/4sSNKyaEJh3OwW8KxfA5v\nsrdx\r\n=D2JZ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCIcw1G9AYzaU+idUTO1MLq1/E5mvhPCIIUNIQqh4i77QIhAK6dG5TX3ehK19cWyLwkatpQkXd0jrSJN3H3u3XO1j7p" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541361083518_1541361092859_0.624049991178286" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541659909504": { + "name": "puppeteer", + "version": "1.10.0-next.1541659909504", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "604907" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "79ec7a3fe5630cb0ee186c8db6807bd0ff2e0f51", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541659909504", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-9PUTio8MElRPzKbKCOOw9iElyI/sl6bk63pJ/wbMxBTwc0t08HGS11hikoveT3fWXLZUlPQbsa2HPFckqgI0Mg==", + "shasum": "4e44f14b22aa60412e025ed85fc9479d3985ee5c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541659909504.tgz", + "fileCount": 57, + "unpackedSize": 652667, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb490PCRA9TVsSAnZWagAAqSkP/RLHWDnJJFWqGHRiH5lQ\ngp5wl7KY7C9zG68H3MTcmLR7fJ+uRhJY3n+BfhlANGSisVUCJlZdD50nvSSf\nTNkgACVeMzMYzV0VLlv0wfOJ13+Z16LGoVbks4esQ7BVvD7dDYLfLfmkDoJv\nxOmVcSWuW2k7XW/sPiIYMZXZKDRiwRX9IGlapKs2Iu6NVwehvKq+zPYf0SAj\nfxWi7mXFZgppHM2RLWu0YZ7wB5YRFY8D8DKzf0x9YVt+UMPB6BNjwABcTRtq\n9mgCWWTq59kBW7GkNpdTL3m9nrKywyX4Uskr17dUOfcHm6M+qliKXMU+sGF8\nibkDbEX+vW5ftPq2Ifl5qaXAX2P/DtFdAJyOHh14CrIAR/nlt14GQcp9SXf2\n2YUG4za9FhTylrptVR83zyOnFUa89Obzxy8Qi3y6x3ejNS6EMuXUsw372QGM\noHZvOPdYBWBI1vbl4WNbCiuHX5D0HLeJDl9VbImxUKpju7MMI5iTZ4+BfmsI\n63JMN+j+2FV8vhybByWzk0940KU0kKttMVws4jA9yZv79Fbf/xv/kKFZ0MkC\nfiU9hbeI+2ey8rbqzV5uzphim/tWqb+tpSYaDK1U6EAyJRfUnwU8wnZbXrtV\nkfXO9bsk6cH+qG0NfOkxMdc1WDN+0VRFTzeScXSsU1U+aJ38CgiGollb7TdK\ncgnj\r\n=zCwD\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD297DnaKd6DfrhoVxxDifNBHPixegz14r7TWcgguM3rAIgKRjnvWuCWyaPtJx50XIh3bndWxkTqKIuQZ6GNEll0EI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541659909504_1541659919099_0.9620007816941292" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541731034635": { + "name": "puppeteer", + "version": "1.10.0-next.1541731034635", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "604907" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6693537f95ae6805da62a46530a704f88a442550", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541731034635", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ipYc1ESAt4Vlx9Xjkf2WkQU+FaX3roEjnAJ9hZbg07vZfT4bYpwyla7SQGsGRqVym11JCnOqz0hUaPRsUdu+Fw==", + "shasum": "d3e562aa2929a414f1f9308021b02dd91456945b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541731034635.tgz", + "fileCount": 57, + "unpackedSize": 652667, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5PLlCRA9TVsSAnZWagAAw1QP+gM9ZqAA2Q89iZvQxSXr\nOjtd6Dwcx6R9tF5KUOdV6vauAR8afNxZFpFEb49WkZ0JiqsktP9i9YT90tw2\nilje+y1eIuk/gFz79nhjtu2Hna8AseD0OhgdTvbMcZ+SUjlClBb8SQ0/wYjY\nSzQe1A1M1UyNACoS6saD00tvj+LbAr5jBXEGjHElCcdnSd8gX/Fhmm0CWFJq\nKjweNRVU9bOeicsWsra3pB0sN+zbK9Wz5oYgqlq5/hvBF2ZqLuHvWZ5yO6qA\nNz+vWPrQH28R6atzPyv7/OeGyulMwRWZU8hure3dwF1e7OfRzEF3k9iqzfII\nTlxRxeZWNBXXMnm91evZXDHikSD02Ho8Stl5IJZSVLYTktrUY+PSfYn40IV4\nEYLFtbsRRYSAgQcEqk0I6a8HCFFC33PBMeB+e8SZt72n3QORL3FBDFQuOamR\n29ew9wDHXCrI1bAnURiPBFzPyvcyrXyscTd/BWZ6DeHqN9MioCoQ5EAkI7i2\nWGTWTiYmSQh1Xc9V7LP/UyjpIQyrO3WviMPYUZzLnguXVz6XeyQCi2H+noF/\nlDfJm2dVHJ0DeHrYDIAH7cwgf1R9CkTBeYPARRAq+9Our80vow3jBJaAW6me\nfafRt1PHaG2N/L+vicGxRb2gESgzmx5lOkKXna3wddda7DMI0T+BVLlfP+Un\n2ZkU\r\n=XtTB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICzyMR8yZdi+vsC7VCKU1lje4Mcq4ZA2MwqLum4YndKSAiBcxSYN50NLg7ooWYa5BHwP2WTdtobBvjtMbOVhwh6oaA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541731034635_1541731044309_0.14828075217335424" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541733757076": { + "name": "puppeteer", + "version": "1.10.0-next.1541733757076", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^3.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.0", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^5.1.1" + }, + "devDependencies": { + "@types/debug": "0.0.30", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^3.0.2", + "commonmark": "^0.27.0", + "cross-env": "^5.0.5", + "eslint": "^4.19.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.1" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1d671c69a385e6b40090bee907ddb7b3268efe21", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541733757076", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-zZm/8mv/SNNZ00CaqeWaNd6DNeXrIJkwqPiPP4fsrn89UxpfSuYEZt1IXKAnTFYXEoVR4qD98SvKwUYrq/1fmA==", + "shasum": "06f1c2356bf06be32357822a7e7e48bc86a1dcba", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541733757076.tgz", + "fileCount": 57, + "unpackedSize": 652667, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5P2HCRA9TVsSAnZWagAA3Z0P/jLsYLKCXM2g25tqJjjp\nLRF29B5CODIIJTUKzXYoTh30a632untewWd2JNK9QtCGJGmv2X9Ugso9+0BK\nEq91HhtbM7jJVQXxaXvm8H3Ie+dMNQ80Qqz+oBA8MF+pVKRCP8MM/TiS4SSt\nj38ScQUXLNOAnzezkAaIKf0evEqhwJRFhEw39215wijfZgfD4xCNmNlEEGTt\nInRUMoXOkIFwvJJiOTVwciD8QgUGJjfZw8fVwCsooR+qfRpKSnt3uS6Y1+Kr\ni4qhc3MdXOuJNXhlZTrMYTa0IklEVtp56khVO8rNllLiKdym8Uloi6rXdBhT\n4yfcb8gB8/xap2olXayFEQ4mMjnmJE1megr4gn17EI1mugsIe+l7ylHdd6S8\n44hRLJHaqP1x4tc54pIQhtojJ+vfIA9Fm8GN5NIa5np4/1rcSofAVOSUuofG\nk7C7+dBWRE1TYBySXjtRqkNDTe9jz022f7k4hpKMLCxhCYFo2CK4aFY/Bn64\ntQRIj7UbOOqkdiabReWlR2303eWHtBmD9JPE69yNrQf/eC+KgTRowzZviNIG\npRmG00opvJOO9bbWDYq57Ypw4z9R4m3JIWTjGPWnKjlis3cpOdcrsHuhuHmy\npcaRSL4MMA0aUoK50XeUCNqm0wtRoGvuSo1hYSLZR5C3C88G57KOkSV3I3IO\nHCLE\r\n=e9kt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCljIwLI+qex0Qk8klIJzi9s0mwhdhaiEb8hLDu4d+nswIgQ+6R1TkuWM7rivWIQAk7MtmzwOqoIDgdNeCkWiAOi8g=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541733757076_1541733766603_0.18321759433624063" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541806535405": { + "name": "puppeteer", + "version": "1.10.0-next.1541806535405", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d3f50ea425af38516f671a22e9d42363e7d681c5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541806535405", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-y3jKt2SbjPwvh/d3vjnDJH7P4Hi1pdhPKSHSr4pN1JLhufZhXk+nlO4vZ6ryK5yeuAYEEiCxH/TYPwU5KusBDA==", + "shasum": "fc2442d3819b5bbb36939f5c23fca0a92377c3c6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541806535405.tgz", + "fileCount": 57, + "unpackedSize": 652666, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5hnRCRA9TVsSAnZWagAAiX0P/i/aWhzCLSbvUKyxvev+\n0MTZ/1AU2mSlvHRBgeXzVQ3g4I0Q9kU+kKHL4lDUOMb3LOCYfDJKRlTF42VY\nwEAcdlcfk7ZEwTYn/OBRxh+rz6eDAyRGHzyLMVOw/YIClv1QI7Ktl6ZZjXyd\n8zfxqsK0VutkckRmcasiuOFbkr3+vMs9UEH4zNIxu7qtIuPhEy7YcanPMqq4\nnvx9RNT9v6cLeSY8aBveyxWPLsbKdbDtSmypDfNPgQ4+q7nKU4NLlL0Guc3F\nrxOWDqDoHoWTlNjbfGuN85QQ/QN264IEDS2wQEEAtWyPrn/Fdu6eXVOkI2h9\nafl04dFLirWgsuvJvqWd17xICFv8oNnNBtvce6Y2WqEm81HyyFnchCjrNTuY\ndbJUPT27qmuTHXZqcbIOdYBpEHO4+l9RMHpMsxumjIIIZgROdygPYy8QM7s+\nuV+3HerBTztYqt0+Q8oyzn19xYZk1R4YWKukbFZeD6XWXsk3UOl16o9lVs0r\nh9ce4sW1QpDCYbAJO+BqdgBot4Cw1ZF9kzyos1v7HHlcJriUgNirA6VCBLV9\n2i8ItTAODy/2nAFWzgd73BpLMVlWGbJkSHwrXKhiRPr5WImRM+n5XRiqR6QE\n4Mw1UckvUwuIer8KaBNxg3Z5BxksbTKoH4D9JF1T7FIZogGWc2S+E2OQpQqP\nGSQn\r\n=Lgw7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDmE+G2m36WtEiZkRunEWNYkO5H5djQDVgd2vee/i2DfwIhAL4zAQx0XKHvEdnIZgp64JPoi56GuGyJtzQt72sNIDWn" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541806535405_1541806544884_0.5674142585094712" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1541818067358": { + "name": "puppeteer", + "version": "1.10.0-next.1541818067358", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "27ea226bbcf5172e7e9b2c7e98ef629dca555ae0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1541818067358", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-j4NAIXdYUV/lz8GABo/mDCkb9jgvhggi2xH5vjP9x4qKPVxwm2t+q/MGxhu0e00M2RPKgUVx/kX7IyTzmjEe7A==", + "shasum": "28974531211226b0f9644c57a794eca234ecb535", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541818067358.tgz", + "fileCount": 57, + "unpackedSize": 652666, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5kbdCRA9TVsSAnZWagAA2sYP/R4A+3J5WFqhe6tDt6P3\n+WpnKWS7AxVtlR2SPguiZOCr58wQXSO1lxO1zwpiUTWrW/GIQMuc3K7wEPvP\n9XupfFdGFo/8ptdkySBjy/eMDn8jUbPVEjAhTJojJuOFs6N8HxM9AHjgdc8Y\nu/lhT7jULVMgPSMLjoTeTNavxoMcv7GnyYklm1F+p2kZ5Cg2w+2YOOBrD9Hv\nts185pa2s4bhZQgiR3LDyzjaWJnnoYyc+Gb54D6ixlFs13QLzY+9xtQqb2LC\nuXvxC7Kbb3rAPSvOjXz+o5JX7dRsURdedhQnjcG5Ng1cNVXkLtHBI91P0x+J\nMsbJwGYq2wSEYbkg4MW5+h3/tUBezxeo0LvHy7wdpyrIbvK1YeuIaqtktwL3\nCbnVhgTVo7uBf5YcZ2tdWC1K6Ih4ivGYBkN4mYEenGnt6gp9X20s753cyti4\nH1ZMHghqy6KsP2O3tPjNWviuzuLMrNf9857s9ruX9l1EEiG+Z13ACUJBXCTd\nOntnHLilBoInqIWDcjDkaOLH9ZlNRyuKnvTqP7tMyawx6D4Rh/xgyIssFfym\nZJ/Y+VbkWfexbkzOGuwnUkHyh4FsB4txPrSqGJJ1FKr1N3YWE7MEyqmh0/EN\nyK4EWUkXtXUrpdpBJluTT0gM0NLIrSu2uFlelcp5Jl38DKlZeDnwWIibZYoo\n9uzy\r\n=XBtJ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICDM4FLiyLJ9NAQd4c65siE9N6oV4ReR+OLew6hgGJORAiBICWtACR1vrx9PNU5knS+fqw12wcK8W2U7RYoyT1fbKg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1541818067358_1541818076980_0.552358609443212" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542056531325": { + "name": "puppeteer", + "version": "1.10.0-next.1542056531325", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "568734386df96403c827378d7afa5e8cbe521700", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542056531325", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-jzfYjptCOgv5vhhHSPoU46zE3Ly5gCSCUZdY8WFba6WD7YMWHylVRBUl9/C4ByHkLtxoY0UvqO5pyWn6/CmgvA==", + "shasum": "a2ead9c2ab0de2535507ed0f0300e6e099739abd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542056531325.tgz", + "fileCount": 57, + "unpackedSize": 658966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6epeCRA9TVsSAnZWagAAbBEP/0asQ7VpHs+k3OHkoXTY\nl5EVpHxMoHC5O3meVhV8+LcdjE74Ki9H0d3aIi0gQCCaXoSa9bU5UiR3iVYH\nDm1DygBS1IwbKRW0bUB+BpJFfKjDqbsTkBstebQFaTHoXLnVK87Jpl2QwscX\nRiRHtRqkpHUoWj7DLf+/lpCtT1skbdX2ESdcEg0eRAUbP9Vzsmh2FLqylgtE\n69mo5sRMNbalXM5H2d2PKKKsHbTLrHCXPxsqAWjdvOsNj4xFXxGzSA2OsGqQ\nxEBHm4x6S130QgcDa62s77COvQFZiim2/x8bSBVIMFSOwjD2Kr2oUXhlbPQh\nRrfqP3FGvPZRnQBzkqCMUlT055US8e8m68hXkzASwIPd3BZTb4cZ4ISl6lPy\nn08mp/u6DiJm0ac48mix9lnoxfeDByopfXMhwmvrwz9/My/UgXb0sCWFAHRm\nju3HGpPAc+70SV4GbxIRgyLcOlVWPNf3QdenTgQGyO4W9uSwj+fKmb/Ut/2h\noEV3Cq9+QFa5fW8QAZNvL/Hs2wDsQSA5ruqGbkI1DG0UwHmJ4q9pr8dZciko\nQ4wBA3AzU2SDVjK9v2hAypeY0Hl1bvBdFLFjJMEo7K30Z/vb/lJFIALSGM3w\nO2SXmeDpXEp/9X3ErVsMpGubfze6z9PkW3wvwxyaIDSR+dc8EV8vPvdB3sig\nTnTK\r\n=SNdU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDN9Gf4oW2ox/7SEAupQb0WCuSnQe21lt9+j3gxVWn7yAIhANHvdV9gyBqAwjpEP5sGca4WMCyJnrM4Equ3bWEPBmUe" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542056531325_1542056541332_0.6195295093281923" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542062579254": { + "name": "puppeteer", + "version": "1.10.0-next.1542062579254", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "10a4c8c123adc1362d33db31701e6a46ac63c6b9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542062579254", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-8pBHz+KonF80BiRnqoxy1vCR5EfJr/tU6zlsxvF0lot7qfSKoFJPViZwfE6YGfen82vWze1trosmmmoltXNjYA==", + "shasum": "4200917dd82cd9db55999f1d1b7c6063f1e9607c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542062579254.tgz", + "fileCount": 57, + "unpackedSize": 658966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6gH+CRA9TVsSAnZWagAAMIgQAJsukDG+o/ITZmqtVtlO\nRcI99KbU6s85PnsLWX4+GMG2VHSC/x9xM+iEiniF6KcvYya2LjCfRzsMDsr/\nAX/CwO9CliH2qBOCBYPlOOEtgN+RyDC1qWXCkWMw7jofXZsphX8pDsuIY9J3\nsuWdJjItn0cCSzgPgCGNOXXASxApkNeqR8gW9cNi5dAgHNnEw5lpWGv2Uu54\n45ZvCaKNm56zMzi10nOcviIbLNYl07nDVgyuPJca2hWlO5oIXjPPnbzm5J2Z\nDZaeRi4HERn06lHR1n1yiInixwjKUQJH1GQ7zJyAhBmLRoL7y2YTHbKfW6JB\nhtlrD2hSrO02d60dYfk38xU9OAb3rnqfw1HpHbO0/ZDrzMSUYkIgfSIIYdS1\nH2Q49hFPah0QSFCjVov5qyvpe0yIuCHzqWowvhZrRemBLanH6ejssXMSQSr4\nzQ/FN3IgC1G0OxrT3balccX9Z5pgXzdXrssv4ecMvY7PW2GaAl6gV2OueFPw\nUzwbXtwBaJD/8OwIgV2phiomXoMLgYgTkZmo90uGhQxsW1G33fNSaJf4XCwz\n8PLOhe/xMxzYmfrA7b/Pt3wZek2n2QNNmQFvYzONBVUHKbLXpPziEcgwWc4F\nuauqD8akbOYQeLrn5KAFrXO2XxPMA5RPNWQV8PENDLgqTIGVjdAsiV1cD+4K\n+fMi\r\n=Mo7i\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDsG3RImaBOi3WLiiwqhTaPeyQ/1g8TeayZwA5jNdg8CwIhAItVvfY+aE62L6C1nh9J4SxLlG3J0MHKaYAdMfbLLp+L" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542062579254_1542062588682_0.6264362540180235" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542094148959": { + "name": "puppeteer", + "version": "1.10.0-next.1542094148959", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "eb7bd9d7d3a7800e9ed3d77a19aaf4336587026c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542094148959", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-a/qO9r44I/qPLh7NVkZlqPU/GOrL85psJwK9/wwDJov0PEIgo8awhYVYJSG4Y2Ms/H2HwG8bAH7MX/NrVuxKtw==", + "shasum": "1ec333de444dce97472ef432f7cebd4aebffdfdc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542094148959.tgz", + "fileCount": 57, + "unpackedSize": 658966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6n1PCRA9TVsSAnZWagAAxIsP/3c4Kb3Z7DtSsPnx9n2T\nDLhNjlx3f9/hOiO486EkO9Ct/F4WQuLHhwMorPKkNqUpuMuspZKloqXg5yXU\ndjZ4pd5qnBi6OTw4YotoMYrxh/weplbVTrYUZ0vRKrXtlzzGSEpFPGX90K4J\nEICDxY9ru204MCLvCfgcywQonjjVynzPpeHzZ4fvyRaks5rbV54DDn1PG8vh\nrmqih9jy2iP0P23XNXX74Xbb7YrZk0gd2fBr+M7JFUEARRk6R/ekhQb5RAJk\nHz3cTaspbvv1Shx27SaBzvLeVmzDldS+xZaCUG6B1vbcJT13NILY3G+rELZJ\n7SBoS8SkW/T6FeoyyZwJYNsNfY7wh1OQ0ikfr5I2dSQwTuk6W5A1ii9ZNMH4\n8YwmFrNsDfhYmhKBWOF80Jn6EHrw7GNfhuwoQqeF2ONkWSeFixUjbBHODoVc\nXQI68gSGOgoTddTims8sN2FF+YqiGR0IG9Yjk1qQDN8bG6c21QncxLAWa8ta\nIfmFG4xbY0twbbU0aolWXjaEhiPPn1Tjc8N8o9AUdKUgubuicjJv6/j3gsli\nmsGvjgx9HR5dhLPM/8McAtPs78qI7VFB3iheDHYd1wPcGgT9BS30yRx9f5eR\nm3MCRzxoQIneOZrR2U5ps6S3AHIJ412I0AhYrw6htXQRNZ+lx6FX/scX27k1\nOj7h\r\n=RIYC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD0vVUXaZqa9/TdH9kIoBDBikrxRu6sBGYWCqNbE0v0gwIgQimf/TkPQ2wuNnfGmxN7HddgWyykB6Ze3cVlP3P3/0c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542094148959_1542094158738_0.6717936985092456" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542152043928": { + "name": "puppeteer", + "version": "1.10.0-next.1542152043928", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "766a9516b026b2a79d7f0b2a37af77063f78fddb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542152043928", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wgq4uNqYe7jXPER02o49vaEILlys6/W0yFZjldBL4RtvyY1ixPDhwL17CllOwuWSOcytqMuL/rKt325XiH1EpA==", + "shasum": "a388537c7ad7d413fb0859be8682ea86a2156d53", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542152043928.tgz", + "fileCount": 57, + "unpackedSize": 658966, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6192CRA9TVsSAnZWagAA/LIP/2Gc8FOvOtE8pxzIkCav\nyA0MW/IADjn9hMvD/6KUlzBtmkDteDKH/kE5KfOoqr+puNnFFZHUqQZvkBQC\ntsndbOGxXLjwHem6tGhiqC7VlY4clx61C7pjLgfkLtMkT1XjkLE1eSsrT7m6\nm8uzrlJjs2tTQYwc1YN5KcaACGVVIAq0at5x/u8BswjfQdtmPETr3cxZPYaD\nhmfRx4K5ZxnmxW1CKbOCYLdzuFPsxuLsDEDqkruCvV77CDkyv6ldrJxGmUWs\nDA/zqv1GSLmGSgQjlviVLkW9mIyApm0+6MNFzrs5RTyjPVJJzQHCDklH8ak4\nQO5/i6fFOMNJHLmagBxXmGWgZobBuh1Z56i/Dh+d7YAjdO8QL/1208+LjgXC\n24Wk91xY2sg9NC90rRmmMmUqQnpU4xMVFhzzFmsfhr2f5AJZde1x8AEbCGz5\nKWGUKOEd4+WP+5lx8j6fAFAW5WTDouHVFN7kUtRbXgwNTIxXsrLGkrsuAvfd\nDzfCPzhaa2Gz1krYBqEXgJy+ABTWlm+4DhZG3IpR+uW9R2Nmt5uX+tOG0JJS\nKMCSBrB9gDX9HszbmFTt7+jSnRZ0Bkk2fNIiq5om17pNk0/VxVpZTiUXAgJL\neVNqU8ZmHCwYPZnZaIm3oIG5hgPiIZN3D9NJxhbFT61M22UjGwkloTjKWYxi\nkdF7\r\n=rmN0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDzi9XChYZZkT11CVtINHrkU76G1L02ZuCEZSjhTjut2AiBNztRQ8Ranoj3KLGowYK0+tSX0F3jwUpxVkdTpgHdBlQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542152043928_1542152053584_0.37756987464314595" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542224682151": { + "name": "puppeteer", + "version": "1.10.0-next.1542224682151", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c185eeef6119141ebc07f07d46ae0dcb16a555f3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542224682151", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-CyeWLAdlmLZXakmFPtsbDUmHUs+p2h0c5pnPkpoWmLybWGn0vHh2ffCYC2NndHT02gV9RQN7+XZ3KAf3mr6u8A==", + "shasum": "6ed7c10500a7b342da5c98b185e0c9cd7d4b3705", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542224682151.tgz", + "fileCount": 57, + "unpackedSize": 659353, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7Hs0CRA9TVsSAnZWagAAZU0P/iTiFtwUse0ocPK6D9pG\nYLh4FTyAE0Wr4bJBjCM1qWE6QKHuVK6wILEQkfyTMGb6QNu4bcqpz6b4quBc\n5qfiUi7vKXJUDOWufC2kgQCvLGRug4rGvracwSKx7ni6KpQmdulzw6wlA2Y8\nIDYldRxlxeRfXSh0ZWU+p+NNNgZpK2oMs7/oD1KMwmGnZjwe7sRqHjd+neZ+\nELvF+enEvUaihnDAl6nTg03FI9Dlr86RoevK/3zWkUsFRxf+EyYbGamxOPNm\n4rurymu3muGEqF931RO7OTkuUrqZ1OzkDrfgigj+L8/ErlK9PLuGeNoSj0+s\nOGbsjcPqB+pOYcuirJ4aZzPB81DOnxSD+FO7XMHeRL0l4NRU1qIJhijE5Qyl\nuV48eqv/mjGh1qmRHYd4WA71ME24/coShfe/1w/AXh5i69mjxV50jhlAEPHb\nQgngm6tGkqXrF0+nmD9xkAt5U1Qz2KkbmUKHFdHPFyFPg96ipwJ59TQtncda\nDb4ec219V2nd3VahYjZ3+6QfOG/CJBNxqs18okY9pKsSubZ3N+LwnewUhRf5\nstum0ZiwtbJpw5DkDW9z6wRzkZ/CDGJD3AbExe4Sx8+kNAOnBqjYnJnzTyOw\n9IATGLvCFKlDxHN5azAS6IMsADFoJ2k9VKIBF1C5jibYzBr72NTzMJu4YfG/\n3GPA\r\n=6WEG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC0CTGRmIu0H66AgjaYZXo29VH24NXFMhfFwe/kj45PKgIgdJQF1zc0pUfKgapifopWJXjYV5PoUJi5TVQsaPGP2O8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542224682151_1542224691440_0.03362627304021992" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542322461212": { + "name": "puppeteer", + "version": "1.10.0-next.1542322461212", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "95a19c74bcf5be308d596bd4ca32f4b9d46a6bf4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542322461212", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-RLKfgciF4oRy+/2H+b9eqSn90UaZYB84qtnzP2oIKhGR+cacrsUQEzsuiNDoUz6FH+Wcyyq4VmCeYWtwkXbn8Q==", + "shasum": "5dcfd0b37a30b7eb5037c76270f741a86ba95b0b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542322461212.tgz", + "fileCount": 57, + "unpackedSize": 661411, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7fkoCRA9TVsSAnZWagAAdjIQAIALkRCjGR9fzm3kYCqo\nWUv3TXn4xmVmvO3hGge04ihhdYpv0r32+zhCRoJfcKRemgXZUB5nEEaWfAyq\nYTyAbIojNI8UmsxCpr1xCiQH1n//M+faGw5NFVupxyKVrvzNBBRIXLmQsG+G\nxfgqHo9kA+pSlu9UEPhlVfsxzRIw9uraMeAwpP8iW2v+iH8iyTpQYPj4awUt\n56BZYxpa3NPxzYSl0enxpswaQDViw//q+qXRBwntgA0bVq5WifRDjaN+Fk9/\nkFiGxe56rf4HYEXKDDzQnB9LxRV+VmZNCb/qkcnju0kEn8Q6bNUp9LBe+Cod\nr5JcNe3a9aVqx0R+A/lnxTIhZtsNYD1gxlEPJV+ZWHSD2Lh6Q9u//4I5n0DD\nl8zZhaz56BM8lcpH2+Vnd2dsinsF9oYMfM6Mcy2Wz8WBtT24gHPqeFGzSZal\n/g9NqEpyI0lLvYlqhuFlb313CvreO7ngK4Y1GKoFna8K70WbGQv074LI/vsU\nJmVBj1Be7KuQceiw6id24RLCDCb3hK/Y4Olmie3vvgKM25gV5stukQgRMWt7\nyCkXwinpyUIxkZS3+zjESF1578q9QbewKk/uI6DPXJBXqzElJhMZYY3Gg7Km\ng3EjT2Tkb/KPb4rqppTeHNcYDM5vYPxO9dsZbWu69JRABxid17kgZKgX/aQW\n58OJ\r\n=9bnC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCfavpaPGHwDutHkpOfAKsPFtI72qvICpWjckJ2QOSIFQIhAOATcMHDSqTeKfetw7Vq0Wnlmyi4kV5+0KnlCK8XMEQh" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542322461212_1542322471539_0.5771463981534615" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542322813531": { + "name": "puppeteer", + "version": "1.10.0-next.1542322813531", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "606647" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "03d87462606e585318e33cc135fd9bea5e116446", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542322813531", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-XJZF7eEiTLeiKUoHN73aE+RkNXZZvVC9jznSvcMSUZl3trEJk92lXSVbAUS/uzStvtQS45NcWZ5NxdB7lMNr6A==", + "shasum": "efd2d3adb8242065d431bf2163e95a1094ee9a1a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542322813531.tgz", + "fileCount": 57, + "unpackedSize": 661411, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7fqICRA9TVsSAnZWagAAdoIP/0Wz/MKbX8eSW+f3a7X2\nVEurp38spN1qwqfinNXjMSqbF6QxMN3Mi4RydYvtMyx9coJopMjMglX+GFX8\nmp0mZJU0sJ0uYfdDgxd/04KvmgkHANWhXosvRWjK5kZPlaS1Nhy6KbNlwi3W\ndydgQtw5JlHY1JRtc3i/CX2xMbEQ41Y67lnoUTfEjX9cKt6hRgcN+WV86uvJ\nXOy2Vpj+YEp/12lGv4YGKP/Fzrtai2qKqKYRhe6XuNeVExRlVEJ/IjyghBJ8\np3KvRE/CBK6WWjFTJVMlzRkOI9xRnj2PgkvtwjrJnKo32BqDBgC+wWE3Ct3o\n0WEv6t1ZeBEXGIK87EryybNYwGklBstWJRqzIaiveMnYOpZYIlNIWgTJl7oU\ngbKPYERqvbXrWthyE9s2LysYk6KAgpcoa7tC4F3pIZRyATHTjvnXMvEMvayG\nwdQqLSemGSkBHXYO82STR309skCSkE/mP4sF5GnIPAbLhvf95mOqj4utmwJo\nzmqrzHmrfzM5t3CKSTKpTBAzT6wTJtxvb3ZlOOqbvDXdjxphqwcUYlHzC2BW\nfk2giYCHEMQXYBURdJaing5UET0nMenJ95SZG0w9VTvC36Zmx+C+voz7HtrN\np8asicVWbGQpEfRSbdnNf5AEu3aJpslpGbzaYy3vjLoKo3pkP9DoyGgGiU+1\nrfqc\r\n=xcJB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDorjc+cid2i2Pl678o7rswxtf22Kx+msS6DOnDZlK5ZAiEAlKkY1/ooNk7lIKbWBsWds/jUZQgm1sFWGawY9Fbg3U8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542322813531_1542322823303_0.5865980036864131" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542389962978": { + "name": "puppeteer", + "version": "1.10.0-next.1542389962978", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d9d9996f9cbb2b8a188d54e0a3b1b47e19831f27", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542389962978", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MK12zrdC44pRoBwJ055KgU6QMqUzv4xkSch3YLYCxtQMWBFfoeQ+3lN4LzS3VESPA6wZTMs1GJRN2ZDZ5RlOfg==", + "shasum": "c2b3181b47062edffae6e05c4ddea4499c055160", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542389962978.tgz", + "fileCount": 57, + "unpackedSize": 661411, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7wDVCRA9TVsSAnZWagAA2AsQAIQ7KnMeKMUkFsBBA+/7\nTWkUVaRZnvDLtz6hAp7pdOAJkIS29RvnqUq/+OQSxxEwWjvqKY3b1bFuHzpQ\nSdZkoRG2Ftw9h1xJ46GqoOcqM9e//O+1CTA9XCrgMINHfkv4YzLVZ4tsyImm\n3/NUTRHz7SKAYCZzrQZ88wK+WFMe5VpYp+rEPNwm87jO6ycZDBVVsOTmmtpp\nkghR0FMgavJPiVRgVD6e2Mvi8cBBT5F1TqcKjVa8olvx+fX4d5UrIwNJPd0l\nPYlSqB+5ITZopR1yGys7wML4yhbuvs0hv1jN0WZB7MVwMlPwe3EGsK4xk9Uf\nLJ49cXArLm9DB8lvARLoB4vxD3m0JxBvOQcOCydE7GL81LVFNAMiVNVTMNqP\nVxJ44WBEz0si8soTDp1ZtLaB7TaH+2d2MeWp+cfAin5lzObVZilzLf3HGMWN\niC6cLrF2aN1Y1ALaMqdM7/KMTsHX8gK4K8xXtJYBSiqEV/9OPb8ak9hC8AlW\nYLqAhfT3VZrv7NVE9WxYyJW8k0SUasm2bmeczdLwXgOWX5P3Li3sce5LjLUA\nSelSJgOb2lvjw1Y5pM5Ot/Aya6MYpnZnCh+uIgXdJUgbdCyEVdaluDQX7MMU\nQxJjPOUZDooQL0RvneF0j3QQzCLY52aYjNGU1D09O3yJIpDd12KsIviZ/v7P\nduDb\r\n=9ZRj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCmrK/ZFksc63aZqCFds5B+FjGCouXSjFkXex2Ujn5YBAIgEhAICbhhpZfSYTlx/+zzxjOpyBOyipHguIoHK8BOK84=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542389962978_1542389973057_0.38793674716170146" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542660024620": { + "name": "puppeteer", + "version": "1.10.0-next.1542660024620", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "86e09593bfc262a77798cbf9ab28754d242ba5ed", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542660024620", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HC4Dz1hg/cbQXdFwxVxs2souN2QDYts0hUtgiXe8BL0J6aOx1fhCf8FXHpVsvymfjVniu7Fc+f1Uv5qjaOUQlA==", + "shasum": "e468946739e77b59d8f1131c933ec1291bf403ac", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542660024620.tgz", + "fileCount": 57, + "unpackedSize": 661411, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8x/DCRA9TVsSAnZWagAAUUEP+gJb/pZ4S4btA9RH3OPK\nPN6DQPPn9pu48xkMFyB2Snj47/bJ+PDiDRZZp3jqWkuFIglJMRvfb2JhnfT7\nKD6RUahpORRBClS0nbhUXiWzGQyparluFT/4dQG44MQpnxgnGoVj2JDJGWO7\no93tqe/g72qWVnbfEl9Q/mLtqVYT6rGSEUUNdilMOQgSmyu8jJUkyp5YM/Mu\n3zNoDhGEXIeZilu11LyiQpu59zetM2oQmen4zbPpzX8sBX6/6FIJ9k7bVjdV\nHgi4XrXn0qVbpuVHwnwr41newGBrVwET9qwc45LDGDS/hyMY6dsq/LlQ4RPL\ni1m0DwjdSvaNxXlukBCFUpczNGMjHbOPeCRMiByhhE+M+5QSamBXMQYg1nhh\nbtIrQ6D+6dhlMeN9JiPzA5T47Y3Nsf5cSZFLlMUsrKlG6qXZb1mRIXDlmaMu\nNZpLnWr1n35fq1A8ODjwatcCvw9vDdfdqA3S6QZOEWyB4syeLD5jpguJzCd0\nrD7E62HiIjxb5C//ZZyuEYHspFyKSydD1i4p4u6pY0L3xnXFnPbKenY4iOcI\nOnTnOLnTL4QYYrnV7+8kBW3ZmAP2yxdo9d4RTCjVyI6IM8p3Fr5oB1vzF3y4\nCZcVeGHq0p/n+ZyncnQKaPfgnsh4G8bl6db1XbC/fjXQYW/OCp2yXlJzoqTl\nhjxK\r\n=RDt1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCG9CoegTCqWIMmacDdtDdq8gntasmUM2DEpNhWWGOwUgIgZA8hcqEPuzwp8i9LNYz4A0vQjAIco1LFs3wBfHDcLPo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542660024620_1542660034502_0.6499742984212853" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542752643857": { + "name": "puppeteer", + "version": "1.10.0-next.1542752643857", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e2e43bc23d2a81eb9c9214fb64f5fff3b95e6590", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542752643857", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-JKYPEQ06P4XpPQWGJcuINt6ccjLk7A/1n3xtbhE8xSPUN4wguyoSBjKQ8I37a2onVt0q8nJSWNqUG+TlFjAGXw==", + "shasum": "da6b1f75e67686a2b4cb90519dd5983b0b5527b7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542752643857.tgz", + "fileCount": 57, + "unpackedSize": 661627, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9ImOCRA9TVsSAnZWagAAG7MP/0s4WU6iWN1ke+E2juss\nLodd7Tn7daHKSDZqmn/3qLGtRtE8vOxOPH1OGBuWiEVP2mX1hAYF3rtliveX\nqh5yPyPdrbjQjO/hO7IVnzEcNWfi0KLpXDzXpDLHRVG0ZRJtgoaajCW6BOva\nUvKPm9trQCMLUibxcCRVtm5FeGNAI+GsLAzdBK5/1fX5D83z0NjF5Xv1uxS5\nnFgcJdgYxs+nWlfg+nBconYiqIPYRj06atsV2gou/fJZ60wsxldeUS9TSCeL\n1nO3cDsnO4FOuv+fUcOmM5OVaXgUhiXf0FhUq6JzdmgOeYsVjvtfEyFwpohi\nZ8E7dn3rA04oxBo98DAE0cVurxM/YHsWzmX4n1OjFfXp7gb9pQfH6BNKLr0x\nRVLrjC+I/TRzweuRmymf0ixkKuMymL2VB3V4ZnmD0W/j4qIFizxS1wNCmym8\n2QCxwFb7Ug8VaEEimQgqL+Tym1xHKsRWdcLsJ4nQy/Xc+K6SIUBlEWlWepH6\na08n35l8k/O5fpRDCHIob5SWGImLy/w1c7JstUqBJQxx+JNc6SiJ0VSFFxnl\nqFh8+2TdgdAAnCW6bTX2T6drLXR8MrEbpKTt0ACm7Jd1UIUXejJImE1Gb50B\nKw9s8p/N3bNZQ13NoKG8qf8GGxDvv6lmFT/Thh/a37iqEL5TQjokw3F0RGew\nznB+\r\n=ppRA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCMKWkmN3+GmCeIBwKZx0kpecd9UBiwPslXxuHUpuYDqQIhAJoTp6FbQdaMsRgZK2NtfH1OzdMuq8LMj6+c3ZuCJHee" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542752643857_1542752654028_0.3920274956728824" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542756975192": { + "name": "puppeteer", + "version": "1.10.0-next.1542756975192", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "927d0f443b832609c91ecd7bdbf1945a5d219c60", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542756975192", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-000clVMwV6TDCFV1jvfM/aUMA3aRfAjFL3gAg8ZxvmauC2yDVn1WDBnNN3Eurw5D6Tl7Z8DBM9Jf4fRk/ncBvg==", + "shasum": "48a829f9125e5a6ad1ba76c6e437fcdbb4026252", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542756975192.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9Jp5CRA9TVsSAnZWagAADsIQAIdbOKyvXIPQEy4DQKGr\npgSzyFbbFRhSSklQ08UDFLsZsgWoYL0WQvDbCbCvTXrd7Dow4wC1esjOgP9E\nEYNVyvhP3qHGpA9p10EfnuZeb9oqdMCEs3sWBE3E2i0yIhmlB9Ra8t3u5Vwc\nBJ0dIFIcATWg/+sJeOeMoeDEhXz6YmK4vQviDunLUmnePXTgS4NbuXSorVO6\nzjxqEDdI3w0Dhi04IvkHnqavsCkoQ2Xo+oCyaLLNqGAUumMThp5t1cj7fU9O\n9mX3wpeCaDFkR86K1Cnprc+3SjmulvLeXMND622tKPIJoisElg2Z+Utnc19c\nKYI/X/14mldI6m3HfFC2KMvYknmHnVqqDQa95MHujWt5ld2xYjlUGX1QlXu1\nuTDwRpJL/urXsGy5rPtpoBJQbMXF1cT/ePghcNcp0uWL3456WZu3GMHAcd1v\n4XU0tgO3HOadViUHmBJkXlWLapdpUntHnaIFeq1MnxK9HgHS8AupZS0hoV64\nxfboCOSTYJAIBMPQxe58bbCzDhuN9FoKJAjzUATg8fT1u3yFR5s/dYjIoaLm\nQgSoG4tm3lf+52Djkjj4hNTneXIrVTHq9UMMSc9/9Dn5OsKyI8wwYrPSwO9x\nlauYZvpIZ+aGbE2hHyhLuD5QO2WTziKUDsSC9sCYMPytrIy5Cd8DWIdPbY/n\n9rVv\r\n=kCND\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIASNkd+19q7mpeTxUOB28EeH11T1iSw2+uJM9d5tIqt8AiEAo9/Srf2I/Gs9hRklHfsYmFvTmbVCVqNYl/jzpjMU2uQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542756975192_1542756985215_0.7963240049492264" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542758792020": { + "name": "puppeteer", + "version": "1.10.0-next.1542758792020", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a04100c235f8b8b50454690b93836315dc955b4d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542758792020", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-TUi8fbS9aoKZgF+nqLVcTZRylnhwB4CCUVVSs4AfBMx/83s1y84rUnVyJ0keLDrIWmBJKBHTNs1FbhIrIeTtuw==", + "shasum": "e68faee1665be7293b19149d29398f4514c6ee60", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542758792020.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9KGSCRA9TVsSAnZWagAAHcgP/iuoT9M3CqaxvR6rR9YS\niV0hf/3AUBSluminem6SjdeKapp+AXekL8aaZq+vS1CtCeBzDkaAyU7KiCiS\n0Hfkw3ISm0b4gLffQhNQN1MX1l0v35hBUhJ2jkI7fXiL9XTdMzMONwKcz7c6\n+cruIvgXkqLjRYebqJyisF8XOIdc5Jfl+Ebp2DHd1e/tvi98eYx/us1Z3ksd\ntkD2NWtyJO/p185omjiiIqGGzcdFPyeQLCPSENsQzDkkSzoH/Gyk8VUf2g3h\nm0DW8SI9IE2gbR1oFEgGwgWeejBlXm44O2+yH4sJXRd1j4znlSfBzvvIvzKe\nuqb2rpGT437q4fOKFrqoEKuqg49aWu7SlFAG+kMNEkczEigd6U+2FtQ+OaSy\nAIRiDKZ68JuJWSA6VeZnhqQcPrI3fUHkd1D11XIwaEX4kB3m2BP7baz52uXz\nXEe7ji0ZmcFxkeN6PbXGu9FYv5cxJOIcRAoUOJX5w0nh8PoTZceuxIu0ZpiE\nMAgXrUuID7E3hQMivWAEtti5TGpf0ecXcNs1MmFxDaYVYL1OlAFfWj+5kj9v\ndtqMGmGb29ylKhS16CUMtdLeU0XaPzTa3dyh02+LfT91woVq5rcCc4BdlO2A\n2Ik5ebQZW6MLMduIaWS084ErBTVuU2W6vo1QtkB8JqMjNG8IEXUOlgQAPh+f\ndNId\r\n=wcCU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC78BJpZepeUi4lAvCfdYmc7qHiabuhD8XAwfEwymHwcgIgf1ODcVqmqRqkW3MbYGdbGzn5zS3ObrzlPPymsSUIgG4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542758792020_1542758802224_0.5049489937288425" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542767763738": { + "name": "puppeteer", + "version": "1.10.0-next.1542767763738", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "aa9fb82f147de37c68581b4c427f0a5b36dd009f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542767763738", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-oMmIC4gCDiUd3GQlqZbFWCODekBHVZ6r0ihRlw5kNT0ez0V2Ohv07A/PazZmgXv4sKIcr4/fdFXia5jKCAPsBQ==", + "shasum": "54572c0b2540051b623b16036a218d95f92e047d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542767763738.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9MSdCRA9TVsSAnZWagAARiEP/2mO2RoC1Z1/VZDbzZG8\n+XGD2dpayZxsTbaJrAOcmUc0v49RuQNa/IZt889r8VUvqO8iWFiSMz6OYVGF\n6fE9pvg6FPJezIiIE4iTU4zHyQk0RW856j/+fH0gfGygve1TPdx+fR8klcjG\ndmbedSol6DQuI5ZEL2QUTi67jl0/aQgx8kNTDZvoPv/XHqWyFrLnI52KSJP2\n1NXbCIC4nkWbWz/gHt3xiWpvYVA0t6h2DEzt6+/3g6ecipRt/RcBbhT+LOGf\neZ800yvRpmUFIm9/rAlv10mY8Itvn6W3GcWWN7dx0sXAVh5kieSOXWiWkgrA\nYlxu2OgB5VvzQGrlCPW2OSzQdO/D4Z/9R0+BRrQtqVTTPv2gg+3Qwsce1cIP\n3+CucDk/Q6IIn/7/TM3cZv0FVGUxA74FeCnBH0H+wasuhoTGlgvsW71Av6K8\noGDVbqC7kJm7WGZYaEdvlOKe9vKhpzFQEIFYQChM7tZ86q8zErQI8l0MKos3\n4QjhatrWQZg1BCCq3keGGAIxbNYbsmVFwxFoLpwv8FG8yoOe2GpZ8cJ22A+Y\nhIXrKvvVUZo9VO4ehuQwg5oiDTnCnYISSO+p75H9NuJL9WRqAk6B9pHSpJH2\nQRqtN+yLePKgOH+y/yGQiuhfEEQCiEFdAD8mAVWT4OhfzBpoZN8ORGVmUuPY\nmXpB\r\n=B2as\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIA40y5LwHkF5kcyJUsbsxutCyxNS3RtbdzQGCZDJkgBuAiEAvXXca5tEcq09rAWG8yLxmomlgqFPeBFErl3IlIMJsY4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542767763738_1542767773239_0.29810051973215357" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542768537315": { + "name": "puppeteer", + "version": "1.10.0-next.1542768537315", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e5830d1199fa5acf87c1b3b439133943008308bf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542768537315", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-vwhWarI+zUKcv7uk9RvIjEz6QnSRVkG8jEA2HufOivJjUJfZp2dLC0YDUWoNj6lQXtxEoz3EIObnof8yixcDHA==", + "shasum": "8501b779de3210fc32b771ef03fad507e791b3ed", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542768537315.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9MekCRA9TVsSAnZWagAA1q8P/RCrL0s4i/4hFiG4h08J\nys1RIoswCk9MHqe4wCjLgrcbDj7bw9IrN8MX1tzJqOMjSzcQaOaZvP3Sl7Pl\ndDr1Q+5l1mkrLv/b4kfa0KaLvZd2s3K6y4W+II/lKCFDxse46k7y55Wi5gJw\nXhj5ywLshRFKahvP/mBJL/otDSkS9PhpZ+o5pXyRwy9GXe7UjjlIGwxaaGPc\nKpeQXgYRMgzWWBv9PpaUa6GVg5fnwPJ/O5tvHQH/8beU7qiLfRtLgXJ5/uxx\nxJWOFVl8b8Kwh7/fcCXpT8/TAzJkR7X56Qb6L2GrGgnWAdaB3mwv/kp7DD2D\nl/Xt+fh17H2xme/Bjayl+RWNCl05S64Sh5znmk9NsOvshccR1Y74WxPzZ5Ew\n3hyBLNvwuVZ2iBtQzSAffRF+ze5eyEF5D5VAwxQ9Vx6PLHjn4gg7Z1BIhMmg\nAwu2/DX81ajYgCT9sD9TDrigPT39K5eTD/qnnRn30D4ZmvQhGdtvYWrNTpoB\nwUiSAAxPF55RhNLOJAVOhtMGdfJ0q6v8dGKdZu7IFD9z3+pxusc3nT/pCf6i\nWyZt+1F+Hlx4PSzIht/U99yO1D+z6vEbHpMHCVJTMmxly0BaLMdwrB1EKdMl\nIX/32vojso7xLNGEEBDKLOLdGreL1Qdug8EkXXmD2N8gCJRY7Fb3sspXCe01\npZzd\r\n=r2f7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCzw46CzK83le49yJM0VIxeDTJi6l1pAHU0UWWIIDzomAIhANbM3AHSZCYsOQcdldJc5Tcjh6acG6d8MrC0w8+1tM97" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542768537315_1542768547324_0.09057867640439188" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542770480356": { + "name": "puppeteer", + "version": "1.10.0-next.1542770480356", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a181bdde319d90dbeae94c10cedaed36fb6245ee", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542770480356", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-gM4aAXTLNNzyOK/T05/UhQh+uM27B8d9p2RrGmnMPkaMO9UvrKK3+2MisbQzVIJZlHk4whntJbAdzgBawBWTQg==", + "shasum": "49efca20549ad6440052ef8f6a9b16d4f30d40db", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542770480356.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9M86CRA9TVsSAnZWagAAcOkP/icq5UFexNAasU9DPfi7\nHirKIlcpAqgLLkNYW8OMQrT//J3AHnHKI1jloBzObyKlyYAwip2cSMXX4lk3\n1QI4EkNKHdE36S3qZUU9dGs6ELsxAOmu3AlLqe5+MHx+ZXN/KyrGFYw3uzO3\nkHkleLNP7J5A7J/NGFyzFxxq0SPJe0cy6Jdpr+HWkZzrz/1AwwDFRlJtBQpM\nbdt2Pi9pItRL62u22qpY9Tjx6Rv5eZzcM54gTOKKNW/xxJCQGJSO1/DhnDjj\nn67VAGgfF9whI4LTC4luwKn8LsAdiGzN0HGufu33ZQvM1knicZ1RxvuBKd20\n3QpaMi/h8xFfp1qTE3tph9YHuwfwqj+fNpxW1jsUjZ8WDb6+Ru6PAI2G5qp/\nYMN+xIXLKSRK5PKWrzw4HmAUGbjEEZwBqKEFU8SJ2TaKpU7fURGmd8qyhnmF\nPLM+GYmZkfdAGmtJ4rEqZT4iddKsCowntL7UsMvf8tExU1bWbFOAjHz7KJjb\nTu68P70JmbacgRgB8zEdOiJ8znw3P4HRSr3BZ0VZc9i6+Mt18TS/NHKZOA7E\nZkql72xMiqr4OG0HwXwmjpC0Pnd6hvLo76SpWZmuf8W8cauEnnd/cWNEtAJh\nTzc1tUbnvILuFsL+RqsC4ncupfeudLMF1K+92pOWeeJYNUbtZ1EGyR1VwjOL\nNMRF\r\n=4d1z\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE8l1vS+QuhyJ5T6C7hC688cxOEXYdKWlNp4HIQgOr6iAiEA2zFlke0g7ekoa6sBPylTGmH4TecOBaR0Hk6Ez+xLSUM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542770480356_1542770489992_0.10902655956699148" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542771500097": { + "name": "puppeteer", + "version": "1.10.0-next.1542771500097", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "25f4f26851d14c96afc3a13efe11c26b6d822370", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542771500097", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wy5lRFTudB+but/1nmMJrXwyW/r/I4sU+RMxWRAHqXwYpWp+nubLL/7HMavL7fFHxkVgtIh0AHsUonvFpsw/oQ==", + "shasum": "89606e5d98a891f6a6c27a824c26de984bf1dcfc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542771500097.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9NM2CRA9TVsSAnZWagAAxZgP/i+MKYIkTNuTKlCkKL5S\nSjSIzumjdYBuGkMSl5qSzafInVTqTC+sRcn9eEhUpfSB1m7YrIWZU4aszOxC\nQE74ERXmBrEeuatF3FLaFELo3j/UAW9t03T8WgtKJ57+ceFP+zvLZ0lxtvGE\nsrDrchDY3vHNsuaTb5E4SDAkXNi5n57XGOfQBUoiB1SuHnBsSGYLYT+hj5Mb\n1lm+SBKta0tKx7oWzzdeEmfn4G+Xjy5zrG+apfzT2OL2w3WYnj4U7XCiKCYv\nboD5RjFkXhJszixZndmYdgkVh2/jCHSQormVdev1aped71PtLj1hGQ/1CJfM\n00c4nquuirkCPD6FVqV4MQVSwkZL8n3w2fH2PC12YIePdy8uKAE1ezeTriro\nG8ygZ1AqfBTw/5GAo1HaX/GXGBQdepkYVWjvycskDia+sJEaksms/WhK1TG6\n/7/lIvuzJOJ54LflFovnLoerzr9v4vlM9qX9bQcsPQ+JeLqXLhqKlcwVeOXE\ncV9MTaZn4QynMwLPPWwwI/Cl3deZkJ9e34WSt3S33omv/HvLa/wmrdN7yfJp\nm7F+24ZLdnHFOGGs7efFi1lBwemKNfC6JLnkwkaKdllb8KoyaBOUFesjZnQD\nq3qDHpIhri2GkSmlr2wUkbtaVNNfLuYTT36Yd4IqlntRNvhaSddnjWVmNfDc\noOWl\r\n=8Zw4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDdMZT5vy4TcWQJo60B+6t7fQIOiBMielVbzpYAlO0pIAiAWpTO0ji/AdLjUNUs4txufyw4yHo5L8+IW0sHN6/y8jw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542771500097_1542771509706_0.350925230850164" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542771982956": { + "name": "puppeteer", + "version": "1.10.0-next.1542771982956", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e83918987a343fe200a4813a1317482be5ab814e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542771982956", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-7FTlKRY/K+AgITQonYpWxJrB3NVxi7ntnv0oGpOkDAeHHZyy/yqpWHIuZVymTzTqw9wfw79ez7S/V1DCNQQo7A==", + "shasum": "49cf4648ce4d4713af54fedf73016e8b533a1976", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542771982956.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9NUZCRA9TVsSAnZWagAA9hQP/0CezfH0rcF/WXJwcots\nZPZf+0yY3iHX6Rmifcdth/6p1rmVi8OkmbkVh3o6Pta7yWToVQ1SaBi78opi\nImZE/SJ1jPs244hiOk8JxLfHLtImuihBT8PwcYf+ZjSyfI6iwxYuOfiqY7Io\nS6Vv2eRQ0UA3br8SkTn/OdvKSusVB8PXQuUVaMH6M9TMu8GfSykz88zGRsN2\nlyGGODG+bprrGWJWof6Of+finbr+SGITAveCM6s60xeobqFN3HlrjkNmHaDi\nXvLF2Y/mVkUsg/a3CGG1cOInS8k2zBu0QUSz1acbu0BlPxqtU0g3OgzJc+Cp\n/Pbb9ZH6YAJ7sSKMWhQ4zuH75aOuUhz5mSIyAlVYy+y9CzFXqU6c8QJemQJy\nPGrZcWyUqo3tgKRK3SHwz+m187ZXxtpifQRN4zwwiLSd73RGrmLtYT/qfQ/V\nhjfpbDXbww4Vk158maBwn12A53845JOAgAXpRGk2pImf9aCP1JzbmSdOwB/J\nL2dwgICbXxwgl32DG615v+/S5EbTwO0fQBtgJg0NyOV6yD7bljKmv5zBTxGz\nikN/HinflJe2hpWF5SNce6cq+PvPrbORhIaOiNmTTi7EJs6r3KZzSEZqw6T+\nP/f+6+KBmN3xvxh67WKD37C68i8PNEgMpmU2p4rak//rlKAoxrdco9lh/p3W\nHrF+\r\n=8Iqs\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCE99erqwH2Sd0J0WRu9/mj6Ur170L5zJlUR/qXBaVsoAIhAJsdU4AlgrHx0j8GLK2ij76rNNPp+oYZt94P0zwCa8Sh" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542771982956_1542771992706_0.680897744166125" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542773003048": { + "name": "puppeteer", + "version": "1.10.0-next.1542773003048", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d61916b53e5b5f491b14288ea00f23ee7e31f473", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542773003048", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+3dkI6Sn21WZMfMFqMkoosutj7N5+RaBi4VjvKECkIGGR1HvSl+79wTKRGGCpj3/PUYwfRg9sqHie9acA7Izuw==", + "shasum": "0342f509dce6b5fed863c312ecc5429cbfa27e87", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542773003048.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9NkVCRA9TVsSAnZWagAAY5wP+wafAYEzXurr3FeJ90k/\nVOHTyJqeP33Ek905q4WDWRvGWgnavV7Y63auDoFdgZU6VTffuObYvbONtR9i\nn5eJwLZdBOkaJDBdr9QEhKItbQSeDWIcsuQws/XQ0OxCvNaqLkUQzYjSr1wp\n2j2tZ7dyE7q2zQ3/iKZ/HPNp5fH2FmRN25wGbYkduMAkJYw1i2rBsxRuTh9i\njNNTvE03uk2bWLSlVpF4Yv9+9r4WBOe8TN91LwZ7PEP0hzak6RB5/9aC6Ga3\nbOh93KlK/e+EVtwlQrTTVm/gJIDllpjjXViypZDwb1vZAxKTfi6E1bfeUavY\nxsMclRAHAqNkCoA9yw+KOP1Yxj7rbcKkpGhx6mu3cODbYgmkIPiMzKGOlrHh\npY/7hPPkMz13HcLea9qco7npK1NQw25NTrrtUEoWK3YIY82hXHfEHbNMId2L\nPvBC0Qv/POEf98Wim3MfxoEMr3v3y7SzSx/ZKNxdSNKdUqc9rZdbdpN0tPUz\n8QkItl64fd6LAdIaiMVuJZVlNea/Qv79trkLXCh/AkdXWDYkRszitIxYPnFP\nI/kO7W3K4O708BrUVntQX24ilAM3Q+XLrfKeZKiFfE7cAPpWrGKvwz6bLRRk\n6FtEOxU6tTi7wxugscnEROR6Gsglnpr9Q/wOQuBlvyxTDrImnL+SckwxgdIf\nwpPC\r\n=/ap9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIH9TEzCVS854YRUVH0ELCIJ02Bq9vtYh1K+xJHeqGJL+AiB/SLIU2hS4FVQGDnRr4w8Ig2LFa/OrwymJOpZhvxzefA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542773003048_1542773013268_0.7207312905467662" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542773565980": { + "name": "puppeteer", + "version": "1.10.0-next.1542773565980", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "608752" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "309cbe625f5acee697123e422239358eff7c2e36", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542773565980", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0DhXHUCPqZk8EYto8gyi/dKY2wsYB2aLROQac3lgnFtpNExfnqka5PHAXiCSeRvnrQVNwxaWB+8iynoz8pg2sQ==", + "shasum": "b9a8391b789627c47e217f54172640705a4a1164", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542773565980.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9NtICRA9TVsSAnZWagAACT8P/iDXJVQ7vYQzjvy0d2B0\nkCUWHv39pRZfamll/mwxVF6MaMTfbip/d2VsLj/n+HI/a72AtyQ4fiwYq3BZ\n+0faI/Vo9LNQ7+62V+hA3s/UkSbxMMkwSIehZC1Xq3eQhCkC/ODhZCyQ6crT\nwsFyIyBtFsQJ+JXk5JVXoTnVn3ypZOQpcyxx3e+GT+TaLPggpzZUrWT+24Vy\nOZE6U8mt6wH71ofxF9NiIzMdjaLCukcde4oTBvWCFzf9zBTO+KvmiFoe27wl\nqXmQ7RlDjYsYtv9QT4J0ENPNesIlBZI0okICz3Xtnf+MEYCXH5BR60T5PTh6\n1Bzo4K3AuROalsHN691QDN6bOjWJXZ0gyLgJfkCaNNBE88IXv4ZG2/74l4fk\n9u3yvHMovyNHj0zhMpmS+7peyX42WCHlIApkiAGF3JC9VvuRLQVnouQ5jbDB\nhSyF+3kazhts1nyAY4JJ65VjQEQoWSCFKc4lLRVwjKSfcFduWQ13sIhzbVRY\n3Kw1TuAU8HCQI/EISXR0I+Tc2f213/aKwQX66m/LUWAsGkdN/MCkl9XimOoR\nVr1Ce6kRw9Mngyf4dLuMQUBVdpHj5nDd/SUvls+5bzQMn3+p6+r4OElUmgyg\n/0iSoqFnCEBHWvvRVv31wq2zxFb6Uo2vzhXYBs//yT1Qs87h7qoyJXhaXnnI\niv+0\r\n=oFuI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHxgNgnqiLWGi6ByCfNAkr2pUMH3pxcke/Bd1V6Orc3oAiB+DtpMV47of26DK3PWnGGJXmi/eK32VVVTRFX/exRIVg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542773565980_1542773576148_0.7185299481023439" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.10.0-next.1542779777413": { + "name": "puppeteer", + "version": "1.10.0-next.1542779777413", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "^3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fb5b0800ec0da190de2b7f36d37f646d6d64f4d0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.10.0-next.1542779777413", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-uly5XHe2FSGO3mdLZ0dWNf3A1oxZSHQsaLRt4neJ0rXrJYy0ftukb4u2UgxuDFzbmg1Td/ezg9dqQfLkuo+TCA==", + "shasum": "57e253cc58f979948e717cc580af03facb6f688f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542779777413.tgz", + "fileCount": 57, + "unpackedSize": 663323, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9POMCRA9TVsSAnZWagAA7wsP/2Fy/SCm92YOn09RTFJw\nKtPWTyq0gTPVS97IYW6Zb/whXIKWywgmsE6WKCMK81Neznf4oDkItAAYSTNc\nd2WbATIXVyhck85poakTQ/t2FDlpUA/J87SOavA4XI5dalabobM7aVNU6rOK\nEqtPcI0YnQ45e4Yp0VnVYtFHpKn7tkQD74ZtyyTJW0eiVib8tZpi8A186aEM\nfUw6KydLsQ1eZlUSizNKgGkrpetjgPa2JXOVTDH37fS+TwDFj6wEhqDkH4hl\n85XaoBwSp49CqsQ0p8r8Rtv+zwdsu9jQcvDZRj+gnCmXZORBCrcnGQULlNYd\nZR6iSIgOJ8TLGSWGS3y9JET+ToXgTjAWOfhkbr+nvSFPREk8yeNaSswLeT4t\nvfilgWVLkC0J/4/D1A3uMnnjUhlgt/0lhm8LssL5DL58gzGoE+vK4WqyzsVh\nSZ/Yb6SxolcHbRd5I9DtFkxq11gz8DvDGtglG+8aOy76ZP8iRqmYIOL2vwAu\nKptiM0QvEmL4DX44wldY3KIqOhS3vBk4fAMqBPl336FhzTdU7dte3wGnqNYb\nZxJbXSO7IdTkgCnxiQyczbjIzsOucCmrrcM/jIhKBbsLZQJ650nx8C8tiDIV\n6pC5METj7kxAaKkywzUtUOUXLThVwDDOEOp+9k9mv3Yj2B3d5YdZY9yiE73v\n7Ax8\r\n=2FB7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC9Lg4tLQuG1AbcX7GnC9NyvHeU2QJn6++916kRNbNSwwIges7C7ciZ1+sAiSu7mPCsIuKa68lWenS9ICneVmqwtvE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.10.0-next.1542779777413_1542779787780_0.2149992020557836" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0": { + "name": "puppeteer", + "version": "1.11.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "00b15994a410ed2d77d22159287355e85df70580", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.9.4", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-iG4iMOHixc2EpzqRV+pv7o3GgmU2dNYEMkvKwSaQO/vMZURakwSOn/EYJ6OIRFYOque1qorzIBvrytPIQB3YzQ==", + "shasum": "63cdbe12b07275cd6e0b94bce41f3fcb20305770", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0.tgz", + "fileCount": 57, + "unpackedSize": 663303, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcANVeCRA9TVsSAnZWagAADZAP/R6dx/6T3bpUhj6CUhXU\n7bi1pmTfcDOXjz03OEOPqMiot4Vkc/T6pNVjZaXDrLqOxYh3IyWN4K+xcdPr\nf78ReFRgoRGtiNIrQ5R8J+sJ09Vp99XOb+bp2Ib8RKXDU+cSvJz5PZoBavax\n5LNdZIkarCHPWXbZfTjUIoueH8O79uB1rsP6KpT9/5v/sStYvZ6X9ZxEcDr7\nEW6/5Bw7ktyleBzV2eFgnGAK/HK5lAfgHrKk+GvMquQOzBjfm0Yv3XGCnbaY\ncUvqu8jopdfCyv1mdr9/h4tYJqrsxfTZs6XfpjWCcMpKwTT7HIDtT1kJLndv\nYLOm/dd7XOHRuyxCqXtq3QRcICAQJSPV2lG5GJSiT6g8bzIt47q5BV+1IXzE\ntqIYzbmlm4d+XKxYAoSWzl9tg+TFySYkA0vLICuiAKcfdY1gzzS0OKrsFeea\ni53RwODSz5Hpw4+o9jguCRjOw7ppv7eUohlQaBobbJYJ+Mks/PAFTFiaEJVx\nMnJamY1lI31kNXHrDqPo87X38gTiteNWxsJoROiwtPdyggP45L9cl1sK4fhj\ncNFWhjLLy9s7kG5TzEXt+PkMXzzAtNri9App8ZKG3O6bgRC0ZRVjNvxOK+mD\nXAmEJdIevqdSvcei4PN9lurgQY4PWs8aw/+oCY3N3bPEL4oJUIZdFo6Vuoi1\nUFuT\r\n=+hym\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCfeOJpWKcWc3zZM1yawZPYCsTxLJ2/motDGXStDyjImwIgY3fOM2X51KCiGupR3W4kLn2UQ1po1d9ikLU1ci9xxQw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0_1543558493640_0.9654367467889984" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1543560147647": { + "name": "puppeteer", + "version": "1.11.0-next.1543560147647", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "45c4477e9fc80a159d8cbfe13cbe1aa5544a53c1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1543560147647", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-mBA7C9bjq8RnIVMljRdsdXy97c8HENVoV2B+YZNkM54DL/xjF+8Yu0OuLxQGKkDRjRhwk50y1JNwr3yjWy3aJA==", + "shasum": "fef33e38d90147f9cb97efef5eaa2bbc33603e4f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1543560147647.tgz", + "fileCount": 57, + "unpackedSize": 663322, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcANveCRA9TVsSAnZWagAA8gsP/jpVfPzH5GYX8R+XCH9l\nuNUdHgtdf/SJOOSdiJZ5WuW+Kpb98KsggVUNKyY7/NtZU2oqLoJQe3nvHbgj\nHpN3SWWpySPYsKm0+pmBCHapt60hVvfJIGx/SBjQhKyyQ0IlLLFLwYGI+9SF\nU7rj1SLQCSnRimoiFsdDKaOvc9EsMRswMjHGUdVR1/bg92qVJpXWu7Ng0IEx\nnnovGyIgMud/XiVnym/50aOrv9xqcJby+iqSzR0cnRSetEFDOwIHYarxyFqj\n9o80cG4Ogzb2jqWLKS39P3B6s0AJh33dIXQGyqY8x8hh+//CGnhyCn8SBs4X\nx4fViNaCw+QAvWPoBb45DvR0NmVfpLUf1a0ovdJBBU0GBvcxUkF6VlGlNNkN\nlZ/d1+6HbNOAL71amMSmTObRRpuakIiLdUdxxxkX1NHSruWh41+pZTp0L/Rr\nlky4rRSTSASg3U7YxG2IHcMgQCLSZB9gSycmd9Zo9KYAi1JWhSbAxjF2xuB4\nrKL7YTXin349eniJ+PfKBcXdOaZRU+b6LXDKWs22d9e/ojesCPdUz/PiklY4\nok7PhVyw/aXyGE8juwh0ftvfDjGoY6ISMoM82iJWxSJdvluk12CnecZdbD4x\nxB0rK0nV5weBkGl/qmXQC4hALrb6jh/WBuU3NRLly31zpHvUiRdYCbVONM7Z\nG9k5\r\n=/IUu\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB96ZGUGwUNG+bARcal5BMZGGnRwA4XLDIc3W1nXfIfxAiEArvQOb2+TYxuNOjsupHUpXQyUqQwHXH9LNoOT70gaE7g=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1543560147647_1543560157325_0.9749295614275153" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544046420498": { + "name": "puppeteer", + "version": "1.11.0-next.1544046420498", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8613e871fc68a1c0992cef6b3fddeec25e58d9d7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544046420498", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-KqAe8vCZ6CmAwJntevlxOIiPuxAgWbpwoMDMx4fBdFDTTVjawxnwoJIxPcOrBXL3K3qB6yC8Oo0R/BVtjAflpA==", + "shasum": "f07d2729c6511d6739ad39ecd5cb3aa78cf345b7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544046420498.tgz", + "fileCount": 57, + "unpackedSize": 663322, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCEdeCRA9TVsSAnZWagAAIaoQAJZxcCOgExq6uVA/Z0a1\n++RykicQYLbEq874SfH5TJ4EmaokJ25rq3lW/IBhROPNtEhcxTiIhlmWeKfF\njRLt1HIa7NR70Dn4IMuAt+QyEwPD33lRbtA0ZG3tbxEoUnI9GLo2Mv9dYVs9\nV7AA48GGvQZn846dcUXr1iqCyPA8Z0nOHZwtELUPe+aliEaTLGl3BoJ7lywK\nykY72Zboom8fLs5+V1mibqRmjOKg7eFCJZfjPPVbyKqG9Uy6nJZ7hbGdZa1Y\nJszzsJ3g44Ti62e5+19HHK5K1WDJml6aS/qkX1jeNFsgo5EmiRWB2ePEWwF6\nUqptuwl8/LhJtwsUBdX4MCS59XeQWAuQc/1O2iGYtndfwC6mmxK5MWZIrxZI\nTwWiRM0GadOeaVXut5O+e26r/MKxds208P2GHtdneYY0vrgSykho4v9YjwcB\nbsOg8H7Bp+s4ZWxAYFEFGCL9tlw+HicSfF8AYzIsMZwiXr+fb+dW/Rve3m6M\nF1cQsG1rtVynIMkrAKKvvi8XPz6vM/zyvWx/AUBsYYPz1s4o4HdMlGavQhQc\nmQ6gnGeA5RWfgqGu44EboYw7Y1jpYGz7zs/vfSGpUJ+3Dt9+6oyF/QmStD4y\n9URW3w3j0F3TssbeDTzl5XLBYDCR9/kpXZH2bwPZg8nQmZLzCmFIs3Mgb8ll\nd8Lh\r\n=TKgt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICFeZsQMDrHCZsAcuxHkTuDOPMrflfAmnsxmEsCbEZWTAiEA7Ee4TfiWjjIZDYU7h69CMA2Z0YEnbzru+m9DwJTJSNU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544046420498_1544046430082_0.9775685584674474" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544128541083": { + "name": "puppeteer", + "version": "1.11.0-next.1544128541083", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "be836bef638a9c761d145f95d45cc56bc5448825", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544128541083", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kM+NnKxG0pZsqhJ9lEdYqd4d4rzP694wqjdgpQVx9e1yM+J2x0bwsK0/1PF3bden954MmIaHZc1M4Nblg8+cJw==", + "shasum": "14209ebb02ec498b6f1e79502333ea3bb597942b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544128541083.tgz", + "fileCount": 113, + "unpackedSize": 937870, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCYgoCRA9TVsSAnZWagAA+w4P/3242DILooy0Jw0X0yOu\npXihCN2yCwpRbBp6+kDNarDufV97CKjNj9c9igIInO+G/7axM4Z9iYd+N30/\nLQ43OAInMGY9Eia4eIsfIUkvxe3jEq9GfHhIAd9MxpJJoHlQ4gTQLd80gB87\nN0pzHXzToqhUOjVsPzPDs3/wDjE5tZjY6TKpP+tRxmKvqGDh0qPqjwVHElY+\n9hqKU27GsQldijQjddvkyF+k1xPTNXzVPVTM69ubgmeZNBXT38kzyVcc8/O4\nSG9ZYJByYiyMS+gglA4weDeGd8uW8DvKdnWuuH/NfZ48crcIGdav8mwTy9SW\nl03HRALBSilbnsCNae5+8aXPu9RAV9eckZ4qeMOvHKmSzEyWT+RPLVHWRPXR\npchy37NtXG1rbFImsAI8MoaMtPeiE+gHZu/JCdpBAkzBPErent9KStrtKbnW\nmbvDJ73Z+aZ1mFKyHsih8vfBvm000IcW7xz9OHdCb7iREOHmmmHqr3QjJ/Y+\nABKUBZp/w896n64JVNn8oU498GJUq0aEaTYkCig2PDuA2P+99E6tiX/KktMg\nqN/xZ9x4PWU3R7NXZ10UquyizkYOs+geTyAYVTnRZ0w95QrLQvptX/Tu1AxJ\nyAu1NGCXUoxSpqLybkOhii6/x9/Q/nN+bF3VGc64VH7nv0+r04cYkRItCh+d\nG/Zy\r\n=DafV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAJSErynZF/HmLWJRc+3qMwl0H6M6xI/i9Ny1CKT4ly0AiBTk+n/P3mHZGDuP3dW6JPzidDxug4qk1VvNkfclprncA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544128541083_1544128551357_0.8900141961914512" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544128971170": { + "name": "puppeteer", + "version": "1.11.0-next.1544128971170", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c81f03c2504806374234c95972f769e49d00e4db", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544128971170", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ofi9trdmZMwVFO4WC2JMtjex07jWLDFeY08FXQpNI+AOFj9JdKJhwbkRQpXvgRY5ToA6zDzLdkk5GQq7THy6BQ==", + "shasum": "665e6c37b703bbcc712e4fa212825905c90182e4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544128971170.tgz", + "fileCount": 113, + "unpackedSize": 937886, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCYnVCRA9TVsSAnZWagAAth8P/2vRL24LqlOVuptCJXQ3\n9p8RgSGivH27M/FXpIjD5V6MBmTfvItThXcSDeVVuyjx323+tu4o8tAUc8ZH\nh2uyWz7C3x/SSHpVwes6oA+T3WG0paTjL0dKKU0xt6yYxu8WfRONimXTi79O\n7sK2wDBYHz0x7ZDMDO3a4dixbFUqS+CcNmuCkh2y8IALzs34fF2qipUgNzj+\nuffXy0pnkN+mGtZKAcdWDOu0kWAAr/3OiT5hnfVgFlUeNvRJQLwoF/SllcAH\nuKxioJ8Cmp4EN2B0d1YoR4PahBGS+YlersePa68yjnUZ7bKB4m6BybZitVhF\nzC4taDHREgLdaky98RU3KQ/JMH94WnjTG40Zvujf5cV/OOEEIzYWqajMtvS1\nBscgwUIb3Y4FF/OztPhE7MVABPMNvFVdrFXn19pKecE1Xdlvc+yM81DQOko3\nD2ABidGNZC/MmywyxoSaNOzwvUWqBDAmg/xgx/s/P1Hkx7s9/DzFM2W61TCH\nlXC/xkjf2Q01PigU4n6dbmrUeUyANay7I/FfbsuyZl6yl+mcSaMuLMEy+mal\ndrlc8wJNrRl6bJli6GEvmm3PsR0pJajppDaTcADd9VopbUsKYUhQiIle5m79\nDOEUjgEZKgKa8tf6tN+Ps/fthA4GouAUkf21K//H51p2JDFlZiZ6OEqY4l1i\nyGBE\r\n=15a/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHPbrYXCr/xQBT7ThHlXF+mFyB3VDu4987RjIyDTHAt0AiBnw9e/7AaBdUMrK1BCQGVTbeBeCOZfY5CU6Nb6lWxR1Q==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544128971170_1544128980980_0.1000890106450334" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544134189192": { + "name": "puppeteer", + "version": "1.11.0-next.1544134189192", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2c4198fbbe822bdd7c8ef4b713c9fffb918bf98f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544134189192", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-WVVTG7jcfe22733YrngwfwLmVCurUWRYt97qZq9dn+rOwNO2PDMRFqQaWbz9TTU7pKxbf7LfCHJ7WvSjKz6rsA==", + "shasum": "e2529f5e3939a15f0e898d6e428fe2fa015b43f8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544134189192.tgz", + "fileCount": 113, + "unpackedSize": 937890, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCZ44CRA9TVsSAnZWagAAIAQP/jXkyu/ZplLt4vnO//V3\nMRn8WrM6luCFSt2as3F6FPWzHPYhcvR7HAzRW2ZtWz0YPUSMSqiaDuv1xl0x\n6Hf61ZKoERjQXr0C+SZSbmqaN9RGQs+g7wKsPE/YGPFuePQGPbJoHELjLh3/\n1IVUnmbJjD0KoTKY9N0BbXbfpdS9gk7dVDF8Qf0nTV0MJdU8MpyaUzS59k/T\nw6CZYNUF4tfFkgUAscPxiluYgdN6qbfAujR3rixF+nwcu5ewc4ZvIjowM4Af\ny/0lNi4bnxPGQNyJ+rIijUKCz24Jg6vzFNnvBr1s1bzUbvBFA0+nRU78N5J8\nqpQZsr0TorOlJhrMof6zTvdQZ+B2KlUkurAos/eonjvQE72c4dWVsfVdvoch\nVpO++B6QsV0kx7UkU5WAR6bmNWL8JiziF8+eiTmkcWN7qOM/awXtRJmlwW01\nMiuMjfRJjdIUqmYbAyRPO7pOJXXz5b1MHZ1ZCqOeZYBzCSe3yXCokAGFrbhE\nBDrRG2vK3QkSRvOs7J7VHEwx1jXqTbI3edvuYNV33bshUwoeGuOcBmNebqSG\n9sJ5IGkN0UPTdXuSdgFl+5tG+uBdfnUC//wg2l5T4ZEc6gfPmLyqv0Vac9PC\n05Nbv4RLL50H0RdHK6a90hzWLbLi0U16dF/1GrYxbrptrWoaHlbaUMp5pO4G\nOj37\r\n=r2ON\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDZ3ah1Djo4Jd5nmesLLJ3pFrQrVAEmWlBnorL5X69/swIgOPR0d0Xafgz9RHxMzN4fe53WOjuJXwaHO4sNsv5+Sms=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544134189192_1544134199541_0.3394801559134233" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544168352298": { + "name": "puppeteer", + "version": "1.11.0-next.1544168352298", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "609904" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0cccc586cc3e7140fb9c51d859943cfb39d83b02", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544168352298", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-EIEQxoLfL18s1GpIeGp0PqNyLEp/c0alxvLOT30O6jvc59j/Tb/BGhlt2/QcLQOq7As2OdcUoOGAZzX7WSpKNQ==", + "shasum": "3c6e5266538f09a32c11a011fab13cec0ab878ad", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544168352298.tgz", + "fileCount": 57, + "unpackedSize": 663322, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCiOqCRA9TVsSAnZWagAAVnsP/jR1Pe4eIoJf5LZrUNym\nFePcrAIZpIoPzDiSAATquuSQNxvBZV/LxEJl4b8dsAA/ApJJDNTDsl2t783h\nOh8xAfi2iU3FWObGTthZt4DhWesqEiUFsqWM3RrbLDyKUP8JUnVxT9wgUFuc\n7XFazth+xVqEJ2//TpQn4GuvM/S9X5EEWLOsdPtwk1e29v5JlE6HJI0QOHY9\nXDtFW83OSZrfVqYedqflIcrxw8MFDTQb1KZuMZDezKIPtrU0EzP4jBJf//1W\nCfdpWtX/MYScYPLEGKFm46mWDSsvA8ox69BA/vNIPm4LpAjFcpfnD5W9KB74\nL/jR1FeTnvhC2rNFXAX9uXtACwkvh+aQEqRaXpjXsaAQzHud2T2vtnrcEUby\n2TeUwzkDR00+A5C614YycweUT3ukhVgXT6hxsIX8E/jX1Odu7T2soAmgTi0G\nWf/HpskQ31rBnSNwwYMfz3CG7hjEH58zBB3DZKOjareZ1c23EAaXQb3M3hHV\nb9htdXv1YwXfxKh/WihdZpXiG/3KNgyM7VkNsfrOS7wAajQBH8CuZxpT2XeE\nQ3i41LEy37Z+yRiMMKjEDqf/tK3gXkwQ0Q365SSVSdd/eMLXX9efYShi4lwT\nNrcQRqXuS5m2moq3ZwoJJrSXFauwtNK2m+l2CGY9ubz5/Dtl4mp1xEdQTYeB\nQc0c\r\n=Py2o\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCyrR6DDQ6I9rgnUU+gf+n8/78hWQhG7YDsMCnh0AoGqwIhALGP215zkVm3+8vzf1rgnbZ1AFVhVBNNccGy5TKOZfrt" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544168352298_1544168361990_0.7356754011360367" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544560245556": { + "name": "puppeteer", + "version": "1.11.0-next.1544560245556", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "615489" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4346fa1978970c10cd7bc2ef64a765a49d261e7a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544560245556", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-zRpZfcMUDieglj0I9Bwl+23E+F5RLh5aFZ9FCWaASqcqBVAtvrQHO6/aOjVJHruNRg/HeEDhh7W23I3IFmat4w==", + "shasum": "090ea02c2f9775f9b8db7419c59adef1a0df310a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544560245556.tgz", + "fileCount": 57, + "unpackedSize": 663322, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEB5/CRA9TVsSAnZWagAA9DsP/1aEaW73dtfaGFeatXLX\n5z1CaVB9grBryqvJhiZE2DsXOZ3TE0yGMCQ5coRbO+ih9qRsvbGoY++ridbh\nUg3kH90Ox5rOg1t9Y4WZSXoY1DlvqYKopqOP5ThSUZywF1nNvE4OHaxgEVKy\n4pTuwKJDtlde/pa0/ylk+JCeIve0/ba5Kl49+iDSHDeXZ/FDrHMBIGjYEEu1\n8noBNOmOpdjzDUUExgXm+BSMzEAQ9EulxUF7XGicsi2Sj6OV7uYhvzVIFdFI\nACNtSYuSV3JplAQ1XNPFHWn/rAkwdo8OELqPGeyKVwCeQdOACZ4sc7+MdC4R\nnlviah3k8WNY2BcaRoEFv0cRV+/9p8qm+MoT2bLbN/k8jQvznf511aSilycO\nWC/6PcZUzuItAHbH9m/CDPWIb65yai/uuZU7hP8UVjW345vY0CyUY9NPlPJi\n4Q2IEwM210O/ujddDzCW1rcW6JzUczd/DHsKdT57c2fJkaIB30NKpJtt+9Mw\nIY3ujFVV47bg/xy7up+VYsHnTdGH0ry+7Zbcn+Hy7WMqpdDk+8tIoaUfwjgZ\nLtP/g2+fu6Wc1JuUPhxoMyBlMgTv0ngrKbh8TY6X65kA1uzRPYJaXafswwwq\nOHSAR2l/Dyvdfm8kIXE8wrD4OQY/zPEuQ/1iJhMlc1oeWRhyq/6WlTAxlTW4\nVWSH\r\n=RL9y\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEe+MAv8cvSlshaJa8jjduhz0aZhadXQCS5WP8k4ZgDZAiBu0qXBg9Nn9H//xB6uXEwWXNlgtO4WvGs5dDJ0tJr4zw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544560245556_1544560254832_0.20170150655068264" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544656354290": { + "name": "puppeteer", + "version": "1.11.0-next.1544656354290", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "615489" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c90392bdf5c00fa2c31735aad6f95a70a86d97cb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544656354290", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-22gCeaTikh/qklJEjU4+cwGrSwWTAY/PHtdE7H/Chn2AGpDwkiLK5FCWOUuHnVGdI2DZKyqDdfDYph8DRJhwEg==", + "shasum": "cc661c1d292accbe76038e6b2dccaabeb2ae14a6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544656354290.tgz", + "fileCount": 57, + "unpackedSize": 663564, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEZXsCRA9TVsSAnZWagAAwxAQAIuYvEZ0S0r0gcttVHs0\nagK4Ayn5faB95sl0SDjXqNZQkB1axSxK8m+9qlZ0VJkyCp6OjygczPsYuJ3/\ncF0crqwQViY6rr4U4BtS/yaMMrci3OKdVAqzhNjrQEyiLnJsXT8W1okijWQI\nFE6XYOXuq/20Py4mMoP+skJYZihvvluPZrQCx20kaw9Bel4Rio5MNIOgmqMO\nxm45qve3qERXY4yppAxcEhAM4obud+5Ch6usG41kzpPApDvBQQQWrAehhM51\n6XvTdR2MV05xNpNSQuOw3KrQX01xYebPTmKAIiKCXpLOjLf+kypiM4U/95ou\n9RObBBt7ICOJ/XSzA4gv+CxDQS1gJb/Ye+0cE3SM224r6ovckBSsf2pRGZ/I\ntdTYCGZU9ElEhAIQUfJHOZ119UBcQ+hYOs59CLlGpiZjZ2y4iKh4xm8hOMIZ\nF6oDWbt7ZGpKWLtFdBaF/Ay3GTBkM+OQt981exBzBrsCAjl/Agi59BRi0j27\nqFY63SHI7PK45TVYMJO83FcotdYCjJz6NF5LaByAcyEZBC404Mx6tIrphrGG\nAW0lIEG0LgpEKpfz7cw50tAvTRIhyLvxwMcY+OwRlXbuWwLMPbwksgeBuz9i\np23oV8Y9nkAfo2ww0U7fzLVGOIdRK4mW3rHsd6K3PfJb6+5wgjIBjFn7Mzso\nT9R6\r\n=BMsz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBveUrU1gjKvhTazT0LX+a4BMiMx6TJWbxt6KU2N5GkCAiAhrJoSeACbEA9F0J+o4PcnrZ0nY4b5vMPMOfPQb2m7qw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544656354290_1544656364061_0.16490480154887677" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544663587420": { + "name": "puppeteer", + "version": "1.11.0-next.1544663587420", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "615489" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8aaca4eb1ed4020c56d03e3957c1e64e9a0e8b45", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544663587420", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-vOhPYW3aDm+Xzb20XGJxivA9Aw7EjMauNsHMH44RDKYLM/m7plOLNK8icrP9LDNV8GRK/KYCOFoiMCGB2kV7rw==", + "shasum": "9d98e0071a432870fe113279f31358655ec92619", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544663587420.tgz", + "fileCount": 57, + "unpackedSize": 665092, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEbItCRA9TVsSAnZWagAAZYgP/jFcaq0BXH51ZZo9pmUi\ntgRoR4jBbT0y+tZQcpzuFX85M9QqGphpXA6SWI8W/0wsdZsYMT9r3zenAhCj\n+yidNFWBEN79OvIdyh3B/3GIHtmiiY29M1uVzUwz7BNmZULsSk87eEnK29Lv\nvw4IvcsfnHUHwGTsEtXXr6tgRlZdWvIVrTSm0UAuBk+lUS8hTPmbOu5HL5jZ\n5QmFQQxo2oFweVip7XFQl+SgB2Xp548fP1XvDKKxfrWezgjQ1tsuUrhlTgdF\nKxpbEQFr6iV+hGQQXjBBoDjRc4pHD/38Pfnn4wx0wcNOcdbrpBo00iKdu9LN\nveCgEhc4GNLP3hzZQT8FENdeElKs4TXCzBsX5Aa6falg4N432fqvesak5lMG\nUWCNVmK5efci46+Mbz3v7S62n6R/vyRH7Z7gjMauAgjcVN30gqnbFq862cIe\nuimqj1Iv2jiOiusGy3T38toJ4q2kcbOaE9aQYdWF0wC7No+Y+67wd362OfDy\ncpExfROOosWJ8t+BzZqDivpFiN9gfnuFrwTfX1LxpMaWf7CQvbby8aF54PwS\nrlUjMml5O5Qk9SP2yoMjAlIT9jCqVEy/jw96JIlf9A4OX5tU+O7Nlil6lQmd\nHFfn0cl8wcRkSYTvnU6FSy8T4lsetFR47/pU7Lw5ssIhiCstFUaTAeqWqC1D\n7bxe\r\n=3yX1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCID+RGj+1nasg7ftOHJhuPQlSr5TtuT8pjepHBxn8CxRxAiAz+wfY0nfAlnTBAMEI5yDj4BE11BeH5UbeMoBwuHVNzA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544663587420_1544663597032_0.10729070393239404" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1544737011631": { + "name": "puppeteer", + "version": "1.11.0-next.1544737011631", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "615489" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3d82465f667f0585ae8cb3dbb45ebe76bbc80ec7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1544737011631", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-PqQL3K1Apm131dusdiwK8NdZG/jmPx5yBWvJ7FogqNvtPwx9f5s+EG/JPuOn5peWtydVy/1RFVeCBNllkHo1eQ==", + "shasum": "3d2f48fcd0a46a2232ae9dd3cd31fa4e99003bc3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544737011631.tgz", + "fileCount": 57, + "unpackedSize": 665164, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEtD+CRA9TVsSAnZWagAAVpEQAJPWL1WKUCF8fSW8v0I5\nC+GE7ESV7cvqz2aeF55BK7aCTaLYLgBqJYoD4XXl1CjLmorPtq600iFBKTYD\nAZBddnUmB1xbtAMntNSHbk+zsUW6TlUxUQn2Imt7TEd31/KGtnENnZq5fhKj\nviNLfszEW796aO2H18W8cxFIh6BoLBG/J/BDIvH0+TNAHaU6rMbvhg425T0c\nWUzczvyNtVg6zH8oXBw3yyYmm2m9EobRegaF0i/bgWjVnqWMtkuV6ny6NbAi\n7dY0iQqgYSWkoq/DkiGchrz/qN/ERv2qv2wxmPbDVqsYkBHtpt+KItyicehC\n4MGGm4naS1SI7+tQLvA8qcSVXSHl0JuT+XbA4YM8EbN5uhytUAqm9d4XlPbY\ngF7wRZnjaCs0Psmw8LcvzJ+yfWG54oaA6Mhi1Q1Bpt1GmqsoI87apFoFbFou\n9L+krmMjhf9xEab1Fd5MyelyRrQ7vccHtMfEF8giCa9Grm+cCC4ntOVQnI4w\napfSgxF0O5/ez4r79MzS+iRdIZDY1zjNDLpGfKrJ7IC+AkCcnHo8lbGeivgC\nL5Le4Bl7x9rPw+NDPTZ9raHr9e+gQSvy4NBh3b7URD9mvz0HJnt0ygCiq0On\nQaz9NqitjHrD92vDHryNA0U/l3bWqJDd5u/FjBzVirx+TDD+EHP3MVUJg6oa\nRTLE\r\n=UNr3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCt7TxaGC3bNVk4nb/Y31BDHVDVhZ5PpxYQX4luNWxPEAIgLhS0rECZ47OUZUae3jxOdjdlMzIPWV0gpGYx+38P6/0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1544737011631_1544737021514_0.8006491353610479" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1545082503400": { + "name": "puppeteer", + "version": "1.11.0-next.1545082503400", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "615489" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1e66d332b8faf6a15803c0ad36178e56d4dadf7b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1545082503400", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-lVN60oWYocM7Ih0MPqdB+7Nf8+Dpt+f9WP1k7W9+GmWE0K0Z58m8X5HwN5PGdD/PG3glNjPZG8RP3koaw2g6aw==", + "shasum": "6afcbdcd21ee527cfc6081e4d710cdb33b142bae", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1545082503400.tgz", + "fileCount": 57, + "unpackedSize": 665164, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGBaRCRA9TVsSAnZWagAArYoP/0dcfi2+rXh3F3/Cmcw0\n5C0apCW7weR9GcvhcXf+1GUhYwcgNjOHpNg4a4DuwNep7vAF1SW0x74dTsc/\n1HCdmIPtjSJS8TtzjYVrsDxBdlfzjLAVi9ZOc/6Lq3D8sk2hs64pOUHUyt9o\nhH+lnitep0AdnXhfwD36QDisfCE6PVRY2g7BnvGshXFBzZlfhscUV9JdI21b\nbXLjxxTOcCyUtzbpSNJz/grd9HECGZH8cFuTqjuLJATH2NbQoxmx+j3XJfS9\nmv8Id3OhWbwELZ6uZB5UKPz3BvxCRqAdvh1VMJVxsCm2zbyZjWkiUo61nrov\nF7FhfBQc9TctUK/wxGSz/ML5a5v5mzD8Y6xae195d8ZesT2tFU0hT22uN6eK\nSXqtlSUu+KA8ofsq/YjffSoZ39K434O5AO+xPB6SLQNmoywgppFnSHcPOpMS\nIDTzv7YlAP0w2H+HL2dQJUQwHCnr4H0UyiefTJqRUq3u0jcbGtUtNUj/zLxH\n5+GCJfwq/QSvXZPR8NzHJ21lg51UBc0LS0CAuVnSl9N+vQVvxOCowIRz7SmV\n8SJwYKhRpC5uYrLPC63/6r3fQiUPPkjulzkJ9XOl8cslyd3+pzNCMTeFCwft\nzAd5ktnMYgMtKbm6j9SwLWtYk4wu0GeHuIgg1ZxH3oMlMgLtmpimiMKZI1Yh\nGv6l\r\n=tx3x\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDOPZjRW9dQu7DNpHN7+1yPTMgVq2K4nK2ZYTbj31lhYAiB4E+YrUPzVerEJvKqnOf+p1Zj6ebLRb5nzgcRprWD13g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1545082503400_1545082513143_0.3000702977128513" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547047771919": { + "name": "puppeteer", + "version": "1.11.0-next.1547047771919", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "620317" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.1.6" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c86bc0fa9feae8ae7cd7534a39ffd500a885f8e9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547047771919", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-SrkNIDl09ytwIaRldzrzz+25tc2Vldf5MNTKkToCqwk799mq/pkhusW3gXLQCyGWhMzs6vkYuFR64mOi1XdXdg==", + "shasum": "770aaacbe38d71837a04f2e518af8b11dbb449cf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547047771919.tgz", + "fileCount": 57, + "unpackedSize": 665228, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNhNnCRA9TVsSAnZWagAAheEP/jX3kq4+BCppp/16MI4t\nwUUX/z7KaXWKCCljy+Fb1M25fSAbf/FjIvrHIDCcCg+GNUUsO6lJTVRfSDLp\ns1J+zDtYuuepuAVd2s6k5ALpZtUcHRf5rA436Z5r5kcRK2FjsscHNkJR2DHc\nCeYxrfAgzq0riPjxZBdC4eqoXQC02UScHKfOLTPapGfB09N9oUaFIWJ9wjHe\nk02cmqIttVuskWSGJ61ERistsaybI9qk+kbUhS0b4Mq627T2CKcZJXIIx2b2\nG5QsefgfVmSSrRraN+4mOEmbqtj64eYWreFaUutyiYfhhUzm90ZzECZEK8I3\nF/Z8SS707Fv4eyqJCRV+2qJqyzpLuf/4iHwXymK15gy2qH7Dbak+IOh2Wc3g\nkss8e3Ce2RYqHFLbAq0wK9ApTMGIR0db/E70cg8oewGK9/ZSIo5hlQrjjJUk\nvzMmX523oF0thJRMqSdr381CCS2Ns/AmRZUA/TtsnASIVHAZw1J3ZCJQ8rIQ\nUhCOEqc1JCP5kJOvRlBL4g49M99g/+6bRSZMC0quIP6hrE6rLVrn+h4lIOzQ\n6LebFbmsMlMZFHuoBsW7c0CJxJIchWmJwQUKTYkrXNdSsvoaaBWYBRG7L3hA\nWCsm2Bswqe3HJpUakeJ6vLex0POJ8pvKrqapDobk/wMh745iYcyvuKV3bYqK\nanXc\r\n=8vI1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE82PWsFrwo2R6t6JLlknsZnnJKrNwdzklRvEKKuzDwWAiEArsPpKRZJDgBZBqVwGHEOO4DyTokgHemCMlgwe3QbgQo=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547047771919_1547047782278_0.2958998768720069" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547510042445": { + "name": "puppeteer", + "version": "1.11.0-next.1547510042445", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "620317" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "02ae552ac4b07800fe2c8043436c8ff5c39c90ee", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547510042445", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-D3qKuKiTT3e1EBej+j524HbcNauzxh8PCs98cpefdt1OUlyjF04DlAqqFf9LbY6NiRc7WIctElCq7xxdbkgaNw==", + "shasum": "cf10f47c10d4167c785cfa6ced1021e11e9c5d00", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547510042445.tgz", + "fileCount": 57, + "unpackedSize": 672405, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPSElCRA9TVsSAnZWagAA7SMP/0j0Mrad/xZ7WljWrbdY\n+OUZGRs3EanBgAUrutSfl/q9xnUBdENbO99uzjxgznC94EGWNsEOXgEMpR3q\nXPsYQmGAhaeZmTIi5ez7fPDvu0JsgPDNHPFYqs7Itj3vnd89aY0WI1WELQI3\nJkoK55gDZl7D9wLxvyRKTNuGj3+s5N3vs9kgyDGyE5uteiCjJCPrNcX1WZRn\nwp/rc0LHZ0IIAD+MA54UZGdMM/j0NDQz35Zmag33Tow17JfwwStfL6pUtuZz\nlc2kktXHJ3GHrQhc0oxX1b+DA+MOYi/BqXINGAkZSDWkMtWdTCkZybIc2Xc3\nv4f8CLheCRIpzFHvabZ7P7d/5NEG7kdgOXMwPJTgeT+nNTWMXcBhf8V2XTwa\noUamowlcujjXJy66T8Zoo1yf6II531ynhbaYD+YSqtMsSZk7rATKpYbyd40b\nienJoa0SrExoM5I70HSkZR9Jpsuy0nNB36KMMAJw52EzxyKqUXIynBJ5FTBc\nMxvGQPNK6P3gjP0r/bFAXX0ov7I/qqg8OPYvzZCJ4XQPue2Cp7He4JAznwD9\nPnXaxWue5/nR2Dh7fUyh9RCudmye2h/DP+sStfHNorKu/LjJJkoHfujnBCvi\nbYXM8pdpWxuERHT9y9PmaDzjAYptBnZiDzdgPneN66h6/XejZT+aFy5dSIoS\nRmqD\r\n=Nrqt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGUQ2257HlkSNdi2+y4E5eP/GjBT9XQbtxvOIRQ3XYfeAiEA6tmscTLF/MRmkFFNQopzHBLgDcBfqVXAFnui5vHUI1I=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547510042445_1547510052969_0.03123507789638147" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547515612329": { + "name": "puppeteer", + "version": "1.11.0-next.1547515612329", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "620317" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9083c111caf5663ee534ff5e30127027d424974e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547515612329", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-xSK3/n1uVuUzW4twzl4Bt5OgjtbglsOjQwixKrXu4uhUJuvjEnDwLkPZ0zQ493zZB8WdQ3c4sxYnNhKMUg05aw==", + "shasum": "a5c3f27e2aa31ecfe91dbcbbc8430ce7a455b567", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547515612329.tgz", + "fileCount": 57, + "unpackedSize": 672757, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPTbnCRA9TVsSAnZWagAAk3gQAIQrV3EtZeJfVNiBnGrA\nO8Kq8y1+8mBH9MNwx1IWpqUnmtTVv8MKWb+PChYOn1krFHC//mMNfr/MMqQ+\nuQcpn2+9mhoCxy6uKJHm2lPgaCarBAqpYiWiDr+blD6N7NiIj6eqzZ+LUvRN\nQtI2haQRYAavu7O3AFzsIHYe5yAGrz2/H+qjqGxhi2ODHAoHQ9Gfcmp9DSpe\n2ekV8FDTwqkwjqm+DYTjaIJ2tr8hHhaqK2MEJuD6wkug1fYl0zGgCjJk1+k4\nUqW7k5YUpiS/YltypsWWixbaSeSfrBHKlboTSrfK3qKiK104epAaYJ1pr2wH\nxgcTyCMemPhw3BBMFuQBIeWWRSo386XbYCWkgo+IZ5Hxte1Z7pzse8ystpJB\nxow/t+N4O4Y73/rLG5YpXZ8XQ+NOKxSCJz0s2ptFsugpdbUVVv+NYfWT271Q\nmP3/wZ5WwRecYECGyqOMLVZeuuRvSqfLmS0Ck5RtOoUQKcbZk8uFLao9uzB1\nUlfwQpQGv2PrjBeOsX1YECAab5aibiElKZjFDSqQaG2dhTda3Os4spY9s6EG\nzN6rpzH7Q3oXyVTyNOzOLaTeiFfucAz9TLU6SuBo0eRZtYeHB77BxiEZfuWv\nYdi9BVAphFbKm81TRE3Yh/Fah+0CEGaUeyKFxUYax7Akk2pAzRzxe0tY25Xm\nUvNO\r\n=TNXn\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH66Vjj+JYxsqRBaREA2j2Knl51JzS20M7sDT+Z3wHCxAiEAoJECoMqF6Q72LOvKqO9JoJdwzgi/GMJpwclsPP3cDgU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547515612329_1547515622696_0.8794058626350465" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547520320509": { + "name": "puppeteer", + "version": "1.11.0-next.1547520320509", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622472" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "71edfc779bb1315c57b8c903afa14a8784aacfed", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547520320509", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ipklZktPdFiCi1UWo5y5GUH/K8qJ+PQcgMSu169FWPC6Mrv+sEMWu7NP5iMVgs2fu3FoZIG5LV/u7CmFEA45WA==", + "shasum": "0532a7c66914812117d5ecac21ffe98979d767c2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547520320509.tgz", + "fileCount": 57, + "unpackedSize": 672757, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPUlLCRA9TVsSAnZWagAA0soP/0OWYEci45FcUVcOkc3S\nNHtWG7NjJpdiHwSBn0x2LEkuDbFfhkc1rFRQCmFqYb24AyRQTNuaoHIjOo11\n+eOQrZVuL7NMms1DxSFMRODEnOb1jdw8tWZAYYZ99wfOXle5eIYPDhf99Byy\nPUJoaSpd6i7ZFKjGe1NzNgDMw8OwRrU5zeLZ7LandHs94JI9ypR2beF7z6f5\nW+cjsJzEZdH+QDesp6PJ0jviZ3uAx2g+8XZaT+e6zH+DXkhz0movV+Q9K//2\nd30s1leSO8pHSfwVCYXVHNtf0uo2s2RhyriGgHRYusqvoTyjC5porHWfCQA7\nT9p+t2Xrh+77bRSRkJMkRr1+RLHLWSgj0VK2gbB+qffvQf/6cBVyaNiQkNYY\nTqFbqvw75DYPU5shdDA38towDuZmgwwjRDhmr/h1uOqlydYPOifeFdcEQaj0\nTE4eYrMy3miy9ed442otgUf6ahlApQfjpobbAB/g8K+uJCO2eZlQrXAqWK86\n6DSXn4Fi6/EExhgyJqPHrpl9f/lhcSJXBte1OoCtDFNvB9GMUcYviO+Qj/pU\nIdKV799YpLdgxy35ivsDCcCsJCgLlu/bhw1a82KBiCv6YleBcQdDEBM/VaV+\nzMjt179XIgCaj4XK7AZ1UIjjkuMO+CpmCCigla4IFGtRKQ+ZUZSb7uv3Y6eL\nRquK\r\n=AvmF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFSz0AHQV2nbZpPcbO7jzLaDnQ8tLF6Id0WT0XrlF8EgAiBC0Sa0Q7mfn62wl5egmDCsJ76hIZI2j/jpXKz8lX+Fkw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547520320509_1547520330849_0.11684753708262585" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547524807357": { + "name": "puppeteer", + "version": "1.11.0-next.1547524807357", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622472" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4e9e3bc614cd20ff0b601b8530cffcf5315d974b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547524807357", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-xFSjbCWgPvS0P4MtQJjT+RYa5TEUTgoQllpCawmBQh8YwdlEAbS7ZyxlWeUIwmy45NyJn17HUGT54W0vrMM1Vg==", + "shasum": "a360f025fd90c30d88c9b0c8495157f823059508", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547524807357.tgz", + "fileCount": 59, + "unpackedSize": 674875, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPVrRCRA9TVsSAnZWagAApkEP/2VU/un8ild2gFQlZ+9y\ndqXI6cewUj0YesHtRg7jQnJlS4eG64P9spHLNqjehEqAbtObOWFZ0jjLz7Ps\nWqcij4fwCQRTcFrhJMVMBQ9LDLrRpA89oXltDIfcK20gk/DHsJuycivYw5CL\nIO542cnq7TFDDLfmLEoilmrP2J3ekJJsB8ci8syVUMTcsKFW5Vb0109+NKzz\nPGjclM2fGhBF1xSX6Z7jpjQb1Uty3A1PXQjPNTRTXnbYDc3A3OTQDJgz6k5E\n3Lq6n2Jp40jTVJPrb2UG2V0y9C7aNBd40T5J1cu5uQVZwX6CMHzrdWm7yd9h\nT8Q4sOvueS66M0pieQMahqM6dOs12vH6z5UIuZWz+V/haySdef45kXVo7HDC\noosBbzW9yogmLM6tmQwunOGkIAIZhFrx4shotcvF1iNkPi25z0klp2M0GloZ\nYeLSlNHe7BbSch8h+2J6YaOfre32Z+rVMl9RxEx6AlwkJRi6jXZXAlpm5XvM\nkO7/Tuy6QmtazO8ipWx282srOlBslqryCp4scoJNBWGcZc5JBo7OuXCALjfK\nmTuU6KbJAJXysXNzj55kM3+/JmSHF2SvV7N7iX5P2LdVLLow/VTke9xI9Els\n5sw4I8dtQKXwQWaA2DGq7M1Jl2suvVyJGZi+ZGhrKKt8WeoAkx+Tz/UWG545\nzLzU\r\n=H+++\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAfPuVDk/8ixtZzmAF1tZlibqZD0P9u3pvvRkXE81lnoAiEAl1950s7I/yS603HMS+A2QdLXfdl596+3uFAYgIYIOaE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547524807357_1547524816923_0.44602279824461744" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547527073587": { + "name": "puppeteer", + "version": "1.11.0-next.1547527073587", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622472" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e8bb26eb956fad53f59da315374367671c6c8eba", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547527073587", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-w84NxHajEV5z7SvFNCDofvedhsK4JIt+O/OiW3HTI1WI67ptkwFB09/z+43Mey9qn32MbWKVrUeYN1F/4ua00Q==", + "shasum": "c24b12526154e7b5b016d8e28cf2806bb4b9965a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547527073587.tgz", + "fileCount": 63, + "unpackedSize": 678151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPWOtCRA9TVsSAnZWagAAlM0P/0K4RsAoalwF5J0TMf47\nyqTQtnFVaSjjWU3ZoZKdrrG2cNXePfQKdF5C5aC0DC6gslScuCoE/GCUC/eH\nFNl2Yi8bmQu0fv39v4IkY6eG6enrxc9SiDYtaviwNNe+yUaYcSwrnhUPXE4h\nR29KdYLgxy1Z1jAqgahB19nyBTaKUP3GddVdBb51lXfR2kb/isr/ZqylNt6J\nm2kqs//H+14D5qwqRUcx2Z7PK7ZqFS847Fumd9Tmubn3S2U0w+SXzGmZv9h+\nwLLbnECiut4JusK4oUWadr0MtQegmrbD6qrKHRJpnVngjiTQKNbOe4iACLwS\n46wwzz/EIr5VYyBS/aOg7XXpN4Ycu+UTFN33nTEUcPrxnNsnDl2UvWWpAldl\nHIVn6Gveqlw0MEpBCK4b5KCXgzJIT0fXT0Pc8JvP+BMkH+3XmZU7D1DzTfc4\n0gl0NppGpuqiNIVT8JZNNdV6LAMGUUPmQomX0/ACxycA7ohiJwzS5lA/cwMC\n3CRrylN2SrXLBUlNHKzINgursbxAXP0KeY1BebY2f/dGZGvbinwLaPe5n/55\n6Vyz5CrAaUkeBx0B2AnG21voHGLIir9AoXc856HK+nu80g63r44CXDcGHwEE\nySSkXj//Z95y4cRgxYevusd2Kzn2Dxs5kWAkUJ1nClp67J36mN7p9twdO5fX\nuD4E\r\n=zyZK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHUnZi1FgQkjRJYdWdFjwvu0X0A6atSszfgJfdp+qwF2AiEA779FcAcIpQL4eeMELIM/1w/nZI2FQyha3eRMyRUh6RI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547527073587_1547527084517_0.34042845561264" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547581252732": { + "name": "puppeteer", + "version": "1.11.0-next.1547581252732", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622472" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "04fbbd7cf00852fa5b8ecf878f7cb34c9796453d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547581252732", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MIsFTqShmt3uJWvxtvV1omun6tekcMTkEs/p0Gds+mX76EKT6Tpo74/+tTqKwW5hECHgI2UJicigygx9aY/qQw==", + "shasum": "cd3f32e447df51b5eba96a833c9f4092d22749d4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547581252732.tgz", + "fileCount": 63, + "unpackedSize": 678233, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPjdQCRA9TVsSAnZWagAAnAgQAIxAq730UlU8XVuBLH8S\neYIHT4X8AEICSIGjOCM+QnV9ThwDejbBIYtcs4+aGcquEy/UHatVrcM+xUxA\nHyRo7gpdKwsmt3TScheb932jBWWa2yyxQpjte35hJT1R5ymqJ05vcbebkj0N\nvK/ebJwPa/GIISDAvbMdfzHb0oycoMDZ0m+8YI6lhfTrmBc5/3dzSXngKMiw\nUT1PveKWAWJVphpCglVzC4lGT+HHMzAvVjCX/W5t+srT6Y1lN3O5Yr/jtIt2\nR486rvxjbMnApEVYgNPrs6uz9vM2r1B0z7yWAMJ/KtWu7U02vZvkrqDfXXia\nYeuyBlVzLdxx3aKWD9CJKZ64ZmVeJctSChIkLgL0Z2Pl4G8h0NxAn+J9v8/4\nI6O8e8abPLYw/b8s5n24uHeT8/pTe6l7vDw/LPDr33GK16E90Gh/oiKPmpqn\nUf5sFdn0rhDxuOjSLYY7B0AnERBBfV/UHkwerboLNxkxTiyRJqpgKFF7pAT6\nn3/L+1DcK7ff8tZAsdiH/c5JxNl0qhksZ6pIp9f9j2UK2NQjXAM+KnbVSs6/\nAfPwGq3Ue/TAFiQBYVFU1uihB7m1bbyx4QlOHC1TYUIm3wmXDRLbtPN8xaNL\nAZKzYqUQWgm42UrngaVa1rbTwZy/RfKTvJ3WnFDDEWeUguIfbwV9edMvEIlW\n8NR8\r\n=aItG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDtCd5djv/dzkq6URg6PSiPvf8Q2pXFRtbwM+DNGHraswIhAIGLWYc9A8sHvJWZ1wKUyJv8NF3F3SwHLs4fbT4IYGzE" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547581252732_1547581263274_0.26432907629194835" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547583689219": { + "name": "puppeteer", + "version": "1.11.0-next.1547583689219", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622871" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e5741902b88b7ee31ce504c33cc62e405f73850a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547583689219", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-8RC+RzGjScTCZY11X0r0lN1Dzk5a2sOq6wFE7GOTsBGcGUmF08LrcGlRakurOLtRbNY93LBCyceZIUXHF3mwSQ==", + "shasum": "d8551b2514eba019e8aa5890aa4c247426da0e50", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547583689219.tgz", + "fileCount": 63, + "unpackedSize": 678233, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPkDUCRA9TVsSAnZWagAA79sP/0e6BKzRnSKMJBLK4EUA\nSEJkGljcFjiIu3XAqGG+Mfi5WA0ZbfF1ULc1Sry9j1/qV9D5qrpOiEua3GCh\nPAmpCMrD3n9POkc3gbXsZP2yRNYsV4jRltMjXh70KdehVg7L78kB6bGrKSsQ\nW0gC/4aQS9Tw4HTfhoy/ATrmQm2L3hfMZZf97kimODLWH8gp+DNiQ0B6RImL\nTzGBHGQTj1BPaBHYtj3Lgbp3Gwi0PMx5QUOC315YI5chkHti7O94znUMNOaY\nChWsGV/36pCNQm/AaP4QxErgUcRUfgc1Y9vQYvmEY5pQ+zHVrENNje1GEW9l\nS+W/J0gT2vlVdyqoYV7C9pSpce+LNkstvQ23jyuz0lcxkuc+oyGcAzJbAHiH\n8q0b22IWm4AmRNSmVVxYmdfjXSzJP66IVMhdLNcppU4vjZka5/ayx3bWeW5A\nYnPPSP/Vw8+SJHOL5xwkiQESwwFdWabW0EE87iiUDzm2V3V7eNrxWmin2ETW\n41BAa1youDs+Bko4+SJlXB0EU3xU86YDurdj02flDDh7xlYD5i6P5jEr7agz\nmja9M/V6lWbCHpAc6S87JqZdCoAdcBu4KS7dI4wKZGMhvrgnC+E0Osuk13l8\n1q5+GcrCbHb1abts+CP48X4Ge1icQ3CU7zDCAweeK2BgBfcfYSdy5cpC7PnB\nX0S/\r\n=w3K5\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDCXgKxuZavq5GuMZZ2W8Tn8i/Xp/aNNdcIG6rENKSgNAIgHsWumAd8uIikDqMW0VVBBBPV+cE5I8iNo9PHEqLQX5c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547583689219_1547583699523_0.08132943932140146" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547591862863": { + "name": "puppeteer", + "version": "1.11.0-next.1547591862863", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622871" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4e1e2fb7016b4a5b64f9c6fea524621ba21c2817", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547591862863", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-yRL82JUFTCx+ihRaxnHVz7/52bTs9j7cPFkRFKnlGglr/TLKzNFN+7P25ksStnVIfeKt6YOQh4aJWMxBIVJBjQ==", + "shasum": "5310a8192258efc196a37d63f49bc2a9e499a9a0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547591862863.tgz", + "fileCount": 63, + "unpackedSize": 678739, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPmDBCRA9TVsSAnZWagAAi/sQAI10JQWhFFiAD6euA2Qh\nVEyNOGXpRr54CLN+LkSuCB5/Dm+X4qqljfwhjvt4m/+WisXv/yIJf+/BktwH\nFCafhxxD6KCaK6qO53pXsn623Sar9g9bMxSUH79Kj3CoNUDFh+Ro7phKRIto\n0Nq+Up0zv3zuloKfolJdb6p1sTVHleLzk6uWuhWPUMFlHbiSTJxIJSC9p/P4\nVCUMzmCh91jcHAKpXeB0J+/Lg3ynigpV3LYy9NRn5G2jzbsj/AuWTBcYXnv8\nPqBNABB34Hb81FSzVKIUU82DhaalVqz/9oT45FhuMYIdaElkLjib+58imsup\n2xK5dhD0Mw+at5tgTa/Pe3jJy5u434b2VxApk2EAHVg8YYHz2zHY+Cr4SOAG\n5csQRza92dPzmjgkAqiX3+OL2du1aaVXVHzF8FXPxTJ5s2QiS+stcZcdg+4z\nnzh9JpYR5FVMrjQHBPY0LKdVUp+06c8UepzgG62KbCJOGHZdA4Wf8KVpzBiE\nYnG+O0hCmHMUKmFuIp07Jp2zzv4S0jNUfStyiZINVati6bS8EjoyDBaYfDFb\nlUUNjtVJIJuuoOS3KVbGsTdUtmKOvMGHj3dbCHcwsZ6/yAV9NHpVggmneeBt\nCmUvVSnbNYvjkY1VU7t8WZGi6MxLdSlEQYoRf71t6as75FBB80i+luSnEZCa\nhZj7\r\n=Y5Pz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDjX4rSmVOxyxz+ZN3FI1VVEsgbCN4h9skI8lZcfib4lwIhAI797epOjnLxWfPBygmv60auTZY1PidqXTz/eujP0ma0" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547591862863_1547591873052_0.8544093862206559" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547592776490": { + "name": "puppeteer", + "version": "1.11.0-next.1547592776490", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622871" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "91c4501cc66d3e00156242a196d5f9f925609782", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547592776490", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-41xJN7nJVEpHt+yPr23I9o6GG+tUuxkV8Ql7sev7Qfvk/oQl1K+gr6XPUlYvPNycvzqf/uDUfz2xssvMFoSt7A==", + "shasum": "c9a2dc4e99c48ef87c81440a873495c8838eecbb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547592776490.tgz", + "fileCount": 63, + "unpackedSize": 678739, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPmRTCRA9TVsSAnZWagAAkR4P+QDqwqT8mHCL5RJwZH6e\nrbfsdi0vTkkZ6o3wraGO5lbgvWy39+WXA3LrOqO/a8S2qERGvYdNNd1lFaC3\nXqaruHqiY9qGtziIBh7r5HeR7cW9DSyOaINIH3Y0HJamT14Bv8kzqS52jNSV\n28sxdUayMP7HtBmZuaD5AhkMCKN1FoyYLchZTeCO49XQiV8P9ok8dYM7WdZF\nUx+W7yIOImEtNh5fEIMwcOyvQfrjA/04mQvsq7ng5hlD+Ydngm30N+0YN/R+\n1fGoua9HITKEft4hwYHoR2Kva3BRTNaaUn+NAF8FY9yZkeDGHZr90MMOAvWK\nJMZDYOYUbGNi4H1dowfsu4aef++aLgQhtIeeeVaxPy4IXGritHlmuDlbzwC/\nNqGivfbMG009WBoVSvoMalsrNZdBEIZNg3+jT6zzuobwccZ9sMHJMBx2vFVQ\nxKsvPqGHn/NbOqkmsTEDm5qnsTdBHkqkyAcfyV2eUIGsZgezikPhanyvxWc5\n5wHhTnVoQTuYqMcYrS1tqu+TD3cVPJYs9lEKiGcxG+3VNdEDJLW/0yPHM3iE\nlhODjcPI6j+V3MBmq551OcJrfjynhDlbC9Ymll+9oMx0yYGfZ1o55Jc0Lj2G\nScmfTI46WqoD6s1nNlCew5pvhxpqJhCd+uOZ4m88Sn260XNOtH1k7TO1bwjS\nHOpq\r\n=jB1g\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD63gzfqqwRxI2P1fDLy11udhYX6/HJQ4SrOCDddh7lJQIgdnrsutm4Xs3XsbQ+I5cFoFk4+PC2vHm+sDsdZPoZvsk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547592776490_1547592786879_0.10117074457561581" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547599456407": { + "name": "puppeteer", + "version": "1.11.0-next.1547599456407", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622871" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "bea26a7f58c3c46912fbd6555fa8dcce27fd9274", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547599456407", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MPL26IgES9ZLbotVsfU4xWk0avi0fNaO3Lg/G6pIvrZYRE7GO4gRNjgdXoSvHE8iMcZ+T52fWsTEWBfr8sJ1oA==", + "shasum": "a84525fb55c6b5eb38cec4911c8d31c054215211", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547599456407.tgz", + "fileCount": 63, + "unpackedSize": 678739, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPn5rCRA9TVsSAnZWagAApvkP/iLYG3vs0kBuu8unBVvR\n5XhuaLys8gnrLE5/+EtQAGVF73LuWu5mes8xNsQKyMBj4tvfAU7FqEtJrgk3\nWXtZm0uCDqNog1lh/y/R+iuGn6xzUZT2g/T5MLYJDtiZA3zN4fn9n+ItvBk3\nXlg7wtmfMH4RsKlnvlz96vQ1G613UvwUJYykCWeLKh4MxR10eSj0QwrM29E5\nck2CqkWsXvrjl94Jsg/rMMZpTuaBrVdo9N6o8vwuYGiX/v+FXPTe2C0weJLX\n9AS/128MYs3ie8q8Z7qjrfQ/h8U7w0V1pgBSXCxIkGdWQWg8lkTOmN1MpcCD\nCf93vyB9JZ/0cjaw2ayaE4aGtZ0UUXrOkHdwjFnDhJDOGCTJIcpQqJwgPyp+\nXVsVXEEJ73Whb0xI/ZKJIvyHX5f9vf/5XzGpvz7WV8ia3cey8EtnjnU7SXL5\nam8Eaw6eZDkxsu512ejVVuG8X4kzny8p/tSm4ymTOvcXskh7ypwwLn9sPck/\nNIQBROnyeTXKvsKsnpitFIf3GU3ZJyHOBXwQ0CA6kpdk5NrK/pWKwo8Iah6g\nUmdjRsK0eZOilHg4AQxIoPgvzEMBo0+x5ouhQn0VkPzVKMm8z98pBI3LmKt8\n6hoL+LAMSVCYJL36+vDouCsO1iAnC0B7VgRJc8uT8V/5adgOWVBCs637GZJ8\nUrrh\r\n=vk2N\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGs9YAqVmCk0bz5Bkvd9ImCv3HZrxsVpINdgm392gmRoAiA8jaQ0V0hhoz3GMqdW8/PFtl3FQOhC/3csWra45QmzrQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547599456407_1547599467149_0.20524866585362433" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547601875361": { + "name": "puppeteer", + "version": "1.11.0-next.1547601875361", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "622871" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4ac00caf9db30b3883e0ed3e5da93160872c4648", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547601875361", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-YXLFpKIKWwqdLnknzSgLus/s2+Scfi/WVnd7ESKoKbIY7NNlD+FCvBxG/JfA0kKcxPMThlYDMj2HXZtP38jw6A==", + "shasum": "83d1b50798adf89291183d1efa2ab6436183a11d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547601875361.tgz", + "fileCount": 65, + "unpackedSize": 700973, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPofdCRA9TVsSAnZWagAA3HIP/2GmDUp5PEekK02r904L\nm7sBJn6HFjgy8o00jFMKtJdaZxSW/ecE8LjuRtzbJlL90gBotfwvJZaB12xP\n1Gpab0YqtP6oPFSNgVE4/CwYOoGzZwon1ys1VKNdWyaiHSdA2y++7wY3AMHy\nSPnwrwnoK9DlJzrHl3HtvBeomEczkEKmLZSEH4WoXIHFbIXIkoKuWevvapHI\nij2OQ3jSdbd9UFU73bO4lUbrMwfw5K/W+rkeRz2MtDbwHhioXvpJDqucPcgN\nfdze3i/DtkqeajtDRo2qlwD1LX5B/ubnciI4/HCdY1qN+UkULfqEKr3FxFDd\nWITz4RF886cZYxuOtATtjG3D3nTxYfawOYpfLmQP55jJf/hWNXD2QJpQQ8eh\nLs/Op1g4s8cjzWhPMYLqfX6jmEMQSCpJ+vvQE8gYUiwDfTQl/FhoYxrFcdAS\nbEuWPXD47Ryow2cod+/XGE1cGLJ5YfeVU645PYNo7ETt5JokcILFXYIZWZeI\nC25YCQ7kdzOyH0YYIdYLFZJpF4a5UaRoySqoNoMbEem18bfylL8xt3//wFGx\nwXRn0xsXcP9ksailzMNN630UUL1lIMRB9LpCmWIhDsITe3fjh/mn170gP/6k\neDqXEFOlYKylFzqcthPuRs75koNpmB/0Ar+Gbuhawnf2YXYotlSApSrtYByB\nfveG\r\n=m7IU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIADcje0DF3//sd46nQ9d6tprmxfySCoOQeVu/TP3lgtUAiAMQYCmtCw1y0pNB6XWhqkjNELT7CzBNTzPh4B5mOShPQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547601875361_1547601885419_0.9739441465628" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547624594064": { + "name": "puppeteer", + "version": "1.11.0-next.1547624594064", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "623082" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f8615c84b515b1a30bf2ce93c0a0f00c7406d621", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547624594064", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-aQdJLwUJkI5mkF0VBWxEdy2fy9hYp837oslzP2Wu5y5Bus/RWKWA6ls9HMs/7hLAh++EX4hOlzikFQgX9hnZxw==", + "shasum": "7aac0eea070b93453f0f0976a59d54bbeebfcb7d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547624594064.tgz", + "fileCount": 65, + "unpackedSize": 700973, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPuCcCRA9TVsSAnZWagAA/XkQAIl/dqFlbYbSVkArSJx3\nwOw55B5PANsrrdlpwJaDg17VJUPVTUm7psDPPx/LE65Nno/gUQ/zFhc0XCGv\nGHfyNVVW4IyRyoERDrduD6C8GGsD7Fpo5IqmzWq6xnzOyhkO4eH8A7UhzhOG\nCmlmGONBmnJ7FXEu3iDQcua/H+0ooB3A85xVJpcPPSEt9eTOANtgpc+DKVSb\ntdW3+0XSzFUuByHmzm95GefmjW+s/wlUq8oAKDUiIbddkQAV2L2MmSgsSKXn\noJPaDzHfoX0gz7zTfrRVAALCDTNVmjLCyWWbA1XzDNqWHlN6rLmvio28HGKy\nOaf2UUrmJfEUIfi53L9uR7kxYi7KEVAML6lIpOS1QLg7TKowQXyjNR489hfV\n0V+2yi/UDMKU7AW9akLpYETkP0albUlBoA1m1yV8hevK+L8t6mo+4+tuHQxN\nEo6GE4HhI0RccUyHdni5I5ES5aYdnuds94bspFgd3k2PGH7UfomFgen7g6oC\nrL0Gv4qAwNgrT9q8uBlBTmtNdMSA+KO2XA2VXEU8c+Z7Ckj5J7JedAGky3Mr\nqIVHKppf4cKDqliADa9mSDhICselxDjQymaCzcbjb4e9lAx19WOiF3Mbf/Re\nARYKQe9GKsW+9kjQNfczMX4rnLUiWsWBHNAVI7d7E/13Nd85Cs/m1vT3ghKE\nhsC1\r\n=Px+G\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDZ2NSwiRzkMZ1V3zBYwzfgE/vhZWvW4BTo50sOiYckvQIhAIH4wBbfgxeAlhsim7Jb92y/WJWDFkWKcPjLRCGJfVDV" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547624594064_1547624604207_0.37905399097936177" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547835637594": { + "name": "puppeteer", + "version": "1.11.0-next.1547835637594", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "623082" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a9ad1c386b72a693be774dfb07402485e1138d43", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547835637594", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-hP6gPV/E4LeVy+h0m9M6fhB+R8Wr5JAoDaWyq8dkJNPcUet0d28D7xMn/GrQ/8uG5JF45Iqb7y56bSZ4RDFJyg==", + "shasum": "52ad2b2d8453541af189a7c74127e600ba71a6d0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547835637594.tgz", + "fileCount": 65, + "unpackedSize": 700973, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQhkACRA9TVsSAnZWagAARK8QAJikcXAScaCtrobikrp0\nNN7qPremPcmWSh/5BLuHq97P87EsNRQHLKzscoOFTx6cvMUPi0PBz+UgVjeY\nLKudpkSSzvt8mF87QFPmtfpAdvleqC08hHRETBcf3aDUFDKAyNTfhQ+Nw/xn\nUfJCpjXsz5uaiQ+qglwFVwFp+WLGJVWK9HdJ8TsyCMJBfVV/qyLiJTPKyX2T\nSbidhmfyaI6H7n4/4EYGAmNUrB2OigQIrQrk6rXaXo/fYG6Rmbdcz3KYW7Ns\nstfaC866cxmb4ybG96sWZkTVZLtE7r0wGz93I74RzcXj6IFNF9RvG4dEYfJK\n2GUj2tScFh9zRynFXSehW7UBekd8Ft8r3ypb/OxCZ9FWw8DLkSLnWK3dsYfn\nAc23g0jIDMuol1V80VPI2/5p3+Wldf9WdUAW4TWILN//kdcNKzkSaiK8oFwq\nf2sSHQPbaoX9AOJYSTct9kz3jzZJkAfWL7mSEFiiE6VAT+XfHLq76uzqu+fJ\nNZFV/LnsirjJi4bdnxSYnRoyD6R9v0iwGx/5l6/0Fs8nXk3l3pOpuKW7DlJ8\nIV+EpoW3PmQ8tgmS5sA1V4YSi3Wy+giSfMnSlb9vu+LINNUIhYDm+wZxbqbb\n6P3/rwU6TVMRmW0A5EsIFZ0YerumlSs1fvyIYJHoCYdix3G9c8g3QpPhzDK/\n4w8q\r\n=sVK5\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD9FGt0UnV6dfNRK5t8flwT1MxOiZIOiyPh6Ddd6Lw7HgIgKiOu2xN+gOde90E7WIIp2CS2RCv7nr/dJ7/1vl5MLS4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547835637594_1547835648366_0.5587313973689501" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547861804321": { + "name": "puppeteer", + "version": "1.11.0-next.1547861804321", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "623082" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "842610256c1c7fe77cbf7e31bb4ef98130d376dd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547861804321", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-L5W4xSpyckPew/yJVvOnky1aqwwbPgH54OwZir+W6k+Ynt2HgQOKXWHenv1kiKiNvAf8XmoPtpTHQNz8I2yozw==", + "shasum": "d9c7147ec320f7dfdb7e7af5e144d54569063267", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547861804321.tgz", + "fileCount": 65, + "unpackedSize": 700973, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQn84CRA9TVsSAnZWagAAb0IP/A9l763rjuuHxwbpsp2O\n69pZO3UY86MbTTjC/XKHkoBDbzml6+8yS/0U08/NGuNEESd058+mV6Zq5N08\nYICCO/9kTWkXby+eW8pZ5a+foteFHvyTh1b4t1STE/zg+8nWv4caQg+lqUiw\nHtU/jyNrpF9Z7x5LbZJlfQ0qAmDZnKGhZxgZzlv4eaEykUD/Dhs+c6QqhXqk\nUMHaEggZ41G2QHWmoohnQv+N02C/llSc87DgghlFQqG86g8h0LJNls6LohLz\nnBv/P2w9ldAo+BMq/623KPiELqaT3r57SAXJAdnbeQIQDaRT4Q9XJDJUif0R\nBkfZmmIrzZVAH1fTXOFRpdEBgDuGh1+loV0gae6ZdSHpiW1r1+51Nzb+Y4Aq\njS0KSoVZh2Qc2Y8s2Eure6VrNkaxJy6whse8ixVtdUUHCEEH0QOjpyfj2hmJ\nUMC58cASw7kpntoM5wI1uDONBiBJdu/mRVhJEhiSEhInX3sSD+k19zaplYmu\nyg3Ng1pBBLVLyDBjkE+fCL6wsUpE5RJ2yrSpDiAhdjNnrJ0ivMquqfHX4od/\nuFlWM1nsnVhraAisCaBJJRRhIds44qzhRfKRRXcBlYlGfPJSfqJ51XLb15WR\n/aJbpgT3Maaix74YXpmGhlcY3Gau+nFzQsEbgrwNH8W+jXQpAQT3SqTttl/Z\nRRyD\r\n=yN8b\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDn7+RN08htEN7dRbyNZxLb4u+bESTVnWhxE8sHk8bbHQIgNVbjRLAXvPnJuL4mBB2iHOzfgvRRhfZy0hniLtkZyiM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547861804321_1547861815320_0.39075437352144626" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547925461836": { + "name": "puppeteer", + "version": "1.11.0-next.1547925461836", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "623082" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c48b5749f520d75239bb3ee54aa0e300a6f6d866", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547925461836", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-VGN1to7yd6ct1pqHZVQ6nBI6r3Xq2NG00YnTywy8PXlqY/IyOn7+l9MFm4CUCh8R8YDoO9fwKONxxzjSQ6sUsA==", + "shasum": "7f910e020894c6dc9fc67db2e4ab889f32101f11", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547925461836.tgz", + "fileCount": 65, + "unpackedSize": 700973, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQ3fgCRA9TVsSAnZWagAA04YP/ighXpYwI8DYDaGkwDcc\nWXxHChXNZCGycj1gTBWLOiVb+Z8hWZ5ieY2WVXzMF8yuUJ4lltACWkUvtClm\nNxtZ7GfFbXmzYr+qeS3t2hXxuhh65ZfIeB5XfApKmskYE+vhXbyqsTjfCYpV\n3FFlWRdGK+jp9mfpRoE8QT2LIRcfkU+ooQc1+T0EaJmQiH8JaxHc4wNSmIhh\nAvbsjfM1U02xnoebA34rMo5BXKe40VlfG4UCrrNqhhta2YSVcxsrlp77jYh3\n1UMSUZQg55oZqC8tOZbGbPe48hj+aeNs9Cgpltj1tqu5UGh2DzddvcAr2vR4\nZuXzkZnnqFXZXThVFLrTcPsheprHdaG+xZRfNKJ02aFj/p+tuy9uhC2dA3EO\nTIk4PldQMhRvtjkYkw9vBzCyqJaldHs5dAZW2wSd93BCPPh7ChMJhzqtawDs\n6sKFosy22dTlkNqcRQgcyeysbCbi6ULK9EZgEjquq5jcSk/4ozmGLVpJakeS\nb5XS79jfTE8aOFv8vFVUJJk6KwwGgtPS5EfVPBvpm2LguJY+rtSs/Cs8lkqf\nsOqW1rovFev9QEtr7g9IM+hhamxopy1oaySprVlGCb+WG/SL7qpKYSvgW/8K\nNxEeQ/uVZzQuVBG+SRu61NlibHQW1hboAqLQfedoIL5XODNLWredg/zg5pD4\npLPh\r\n=u74P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDJDj+WglQpxFFCqzbLPRWzrpfh5O77gsjFiensQCHEGAIhAMH1XAWEt2laPzaAgZNyLEB8AspbrJaqC1/FKiC8AglG" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547925461836_1547925472076_0.7532606074041113" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1547960730125": { + "name": "puppeteer", + "version": "1.11.0-next.1547960730125", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "623082" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9fd4b67d0c6597f32a5907f241f081add0d492d3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1547960730125", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-h/JZ1ec/kGmKuCSNuiwA+xiAX5ECJQXAHlxwrtuJKDtg0CkylkaQ3RSKDnxoWkhtHlMehSJB24bOE7lBD0eTfA==", + "shasum": "d8e834181bd3830e05ce46c09686938206bbf364", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547960730125.tgz", + "fileCount": 65, + "unpackedSize": 701005, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRAGlCRA9TVsSAnZWagAAWyQQAJrbhrozZwuVWhrH6Fs3\nAH/HY0qcVUupz+MDR7YW7TM0wJD1IH30QXLC4IBA8DlegAy/j4mSJGW45pVz\nbe/usnQvtcO1+c0WVsYHoJCl2Wh8unh3AiiLYf2A8uHEG8ZY+0UaAIBM+xAy\nAlRAQDcml8062rOBFDSjiTVi5b7O8//R3Y9139sqb9Ohg+/VoRwBiF753dkl\nslPVN3GqxfuOMHDKh3Qq86CgR+j4bleO159yT8AYzxg7hYLXZjinxABrRBID\nT5bcdXUeRosAEz9Vp7nKHsbS85g6Q93OYkwoBAjJXTVzRZSKf6kQWo60Oxhb\nCafzWVgpTPXMQ3aLTHuONPbOEfEr5V7zbWHPTjOQoOI/aizekMaC9yapcKw1\ndTmjccRu3lRQzXxTjAcOoih+x6/92TbF6GJhml02bECrAdCuju6K9evt2DuU\nKc40c2tLG/OAyWBmt2WtMzUoV9PDZIGh5jyAmmzi8m27FG8DY8SY/1hgnVCc\n+6QmOxBHdiflnaVf5rj6VfNejyGVjZo3zE0vQDC2P1UBgZUWUhFQ0rmPIV88\noYyon1/8DhKOIRVw11D/3N5nLlOlihXVluZAG5tpV0vWm2S7Kd5JKXB4cBK2\nzcdXRntp7B9tOu+Nc6/eNpEYYdnUnQ6jRuDDLSsC7y9Rq+SMKQkphvkTNyey\n+dXy\r\n=OzKD\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIArxii32lG3MPgDF+y8ko08Wsvk9ykN9AaR1ZPWuEvFgAiEAi9KymQU5S/Ez8SUpL3O7R4Eoq9rrfYqpK/v+Jgl5+iM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1547960730125_1547960740476_0.7201008312906709" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548181462679": { + "name": "puppeteer", + "version": "1.11.0-next.1548181462679", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "623082" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9fb89e1bbc143f5e34f5ff25dae92077bc198fce", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548181462679", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+U1B7euCzDcJMtv8+GobVhF9KLQ+C54iSMBFsTdNm0GSKElbxv/pJWE4oAn1c570phZjxtnLFgYzGNqTZObexQ==", + "shasum": "f27a204adf11c0f6aeb92d8136643ef1449cdb1f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548181462679.tgz", + "fileCount": 65, + "unpackedSize": 701005, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR1/hCRA9TVsSAnZWagAABhwP/2E7/BDhdnyuWPVW6w5W\nxUYRB7zZa0+ar2vUFN2BCGcQpSKSyuwiUPKdeWR6U0EWQtkzmnyKbaiqVS6M\nb5jGjA5VLub9Rv2HRte3PPerPpmfyL4nCi3PLjWCQHXD6J4APJ/jCuE8EWLq\nCAVlgDwZyiVZTL0r4t15px9oR4B+oaZmDOFjtrZS5LE2Y0Y5z23Y9N6m/fAp\nXTDz6VckfquabE0qaPKJKAIslkAlywXgzUgwvsXlL1viYF08HpyBm5JeUP17\nErTVLHOIbK5mBc6GxeBQzZWBdFAehI+SDGiCUjCXr+y3+8KTCrdhg/QBw2/a\nJu6WkecXo2tkVo1Rvtx9p2g47agpfXHvKkzRPENV+l3JWYZzZ2HewvaMofLu\nt/BBVXtgNpFZYwfapkARtl1zAXMw1pyF9/lgmMj8l+/o7sirDLbIuRS4Yw5Q\n0deDyI6hhV03hr4eRAL45lMVwKLfw5cCfDrBzmQme7jAocPaWYbFwHlBaG5N\nJh/4h9zPMo7shlmhcW9H2S1oh4Fy/XAWEhV+TYDjxR75ZCuG35FwitTXNEeB\nvEBdle8qppeB+3fOp2V3zJDfFdGocIdz58Ta7SNZ7hstIusjrujKmz+ewsRH\nU/YlqaiKTYGShPXC/4zRNuOiLm/CGdpZ+hLezwwWhB9fV8ATtrmlN6pkiux6\nnwz4\r\n=Lv1R\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHEDbyglFu3sb/zHb2T0k+TONKtVv0O6yNMlR+bZKWE4AiAj02AML/EfSB1udM4eZ285bLnx/OMPyuE187BJ8wjxxw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548181462679_1548181473220_0.9090696237556573" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548183570779": { + "name": "puppeteer", + "version": "1.11.0-next.1548183570779", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c09835fd70e144cb705eb5ae8b169e49725532bd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548183570779", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/wMOkzGhEygw3M5hMqJ69AQMZlG5BKIrmG8isvSduVe+mxu/xxUirXaTLHPNhasMsfX4fiCY7v95cIfpiR9z+Q==", + "shasum": "34769ef1e6f6495866a08448c71c0b4a6c6ff4cb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548183570779.tgz", + "fileCount": 65, + "unpackedSize": 701005, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR2gdCRA9TVsSAnZWagAABXcP/0fAm5hlueFQW8eYzWuj\nzTA/N6QcnzAQGmlIJrmoU74iK8mLX/TQNvq51coX4SbOGNJopLt817LHZ0Vn\nxawSqDvLfLkP72Tmow6wSgZYNpbHjl4sZjgn4pGpdXlnhhoMsySJ8KLFfVVi\nxDKfyz1h1gXxdzG048t4LhK5VcNTXXK56+BAHYOjD9wRuyDyHBurfWAwjATv\ngeqey/qoAxkgKosVBSb76p6uyeYviYxKnui7NGvb87HnwZAP0NYv7uCgtDQi\n1+Bwibimm6fsRv/PYTgqBv0rcfCPG+cWerI9SNySjP/WPm96EhJnJUizLVSo\nzfHqQIkO0aRaV5pxqmVg0UNZKMSTxpaJ2WIIA3Vt/jEHCycHv2YDfdJ0E4h4\nWQpY6ryOkN25TjY5J2Q3rkP2wPwFlOd+dSVDUP29o9z5PmixGC/gbZICLAE5\nyv/QGoKaNoiEStoWMViLi/qaQxoX0jlqNg2TVRgnmavERbALCKIcbf9hnn1v\nASrfD1WdpH85AcuiZ1BSk2yrG1yOTsxQRYYyYoAC9wLVEGnVpAjtYHZ7eK0K\nesA1NysHiaUceM+ztzgaN48FKGQrwBQfFmi8stDqQ3e6ZXNEYJUZW4HBRVWA\nmssGLnPoFyLY9FiivyPUudx20GmaAaWaDzyRexrPcwtZVUGx8KhNlGC0FRY3\nidP4\r\n=sCtK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH25ebBHPJRpveazU8vW1v50xAdjRo6NNnGlNHYG0tbDAiEA30vCD6KDUuHGmpk4RdYC2S/6ctp394OcAg5XxsAfDMw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548183570779_1548183581097_0.06320085938431119" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548197935129": { + "name": "puppeteer", + "version": "1.11.0-next.1548197935129", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "678b8e85ad3c5ff87fb4d331d1d1d198809f793b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548197935129", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-aLtt8Rg8Ouuh4PDGAF7PoQ04we7zM+Ptp6//z+WP6eViFEsF2vpvG0dqelDP5K+Z+ak0uBz62jaRvhLEVRjkpQ==", + "shasum": "69e655f0d952ccd4eaa370da43ae942b2492719d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548197935129.tgz", + "fileCount": 65, + "unpackedSize": 703473, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR6A6CRA9TVsSAnZWagAAmTkP/2Iv2tmkyQoVNJpKW47D\neVAu66/max2M0sDXUrqluaQNToVKAzZuDfp3jb98CKSyHRDQgfQ/DErIWpp0\nTjXX8dRIXThat8D8Y8wkqTb9zsQXyfEOsYQC1IFlodk4/pl4qAoYGQ3TjEcj\noTJjNIv7LXbfshrRYiTol/8KyQwyAC2ipEFasqBhGjHPj8L1tUMeQkA0wPqT\n6OPNdvYQQ0bSAYy8yf3onnZGBiR2cpBhPpJzjKO4pgOAeOuOyHpUGdCJnDJf\n/M2bJJJLzePGtWnc5iyF990md5KbDy2qWGTHQ96VzSKdOVUPEe9u0029uH1R\nk8VMCw2MvBT3pulm38vkXNFi5p7IMCXCU9/V+9T4b4I2sBJeete2kU+CRy0q\neQBIZ8K0aV143zcMI7aD3vVjTuYRK2TFc6syrZW0lLBYHlEAMo7hvlxMiNdy\nCfvFIkrVbLmxHP088htCMIABJlqMtxSNfzMdJcCS3FhSyu74SK1C5cfsxAx0\nEhk8ksVuRXy2Y8znkFHeGex9FRXYpI008b9vTm0nNMB6NuCefJdfItNqEIwP\ng77TQn4xx16DAKQdkY6faIJUINcruGh2CO5mED14IjEhaNVaIlqGoPCRgWjN\ndc5gfRGLLG6o+VhJ+pmXmjDiz+k2Ixlv9LgDg/u2tBtWogYExf0U3Mj3oehz\ne5VS\r\n=0Fja\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBRBYvK8z22jocphu5xUbkrvKkDhnYspdNjrjZEVrVP8AiBfoLiT8d9U7Pb7o4vRw9a71O9ln1skKG000lE7ABK07Q==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548197935129_1548197945519_0.7871478529000835" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548198789601": { + "name": "puppeteer", + "version": "1.11.0-next.1548198789601", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "89a5c396bf71fdf6d2dccc935190e353d6eb671f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548198789601", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-8kybBE/VWUft0ePllIi2debBxkpskCsVr9ylCkKLqJl+67pHW+Y9QFaQhgGyJVCcnRUV16ELYHrx5I3MFaKA+g==", + "shasum": "4b6ce2854a0b7f10e4759cd7b6810497ace9e428", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548198789601.tgz", + "fileCount": 65, + "unpackedSize": 701247, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR6OPCRA9TVsSAnZWagAAzaQP/2dIh2yPHX9Usrwpfrh8\n9lwRaife+TpZkCAl2lXiINXfweUwxG4AWRqCwHG1bv1Q6wmYyfocTrHsZbUF\nGSHNOpLfgxbjrGdsmJgARlQhZg+m0D5Zh8N3xcmudHmTpY7NnLR3cw58ryEq\n3a1+zCONzGiNZhVp9AA3uNFhKxNPq/U4de/c6hCNxeHOh5dahLIYxWGhBrCE\nJkGtD8/GOXkcC47xsLXo4RTModd2Cb3U7jgxBMzX+r2HVQWVsHAmz4s5r955\nI2OvnG+Gni0ka4+OC40ZHUH0Da9YraZvhuXU48b+3KykewUb8rQPPCUZs3qj\nKF1MZ1yapH39p0zEtQ6Rxp5iqBhMLCSvmjsB7zYdVm4hoPDF0PyQV4oGRVW1\nqT0SyhQYDLRO5xG6UaSc52Zx4qzfBLJ/LFkrhxUKPQiyRdcitfumbe0HHlFW\nPpcfaWViJ3VYf1RpxDcN0ktoNDmgSYrjiKjPfVSohi2+CYVL8XwoSiVviOr3\nsujO0cCR5bniseoIQX84DvfSdl2nofjOIfh7qd2hoHPZwqNGNe7Jce0Sl80a\n242uRGGbixe3jc4rvHO2lZPpKtO/SExJ2erKWmzjnuNywgyBy8IrY6q8lmUX\nRjQIPeWLpvLNzX+JPcav80s8869LYreQSWNagtMnRMFu6vrNbxodpVrayNzS\ny5tv\r\n=Aa4r\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFAF7AsH+eOfAInM/cDFos+4XRKvG7A+XK1b2VmTAwaZAiA2IWL9u/Afq+RyvQxjJvOGZpWKyWmjWp97qwFsu1/w+A==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548198789601_1548198799264_0.35463883637549154" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548217700084": { + "name": "puppeteer", + "version": "1.11.0-next.1548217700084", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7585e6db9ebf134a89e17582a1a495df86fe2952", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548217700084", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-SMPu5Ad8PVoexMNbHB61ofw7ebipSAqqR8KhYI85JSNeBHTYLimXFyDUkNUpXBCTNz3N39sjA0CuftnsV0e3Xg==", + "shasum": "266b3bb3cd06221225608ee31854e11774ee2f0f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548217700084.tgz", + "fileCount": 65, + "unpackedSize": 701317, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR+1vCRA9TVsSAnZWagAAB/gP/0/hY5fi6FsZfb4cPsI+\n+aQM9qbJYdhoW5JdsKt04uhG7SbE5SpkQtuxzZZnmxi9jA2ETWRFinm4QiaM\nOGZN9Cd4hBFr5x/sc+8UqrM+wcxhigZaQv1vX5jkTn0yCTiXOOTOTQZpyR+g\ncEnIonR3S8m04K1q1M4yEUrLOl7Yx1wLGoD7wUgE2NOEGBKRG89V/x5Ms0mG\nXjVLVM5pzL0hrTl/wnUxi2mhfdFLw2n+6ZyFmHRFnXKpCtF+n9am8kX2QGTM\n/RCNQ18f7SIwfTnOMzrndagEvdfDuZM2E4Vbs/vJOl01FG+dgTZYqcXlVhuz\nPIwvxjl3L84jFJQBkRvP1uCPoT5NTW7iAhYG+lqsG92yqND4SINlImDKtZQH\ng6xAb+FNcr3SFwQqAiXQJy85K2jc3an5Tp4OrEPRHidzgz/pSMK6EuF4FJaE\nVfu13sfl1ZG+Ohf0uCVLTpSP7j2wEu4i1ky1D1FFmb7a8LhHyIm9x6qtUrvN\nDycravpNX0/z64421ALcIYN87eElJvw/T8evUbouGUroOOP7RZhq6DfZnhbd\nwUG1Y/WgARA9iLS5v0/GeRP4FDBrBPfQMhFo+CK9Z3/L+1DU1PCuiTRU1OpS\n7oYYdGaGszgJlxqtGH1wrtSewh9CeDRfID8BA8qRoT7jsxZR2ePSiD6I/cXo\nVdEA\r\n=K4dl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCK/1gxN816WuAggz7t40V/N/K1MhFHVuqjt8oPISOgKwIgQoYOCcXLhCJ624mmh4h/63u6dD/ZeAxtANrxE78Mfto=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548217700084_1548217710795_0.005156366848972249" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548310151247": { + "name": "puppeteer", + "version": "1.11.0-next.1548310151247", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1a7995558f101a10cd847dd070b2719a8ea7f27c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548310151247", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-m/jtYJCqLAenI6lZA1CLHUDS+6oB+7L1E6ZS6uQyGplc/v2JP6mzux8RTpBtRsYzCruu9JPNH71uGvNYE2nQ7Q==", + "shasum": "288eb91ea873bc283c7012b3a1705a1b1fa79fec", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548310151247.tgz", + "fileCount": 65, + "unpackedSize": 701317, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSVaSCRA9TVsSAnZWagAAHXEP/RK3bjqxNC8fYh8nAvqd\nO38ImuyBRkjBCB7pZFhxxaMN2CsjsrxpLWAQj1Fk1ALbYtUzYsvBCZ1lO2v1\npBcsApTrb9Apfnrex7+I5nlCxIAH0j2Kt8KhsgZzp6I4aoXLlYC81geVteUG\nMzA4WkH8pwbzRKgXyq4LZVjTg667gIVjfrWzVOe7+x/m8S1V4lK9dREZDi1G\n9k9jQsfp2zDq9hCDo+KFB3nnvyuJilpbE2yv3xZOLz+quzBVg1UzGIQCEwTq\n3q+RSnhHkgCLGMKEi3wn3dyl7ska3zeZ6WUNw60MVdeirP37T2Jft8cJVgc2\n9RlNUDNDmkb+ZbGjd24vWU1yLpQT3qG6b3Xo5eH9HQl+lXMMSxb86mrrmTRf\nhXbzfSP2/XzpqJ24EHKwz2HfyC/HGtAWivQ2utOqkSBt9M86JOOIbQaHYKxt\nwLXpGRBGvAuc6vFOEUzFpeDCih/cGf5MLKNbCQtflg5iaNQ4hZ/GQalS/ff1\nKmJwe9sm8vFn0b3AOCy9ShHiIoO5nE6ENyziF1tr09tgL3Uq0RHrAhfn0uUc\nnHN/AO9DOu7MoPNoLhRNERCFXv4g09KGELgrsA34VNEFS2qgi+rHpKswqnAL\nlU6F/gq6/7KerBgn8dqzN56YnCNM4z4l9FFEB0pTAymHmeS2/k4dNQOWnM5T\nXa02\r\n=nzVB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICvWlxGVW0w5Es5ajQXet+ROg2TOUL9jmNot6saNP8xJAiAXQjhtoc9kSXtWQ0hO4ua4eQfuuRYACIbWCOtfkgnxUg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548310151247_1548310162082_0.23956096658464276" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548448163376": { + "name": "puppeteer", + "version": "1.11.0-next.1548448163376", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "cd678fb5916246f586b9345db7d8a3dfa6cd6236", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548448163376", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-w2WxuhU2/+wVErEAVGamNdIagG/V95mr6Vv0T2+EyXGZtyYeeaWFaOLyHO/Ly0v2bBm0TvyfhAZMqk64DBvd0Q==", + "shasum": "8b66d88a5507f69fdf7be1176eda80831e037653", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548448163376.tgz", + "fileCount": 65, + "unpackedSize": 701317, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcS3GuCRA9TVsSAnZWagAATDsQAIo3g3K8Fxl23k5/gp8w\nK9pjSJjo+x/BuSU7bSiZrxQOaykISxUsD37RvZiKy0XqPi2VlPTGqrtoQ9Rh\nhLcqNlE6CXPNrun+VI7lMyABGb7XAjU9EbAn5OF+NMBHq9jfDFtT4kTDiR+u\nv+E+k2LQR+f06vUh9lyg35SyPMEgQ5Kwkze0HDMeDlTAX0fWUvOZZfYZ8k3o\nFRghbJRL8ZU1p+QwJ6Rskrx+AqIm5QrHazehTyJ2dk50UuroaG22+AY0KGwn\n3WW13Gp5CVq7us9t+m2HSriL0R5eAjYbpSUCiFAvBxywOaHxVCsqzU2DhD7B\nJTVoPdyD1O9SOLxI/byNcjPlrFVcYLsxIoMLd2E/HQ1d9i36dadFS2GQrXMB\nYxwRIQkd67q9magIGw6Dpyaw/++S6XYAdFZ6l6tfu9f1a5IH8C3XSJCr4fs7\nIxv1NXbmuAijSE3fiE+SczBnxpEiGHDLz94tFpajRNx8xyB+xy+WMpJIyAwL\nn+t/uLFRxMkKScdtWcaXO4pVdWL1TgdwsCEePyQx8EmmaVDJ99H0teqH8/ui\nuOBGzAEqKpiPGNo4c343rbgGhrcOJL2/7l+5k7FeoqhinDsJ2qWqgAfb/Ldy\nE15T6JbU+u871AEhefBuNdz0S13tLhcn43X6FnVhj35U/mU15yoy3wmhMZf6\nqWOs\r\n=9upV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDG/gvIhljAXoRXnTT+j0Djoj9/9S/PTwigoF/bTHBmewIhAMvB9ZHoN51KhenOpNHLoVRa5TmFP+k6SSfi6UsV3s9V" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548448163376_1548448173770_0.5327220616895698" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548476659504": { + "name": "puppeteer", + "version": "1.11.0-next.1548476659504", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "62da2366c65b335751896afbb0206f23c61436f1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548476659504", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-d7OGRRgeoN+xT7KF0ewq2lDYy5/hPHWZ/QC3mWjZFexmDBWDdTm+ooZE7se8SDpt9OpIIDoSyDnV7CfaS0KfKg==", + "shasum": "c10392c869529ece7d5a2c8a710c2142a19be52c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548476659504.tgz", + "fileCount": 67, + "unpackedSize": 701508, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcS+D/CRA9TVsSAnZWagAAFtsP/1K3dqyQ8fR1PMxPOAYX\nKQYtbpG2NYiz95H1m73boNlA+b6X7qxoZgIkCsnsdBdo6Y+GouKNTYq6tzvo\nrlBbvVyUwO8GxhoAym1Qud3FKZIaVEiimek+HMaQAKoGDf9H17ZdXxVdICW/\nc1fvlQwWzvMn0H3KAHr6Ayv4o9AJewXZLS9lbwig2/f3d8d/QtAovCz+pH+7\n4INLAQkKMU7up4SFnRvIDKotNx9U3HgNKZCMqc3SkpwKiF0tqEYQ7E7VPqC0\nyZNeHFn3Zo6qFDWlOWkfd7cT1XnqTnpcDh7o8+OEhDhtskpzmKEreQs+T5iS\nkq2uccMM0hMfUvcgikpL3vn/DIOfwA0/H6AvKjrl6b54RS/JgRMry0+HxaqB\nJcCPhLKVfRmcTdLfSorGln9JyPZFCtjy6jmXXnhHtiy37SF4O2p1sPMvqIpG\n4I0pUY2KlSORjrt7QuEnJ8ZIW9kY0GJJafKRyuM73XMgKXjpmJ5shM+i5wLF\nZaEb50fuVhAy9rwYZRzu466vnzPw6NxqIyYaJQW4e0geXDqkmqoET+AiuZ97\n9hvyRR6Vmmyr/vodO91zenWGI1HmdkNyVD/HTB+K5KbtAtVWPXpv/SX85lDR\n2GE7zTaFZybCr2gbq2Czw0c6ndR7SSXqrfZ+215FjDmhcy8a2wB8QOjbXFgi\nJvOt\r\n=HNri\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICML96AW1IZSX1QFSXLkfC3omI2n7LwYFKF1HWiBP16DAiEAwNgCJk2NmJLvWhd0p7U65wen8ya/r7VaT+IlgJaOUh4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548476659504_1548476670502_0.9156713755806829" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548567610624": { + "name": "puppeteer", + "version": "1.11.0-next.1548567610624", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7446550fdbbe222f69dab35bc0317dc9002d46ad", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548567610624", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-lkdLGnEjrZYPgiub4LBSwY1rUnARmTKZ+CBHWYEx7ncwGzu08pshyYdEt+i3GQ5EYrZtTRN01OW8L0HcdMP/QQ==", + "shasum": "f30be7901e3470f68b3c3656fd5ee6481b5fec24", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548567610624.tgz", + "fileCount": 67, + "unpackedSize": 701508, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTURFCRA9TVsSAnZWagAANzgQAJn6xczoOaXvyIjo6IUF\nYZxq1uG1SYLsp3MZgCrSvQunte4PH+JqQWp1pE41Csa+um0MSgGz7muoiewg\nY7qPf8VoWNg9wTWxKX/6BoH0XahtGiILJJqFX7OsY4pgGUKpeiY7biHR573H\ns4q31IuEr7ZTvGpxZrH1vH0UhGFIjzYaAlOa9WqaaoLXqVY00aewmq7oxST4\nmZiKz1gQAXyyIiOXn1jDvUs9DqizQyHXykM2AZJ/IA2skwHWZvie3oDsacTY\nrHFm42zm+GWEeXm8+Y6eM8lD38utIslbNbWbwSLYyaP1Zo5kZRmYwczTMMGk\nvHsTgZHZZ0FIO5A4La/0jZz/p8MeaFyk+L+HRM/gDbB+ZvLvO9x2Jj6KE/xw\n9HcPvr1Ock+6v6GfRZZonce/pHha+JdSGg0NQi9Cx8ja4ZB4tmPwztR/OLmA\n3GKsawkb2kbk/O+nQ2mH1OH3umKIFncNnnaXlW7LJtEiJIbYDpfqT8eKL+b6\ng8eIr4wuQo8F6XhWguhfZs158EwSH5RL7oYQ6KsR8vWQ+L/GPioa7le2/CFs\nnRMCk5c8reX/ljV5RNRTphURYx4zML/GnuG9qtorTK6Z227MCsAGrYA8MPSf\nQC5fL6xaiYozX+/+QeUDieuYbxDcWKUSvr+6nxPavmarHwLjMahDrpYsECqB\nlFj0\r\n=PMBs\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHbJrfV7ZxILEbRWCVswAxKDOUQo5KQ1ztkhGcAdrUAhAiEA5UqcFM2ARgDDOvFHXTha+gyOU7S6IC9A1fB9AoX2GMM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548567610624_1548567621345_0.6499088440464651" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548703685570": { + "name": "puppeteer", + "version": "1.11.0-next.1548703685570", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2061dd47181b024ee90e37349736f154652bc74b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548703685570", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Sut82SfEVOERxZyy/cQfLNpIjpTQxvmPSeVebeeDQmsKfsZ8S33zmZZWriD5HsxbDCrSPzGQJFqzTIFNgnFTQg==", + "shasum": "cedfa1135ad9de5bea80d82d190a8d40b130135e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548703685570.tgz", + "fileCount": 67, + "unpackedSize": 702450, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcT1fQCRA9TVsSAnZWagAAGcYQAI66tTJbaMAyLFRQ1QyD\nOZvR4UqiwiHu7aVmrfKOSQCZ8oPy/OGUZLJfbKCOTDtgFcMfL20ACfKqgBOD\ntDm9HE7lv7nbmGmQpp3HVvglxPYBvp4V0M5L8umMrVk6xdc55KMCZcnPhBwG\nuDCeBf2r5EGSg5AQodIv4xhi9AT1rll4SrhMaHYWiZDe8+TVB3Wbdfm0v14W\nKenZYtI0eHO4Xe7fG5iUxeuriDLAMO0rb5kAk6JOtOrnlONjajey+75Tiile\n8yssE99qIJEiWWsXKPjHaUbAcb9WbGdU61ctQ6UE7gUHWDUWlvEbXGGqShSq\nDHKurAymfk/wTCIYvbIPjlv/RSESsqy08Ee6chHOucltNbz5Dem1F2IzPZZo\nxPkIvEeTYOarvFWra1yYJuqFQBNTUOyqixSeXX/s0a87Ycl7hlJMeKtUqJRE\nYkQFcUSzXGOP4jBVupJvoYV5NQKlDFMvSlUse99g2TKkpjud0JdHaOXaXf55\nKAgCo/KHzC8zjqe016lz7RVfFYmLtu6ngyOKFMIPsxa0iL5YxCyf8MO4Es7o\nsusQgipWLE0lBtVXJ/4lDbzQ6uGOrD+QVd4U2GrND1rcExB0P1l3V3TBww5e\nszQ7sK7VmYqHGLrED47SREmtrSLIEa1h4JzbJZPjdHk8733s5q/OY1XFFAGe\nYJz/\r\n=49IH\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD9bABtbrl2+kn9M0fwu3fWRRCADcepGaWTzUV8V9PiQgIgTlYCtBnMMePDLNtzYIe7iS0MIMs807jA2jljxONOHak=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548703685570_1548703695992_0.6940789958050388" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548707281525": { + "name": "puppeteer", + "version": "1.11.0-next.1548707281525", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "55432f88e99598c41b8cd73f6aa9c27faee51873", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548707281525", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-aNxU6DemBnMYoiYEdCHIZoqNH+igh9sbtnfklK47Lbhq+IfweACzrFpgR+1TYD0tmh4av0Y5DlW0xRN1ilX/rA==", + "shasum": "f30917aca87b882c82cc56a70daea34c0e361812", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548707281525.tgz", + "fileCount": 67, + "unpackedSize": 706678, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcT2XcCRA9TVsSAnZWagAAKxwQAJJnkkpQcCxLFjaEg2q6\n3uNbg+J8OaIFJD64BRNc61PsswT0yu2gb8LIQTcFKfDVMewHBc7GJ8YjTFLt\nUFm2KigcxWQReLQ5q88aMCcNtE1zt2Xm+/y5qUdhkwAlY3l7KUBETonGkVUS\nb1xe7Ssif2jZShGdoXAPpjK/2uZ2//p52UC5yoxGH0tCBMpcg1NZ7hI1uxi8\nOe9HdtcZBJDCQF9TczcXiOVdHhse4AaVUE/Xu22HwmpXUiYj0TtDyomhLO1Q\nXlSIuvPKhgQi8FRqtt808mzQn+m6OlJtUu1PmQ8eBs0EbpWOZrXwxhritSUz\nHUQpbsdFaA6vrQQt8/snXhmrgsr/CHQJX0EhoJ/In0vwsNfrqsB1162LfJSJ\nLMCFVx/vlO/X6OGAHbv/++jwN9fY18NtO/zK9RgFU/DNc1TUjt85+aki+lj5\nBW1VNxn9I3IhBhfG1sfJ7JiewruFUmUH1MS1U45jCJxrhdDl8yZIL9vLvsUX\nSU5qhmtDkuq15HEliDFkBODocGzmpOSa/k1tWKahyyWuWqFVYxDArcy4QWHT\nhog7jsuE4kLECim0mieOvStAPC3tyQz1wLEVfrsaMtVdy4wMZOOn0vZuPqJy\nvHlZ+AovO+1QfnjYngciUos0+cVzfY5TcoQYdIOUjNIDyTXqKGgcL+NxrCQi\niV5U\r\n=jdy7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDeXqCOlW66E9mH0tPnQu7d/BubAU2rV0YQ+kfr3npn5QIhAOi6NbohxlKZAw/goHDFGJUxrTdhWuZtTWdAfGAWaaCj" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548707281525_1548707291669_0.9968603178232438" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548714258861": { + "name": "puppeteer", + "version": "1.11.0-next.1548714258861", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "63d9ac4df81d4e44edb1b1f15dcd4053329642c3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548714258861", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-qv4UW/lbI/vRj9dYnjwTEYpBOwZrFNuiZtUwyeX8+NzArCXe5snb4/hDVtUszELy2J65N79TNFqhM3iJiDh1MQ==", + "shasum": "4831e0876b8c970d6cef8852cc6e589dab78b5a5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548714258861.tgz", + "fileCount": 67, + "unpackedSize": 706764, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcT4EdCRA9TVsSAnZWagAApBYP/0a/th7HEZ7d2GhUyTgl\neOitzJYieNTZi915lMh/ETLaPaDmG24su7Wfwt7o9VKwnforH1h371n+s2BA\nmnMQg4ecwhHC6X2bCUvzk5ogfc5QuP+HC2kT5IbdmIIxguBdEmsvRbxaKeKC\n8mKe0LprZ/1U4h5Xxin6zYejL93dCPo+yRnMhpT4lS2s8MO9ywsK2BIQRx++\n1bx5ufmEeBaILV8SbtnKmlGsYCIEqLuS1LQV/mjaB+sIWiMCEz2BMCRh0pIS\npvM81glkO999GgTSk9H6YU9T4n8E4sg95+A1CDeP8WxgkDJqjS9i7b0Sx22y\nDhZJWSyqMtzc46s+1di3JnzVc2kuLJ/kCIVhsZ6ZWkReapVtiR3wAi6A+CA6\nhA37T6xQf0TdftQkSwgXCfInh1+K2kPY4FoMxl9bb+zRh4JbaUjlZmyFwiMY\ntxxi1kU64Jtw9ityQwZ+IG8HPxhvRcN9ATX+g4Zx2tw5szX/AXXL0LFtzVsp\nDhQ7/MGc5eNfJx1KEbPFVQrn0alwuviQbDqpcHC7s7ivDTYnlqvnbbhffpUX\nwh/br0mOraR5XeBPpYbAw5uO3OJNDozLGirOQLn2DuegQYT2VbOXxCi3mbPe\n2jlQk1aGJxhFa6WroxhsMV/JQWwVXyWGqujEMj5atjk2ORFeAB+TI/yG2TAz\nw1Z6\r\n=E8zX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDQmBB/QYrV/HtiXM4MXQ8Jx/KKu4u4I4+ObhgkUfMe5wIhANOg6QQ3+BDRa7GewGOkXye5N3NA/zlrBGLnNtl+dfEt" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548714258861_1548714269218_0.4407616602703337" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548717377583": { + "name": "puppeteer", + "version": "1.11.0-next.1548717377583", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f2c968fdb808970a742a2228ad2f65fe708322b0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548717377583", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-WizULq02gjZ1Y6nbPZ54oaj/sog4mrNp0yAeZyJrINT8aMOBszGGZlMX3T0fw+dg/YAdmMAdjfMRkg6PGZ2BaQ==", + "shasum": "873cfc1d1ba6c7b29cdfa82f09abca5909b46144", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548717377583.tgz", + "fileCount": 68, + "unpackedSize": 867812, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcT41NCRA9TVsSAnZWagAA7lgP/1/MeHMJZgEe41rLtcWz\nuf9n0tB/0WAMH2WZVjh04PiwDBQ2HYcEEa6gY/ZvhEgKX0HySddk3Jie/eZH\nuq+HI6UlTGX2RFmlY6pyGwPiKdeLMVyF9HiROBN1V2p3JQeTSev+GmgPWzoc\nNj0ouh1sA86xfJXB6RQtuVHhTKBvz5HC7xc8lLcpNEYsBwyMUEI898hsv4m0\n0ahXZfqGdb5OvC2XClM89OIlPFxbUxjc4GcoUnUk9ZBb4rdqwIRERcF7cFFm\noaUrJ6colxnzD4xdTN/4TEIuNFWFjc7oqBxVEANkhiEAUEmw0jjh0qg++9Y3\nPDivWfYBUZ82sxF+X/Malu+D6Kc6gxKIJuE/aUhiRFW0OxDB86rHtAwa9CpA\nBTAu5WAHmp6zjbfvu15m5KzUyTIPUMSQdgR1+9LXmAlCuVfSLpHEUaPt1+Gx\nTHxRrlppsyd4Bt1fXEKklfeQyhWpHwmFL9vJ5mm7Xv2ybsiiMEI7dVShVxv3\n4ZbmC696WavFZZmF73vXqtQyjXLuiFzBwTWx+qB1wNZeYa4ZW6z9TZQNgPMI\nPzruAgQ+jd26INmN5HrJcpO//QYH7DwGS/SZ7B03S16xvbPbXhgB4nIz+rvZ\nFEvOWKBM2RIfMIVv6+y6jHBcOuHv2ExczEVAaBJBoo2bK7Ort1oWKhiq6jzV\nhMd3\r\n=YGi0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD5OCtYtGEQXoABYekT4/VwI9kOuP7psnOK6qqlGyD94gIgcaXX+ZS1euXZyGxtx8MOXE7WgyWsomnxzEk99uck2fI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548717377583_1548717388701_0.31198609299947355" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548724983083": { + "name": "puppeteer", + "version": "1.11.0-next.1548724983083", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7001042f796426163f13ca9716408578f1118bf3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548724983083", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-XWvGMDtJ47Mr3SbDVCFr0BRl2QfLSQrOi1embm1rgWpcP15kX5xuW4hUDUCbOMAbfQxRMByg750RcFQKcmlT6Q==", + "shasum": "d8a1124cec2fb911e49a4902f1eb2965bd86ad24", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548724983083.tgz", + "fileCount": 70, + "unpackedSize": 873961, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcT6sDCRA9TVsSAnZWagAAi1sP/RtJqcrq8HxxH7oq4nGZ\n2v3uEXqq2LLnZBWYDVodHzUN4xp55bm++YlGgA9cklopEfENZ6O6p4lCYdrx\n/AGYVnCxJa0xjxUdOtZ33grttnYW0M1HKVY3rqxND5PqVLRworCzLnpNmTsp\nR6ugQuQZBTpXsHCeEwXOYb4b8b3Qisvd723GEGsHI3mXjTQaxhFZziSmIs4u\nmwqT6X9v8WVdwmQpQbqC7XShluGSC61uT/xyk0F/j7TGh5XRUHvThs83fjms\ngyOUMnUKjIKCx8JD6Z0PD46VsSFSvDd1t8H96gJ4n4FNAfj3yzgVECjlSudh\nmfQRGTYzQ7J7Z+LkWBjydn9oW9OVWbBVbsU3QrM1tohKFTfnIFMrHov2ob44\nvGUO5FiDFVFESL71uNE55hu6R9TvtKVbsiLFlY1LSZxYiN/968Cl+iBPPeUv\n7DgbqxuJWEYSMFVPOC6Tm94YR0BV+088lQBhNYoXHghlacnYsCjjjrWAO838\n5609//I8eKrsMHD8cfj3T+n6eUkhexU0vL0TqAeFNDq7XvTOJ+Ffly95vTQk\nhNyEISXST5uRZenJoV7CR5AINLGv3TmkQDadeTgh8PXNfRivMT/DKcFGMG66\ncZvyHsiiTxOMZFWjZ5GmU0x4Zj03fx/AryEKEEiqKq/PNLi4iD6e89Te0jxe\nwFCX\r\n=Hh/9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCfex4kOCkgOyAKOVNyClls507LQbP9izR12MsFDkIxYQIge2LI36sUaAeJRGQtxV+lDBBatRbfMYObxk8aeU2rxNg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548724983083_1548724994371_0.7497348107253377" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548894144934": { + "name": "puppeteer", + "version": "1.11.0-next.1548894144934", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a2f1e2774af31ffa7a786b0e754ec638ab428d76", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548894144934", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0xTUtUJQPO3/J7pHa9Xc/1fNCc0DT5vwFg1h9unzkB0uqkYxEXPSUViyzisdjhpYienO7VxsRqPAgDnqorldkw==", + "shasum": "73363e3767c178d008239a1a0409a197436942d2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548894144934.tgz", + "fileCount": 70, + "unpackedSize": 875321, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUj/MCRA9TVsSAnZWagAALQAP/0jJWOTJ0XltZl/RaNXh\nlGo/MDJIn0AWIxEx6Kf8hP08e9OeltbE8AVPi8xyv4ywE+MH4r1R1XNobhp3\nlY85xDuEyj6LQnQqpmL0H6X7Gt+jl7veCK4tlZaP0j3VkdHgSOaOS3lelScl\nobdtjmkun+zeZGUhBWjGM6ZvT+tzdMkyPnJNQww6zX+xnc6fSvpyiiZprtcH\nO6AcxEVCNDqmKlnWKz056ll3POxPzeeMhdUQLKn0RkckN5f2U0ckWigKo2Vd\nW1vziDyLZz4Qqg/NwqoC/bJhKThEszZzUWNrsuB/aL2HIkdkGZKjC12rqxyq\nuYiFMzek3IvMqzyBCHL0Zi5K5ag6JxkAOmcvx64OTZNhdcKid9qOMdZUXApr\n1ihdDIaoL6pZraLXUCOPq5PAFkH/B+aWqpjDLkPFbcg5IWcY10lRxVzrBOTs\nXn6MaRho+2Z+vLR1cH76dRUr23SbZAt11AM+TtiysUv9kwI6p6AAMTGoaYMX\nLWIyTfxxhPTU6MFAB93HcCuKvo6RpWoNWmjyWVKAKEPIjf0Qx4D560ddvghu\nXTtNAK8otqJgXmUx6KxGpOuYrBoAlNFpEvelWuHlzah7d6Z2dA4lu/WMGP49\n15Y3lc7y7KZUif4w6lo3xosQLbEtFum1GNIOB7ZkXOc+KeYMXHQq4X/0CUM9\nYY6j\r\n=A9qQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHeH+paKG4VMn+NGVIFjIfTmDthiW7RaUOcIjaVGJiY7AiEAwbql073aIWcjLxploPnZwG5J+txc7mXd2HI/H92n+2c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548894144934_1548894156396_0.6332407981019019" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548985003787": { + "name": "puppeteer", + "version": "1.11.0-next.1548985003787", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3c516f2114fa36b39b1484315a0e9c56478b2cd4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548985003787", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ENSmUsGdOrLtzHBfHrQLF6156BuVn83N7fxZ47rr4Q9rCs+PmOEcOK7L3THQOG25nbNWOGdjNPpL19puGzvvRw==", + "shasum": "c29674d7eb4ddb36a8571389177ce1846f71faf3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548985003787.tgz", + "fileCount": 70, + "unpackedSize": 875321, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU6K4CRA9TVsSAnZWagAALZ8P/jf7jnV/Tx3fJZOC2FJR\nYWmAkfDx7LRBUcvQEFYg0+WoYYmjUpjNYrKYplrTkj5BKyHfLLaQ6fDMqpXm\nmSbFaZO8Y0loacGHbo8/K2bE7u34F9YhTSNWuAcjYKSOa5MGh9JRH8I0dtTZ\n6LFeVHWeVjEp2MBkJ9vY3tiCVtDl5lsUF0dycXPku2QLYlOxAKRgvK+D7X+j\nfQMVUngc9AKRxmjr76o/1P+hftLvHpK+QkD2WOxPDvWyJtY+sUoVP9WIBNy4\nzQWtoyBAeDOTv1AXKP4Atex+J1XMvzebP9NZp5Y1ZLXb8LxZFS/VYylxtDfy\nZ7ii7scfQtiOCwDR2sEln5oSITXUO4SpoZGSWwGaI0BYT22zGkRuN3hmrsrZ\n3Ndn/5+sjO6Lk4ZAutBy8Uw0HbpkCI7l+4ZlW2DxaTeGGLiIAIjkRMObu++Y\n1tAVfz8OkFEVaw6ryMnps3QIc0fWXtCDipSHcNN6/Z+DbhvIK7w7No3Fk4KA\nZ/Tmil8d1TzCE3sRpK/CZQlgDHPCTjMl+CyJODtCpHxZzK1L5/U5Cr9ScYEH\nj1hHFOiCKUMoGbhibsys1nDGiPR1y0lSF0VF966ZqgAwL0hTJgfjbwwShb10\njed05URRWlb8CMyJqEhrkeYTdJqIEc2ucEfdZt5yyJgYXRkqzIMrUXt62e9S\n5GqN\r\n=8X9x\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFiC98nLlMkvq5Bp0xOYH8WpzPKfYtQ0n0WZpKb7LbPYAiAOdsVjDdxsljTI82vEBTAHdkW6hfIh3FT8Ldze1y/Oog==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548985003787_1548985016013_0.577939473343871" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.11.0-next.1548986177131": { + "name": "puppeteer", + "version": "1.11.0-next.1548986177131", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5cca7c0cae5bdb2bd83a21b27fa9ab40de8694ba", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.11.0-next.1548986177131", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-rTYu7DgrMntwoeJGbESJm/WR6RzQHQndo/ei/jqjhYT3jZSXBVF4oa8jVA+cnG1KftCDXGYxKVVW+ezapxpH+g==", + "shasum": "6605fe77a74fe677691a123de6e6c5aa4ba48206", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548986177131.tgz", + "fileCount": 70, + "unpackedSize": 871085, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU6dNCRA9TVsSAnZWagAAp0cP/2jHYuQTLikmwtr0OwPR\nqDvpz7btfzQFJOVX/F3VPgwf95bClraT6BQHAGdfrDoltahiY3dXAQ6WnEjC\n2prC2kYiNt+nHXe/mmx/p7EhYxQFYHfcD7ITRSS90uMWoP181n1F3+tUzG+Y\nqYnLSjsAxkU4DIs1NlHkmp3vQxlRES0JeAgEclKzWf9bUwbgoRIF/VIGnIRJ\njOS/+2GJqhozrC5d0N3A6W0q5uAsiMDK5jTYKF+icWY59CoYHUcq+07sKyfS\nvuA/sLn6ID1+BWbJTEvkXI/4xF4EZQA1ymAzztpU9e+tma+efWRPgwWNw/fh\n3VgbV8Om9rp7rtX/n+SZtTXoxELRsy2oy/KMgI417/Sj3O84uc4dN1kDAMH+\nES/htBpC/AILbW8kBjgGn0CIXtsTh6ilX3ejPJzXuPow5F24pbH6OsMCO952\n9mbi5s71bPgQ5DKrfBCGrSY1EXXCe+zodSikvFohq8HQAGCvJrDNKj6JsRdi\nwfBOaZzyA7SA79Nwn3C3jKLkTYfFNV+y5uQMGfnch1VwgNAIPYkgYyDcCeVy\nlhn6Q3Hp+m+v93s6Izv0pAkNOy+PUH2DDJUfH4rWet3AiZZ5YSbH0j6uefv/\nsJIxW8p7ExKoyhxhDT57lHKWEqJU/fLUZfP9IOybTSm+318C4/qJM0W8Q/Xs\n7Nen\r\n=zIam\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFcVWQeYeeMmCwh7O/AK4Y6yHsPnUJ4yF2qU14eWwvujAiAdLo96ituAr6gz7BdSWI2DqEjx/S0MAXtqrkOo4XzFdg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.11.0-next.1548986177131_1548986188300_0.10811650728454247" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.0-next.1548992224338": { + "name": "puppeteer", + "version": "1.12.0-next.1548992224338", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7f05a084f14d4751e9509a2ff97d58ee3b73dd4d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.0-next.1548992224338", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-eFK2qyYmx/+buzjYbXLZkkM9PDvmUj6i54wcF2lIxAth3j4O/EaUnWGH1Hh24nnzjNsE+rL9xTqxyg3shW05Tw==", + "shasum": "21e2c6f0376c25b78ac7e5fed1f56b5b210d4e30", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0-next.1548992224338.tgz", + "fileCount": 70, + "unpackedSize": 871085, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU77sCRA9TVsSAnZWagAA23MP/3RtGTAbtWc+OBb9pUSU\n2rTZJ4Fmf3rWOc8QoqpxOrzWcybMihVvzSeXPar7Ws5loYrQxHTUlb94eLzh\nonKcHvFjZiaOJrIaVs3ACiGi4IGud/YC1Th9cuIbCuxZabd/YcZmST2fRrP4\n6mk/GH6Mr8uf18E7r4zu3a+wzDmfZ6E1mmjgq0srPaZSKM7IsRTQ6TucX157\nUwgqSXxdNDjJ3ADHIRS0xsZFvuedOXnJQLgDyG+ukPnCr/F6Pd6UtH8r+8Rf\ng7qBMXDz6hlnXgI2FJufeuucihjL6FnyN/TPa/IyTkbFDB9SPaVQlbwVPOcs\neId4l6eDAiwj3awwq0cHpPL9i01guUlZWPXDx6PjCd0Whk+PWfg/yDQjjTlT\nTUGhHHan3IWVmND2uGFu0PkkP7U5uMYMG7kxNbLJEiTaUpa3ySiv8xjs9egK\nxh9iav8zaPc1BdMNFdqiS+S796GIV3tBKD91Yo70cSATds5Ecg3okD1bBnX3\nuCepU6oGvEY68iwiU/fpM2v9GIgmC+rRSacbUzCQOxSQwlrVgnUqWlLAXTWt\no7Ntm1n8rRiOnohUegDfxPaOISV0yZ+dEprY0H+x0nMdi+uoAwen1dGIsVZu\nhGEHM/O8lKury8+qlhOxEMz/paWZWFLEICw+14rjSNq19BmfgiF0SVVJIHTm\nRXNp\r\n=NQG4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCtE+qxry3SxqTSe199L2HMHiQ67WAsB1LqrP5F2lyiuwIhAJkcrLMY6DaEDcvlzAz+huZkDP/4te02g/bOm4PsJWkO" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.0-next.1548992224338_1548992235866_0.08021377189097145" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.0": { + "name": "puppeteer", + "version": "1.12.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7f05a084f14d4751e9509a2ff97d58ee3b73dd4d", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.0", + "_npmVersion": "6.4.1", + "_nodeVersion": "8.15.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+riSxJFPQpwGZvNHFeB7vEefwfdHNSstQmjdzUKZxPp/Qt1Dw9iKRAewl8X0ntdXZz4UR4jODLiM03Iw9HDnyw==", + "shasum": "325b97f42aa6cd66ae4d3d27839278e1f0b8e0e5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0.tgz", + "fileCount": 70, + "unpackedSize": 871066, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU7/VCRA9TVsSAnZWagAABvsP/ApBCxUlZZklU3tL5vmr\nQbVnDuQkYGeE7AkYr40qxH+y4EXSlheHtCaRHapgZs4z8WhLTABni0VGOxlY\nwIgw+xV78zHLfoDixfIoiHko0VtIT/WFMwTE+QiiijMaGHYDX5kdaRsMDqus\nXKGjDOJEK2tbRgyYYggIbwGa5rY2q1Bw10T2Jp3hxjhiRFiRspwVHEhf9veK\ngfbS+dY1fHwedThplZAKLGJk7WX2ABydPf4xc2D+Q+Wf0fuFoDr8PN6zwjQ2\nhQR8fdwItlnL6LHUblYzwQyYihK2SU7gKvX986y6QnCAozIAoHUjlWsbhvWS\nUIpv/0gglaPml+OwzfGqvF3EnBO1Oom16kOO1Ecx900J1Q0mhrbdwsG07q68\nO/ebVbsrOx+BdsBaCTl9ZBfPxhO2r6D/YNwZ51F9zUoLukRlwLM9rZ4seXzA\n9H09csTEY2VdQO/ze0My28bHLy9626ADIPcTxtmBmEkpZZDbS+nYbs4j5sJ+\nJvvyClNW5FsiEtvjeTBA6qKl40kvn16rr4kDnFNRFrwICIRLZZ6hhZ5362jn\nvnTnwkKNupxWSyBj20p28wjiPH1xqhUHvjKhNLqLlYwKlYFLi3l9gXHaykH6\nWQVv1d9gH4SRPrE0wydaacpSxhEA9wgPnPRAgsPMrR9pWGqM+1Amgt8HcX2o\nchxJ\r\n=v+o5\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIA8O3fW7JpsqhCiZ6EKImzjADfh9ePR/3/+JZm7Ny91PAiAydhg0IUSDNZS8Rm6U3gas8dOfY9HYr3yxrxWbO/1fuw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.0_1548992468777_0.8285831743089884" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.0-next.1548993028613": { + "name": "puppeteer", + "version": "1.12.0-next.1548993028613", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "718cdf123ede374ce4b6ac8ab91a813f7bf09fd0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.0-next.1548993028613", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-DqnHOz76USpDCBMaRjSKmWIX+fPjukVnzEXdE7IxAZdQKtbdVB1hZartGzC4bTqJCP8K0pc7JsBdf/PhyG9jXg==", + "shasum": "aa21bfde099a5c3c315ea62e83b9b6b3d308de93", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0-next.1548993028613.tgz", + "fileCount": 70, + "unpackedSize": 871085, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU8IQCRA9TVsSAnZWagAAuMEP/Rb9hs2Htu5tJKkdPV/z\n+lp2A5Hnlrxv7fjdSJiBBr/KzqKicWkPp0vIoA82J+Sn7/+7M/tdax6MWEIu\n0NcxX3Ppsl64D62FPoC3+7pMzmUe8VfZ6PbtF1h8tyyd2UqkU4HkdV0fK8B3\nl0yqL7Snci0RfJOCMxT3UF0YZTE+GdhG/Xw5WyN3yFXZVkF06ltC2lYwm6+M\nXcNigpPq8a9f5CfYqUcQ1nOvSp2bCtJdruiNKxgJaMHuXZWvG76HQU3Wbae8\nVrtCc7ephAUl0CZQJQAamzxscGEHJ6xKpGGH7Zhzu2YariaixV5vrT5FEzA9\n0GCZ6cpCtnnWcK3ix5y2tRqnhkIbBkfOPzhx8wEr6lCifmA0c0vcIA8jGKmz\nswoV3v+ndI3gS24Vnmv8srkhwDmrt8EAxlHc2xH1kltgqHswZ+C1hynnTWZ3\nuzuDAi90Gvn6uNqpPXRxFab+VbS4zQ6kxNUmY/t/u60ZiY6aOfAm2jE1Xg3J\nJMIW6YDLzQT3AquMGYJFISy+UkKr2G1D3cb07aEVHcSUoNpCWVdd2I6uKS5z\n4nkn3vV0ojG8HgYpXbnaZBX6+EMr0+Vf1n+nfmdiuH2XfFwGSRc+ef/V+bLl\nz3ocM79W8mNfUJpov4+WqOrUUMMeG8r/KK0Wi7XuY82U2Sw7vm1f4f/8IGTv\nZeiI\r\n=CQUm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEdXr8H+uMnWFDlG3oBbsGfCJ/CvmUZ9oeD/EIVrNryeAiAku4b+ovzsezR+qyZgbERh26LusWtZf2y1p9IhzuUFIQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.0-next.1548993028613_1548993040320_0.8012355132049886" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.0-next.1549043939751": { + "name": "puppeteer", + "version": "1.12.0-next.1549043939751", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "23b74650a36ffad9fbf851ed6d574ea26cfb7f61", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.0-next.1549043939751", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+oeSRynatveaq6o9ZYUjsEPIvKmMEXJGDOu18W82dZICWEgsm2X2xgwQLDoK7zjq5kexfUG+lZ4uJzRTHXsQzw==", + "shasum": "0f16d5391f04cc4b2f143d1a0898c1ef9d51e630", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0-next.1549043939751.tgz", + "fileCount": 69, + "unpackedSize": 712283, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVIjwCRA9TVsSAnZWagAAv40P/R1E2IRZS1kX2BgOBi4K\nq3h5K9WteY2yHc0Jash4Rf35nxEnFw7Z4nBSB/pIQaG+o1JevfEfkAU2cs5P\nwqUd2IFnrfVrwXftyeB/haNwELhNjvscErlPtZGwMxoy08NxWf4KL3Aofull\n4RCYbihL1U4JSfy/A+/xRqLoiLPO69bbmZIqIGszr4lqdGUKMQ3gFpWGdSf+\nP2gc7OUqmZD6+CFyeCofk6Rx3oof0v903XLrAZQMgNIrD/08E/thsVakwKz2\nkI0yE97p6Bf5rxGfw+epewfSgsFVScgkNxovftRyqaSw8wwlynp/KK607wLs\nEj9qHah6d80ESZKkYv/CF0xaU1MzPVaHh98sYSW3hiEqkB97zPtL6urGXd7r\nY+xr2eshwhmmT3wdLa9K5ufdvUQTqHj5pQkzmcu7RRW+aFT/xoFmGXLHqRvi\naRV7QWuXGIg7CGa8zSu9sBcZbWDGLiZbG+JE1XEMY4BYOpWQur385E/MWuFL\nT7Azr4qUp46pIb5eoyM1mEp/t9ATBWVAb4GO+1x49/zLTjfZvjHMCZr6cxAa\nDU2tW5UP92H05UOVqJoRJvJqXBl9p65cNaxXx/mjGwU589m6LU81FVUN9NZe\n1GRT0MIfxnrBtBfh0BazfJx3pDgka7c3Zyb7pF3eNaHF13VYtbY2PZWi8JGS\n+x7L\r\n=DsBw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD6qsvn3Huxcz9e/rrMc8KQQQg/dmibTkvzVKwj4gFAnwIhAN+UkoNDqc5MVlj8H2zocViJpGCLmspfynT5KxAgtTmg" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.0-next.1549043939751_1549043951475_0.6336580098707785" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549053217365": { + "name": "puppeteer", + "version": "1.12.1-next.1549053217365", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a1abd6c1fcea330feaa6e07afdf80c6d6bf3052f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549053217365", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-IaiAsvv0YtosF5koKD3eIhcTrsriCbpgT/zy36e6Ms6YzZUBqiwQOrBAPaS1+bgq+QmeK06OfkPbMiYogHYuSQ==", + "shasum": "d4e87115a259ce59535a870be6721fde972ec072", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549053217365.tgz", + "fileCount": 69, + "unpackedSize": 712283, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVK0tCRA9TVsSAnZWagAAZ3kP/iov2oFkkek+78k25W57\nB3WUXPiN8flTR0s8Lepa3tulaHeVn8AKVTMXxQzCkXJvV8u9IV2Q9hRkc68S\n/gSJjwx/YoabNP7JT+li0isPbaTRIci/hu42oPUY69WyXu1p/wTmOePwckW9\n3a0TLiaFI5AsNjvH3vAqdc2pB2guOYdUBDkWUIiFsGzYOZu5LmxpbOGO/4VF\npTG7yNzTn52MryLbReRBRyiIqDurL3WG8GFKz8x9aXjjSnVF9ddyOQl1LsnY\nHwSCBF2Ev/tGkDkP3H2Y5n2sZQb/nZHiRn1be2U7oy38Nmtz4OBkAwi9Qaqu\n43ep6LKYEmr8Q7OraFtCjXV0/RCm+zlkmKG1EWnzWy2HklGznxyzLRLGYUlw\neS50IWdd/Ppum0KZppLMxrPlMrAoZSLP0fniE1/hURaqK/IsQkvWvoIJ1Gh+\n9640UxNS69sFvkirAf0qWX1h2JTBMLPUy2aPfCtjUDVev/ZCuaie9DnXmzfm\nFHiAoq2ralzKrOSEsSZsy3Oxp+bj9pMfJ5T2qM8HetomSz4RmfH6Vf6sSjh3\n2xAkNXhOxKK74+70q9IN4xR6F4Vl6TzmKVgX5TbFVfzWH+3XToO1n9jIK+HK\nC3APKkDWhqaRCTp31H1ir0PPankrZIkG3Pc6KMaB+GpqvAT7NOZupN764A2V\nhwUd\r\n=oJ7N\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICUFMncNMXaR8llBpX+qiEh/F/h/Q4vR0BeAVpPdxxwUAiBaNJsNR+RczRrswRObgQsIkmk9kTG+tGSjzbL7gXfF1g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549053217365_1549053228432_0.6044158006777263" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1": { + "name": "puppeteer", + "version": "1.12.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a1abd6c1fcea330feaa6e07afdf80c6d6bf3052f", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1", + "_npmVersion": "6.4.1", + "_nodeVersion": "8.15.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-FlMLdgAnURMMtwb2S6XtkBRw+kh1V+gGt09pCJF9mB1eOnF9+JhtvTxFeu1Rm5X1pKMXq5xrosrhBTgmdwzPeA==", + "shasum": "440241743f4c909015d0924bdb7f99f670d9c955", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1.tgz", + "fileCount": 69, + "unpackedSize": 712264, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVK1GCRA9TVsSAnZWagAAzvAP/2WjchRnzQ1sbHKrRevB\nRkbBjLo15mCZfWCsCF2W2vGfh1NZKpFtNX9TD1C3evE9k+caCn2a0vfkOfqX\n145b8gUpgys1IiS2KR2UbZ48/SBcuzmMKefR4oXQR1G8vqCr2zQ2/fRmCl2A\nTTqTZFvCc1ojs4yBhxCieig+J2ztYrmhLgLWjlbuPnIRrrhuf4zpYeRS/PeI\nTwYPSl7zbptn6qBBcU3LSrUkmMC7aHHrZ62hwYIKsysGFfTkDuQCW3rJhp0R\nDpUhIZWz4Hq0DxuA2iJAVvmznE5ZrjnaKiYmipqKZcpXrZqc7tiQa0MG0SqH\nwF6+sCmB/7Mq1Tb4XaS9B3S86agwWLdTuZO/8RIJFwWJ8XZXM3QU9Zx1CRPQ\neYdznR5WJbn9yXs3dy81dWSrkvIhtM3DNeZZwMRxkzU3f3UBwKo+BUZUSfVJ\njeAvNi+ycLY3HFWQWIGZ+dNa8ignBF8Cf7XftDcUwNk1BD5dFKumF9kRvyH2\nD3DRN+86IIPhPmQnn4X/UaSzvieWWjcM53ET7ETFT4/KN7IYHJl/PrX84KCQ\nY/JmILkNZJJ/PQup0X1EqjBemi99h7NI49oXH5wWazgxh8uE/7ErS+Yvjvta\nOSJ3n9M07vbIpB3Dt9/wL64Bs4nS9kF32pJS3xLHj1RjYe7tORrlky9DwekZ\nLxmA\r\n=BiI4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEx8dVPVHN7YW3QNo0rc0JpCd2QVBAUnKFuIKYd8OeVjAiBoRYILE5TW6lrRTAFFk+1dSuJ2dwcxWp5mz5eTRaks5g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1_1549053253340_0.22179926875348044" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549054273876": { + "name": "puppeteer", + "version": "1.12.1-next.1549054273876", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b0e80846505ec0360456e7033e924f261106d2e7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549054273876", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-9BUR5hgAjwbRH7+R+tGpWNgtpGUic4y/ZT1NoXaJdNVK+5DT5hFJs/ezDPesBFTwT1dKB+rmW67admRbAXiHUg==", + "shasum": "3e9e15eb8ba093a82d8f2417be7602cf65fb20ab", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549054273876.tgz", + "fileCount": 69, + "unpackedSize": 712283, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVLFOCRA9TVsSAnZWagAArCUQAKHRU2NRO0L5sGh4D4BG\nfrS8DqGKwxxjQvDUfP4nQNHiCfxdXRuXAG8qlTHtOUmec0T0JQOKEWzbRdMw\n0tPGSWzfFXmEtOIPSO3UrvbHUq4gPTV7t3oOg1CT5HUU19yDY+Ze/SC2qCGr\nBJYYxh6ygfsCPdacMoca5bD509YADZybOrzkTcZAU16UD90DXfI+snfpR1MH\nX+iubIVwbT1IqAe+8FbyY+A4EncmiAc8GXSyjcSt5sWa7jTp8A4WTFsWxUME\nfVUbNeu3P71Q+wepdXulvWs6UlXXAZXfsoZDRljto/hy6sJCTpZ1YoBPPT4F\nNH5v5nEk0AWX+h2t3clad3ljc3m5CZIUjAejbvEYrYQ8XSKfOZ/nxmgXrdi/\nT3HSyOnXlDAhDKbuzFCWr04li5SBdCKzwlgwMhl/ob42fSg1hz2vaxFUqyk/\n68kcM+eSICuoFo8edcwyG9jk4mvPAXum9X4GzSMEXtAQGEHxVPgTIXRRu/iL\nNr9mqoZKb8ZgHZmLIbzs3LO8necKF/5pSLl67EOBItCtYcz4diBqgcdik7Ki\nk3Hp78xG6gUHZI4RxuLvwQSb4XbLk/9V5imE+ywFlVq/ABKlhvYV5aPvPPfW\nsYRjjF25AmK5E938SbjE+7rxD9dnjc9LXB7VqnkAvXuzHI2jxrvKZ9X/Xhu7\nfOo3\r\n=wGXT\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDD2JgKH2XlnM0JhM/VtCZ/rLY/Bh4eVSsbEImwUs7ibAIhALllQRYIW1fEQROe82vwp4AsyphE9zm7Ml7qHwyo4a45" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549054273876_1549054285338_0.1739164770555668" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549059171178": { + "name": "puppeteer", + "version": "1.12.1-next.1549059171178", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "bd347558bc8bc60f90cf4c9c1e9353ec93fb2ee6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549059171178", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-IWofGEeGAE3Yvin1NjSrPzRubHLr6PejVk/D09QD6XKb4WZ7vBvJQkwDsDygkBnWSuBBl9OmAUewYU8KG6rmNQ==", + "shasum": "ed1ba83a66755893b050932a7f85b00e43ec0e98", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549059171178.tgz", + "fileCount": 69, + "unpackedSize": 712283, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVMRvCRA9TVsSAnZWagAA6bwP/RzgK62SWhPWI7n2cwdG\npa8CgdAtdVlIrFFSY9Ad0h/uATba3crSm742kR3gSiw2pQOPBJSpt3pGY8gy\nZw2jAaKtGHDuaUSFyW2x2SnPlfWnQOzTCKVd6UchcSB+X4E+0tE8Wkwq8FWC\nl7GKIG8Wzgz1+mJfVFhuJhSK7MKDjxtcB+Om71TfWM1XK4qGwHiElJJ3A4xo\nX8YShyjq9LAGGQCu/0cqUT18c6oCXabQnr8DMwb8IL8At/K2VApxES0Skddl\nLUaY2GWCHRM63O4zdd6UzQFe8raXXHYk+J0SPvaToTVlnMKJoslOIcKorST1\nDOLfNXktpyz4xSTjeBf7JeToADH29JaNdJzu8ZNlb3qLYuKHCUxyqRHAwSFu\nAMD+kzF50bGyhpE14wG5fRon9uj5mLbbHxDgr/VN2j1vi2ISDHRFEv2EvM/V\nl42Z47EieTOLJEfnGR2upnDYDpI1GAJvXkMN3oIBNJImH46BZT5XsF8KUP/C\nSTBUGoOisUR4+xUqno9cbtbFpAfKbupI1N9hZP5oKbx6zGKtNXrAx8DtFTfd\neHOseUqIZKeme+TPz6Tik4DzhwL93W4uJhc2szWL2M321uBsiu79X1+LjPy+\n2g21oxh/vi/lOzABhW1yb3iHsHXJmAA7JUJGOgqjKOXWtL4iPN3d+iokb+Cl\nHO7V\r\n=p0L+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIARyh0WZN1DKemsHtK82Wvaz6kZP5CyCYUOVshqQRfPTAiAF/YvJ4D9NQZ7VCqr0YcHbPOv+MiK0lchij9LOD7aFhw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549059171178_1549059182841_0.41511215284647274" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549061801998": { + "name": "puppeteer", + "version": "1.12.1-next.1549061801998", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fd67fa7a36147ef45b1df7c79812596ba7247f94", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549061801998", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-afNzdHsoHtIEXyoW0HC0Wb1kjcjQuQRb81uto0ZCHchkNUBt4Cye6JZrBShh8NIPsV+gL0K87gwKeH2eWwUFcQ==", + "shasum": "6f908904044e1b55f9ecb57230d30572057b7c1f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549061801998.tgz", + "fileCount": 69, + "unpackedSize": 712283, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVM62CRA9TVsSAnZWagAA/kUP/Rl9JJZ8KdtX93tni+H2\nSKh4cs084ejLM9469JNKalz+nIaGGUfoLoD5Ra1ym1ozzWu746DKCvw6e0tr\nCGje0ZChLmsKkMh9I55oZqdK+0dq05m7eNR+E17TUQh36aap6pBVpBqljAYr\nEJdQ61ulyRZVfcwU6fhWwJvzDVyeL8DjQgXfNjcL6dU/AZozsFL+fc/xXVQi\nVCyOTS9lBUmxKaK7MSGOnVBC2rGN2wp8N5GDsZ8GDe8ys0nuTeEB9mVlcnzv\ne79/EdSKQ4HljksbRWEd9PYvBGpvaTo2zIqmyCTEmEt9dHDZdyAoSZrU7T5V\nGB4Bamhvzts+aAX+zhMHmZpKCViQWiSNS69SNqvLqyA32nBHyggDx6GPIvxq\ngW84BvzcA3ngLjUIsPOrs/ysMrjKtKRp4L9gf0ru94fs9HCfg2yhpEhHYZAO\nYXejj8y3u5Sky0OaCHGiebmwMPql8jq5W947dBlzx3BPkiD+G7zUFMvwSOjU\ny9mnT9CMmPO+E0eY8rZRhukue5FpaNX3ViXHbjXlufOb9wqeNmQUtaBr7W0P\naKdUzm7/cWVlooDd3iORaGs4+aRpEEoW+QdhOPKekAG+GpMN+MMjHjeWCILc\nqF0klcG85oKC3QFgKCUezbhojfnbYeSqPLZVFkWEZ3tww+p8PAtxODzQHHfM\nYLn+\r\n=eRhd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDZ5TCl0uZxCmI1P2JhYw1Rj65gKwbBsq6qdP1fMGeEPwIhAPuWh5gyzjkNrTN33aWskmVzYSfqA5QkCpOg7Z6HpEou" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549061801998_1549061813370_0.9530593448894797" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549069657889": { + "name": "puppeteer", + "version": "1.12.1-next.1549069657889", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "84fe6014e99a512a8ccc3718a968fef74754059c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549069657889", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-YMpmLc4Lw+1RVEAIbRMuLOeN+A+z7CmIf0ltXex/pYcx5W6zUyff7BIRkej7MmhhQj9FqqESign8O1iWOJ6+Gg==", + "shasum": "f18fbe4df40ee7a6b0f12aa8a55f85b9e2f535d1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549069657889.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVO1mCRA9TVsSAnZWagAA+0QP/3pVeFaYQu+K3NEDaznA\nPN+ubPLkkCKcWhurk1YjmhMoyj8kUVPU9Hha8YRsMRy8jLNfOGQNv7su6l0t\n0YWxkgANNvwZfUfU4nJL9yGZ20s3aH+vNl62XN3860PZkkZ9dGiNlBjF2DZx\n1M3/ut0QNyzgrI9t2eVWXy9OhpiuIpDwi2ueZrQnOCgXLFnrpiof1yPLNC9A\nyMnAggwAGACybYMc2Xhzg4+Ef69gaAXMqBLWqXN6Y08KrJUMwg+NwC8t1x3F\ngY90J8/lY++/g6ckQ0uWi4HctDpZSsD1x+NsBlGKEeTYno7HkhM7WiiZ0P39\nj8OU2VkARFSbASMqpFEOsuayoGnTLsrYad/fXYi0vPLfAmgN1dNJtZBgRY9U\nJdTrAjZsYEmUixVKZ7xMo2HerUNKVA8jEAU4olCANhil8+povWqEUUyQhMxX\nyHbu5M7cZ34EITI57QWVM2SF+MPRxGs+/GfNP30z+ZWf4pxRPVDNk8z273gl\nZG/AZ2qWspCaQyoyYus4zuLVhvfHTWppwrp4UBv9uKXuyjvXnfzTQtH3/nu0\n6kBT94fK7NPy/ysfvN28H6d8OE43eJtygGHSD4bBCcjmZp4uxkKer8EGuQjs\naAwrIm2SiWGD7rF88VC62nKmPHVrHvChFUtxhAD/R6iOXGmK6FU4bMkDSXdM\nBnTm\r\n=5B1L\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC3KF7yGHRXL7MjhEDs+vK4Ec+BVMs4pCKWS4MZ2e+oiwIhALiTz6o4tLI1IF35DklPUBI9zjT5ukL76Rqpe1kT5c+t" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549069657889_1549069669669_0.9744306014761681" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549072734702": { + "name": "puppeteer", + "version": "1.12.1-next.1549072734702", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6bb0350b4dc03b0f84922871e5f85cffc23d35c4", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549072734702", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HX52KBXIZZcvmqPM2t10WFUIDl8IU3vyYnGyI2eHoKbjO72ov19w7WbQcXth2CaOKig+TA3V8ziVVNIfsSjG4A==", + "shasum": "79592e4f9fb7b4e91300ff703d680a4c7b82a543", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549072734702.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVPlqCRA9TVsSAnZWagAACOAP/2Slabzee0+f6Q5lbo5K\nubDbtNQvR57CLiCv6u/ethfK2AkK7YT+rHRzwGp/Sjg8trgazfHb4iUjt5SV\nElgrC/w0VeI/I4Doz3JOaMGju7n9NqnfIbAe3+1yxkDNbzgp/qS0gKA/j4IA\nSJcoRYdUII6uxx/AgmOmhOczwU8NKkLKVck1ehcxGxyYy4WzgxSR2FU4LMGs\nUichgH0RxgaacMG7a4eG3J+rQM1I+pBaDnkGl+095GSqWh9pt/Br/WRmq3EC\nTaVyGeJgVZJ5jwUfZponLGVrLvDh/jfotSlySRGvO6vjzjuskskgqlxF1x5O\nazbJ8d5Poc6KDlSGFo6zHlH0aPnyrNU6Rq5j9psyvyLekEz4VEZwNsASusSf\nym3nrjl3pITS5fgV73bl46EzScTQbUqJaxv0XNesVGgsnLjWTLkDbWtiB65c\nfzsKGFZ6N7Jfysvax6q+X/43CYeUxKnZPbsBNOPE7t/q7NyxvAbt50oa9FJV\nVlAKSHXAXzJO2cOv2VaTwvj58jR/oJ4HPltiOWPrLOt1DspHqSCoU6ovdAbR\ndzGvHAFsYaRtNYHlWCkK+Z4gbZZ40hfOerFzXO41UIff8tMyLtD6klJ16bAR\nBZvwPpdHziXUOVOwwtHwwaeuEl3HTB14fh/H0hVb+Spqd95gFtJCXU8iwADM\npoLK\r\n=Hi+o\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC0HjOFGewQCZfkcrMio2IDBzJdPBPuLTpj1ZOqsKxKcgIhAKt5YxvGfZOrnO7O9+kZmG00vMmRVbAiiwS53wQuWXdt" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549072734702_1549072745996_0.6260611053179701" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549075450014": { + "name": "puppeteer", + "version": "1.12.1-next.1549075450014", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b5e53fdbf4a8eda1c2b31460f21cc5a0c43fe46e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549075450014", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-2gwEtRADFuZH/PVOgO0K7BZ6Y8evEYZnJETVkX8Ru6gQRZTR+4jwPDnd5o0VEcanlt/+TRs8Izn3PvPBc7FREg==", + "shasum": "a1903d34e373282a0080a189eed848dcbac63e6d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549075450014.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVQQGCRA9TVsSAnZWagAAXEUQAJVBkFaZgGrIo2OS2Nbp\nLZrf0MoIH1VR37PDz1Vf6P9tIBoCypO/lrgZNDIEMo+Et7S5X77A9ZKlI153\n7DRyC595X+b1qQ8hyUI4s4W1gL5P5rkXQ0SFea3/+Ke9LJgc9Fr1iY09T/Mq\nuyM47vR0odm2MhiQ3XVIXKFEnTEjra7rTMZaw6kWCkpK/prCEQOCNfmmx51x\nUEBZL+r01JBKnzsZVFO+bZ18Zz8yrvYkxJLrbQ/BrpCYSA1NNYzLNw6BqMuU\nBv3dMb3pXFNdrvxjanhE6jw4lcr2wFvAUyJPzmDPuOw//dhsN2dzHNhnOg13\nV+crkVPnxrQ7961r6GDIHG8pNhs9V9W4lMrw18/FhkR5ozhMZzz3Qik4NALf\nvR7vnk6aOs1GfUeLYiZ7UMbuPkvEHH7Rw8B4Qk0pTH4th5FFdXdQMk8JIEU9\n/BZx/RQ2dHrDIHYaHd9J58wKVnPkwWKXdwisdQAvYn5/4vwELnrATfv503Xk\nuO4879ynA5L87VGYRsQpmRYivPlYztYTgjChXxMGsy6vvhCuBLsoXz9U8yN5\ngGGFBKV7T01GymV47nD9KALHa+KObVjjWg2dpOQJNyFJDS1PVuN2kxbLCcXx\noQfew7BSjyfVkirMeAGRRDRgot5f/5JWVe5k9PvdIYgKT2EwrhQqJ9i/SKdJ\n13AS\r\n=i0iJ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHvcpZeXbn9csP+z/DH+gM8ItBOo8fz98K//KOGFRUN7AiEA12f6608K+hLtYs7KA71qDSnL5ZAsfABCQMOKCJ3v2TY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549075450014_1549075461390_0.4984834634949562" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549137512702": { + "name": "puppeteer", + "version": "1.12.1-next.1549137512702", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "47fbb117f58454947ffc5a8b8e197a2a01601d14", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549137512702", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-y5p+zvnidJ4EWwL6pqbzBvZiyHshTY12FQYoUvFHPZ7aC0w/Tv5V1xWbkTZnw6weEc1L1xG/DCPTSCKfV1087g==", + "shasum": "9b5f7c88e52c25a188ae1cc2b11f3b3e133ab0ad", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549137512702.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVfZ1CRA9TVsSAnZWagAADCYP/1lSQwt2XQKxBRyvYbBr\nlnXjfjcHcMwIviyAuAel+EmrIrCwUWlCVfDD/yP1akDiV+vGPUKhJk8tb592\nseBxoVIf8A1anUHoO4gSJXNRhPkpet9opFnMt27sr4jRbHFMK+40qox4USSC\nb/o6BmoXVWmqz8BaCnWCjMYWmFkLtS7E7MAceGot4AtLqPCaFhfcM+vruO1n\nnVrvq5q+zEwUVA80JYkU+5t6xmGXujJ9y4NcGu4Am/c6C6QCOiO4SuWfbE41\nfwVvBAJaRI/l/CE1j5KZmsbV2HBr5jZXiZ70O6CSE+D+nDaQa/sbWfqQvj6q\nvZNd/wVqPTaE7a3FTF6gDwQtemHS1D8mXuA1QrWLeYc0GyR2rS/ujAuE8jsS\nrqVz1A3jf3fLlPFfM/9soJZkZMcW2EUk9u8xuojoh1vEskNNd0MzF6/K6Xo6\n+YFtQcIBaj6lTTKUaAV6DAw4Y9hz/mlDNupJPxU4nWqvRgXzzuEpzxo7X6lU\n7oAKSt1qbA+zS9g9nD9Ac1fsDiaszEmLwa+6ygMcDtKIrXzGK7QSNfAPFYj7\n/GXPOku8iBxzQ28mMUDgWL/iNF2kKYsuMXPJ8isM1KIqOyYpzLu/109zzeCz\nYHAZGLSnvVIP0yWGol/M2c8Snp+jrUU5qTRBsxS/pRKJ8O4xrzCXxXsdigVd\n5idq\r\n=Rmxm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIE2SJZpGTLzOhRSaw1AqF80uTkrCYFXL3ER08coZMJr5AiEA7oxJHiX+NLLxXTs/BtZbigGqu8jPEtewRli1YvRmcd0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549137512702_1549137524570_0.576640371111286" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549158745578": { + "name": "puppeteer", + "version": "1.12.1-next.1549158745578", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624487" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "69c434af752b8e60f466463918453ff905038d30", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549158745578", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ZtMYIW8RTy8YIxN/GocMDuJvqymJy0a42yVWWO0cO//6fKNe7VxZkx+YW6Pkorl2aDF7gMJAEsY4gIDDjU1EEA==", + "shasum": "50c86cbb855347cad47a5a66a51909364869fa73", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549158745578.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVklmCRA9TVsSAnZWagAAao8P/3X/CUviqRE30ABCFJB4\ndgRNYwCant0mv+CF6qrCOBKKusOR6bpZ1sMpqcgFCP9aqJON1gyqv753+NvC\niHYqMCjb6X5Igomus2tpt4HBy3bJ6qRxvXvpu8Zb47mm9OSTH75cVTYxLeG9\n0O8L3wGoRW2OXvsv+ez+K+AiTXuzNp6rP51SsTzOJMw93SwEzNuKvrUe6O6E\na2S95A6ASF2I3uKfVCfUwyaJ4Wz3bGtNpd7/3mQUEZpTq6lKoil4W9l20K6R\nDqrS7nUNBYUfQ/593GoxPVmocudfKTXr5UumfgUi+Y2nmx5oV+6u/SmCURcD\nxI/7UeHHJtjcGAp5Wv/bHjXAOZuUyaGMC+sJYCN5dky4zLACAzx4w4b0F5bn\n0OAoUDLngLk/PgRm4efZL62DnWSK8bVuAITjKpu3SEk7lOrInonfDNLlCCXG\noslRrbpolK4lSmhUJnNC97te+orKKAZL4BCwbYctQKaDoZQixuYGTmHSKp9/\nF88ZM1407NTuAaf3YyDpI8uBc0XeNZPKPXdnA4NFEvDdz7ynPxAJkKQYW2XK\nmzCexy52yFKlOpWcDrr7eOOaIHzpCennmRPWq46RYDfmSTZRfPyhndqWNssn\nZ+4PaaP4mApLiCXDgBBRdM0kaZr/9PFP5/IbJkGj/EfLlk08zr4jJNLEXYfv\nd9+U\r\n=63ug\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBVITwKawNWehnKaSecDB1Y3UHmxeh96qvquqUUg9QGpAiBHJTNCTujbyrf5hkRd2JBuuRwouidWfxte+A2ty13Ikg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549158745578_1549158757488_0.37724149447923283" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.1-next.1549394930560": { + "name": "puppeteer", + "version": "1.12.1-next.1549394930560", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6e1f7dc9926e7c6c6a9da594a05d64498d8ff3f5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.1-next.1549394930560", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-sSeTV8ggqBjrynzotXDcdnjXS7ymOz5zLdcEg6p7W/fg2vHKMaUMCB/tRNRxSqb/bYbzxlw3qXpACSnE11U0sQ==", + "shasum": "e57837ced1100bca9ccca4c70c5cdf60bf7f546e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549394930560.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWeP+CRA9TVsSAnZWagAA7hMQAJ7dq1LuWipTMQkK6oBd\ngGFlClu9OP7J+yjJVOBZDX+orTQSv+O5faUiE5M7WJGne9wcAj9vk8Y3INvZ\nbsbKfNgC0BOhlBwsULAeja8ewAfdo153ezkOnWsDumB0eietj/LeJENTpvAY\nnqLyNbSzLk5cDhEndYyZ7QgCAupv13F0hZ803KU+Q0GVl6HvXIGQnLDQv7Qj\nYaaEpTapZjAh5XjpjRayx0dOzVzK7gyTLOWDlLkpa7tPjyTD7VBA3EHt18mQ\nMejVx1rl1TI3MLcRR4/SNtoVoMjtaqPlGmcnm3QGKXLixwi+8qvszq5FfVCZ\n+z+t8UG1iDpscvIm/6bOMB+eJBZMVNdtDGiZlbzk70eAKmNHOMQWfFTGQJIa\nKrN+v22a0CqNuQbOo07zINyUY98tjQBUkBftKckSmKk/yT7fP+OSYTmKpfA2\nNJTaVM8pyhF1TuzV7JMKxcwj2vXY0Fkg+gmL0eTcsnKVItRL6CKzeoi9PItp\nhJ8xSXLVvmMU1ebdkQS7MRjBV7KEduZO/oxSxFpcjG1Ch6rZse+PSNVhP7a6\nkcRV/9M6kEmy7YXkavnJUM5rEHPBdd1F8OCo7hiQO9uPU71K3XONIECfUWrs\ngO1S4rNCqLWL3Arjv8ffbbsTrhjZ7dZkDIU8Ju9xzXj4XSgADvmW1Ig4Sww2\nHy0p\r\n=Lb8S\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAo8ArZAzA5xf1mpJjSbH45DAQZuTuYgPAxaOg6BQTzEAiA+2zXrcFRGzpBkfJ/5p5rJEHxk81eu8AmymWay7lSZQw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.1-next.1549394930560_1549394941619_0.1569512439685088" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2": { + "name": "puppeteer", + "version": "1.12.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b0afb17b680445b348d03e58f5b9a2b8c4bdd4ae", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2", + "_npmVersion": "6.5.0", + "_nodeVersion": "11.9.0", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-xWSyCeD6EazGlfnQweMpM+Hs6X6PhUYhNTHKFj/axNZDq4OmrVERf70isBf7HsnFgB3zOC1+23/8+wCAZYg+Pg==", + "shasum": "dbc36afc3ba2d7182b1a37523c0081a0e8507c9a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2.tgz", + "fileCount": 69, + "unpackedSize": 712314, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWeaxCRA9TVsSAnZWagAAq7AP/A78sx48Q59QN0Cq6xNj\njJOR5tH7Pryb0DoUh+AHA24uJLgPGYO8xg6dN932XdnFjV3Bp2yiquZtXnbo\nAa+YoJ0s93lvM3i3KGg9oZgeUNpELFP9Nw3wTPciZZFN0eDYtAOwj1AHDenZ\nGvhmg8DvMVH4Thu2WpRKBNUE2W6S3r6tYD/Xs7MO3zN91ewiKd4ZOoI89s1E\ntoKtgDuo0dIoveDtYZyQywxdAvOf5Q11WqU44oE9bgKspN+DUiCEDragEQlO\nkWbhp6eDQDR5H/Jtz01qS3cOtEb/7xtlPCUZGZAsAsodc5zLZCWed5iFCYqw\n/einhneuXfv0AO3cScVXQ5Gia4vJ4We2O+lL/TmnXNDW6BsSq+ECrD3oukhz\nBc51k/i989r+QZGK7gtlyU5IQE3HQhIsj2g1HroZ9LbVClbjZ1wqU6OcN/V/\nMKfvKt8TMlKZjwy9FnBEOrXZ8EbZ5xSwpXgS+tx0GMSGliHdEi2lwRdhv4el\nkT5ojjGzkih+jXc/DCkiKxluAqZxz5yuZnsqA1TFHwnUbOOQxYWc8GcUVZEy\nOJVKCw8yYwhBu80pf1/CLbvu9rOTKXtdGIMPiONpeJhsiSsUM8UonIS3GrWO\noVadFXFa06VuCywPg39fDX7C8vvQGnp3ghH94lL8CxNBI5A9SVm+aLjh/dgk\n2tea\r\n=mFdX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAvdzaq/f1/5jUcGF5TBaSV7mSHrubXw5kwQOArdgcRwAiEAlp4Gr5eXxvv17XcHnU6C2whYDiHK+3KHFH2ryE2Hvbk=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2_1549395632670_0.6553888411281299" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549395705456": { + "name": "puppeteer", + "version": "1.12.2-next.1549395705456", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b0afb17b680445b348d03e58f5b9a2b8c4bdd4ae", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549395705456", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-cFexhwCQkMje81z471D7gJU2egVZ0T9hA/Nu2AqK8Pun4RyJW/wmBa5hnBLHcKC1OGNSOv8Ey93B0o3ARgZSug==", + "shasum": "4fa47134537717076b9df2c91dba9f122d67c67f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549395705456.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWecFCRA9TVsSAnZWagAAu3AP+QGFqe6Li33WyrSca8hH\njX/9DM/QFe+R/F8hz83VlXoAg1jPD2oFDcsKTKxijX9QQKmNpKxlGgFCCU6/\nFXuvlDDLVbnMYoG/cNduedo5avNDZYWi//xX00MFHBDUk3FDiZfWAyzmK3Cz\nuvGxcFuBEPtj8xYCNkg28uIgkCyJhNedvEu32J90iRkcIx3e2kM04JU0ZMs6\nsBIQLqGcGzt4p6nXptj1FvWHpp56ifD4f05Z8llVaUfLFlS4FOmYdHrFdZ8H\nNTKv5WbIVj+/P0suKsBNTDewuIQeiOH10xl5MVAREF4eYQ0kG3n6f6KzgtZA\neGsQ7Lav9rrXI9H1BBJXPq2BPlAfE6ogfe0tuUnXY9cnP+hptEdAC5dWqYvy\ncXlvP6hqw+OHEojnWol5CU5aPVRax7auZOv6y+NN1GB3yc1sOAGAskg3itf8\npmZHoqWBAl8GqYBcIbERVcxuIIp2XLuI9yzlCnoMSxnssEEigNp7EP/cJbEN\nt8svU7USsA6BdX+B6WpiRAWiCi8Ey5e6xYy1/oyO0thO8XFVQCCGM2cjWkk/\nJhInSq3BlCxX97liak70c4Y7Y6HRrK6TRpxKql3zXgxUWDlv1NQN4P/DrXBE\nb/XVUdxWHSyCIvJnM6Pt+ishqcvi+N0Qlztl9rvX9LDv/2PcMN/yGhQLAFES\nP/zn\r\n=Jj6a\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDacgTLYtp11o8q9yPm+oZv9wgy7Vux485DnVAStblKUgIgQg4Fx7C9K84wZAOUwUzii5YM7OJ9kwlYqZpr8DRHRbg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549395705456_1549395716679_0.868603794244784" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549397093328": { + "name": "puppeteer", + "version": "1.12.2-next.1549397093328", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a760d79c86779d627612b44cae895f89bfa4e009", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549397093328", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-KGOjZvy7M14fp0pwAedLaKZZjMgJLokDGAkG5ofCV9NQ9A39CYFOWP3lb8cgwE3/Wa4iB5+mtsSSYrJQWM8Rtw==", + "shasum": "4572073116aa7696f3beda2da4d20dca5bb04783", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549397093328.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWex2CRA9TVsSAnZWagAAWBAP/173jXl0Rb6NlgQAyfce\nNhO4bXtmOL+V5ZELMWUH5ZC6yvvVwxlYZ6+kubJeyUloQdo74k3Zci0WLxBI\nCR+lKmOoXypaCwOsrmMVghoxcQmYjlf82aJnrPlQqJnc3iXP9Sc/l2LJqElB\n+XHXxeDFJjgThAG5bJQTxpYlvpeD734xzl1A1i40eZlGaixpfIKtb2acIZeT\nX/Lo46n2I1hE5FlA1GA0pq/53tAeZRN/QfZYtlAJyzHzif5wUJdsbWX5jiig\nrJOdKTVTISECGuLjc5pQpGUCEPvBsdF+tz9UGCG4wdLIOj9ZZgYc0wQwjR/X\nIwOqP52dewnijpj0cptJ9q/6hzlXOZ1HdbOxYC7vsQ6CxPldCLwDXIYtT1Qx\nZqVqWKPbVf+lyVV7SLhuIi+s7aC6CViCdU63s+NQ3Ub5oCvmxzS+eMjEmu7Z\nRxn1obY4/82tSmCdYeiZ4o1QWfrXDzoHmmV9HOiG6wXYgISbmvPHPA3nM231\nabwFaGzzDbFxy5F4ExbqvTKlcQ6qERM/IhRusqho9m90RT6EL0m0Uvu4gHLy\nWrJKiQB5i2Rcynu6C+2StARPSAOBNdCH1vLYCT83PkxecY2dz5XjJTbMHWfL\nJ3LLLZmJSRWTMgtd8gdCK5AnK3YdTK9p1M9pu8DJBFJHjzqfBGG/qYNHdOLh\n6aMz\r\n=ygJK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCkEYllrLpmwPu3O67466nlQydLxuCAsM7HVG2KlzkN+wIhAKSPshffFZRwvB3RFXukKHUYDxxq6CYegJIUfVn0IaMp" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549397093328_1549397109488_0.04849299238010096" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549399902743": { + "name": "puppeteer", + "version": "1.12.2-next.1549399902743", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e1000009a5ea18e8ad5cee3525f7e1944d98d461", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549399902743", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-sX/SyHwlCeyvJJM48bRiE8f9zaXeSXSEj9gwyjmNIYKzHYo8ra3YYegHLENa2Jlv2Sl4B0UmvTYj5NDIu0f0UA==", + "shasum": "a764a4c1f9259a211a2d8de18d1710dab2ef2ee7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549399902743.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWfdrCRA9TVsSAnZWagAAUYwP/R92BlFuMR5rqVmxk0O7\nPeVCrUAPjBs8hbmdAGW7cB2LTPLU2Cnrodip8xAxq7N4D2xN0xmigSXsqWL6\n6HVldDbpBDASQXo+M57Xe1ZB4LXwNo27DcTQfPm/q1iidedTfrwgIXUh5tCi\np8efqlJToPhwQ1RtKN9TA/8WU9+dWF4JFRhlNKCz0WU84oDfa+jlRunxZj3g\nL6PQqB/83ZfuO2Eoeu67pjPnk/Ofg1x4VHZVDJtP69c8G1LtqcTzWIdwgCkq\n96YqwQMJ7+6HBKbedGuPDAPOx7HgeoF8zB5v9UztdnsIR1a62nCSEo02n6ZV\nvC0i0OpoH8QlItSAsRxPPRyngQGlNFiqf0PclJj9sk8yMdpcbnzCZgCXMJdq\nEDfk0xr0NdxMgtUatfTmSQtgr+bcDdcfUFD31XU9KaRszR4HsU0uu2Btd3tJ\nyssZVV4uQEIJ0oxVbUURgwqvPy1y3S3zUTk2k0zB3oR4l2j2D6sUPYhGtKMq\n99Lr02Gx0Nf1HfcqI9Hzw7zMwEBeUvSeMlSMIjPIE83//DrCugdEjZ+oxGGi\n3qxgYw9LyElN+teIN7oaONusmIBThRojfX2HjoqH9I479a75+8NV/Cc1JOy9\ntMSZQlSDw1mf12C3ZBK6PZwTgOgiIorqesnHOytb3pS28k63isuaaEAn6E1g\n/xGC\r\n=OBkX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICaRZSTPtQZeHBQNAKZWx2MD3csTIFBKwP1zKdy8yTfNAiEAs26A70qTfbP6J1bqdtoeTWBIg/ZyIPUg0KHx3Cn/OTE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549399902743_1549399915144_0.4858047832672472" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549401617806": { + "name": "puppeteer", + "version": "1.12.2-next.1549401617806", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "dd8bd6dcb1e016b387dd53139e12de5130468cfe", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549401617806", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-QoVwDRMyUyaW0xtCh1QCk/XR8DKK9IX3nTJosuGv4PkiXII6beYD5xxy3j12fwl8uCfRBIKHX1M32Xgijfp8TQ==", + "shasum": "d91f533bee94dce463e5ea629676d7e09a02dc5d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549401617806.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWf4eCRA9TVsSAnZWagAAZroP/1dE81eZCTlW2ROPasia\nHSAX8Oxh6DweyeOSTdE7t35P5Ms6hIRvmrWvzMbLAdZoySsd/1fVi73TvJe1\nUBOWLvib+x4gFxwPz7TUFi4N/62BPvr1vfYnRoxAC+hN5HmCrPHxcYWYB4uF\nPfGGJBXbcp1sGWX+SpREXWsCBRYZil1qFuvVHyHZTaESIs4Et2aEP1zKEhrM\nIAPkayapev9fKtE1fUsQ+mKxilCCvMkXZw8VR9AKX03Q+Am1Limo7eaeb7oL\n4FAHyffNrTGCeGt5P3qFOiSeRhdtqacJ0cGQODMCwPq0WE120ziQO2Bvp6Nt\nEl2aueQ5ig8fkZW3jvs1RZ6Gi65gq5YOZdrxB9FMQLxrOYTBZL178aE4jiFV\nelL8KphTPVMeXUB3aBwfJqkaTgA5H5Ir+zLjMwu5GyWY1JJdYuQkcVKaD5Jf\nSYnRrHZ4Dbkq4Vlwdyy6Kv/Wc/xEMEOun2kB+FNNVJ37DaXI5V7KFSOokHem\naHfXaKiyGOtBwvRGT+n7wDwxG8fn29i8iFPvtdDh/rAZTHmxlRzHgqIPX2Vv\nLqhBp7nUtTyRYv720Msbz3LEJwwB3G/NSwCi90yfsZt0umsGxnUZShhLIPCn\npD/AgMUCgEq9GndOXdQhFH8/mNjNgc0w8LqOUtgAXsCG3jv/sSrabuMBPbLN\nPbfq\r\n=mkoy\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCvje4/cYBt0oceSaCJ3PWldhAxrFWJvwQuj4rYfRyElAIhALiFqo37vZyuoB+vlp/b0dV2yWY/j0JmGbbC6xYgAea5" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549401617806_1549401629450_0.6489570174671451" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549402405484": { + "name": "puppeteer", + "version": "1.12.2-next.1549402405484", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "28087c291f49b0c8ceec550a57ae3bf1ef8a22db", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549402405484", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-tqMd2RdAF9Z578TbbyoRD4K2Gl7yDPr6qEVtxHd6Jw59Pv7wWOGoDoZ7XLmvSIufVQkZgG8VM1I74eiexGPKng==", + "shasum": "9c38b47a95053eae90fc6ca2eac7630f7dd25537", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549402405484.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWgEyCRA9TVsSAnZWagAAd1kQAJylOMalSNtHdaYs1Ahg\ntRn3eYeLOY0mMWiamw2PP3SYf65VqEy5yNV00Jmb01AlbGkg+ARKzistqCVm\nySFoK/PtQUz1K7+AuYdvdJPlkCs8MCXuFV2Bz0KQqdaf54q12SHXafhpAvEt\nsV9Ia4SDGvU9J1Ht/bcJmBZd+OxKGRzif7lmSpUQQ3Qqp9igBC2g/j8xEHkJ\nKZfRqZF+TOXHIsjdbh+ERzxOX1ZxpmREaicQDw5X2skRowENuyNrvHdMlhXR\nUqbnzfzAhCrNFLV/VH2mRbmpzMQnMlEsGlVLoemXy+om3dmGLXS1HzJshOHP\npCRnqGqtX3Vj3slFRl1GjD9ebbQ3IXuzne/0nCvU+Gz860/VTGN4ZGgr3AYs\n0dIVSlJf0/HGZAx36OWmz50gAYL6nKOaOX4T+/jVQ2F7mxqKCrbJyivK6j93\nuNOnxNTgAynSbie+gsB8QoRmfEiSFq3nxzjJ4EvfRYzQ6GdXfTEWn2Le6S4J\nmg/ly9ub7DRhQckES1H4aeYSB7gFVV+53P3jWulpu6F5lpgvPTfStjjLAeSi\nEac4OxijwlhPvqpzYH5if+OYKwav5yIIqoq4AwpV9CjajACrgVg8GAYu2XX0\n8FDa7KM+DzGuzq+PNgNTeiPbd7aHdVf7sL5J/gOmQ8faDfB4vx89wn0qCDH7\nMhn1\r\n=3nWa\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDM35S5XuHIjW/DwCm54pMZAhMRRas68lw+h1DqH6yYXAIgPpzHZujt7TrJn9Z0AJGDejHs7snAEqUOYN9JjQ5j0ok=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549402405484_1549402417405_0.9149475750725915" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549403066989": { + "name": "puppeteer", + "version": "1.12.2-next.1549403066989", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "00bcecbf727db405303176d722d030729a2b1835", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549403066989", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-aOAlOgIxwY1jKo74IqTdTIXxucXuP30aKYGrF5UpbT2996vFJyEz+iqt48oqnrmzJjoftFe8zYusI3Q+SDyjRA==", + "shasum": "06d2c8702955572b9ecba937f4e1ba4ca93e70bd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549403066989.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWgPHCRA9TVsSAnZWagAAfDQP/jPHCFxtWPAb+bMFQ7eL\nv37xwXu4kHPRWSyAmM0fs4lEHG9Lkceb7sdWdedesdM6GWBBLIzZdlnCXkUy\nv320zwElvkS6KrOJMOA1jrWu2bq3Y7HIRQrYO1DPz8HUkFWkYRbjbun1267I\n6Cc/7eL5OhiDiktOPR6Kahka917ZTzgg+jHwUfYlWcazi/tMLxsrJWFSEYxO\nUkrwEUAkOqtWi12eEiSR3jSyVRtJZe1QwUQNcuclWg4gPGTpzu0nPM3W3ruN\ne8n9CHNXbCUFpAP/QZOKRVTfq2P7vpx3IToKGoSwuxLko799H/C70qiTdlG0\n7wDty8wXBh/4llJyJVPBSj00t+0Nm4jd917QFzj/49XI9U+kmDRjwYiCtY25\n2T4w8c5+/KDl0JPjIXp3XCshaE5NpMg27LxVfAoj0venslapCnc12T1i/p2o\nzvJRNQgyEa+ybJp3acsExHbJ5TB/V5VHGXCeWDigUMtuwQHksIJSWbHuEGrB\ntp240cqI85ZOhsRpYo9IT3YapjPrZr/Krxfk/4LrKYfujOy681+J5JOD95zI\nyX6A2hK8/7Zg1T6AFszOW4jL4qDKOC+RC53MAW6QDwiXSPulRh7B4Foi7/vB\nPBYbG18OWD5686w5qEXt5Vezj1y+AAttS9jtWgiidVGdHX7uoHdoFEg+qKgt\nowcR\r\n=a9XY\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFJ/JdgZegFSNh98k0eYq8wqC657Xa9bc4XynBisiXw6AiEAyV5iIR+ioWPk1+liZCMbiCp34OGQlttCHr74IU10OcQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549403066989_1549403078313_0.008312031766462447" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549409507651": { + "name": "puppeteer", + "version": "1.12.2-next.1549409507651", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a210dd7ee2f350ffabd7d69a60f96b872b861087", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549409507651", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-RW2WkIQcNK+DoVD1KXZIU/JGVXwNB4FYzQnlPDw2HwJpldZsjutjSbfpoI4A9/9Ij7zvwTNtI4DUfo+FOYbFsQ==", + "shasum": "b3ddea0f45d453fac3bc47008b44e68c9732f8c3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549409507651.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWhzvCRA9TVsSAnZWagAANeUQAIIqUrpSn+8Y4bcTnRmB\n3arjrzZ6nCXC5Bk1ZxcpoCZbaxCGJKaLVh3TG8Zem6lRTuwypgcwykZDHK/z\nxy+wEusxj8CdYRrFoeTvdBVVVjEfPtezhhRDP3L3zGmtgYV99kRfmtYBkf/Q\n+pnWhhyyDhYtn4gxGZ/cqaVdxov5pEq3C1okCUOyBOn2HZ5utNhkMUmgDEES\ni+Olc98BPp5YnPAt27HITrAhhBSLqv2PZbXA83cO6ndAbWvsQ/QsGkfDuxyv\nqA6tONjYJMW4LsAU2YsNPOApDVZVOXq5w0grHvXNlxYSTZ3jaQsYZeqUV/sx\nNstjK2TFu1QbTUU4+2jwkOQg7BHKjczxxVglHEXcVfta1NzeP5C1EMofjs0J\nkj012t/OZ+27q/tlYpquv1oIcsVzjsTMz1ViiTOaYR0i6BeyIygF52OwQB71\nxUuASt1LBTd3d8O/KfkYVCgIny9uWl074v4WzfYBfM/WuD1pWn8kyM2bRdyJ\nC0T1DlwlIu8Q6uKmbl1f857xObBJt7gLYQPezjOOoA0pfNONV1Rq7gGhoqD5\nzBuiPzSxQ1PWtsYswARlbaXyRQuFZqji3Vh+J5cz7RAV+ZxtXZFxbgWpQy97\npM4iLXzrQ0MtjUuyfl7RUdL88E7/1OhIhYXIZyMBKgnNQU7FZ0DSisw+ULtk\nqkj2\r\n=98ik\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDXTyj7MkdD68pZ3W5c9YniwTdoRIyArI9BBs4c0KruagIgZtTnQTv5xAEN53t4vbMD2Q0nD53U7+RVrU3VxA+k0kY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549409507651_1549409519263_0.9149731148760412" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549422350612": { + "name": "puppeteer", + "version": "1.12.2-next.1549422350612", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "bc71e9236d2a0b8ea82f5670ef6c116b3989845b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549422350612", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-UbDpK40keGLfnNQTj8FiOmhntzqYgCMnzMRrD+joNuBg+euONG4xKrbCG+BifgwaRjf1aRMP6Qt273V0Tfj51g==", + "shasum": "7610b542f4009f1fce82209e2df1f36bf322833b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549422350612.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWk8aCRA9TVsSAnZWagAAfCEP/R5guzoOrHHsHegCMvSk\n6qWUbeM0ro88JDu8e3VNEQ7bVK95ihJKwYEYhFIvjaM3ME7OP96iZahrI0Kr\nh6zNXbtL7I1q0rXlpGTBH3RywcR8CPygPC4SFSCSb1JVcT+RH5Xa0jXPQE7f\n3dHXZhQxBA4JxUsYmTWlmqRqd5PuUO+8qGDWEePvEr8lweO0e35gU34JNav0\nFN4/5kPmultSsyX0mqScKvf01KuJa6YPZDH2FLA/kibbxpWPTP57O26WGxpG\nY9KCWqQAb4C4NTP0XE01GXf+ay8nMH30QkT2iS8W9Br1qeTLRBBzHKvzjQEt\nlYiOFX433IX9VJ5DulrPoZ6Hb2V89XoAJui4x0UwUO2F5cVEJXy2j536BuvD\na3LGvZrnSY0hzVauuK/gf9JzMJN+May7Qf2u0mDRhI+UEr5QlKdcj8ap74Yv\n691UyiFJrOEvyonaiHLvmBlC4lkv0HIr8UWSPZDUUNav/YGU7upM6rihW8Lv\nisn2Tboh3QHo0q8CZ83vhZGIToRx4dG3pdTGCsKibDvle+8qHwmDlu4xIr5n\neURhUELlM3SZ5QakXZKnY1njmJyiGoQBYcB2bAWdub2C5PmEA9xrlfGLRa4a\ned/tmM39oLxyEhlcFy/8fnhnf4fJFot8LKpcMaO9YgO8cWcNFvEeZT1YaDUK\nHoSU\r\n=HsTN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC3Zh9sw5xNXa4cfrIBJCYSsSvXBCaf24o1M3uh1O/n4AiEAx/zGrZ8anPm/XyNnU+SsuvKl5uKBZ4JaEAON5LJa3dc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549422350612_1549422361970_0.15985645767400225" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549425183362": { + "name": "puppeteer", + "version": "1.12.2-next.1549425183362", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "86783c24953ed41fea99ed359d5ebe9ff18fda62", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549425183362", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-JZk8R67pKnU5hNSeRQbdUsn/DHupY++Guij1c6gbspCVH1eBy/3fWkm8yHQZo+uHoFa1YnytW0pb7qEWNGyyRA==", + "shasum": "d5bc4c47e246a3ebf9dfff168a867776db9c929f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549425183362.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWlorCRA9TVsSAnZWagAAKawP/3lvEnpiPThzNiAj69RF\n7l0zgs9garTDSLbEbEZnBtUCB4RczGXxPswP3N+vhMuSyZLpJKL1nb/2AMQZ\njvGOtpau7lpV7qwmnhXNiz7fyNoY322h7PVi7Uz+T+YsoS7x129qIezfR0my\n/bQfj1fES/R36AdbCV67mptZ99WM1gizGZzf/p2egX5ExajjZ4Utno46fkod\nUd11uSiW2lu2i8X2k6nLwWD5b6hO5Feq4JJX6hVbhMOwZYe4mPNaHI/XMSDb\n7mbya1sILVnucPbM8bRw6sifJ/9l3KsKEuNUrTeWwLFHmdn60MnVVnhtIIQE\nKojXYFlN+jBRGIxPQv3FRt8rRkcNcAXg8rcTcbj1S8Ko2JZt7qjU+orBjVuk\n/eeMO/trUlPEmtA3g6SLeNGwzIlIsr6QmahNNUGLMDsfh4BSm3QC6w74/JGS\nQ/vqCH70VktkNdU2EKk7BZbkjcYiyRF4vYD21J3m4c1fpAUL9OvQQnqPrUJL\nkR9sgIjHPgLq8bMcqAKhojB75L2wGoklYo0XRGROJeS7C6fM3XyjLLdxW4z5\nbsfGH5uM4yfkywF9p//uuT0XRFAN6txIyfsm+8lOGxsZB7hyfh47ti6fFlWN\nqpbtbwAq0KtJBfRAk+zJ6QbOS0LkeP3IbdN4a5pE+Zb28dX8oNVDKI2dqhu0\n/wDp\r\n=hCuH\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH9SsHDHbps4d9dxalbu4z014bfBn0dEP2Ncl661Rjj9AiEAz8M6VCRswUBsqAf/k1aX3+wZVyOxtotMGf2KUX0W9K8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549425183362_1549425194670_0.544266562115602" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549434954882": { + "name": "puppeteer", + "version": "1.12.2-next.1549434954882", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "14fb3e38db7c97fc3ea76c65e6f219b0ddb3b54f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549434954882", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-eE/FYbWruJqs3ykpItDRDZqtEo6o7IfMsi43+JV3E9bi4YALedXcXSjoL98rVRYPuw6kaV6E9Q/pgyXAl5Eixw==", + "shasum": "e8ae2b10a1f9fe3be6f8a6a1f10ad3745a16d0c6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549434954882.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWoBWCRA9TVsSAnZWagAA6dsP/R6/IGb303G4eC7Aqv/N\nN5s/cdfLsz9+AhUxPO+BQ/tigLpiXk/EOKGPSgEyQYNPvbBksqyXTpG/VvVU\n1xQatnVpb+wJASdz/qvd4AgUsQ5lZnGJLTddE9M1ZakkjtccJcGbwfjq+t1U\nBDxhPfilahu5A3nDFXqoXXFTn4cHhQyxtBLtGCfOmKxDD2gVX2KIt4TTXeLq\n5iGXMX8N0w4sS4FSnSPyAmdl5u0DiKPLaBOjanb82XxRQleZpY7L2xInPC7U\nT1lYvhLI4Tn9pTp99P9V79ErBgcKXSXr5cyF94e7xI2XVYMFkd0g2NUv6hGc\nepZdmFOAkyatBFEJxkWbYC/XiTh/eKqySsepNUvKtGDbdPS69k5Ibc7+fDwV\naNjWosa1zMnr+/Umrm8k1E0JTdfJ10E/O8KJon9yfCTI2TRfqawpmAOGZxzv\n+uIBEJCm3SQ8fPAT7i8x1pTzSPb21UAOYhnod96rpSAsE12G4I+Dm3F5IV/N\nS2mIM93FGSd+cHHeKBOrpxhRy2Yye+XLAWu0kg/MtNdYKGXy7k9tbk7PPsuj\n5meprBXV9H2t39furMfvgX6XOYn8ExWaplhL5F8njfaYmL36qnwhHOnsxIdS\nnL7wz8Dbo5DPNB7JzZeBq5AVLUagM3krOPnHSCQ/2tDvoAdF7PjAQnXidfkf\n7l1h\r\n=JOtZ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuaD25C5E6rjUhz5/lG5f8Z4YS9CXrnWIFMOsEfe9SQgIgLLKbNKRPTq/0P8O35dwEfgmnv5GAqZx5N76a8VjY/jg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549434954882_1549434966125_0.08477464193206341" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549476612045": { + "name": "puppeteer", + "version": "1.12.2-next.1549476612045", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c3b661943209b2f541f920357306bb4794dcd1e5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549476612045", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ABDQ0GTHqSX4+AwNw9ev7PqxHDOKfR6x2+NlI11wUvYg74tGtEWnzpE00KhFw7zbGlebxWUJdXc2O2D/kbm3KQ==", + "shasum": "ad1f01f211112556e17fdca20e9f32f719cb48fe", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549476612045.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWyMSCRA9TVsSAnZWagAAS6AP/2ttzEdQX3SUpXC6/XPB\nlHVRUgbFrM4gYkZ6PcFju22wtBHWkB27/DvOdXuEHnfR1Pje1haI+T5ez1xK\nX8pOqxkgd9HEoOrsp/nBROo/nTQAQ+d0WXmIlBoJxWA7yOkZLaGQwG1UM/lE\nr+7ngCUXTMS5qL0jouJWjwW23V1cj6mwaCSb8SfBpPn09cLM9H9tKLSsBSZb\nTgde1deqUDighy//+/yAkCnekYfOlO4rs8gU21BuPAXabZkT2mG4NO+6Kg+/\n+b4sUyYEwnDhTOQb3KdWmfCQ3EKdWrb8pFetLenN5tLPYPzkBwAgAn4ygkp6\nQ6jDVbC0Qfe4DthiWH1BCzNpfs+/Pul6U8UUFnhAFeRUdAEsV5vIiPrFPkDt\ny24edpkpff5KGkbsACcvKEJ2fTvIbVdFtMp9xgPpy0Bo1pYQ/Qx5vuRzF53p\nyEgsqW7ja9n086B6FyPNsbTfHIoDxzXokhBD+eXyvsze1ZwVG2SIY75RPAOh\nxaQxCxQp/QHG6jSGD//hSOy3hAhgu24biCuCCZGd3tW5TA83d2X2nJgUmDVn\nTK7453m+FLBRgrW7xV3+ChdDUpr+fvBN0QYiLSdwxklN3jdJkB76adteYg0j\njLjOC8Dh0b0wY0FaN4NbnIEyagCZr2o5b73y30QLjt3iYfDRSuMgrH+Mt+JX\nTjPb\r\n=RqgY\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCcrL7vT4n/IGxf/O2gmG0XDv1QP4wSQCdkdpHYLdJUuQIhAIRBxqyMDKSiwrOQtlvJP855GSkqbQqy03Tc4OdXyxvq" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549476612045_1549476623412_0.12363209627227034" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549489957515": { + "name": "puppeteer", + "version": "1.12.2-next.1549489957515", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6887ad881ae75ed19656fb8462a966c3ca28ea58", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549489957515", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-BZWh1ed1zQQQHvaySrJDtjv+1Xxi9AiWMN69WG9A4VCOPIRXCGGBZtFrQO67xcAJYyLNsoAXR019J56u66XxCw==", + "shasum": "c3f9bb4411e9f056a158bf0ecec9efa28ab15eef", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549489957515.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcW1cxCRA9TVsSAnZWagAAQSkP/3fylon8C6nNaOzwM9gQ\njcIl16fP1W6/8hkDPlE4z9Id68FYhj5thnpQusnlXvEkKn9lJzaByJOgP9/C\nJfh/QN+bv6w7lLSGruYA9tSojuHljOLFY7U3Vtbriu4TXRgqKJsTHgm/fWZo\n2eryI89DVCCCuNw6n/Ee3mdkn8GtKUhmHTtnrp23gvQEqEK+y10TNzQJP/vh\nmlxPyMzJXbi3FADSJU7m9TdbFFheuo98/uxhpuXx3GM4y1G9rzHKMZzsxElY\nk9B9iOonLakTKSdSPjPrX1c+E323dRSTERwGNguGXE8ohEeNfwXGfqNFf16L\n+ENX3brpFcOF+wjUdrGALQ9+2ghEIpaMu2sDNRDCb+rbmVaaV4iFIpwBM5nn\nFTf09oly0kxYZEG1+0UKrtTRVrP3MzvREWsJkT43ZGi68wddH7vdD00KQZla\n+0r3uqhuB9vKHkHZQy6klJpgFnDMQ7DJdqNfz5Cud+HUXNFkt/KyymW5DoAN\njOVKxLXJ56H8dPRHiGIOAVGZhU2bSNVa91phAczVxqSUfOHNjZFWNnTWbz3y\n7ByzFdhiFzLCKlKRhRQYX1rcBYYcpCFwxXEOTHeRWuqrlhcthIp0uIX/6d16\nbPKHExqV8kOAqwEHdD3UiU7PqrJu3BZv6Urw5x6OYWgMixKRfUaybGjekQFT\nPy2c\r\n=hGxK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC9KEA3ekMYnwaSoNlk1DY1Y9pj0PraOIgik4xRWsahWgIgTGDbYnqI7DGAgrFG2FmCOmbpKucsNnXNYR5SSa93B50=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549489957515_1549489968989_0.06068934647134605" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549492279061": { + "name": "puppeteer", + "version": "1.12.2-next.1549492279061", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a762dbe96f80cf18d31294625ff79f52dee7f0f2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549492279061", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Q/OGISq7r8mWi5T8RzLcjvnv08cHajU36XwOM9fNEunIQqCt/BdaZaJ2s3gwdOaQX+KduGRlb0Zn0P6GuVU+JQ==", + "shasum": "109a2715bacef82998424a7f695636377da41e0e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549492279061.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcW2BDCRA9TVsSAnZWagAAtJUP/2zvxRVX+OJh6oyHEpRg\ngtjdaaCIYKEigeVkLeGp5MX+nVlzE6AxCEQAwBCqVKsMvu7Iov/GWp+nZjhT\nBCpu/KwHakd34fGL8rx6SAyja+/Sts5hcUGLe2Qny0FS3Lv/d31FhtYuGym4\nUlYzyp9Blztj+0qc0b9o3aO1kzX8B6PbAnx7V0JqyjVJLhthbn3wyU5KGdAE\nbTOEqw0QTz0GtGrui/NEKG1UBM5B3AWVikM4MyeIIfaMVZdveWo/sgvKNQvN\nX3N+yQXWANWaw6t2vAvKmG+VZ+jbdyd+uzc8BBzRyKqS2pcvrVCrgsoowoBg\nGeSwiJNxsDvJ0E+U5Nesk46zYc84FcDxJzRdalF2FFryvXqeuKLcTJIVBNie\n057UTog+kkR/A+1IXN0+LeXVVrWv1Ub6qKzuKfAAbx9BZtHKRpTk1FhzL2i5\nh9NVkqzbhd8EJqAAgmKF22sGaY6yXJ6VzxODie6LXdvjz9ePJpmlZUfurqdj\nTscgKGlKcoLcZJPWL5fbSvqQQvcS6bjhnBpkAPf0AK1BjiS0JihYhobNSz5p\noHKxf03BFZ9nF9mAiK1zDzNH1I7dlBqLLP09TVcK3bOEWWYAzumcO/O281G/\neIM5z1NoFUFcmm1rJqHm9kiMy1Y41m3wiEhNZnJ1YVYcwg6wYfH1WvCAR+WC\nTY8B\r\n=bty0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFBFkbKXaB0GphCxTx9kOP9BwOC7LsY9iJguY7109NjJAiEA8zz/wf3zpmBi+cpSCfjT1u/3mTeG7hjPHo73Fj7k1BI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549492279061_1549492290591_0.7962111248289478" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549500038211": { + "name": "puppeteer", + "version": "1.12.2-next.1549500038211", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "96792793eaa66d267b5af36ac619bcceee3a9f16", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549500038211", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-V4yTKUQi4Mf6XYkOrctIMLxM2MUMoghchfCp2t+SNvgwhQxWWg94dGEdIJIi3Wj5+uztE6bPUGm4abqppQX+eA==", + "shasum": "15847ba7755b2f2ed0b30e023a78e0fa0314118a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549500038211.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcW36RCRA9TVsSAnZWagAAcxkP/0lbPKLsao/5nT7zVRbh\nnOwCnnxWpg4wUtC55qcCqg8yK9nHHA5QSGKJ2ZwUX1DQn7KRLOyDvr4GocVg\n0/MfCDEGxjLvAf8jRQpavPI8Aywd1smOosAcyE66PZQdeJ9R1IkhyHCMeRAb\n6MiTIU8oYqylg8yteBH6BAMvMtJq8GBTAjINk67aQKkNynagP4pgH+nsCePs\ncOZKil4mHmf7TazZa9tW5OAKy8huld+UBVE31D6UhLf83TlHt8aQguWWD/Uz\np4q0MoDaxeeCWPsZ03l+kbhonpVUh0CD8/bVGYz6Sh8VJfi9INIFzAiP4nwn\nOAD3j6gCvs/uEhDRHQafSZzmv/0RAHXm0eJA+plQZY0KMiHv4NaF+DdvIFL4\nj08Yd8TlM1i0Tk0nv6Zdq2UiXWaMbgtSVVEM+Zidj7Wrm0GsDFUdYFbm0slI\ngWrqUzvlgRncA0Co3CQvlPIekStohOGTHwpazKbY4uFmkHDMwDpsrSGnWhLF\nLjRtZxo+shNgjayTcsIQEnE7T7mGCfVOC+TltTTUv+c5gNDyqOB9eT1KXvaq\nEcEqk5K07tS3xOeVxqkFvvwQd2uhQ+FDqkSsK4chgNtGRLU4d85fu0IMT56u\nwxc4GXoswTLd64ibFM1l4ijX+wJNTu58jQQ644FHl7Qp2G67XW9kwlPxbHx6\n8ZpL\r\n=uBFj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD46qRa9ulA923upd5+Mf9wMt3ZR+DilEmdlgYsb7r42gIgcaBaoXFpF2EmzoD7oEtZjrjoXZAr/DQI6QSsRYQRK3o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549500038211_1549500048990_0.10389230225116974" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549555526593": { + "name": "puppeteer", + "version": "1.12.2-next.1549555526593", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "609e7633819485e28672063fdd79137a4a069bc3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549555526593", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-qoSWY1IhAlHKJtzlXmoyNQxkFzA6hBknQddX1sbIHKBV3rapqF2P4RpYEf1fngy9HI6ZykJOyTUwYHFSwPleWA==", + "shasum": "9151ab858786c955ea10f89d5c8b085ae09dbf1b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549555526593.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXFdVCRA9TVsSAnZWagAA3VEQAJnsY7izX4ymKSbPwN06\n2Fs3dKW82iq/U9bhILximx8YaC350LihHRBIf3a4146MAWfSG5o2qMyf8Cg2\nqkrScH/sin+sQM91oDzD1irVyDsTTHE9QriHnl7+rti23gNQTKZVBHbGzkML\nEXCMiDTsngYKTr/vS4rlyosRBmc1DhNRMdfal+d+ThyrDateOB/4Qdrrd2pw\n6pwYVYYTFoR36dtlK9N6uKvfpPlzW3yRHW08eSL+fW6r6iEJa7t2uqilIz+g\npP/ZdN/Sq1IMKzh2r9C98E6DRak2zL019nn1vmwDbO2gajpB9YzlH3TUaglh\nM4mdFR5uR9LwRDbnPe9QnNNPm38iP8CeuxGreCAWhCUqK/EJPWm/syqnl39i\nJY0vpm/gNAS/ANGD9JJZVH7dEKk2/z1hakJSvRWRJPKO3WazCZzid30CsK/d\nB2xwUkrgFBIsTCwlbxV5nvJHb6sPMpR7b6uYAFtO+NeF+tZFu3hbvHpgCO/0\nYFLa4MLHPMkqGc1r/Sdj5wZv4YaqcToMPzCrTi8FJgml7gqOtggwiXTzZlMf\nszYuSFOmRban6yE45WtjGIq/UdtXisBfe6uFkKnUG++AjCSMmAdypaS6M8H9\n+HcCvkCftHkxqux1NhNFTxppbsJqEON081Y06FcQ7swNEHKhjYZhr5cp4tGh\nXl+N\r\n=QNFL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDIsp8lKlJZerCAvu1hSPBcHurN5eYT/1qyZwGpmjVpSAiEA7DhZc+IsnkXIl8WzR9OQD54yBa6DzrDKN+8XxCDgHwE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549555526593_1549555540161_0.8009852781661919" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549556415428": { + "name": "puppeteer", + "version": "1.12.2-next.1549556415428", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "76eecde8232d163f6927c869a28710b12bd4eb74", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549556415428", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-1tElpZU7o9i7GKyTSEMNbhdgQR9pU1KjAMFR2/02XNwgB1fIkkTv4x+5F1tdIz8pJfvYWc65I0okCUUg5oaATw==", + "shasum": "717a0869b91f38cc1d61ee1f11024407dc846640", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549556415428.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXFrLCRA9TVsSAnZWagAA6J0P/2Y121nYY92emKTWtvT8\nWlru7O8M4qqbb/H2diO9Fz5xBQecTmBHVnEaG24yK33Ffy9LKs7/wYCHaHRb\n6mM4L+ElElSt7gElfvhYGO+HJrRMIvY7vWX/d0UCzaM46lJgJoVX4LecECTF\noYwi08BKCWhyr8lCVXAR3HiDOi6MKnj3ufCdzysdhadSSX7aSsqxmpMy5VZc\nVRNI5GquexeZBay7pXOU49hW4AkdclnnJ/i8vD0Z+DIEkdbMiXwtlSTYjbe9\nHK0DxyZ87njDPjP/zjyLXfmxGVmQp32N4YXQ8+MpsYzAJvUBOioZoUpJxw1T\n+xVuvstxpjf67yBTlPCY3yhF3C5icWRmMlifovnU6bm67duzZH38tysyPMjB\nf/UWzxg3O+qfRrwiYRdZTJrFqbqgbcSApUBLaawJ8KcqNuxRbicoOxYilUci\nwtOmKHai6Lyh6nNTnNV6qB43Q7dOt2EVHn/z1izS8TLK9w2j+2/E5oq+vxiq\nw7BZ2NiBzgv3yCf+/epsmKdEm3ulbi/unGaksa9YGpNdGig+rQNYgmIPdXEu\nchrXTvK6SBwGXm15tyMLMVCi0o3rKnwB/HnM79WpL/pODAMt80DsGpEgSfO1\n2tLYYAKgwN4WRgCHM/AZEf35FOvrBU0k30khaI84CPo2IbhbGx/xP4ONkWpK\nIW3z\r\n=IInr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIASjBx0Tl4m9KcP5aioe59Lbp7IgitOfNem0BieBBrSKAiEAoRMY66qGh0GqxpMOrNp0+V7pdphCQNhtD6gzMeAxiAc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549556415428_1549556426503_0.2945379364777443" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549561537920": { + "name": "puppeteer", + "version": "1.12.2-next.1549561537920", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c33be4cae4a5a33e610d36a0d9dd53eda390dc8c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549561537920", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Emhxd3PMhQBDkio7nhmTuIC6BvKpXmkqPE1uFNewQeoPhO8TQ4jNrELkPmXcY7EzOgRPBCtJku9gMj8WtJRp4w==", + "shasum": "72101a17309ca4d3c62b0be70b349773691b40a8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549561537920.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXG7OCRA9TVsSAnZWagAACJ8P/1pg4fnWLyja1RYEF5K8\nP4Pl5oW7lbuwS2i6dzJXgztaW2zkWGD0tqjDuhEc8qmAFZkg//bjvisVwI6b\nYUvzIciPLUX62FcCRHWLrBSR4Xs+ptFbOWMltTiQ/qq5a7BEgpYDTQAtKFGQ\n5Dvbw+RkGI+oCdhpITXsKh+hH/d8+InhOS0C3E9oDf9yt6UdBbvwfIE4Ybug\nq8Ji2qBh00U9isZGqOMTEMShe/+NJK7cZfEJcoNISLs1PsjEtQU76mJVXEF9\nkyqblYsN8FM8EXRrEe94RS1/XmpCtnMab4UgPPteX3n9jnxEvBCiDNSNIzob\nu2lE/UoognAUM+t3QzplRJYVDu19K+nFrrYDGqTiqFAinSKUeEGZDKwLqIdU\n7t9CyMNCPzDxmb1Wc3vQ9b0O4J2wCr2gL9TsPCbTPxSx/Sh3/fyXBSvWuBhN\nMJIDM/507n4JO/TcRLS90q/bSB/y/ksATGruuMyrm5qwwXjmWCOAHqSTvdxn\nIt6Hko/qJCmS7DUERt4qxrak1BpGTljYYyUS/7jmLhPCxIVghhfv6I/PqJUh\nH9PdjOH6S3Ad15VzcZf/77aijDjPqo3Dcj8YSlCu6g8ywNyHRSuBJkMKlJlF\nzr95Ux3Lrl02xKqiM22AuWGtuX0+m2LNquvmqfsBdl/QFRR6WbsiihuQrUpO\nfacz\r\n=w1mz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCJqvM+W258choL3iDXSeZOetsypMtJr9sQg6IK4EAyNwIhAPfzOHCXWcS7VX20RyBO4V0WWw6jGG56KbJlfQzX0U/I" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549561537920_1549561549835_0.9462459386134243" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549575152419": { + "name": "puppeteer", + "version": "1.12.2-next.1549575152419", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9216056d12c70d81fb81001e564bba2f9cb67b8b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549575152419", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-C4kxL6ixyjqExFUwjJS2igXlQPFKnM8YpyLwGdxMnlPzkIGXFfQGbXcAJNpA0uWx1ca6+NiLc1dirMxIXk78JQ==", + "shasum": "6f767f3cbe4d7f04f0366a66546e4c553ea6df25", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549575152419.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXKP8CRA9TVsSAnZWagAADY8P/jA+3GUxCVpfC6TWVkGx\nTZ9H6dBJ5oohcsIr3b+TQyi7cxnS4RZumuAxLvgQ1zQaE0HwvtlGw8ssDU2t\n/pO4Tibrb5mOmSRPRZDSXpGF3gpaurs7GZyAL8Cspo+1qm4g6ePGshofGS/3\n2NUnmuG76Ws1lOR15RuJluLqYExWDew3UD/aOqv5VVGVTpXrCwBOjHY1Q/PH\n5fPqgHeCcKmS2rAi5cLYqzLEr7lPf2i2+Jg6g6qBEsILXfNKMGdmuZpd1z9c\nL93G5lmP/NaUgWCJBH41P7cp0DzKuE0LiBWTdUyYiU88v/J0sg11/EoHZH39\nQ7UcMf7/Ahs3dIpf7z4D7J2JOV8TU7oRdpzsT2X0wNErEOyvpSbApTASkYwX\nxHgrp+JXgrc2oYl3t+TN58TAt+uqqvgCobAn3GRer56y+ytD2xjWPLatlSWz\nGuH/4s0L17Ffr8wkbZskP12iL0nsDQG9DUJ0Aa0HC7+0ednFA8SWmr5rB+EK\n8nSdS4KJcs53pKEHoO3ssrjvYU2L1YnX36Lo/mHHdUeMsRlIeE/J/fEdf5wK\nIbyna3GB1l1eAa0oeUfLCmQohnmk6ieKt+5iS7dBdy0sj4Iqf7O/zdKIFe/e\niaxLqiUc/L5vpLcx67XvRSaKIMjvwJeCZbz9EO7IBwkYo3A3BqpyGQCHd+8o\nGAFg\r\n=s8Pm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDpe8+/cA/tNScBl+H9uPWwPYRr/gsal4eIlN4r3I5+HgIhAKzKOWNmm86gWgNlkjZo4KCX3fVvsJeFZAnb6WGvO9nz" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549575152419_1549575163969_0.21518665170718831" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549581910223": { + "name": "puppeteer", + "version": "1.12.2-next.1549581910223", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6b18e8cef52bd9667ca5510b136c17e82817c762", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549581910223", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-OFA3VMMk2uSaklmMILwwWaiK1QnblMmo4uHTS/u8KT9XSfqAvdMRPYMq7GzIDSwGkoHkHP7sdycu0H3ZgJlrBQ==", + "shasum": "ddaa6599a104c9f9d3c8e3cf884d0704503e3cbe", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549581910223.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXL5iCRA9TVsSAnZWagAA2d8P/i0y8k1tEKgEzzEaKGjf\nXmLMsnNlhEsl/DSV461EVzSAm+o0/FBKMZus5XCAtFEPGj59HacZ1oJIZAsk\nsi9pg+5q8BOWdiBpOZ9bUfgqPCUrwTS96GOugCTM1ik2uYvOvJbjbCwJgGV4\n8MdvhXjIQR3HKaiuEQ5y90bANB7kO5kePGbrOh6nlz3J35s1jYmZ8xJijw/U\n6+quVAEpwBVPinEmfvZuKvkQ24XBJI2IKSdWdoPdCpNp5fGuffC0xrjrckfI\nd0fy3rCg2UdxkLYmMTKYh9zYU6oAx3rJ0ybVJLvYhlgG0eeOMVwWkR0dPy2w\ncGByvR8nku96oqG4J5vVnDwxV43cKiSuSJVOx2Yl1ZeFOpeMhjoLYplso5Hg\nNbPG824fgu0lEOXdB0PxLZBYLbD3XQCTVL7OkjyQW0yUXDPhlG/x8eG8Hlba\nBx0USpKaVziGeEMsMD6WOaj1gcznDgyefaQEEqH2P1qtTQS+DKGNNX1ua1JP\nHq5q7u9PbRY1H64nIyHOjZetyG1jDsWOeiR8d6MAMTdAefhokwSQFrS5wdId\nk9zVAhxTwqTTWXBvdZ95RoUegGBC1I2CyPr4OIi2OCMhzbgVz5LZ7pV4QJBx\njW1ciQt/1vdTCSFktVOoEL3LiIrINGbRuU/YL4BOL5kl6ar9cJrlJGHshfE3\nOKtZ\r\n=dn2/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDfUb73yXwDwblzwHCXFXFYiKxyR7rozYWqzI8uBebv7AIgJ9F+/fJnXm+GE0P/43bdQCvKVurvlLkDBKMDD9OKr8U=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549581910223_1549581922048_0.5297124315185711" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549591798679": { + "name": "puppeteer", + "version": "1.12.2-next.1549591798679", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "72c00474e7ae87cf92d7047711f53010c3f3d2d6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549591798679", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-FfzDoJdtEgjRAwsxWC18MSYd5235gD2b4vF7FLaU/pIrY6i3Zg3VhBKOAb7VEB+eewt9/P1dUDu4pKIi0WD9bA==", + "shasum": "0dfe053655b0b200c315cf23b70c3d797133d2d2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549591798679.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXOUCCRA9TVsSAnZWagAAZzsP/2+z+pjkgc/cQapSTRPr\nNjHNiB63NEd7KC8vE28QUURju44+D6CHl40yA0zS8OqFHobup4TKjfr2RXCN\nGHYP3rC6zSo7pCysU4ikirpXr2dLybDxgUp/W+HDkWk1CwA6lnRVl+EHbie4\nClYP3MHH9O5kwb1qEPeox8H/STpbg2TJ8wQOM+Z7vbJQwrj5ukpyaBT+fvGk\n3up80UgiNpdMpQgPKnX88uPZzvFtrBF+jL4HwkyPV6sx7sPBM0xFvUOVXMDv\nrPx6fgyX3ihLh1XAjs6pUEobz62+gHejJ2iI21uYnhUeMylYhXQA5OVCeNU+\nzSDEZzjL+kRoggyTOJuAl21EyW5Yr0IBM1EvTEXe0/6iwMt1j6As0h8knlqM\nynETNfV0yWAQLSsf6zHInMoYKPPudqv3n3mLL20Dgz0MSvLVYfT7J4htu0ud\nzOpgK5NokngdUeFdZZkEiWg8hJbIs2DENmoxRAqo3YDInINu9sfC3MOXM+J2\nG7u4WI7DHVL0gCGHt/I2cJ46UCDI10gkPiH7CSNsjeV+zXT3tziSB7so4WET\n7pkMjDeBPZVSwPb9VRNQpaGkElH+YcSrSBH276QEkigRltiSv0w5YSHpwOKC\nCGqtUTx16KMX2mfk9qOcOg6/7wgzUC2JMsnBuLB8pA9VScnfRQ4kTtuyXKeF\nP8qg\r\n=IT8f\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD7QnNwQEfIUtXlXUJbV1dtPS1FSUOCYp1hiTRBMxpTigIhAPxtXi2IhMgPryFivAE1LynJOW7KAfloazwgXJIMer2i" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549591798679_1549591810266_0.9619555361596563" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549671895275": { + "name": "puppeteer", + "version": "1.12.2-next.1549671895275", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "569609636e4dc4c5669ccf605ef0373ae1582781", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549671895275", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-vfjJhWHtAZcouKfANwT2TnFnGy1L7hIHmLndmmfUn/NTbsX6Rntmed4RKnSfxBar/s/zy7OIYfoOvLuDKtdPtA==", + "shasum": "0e238f06d1344613207aeb9922cb11a2ad6943b2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549671895275.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXh3jCRA9TVsSAnZWagAASDkP/0ogCyB8s5p8ryW6a2lp\neY3v4Fa4xIyHY7leJpgQCitsqvG9A3o2IjSeIku+eID8JesULbHgbc7g1vUI\nisA3LQ+Rz2MA054vrdmzg5zQ3pE4dFrkSFD0s5mkumJGie4L4uDZGura8pE2\nISMWdzKFxdY4Dz8wjoIFbxarnuGEH3PFQXXDWfitmDyz96Hd41AcPydKKH/F\nH6TN+10Epfo4F/vqugD1FJPEloVv1AQKndMI2PrUYfUcFrKgc1QZFiqzebNK\nfTVZ+5esCBW8xD2y41lLAxaPy9l5rt94b8XqHJGHasymK3vYE2QRAuxZCuWX\nMmMmONE9Cm6FYf64nMr3O+evk6HqPaZr1P7ToN1+vFgQFG2cgBRVyjnJ0LTq\n1xB8x2p8WiBj4qcUUB5pELFXUx1saVkz5snBOMQAcCqFVEbwhQCAz2aRRIbf\nvjvGELXccqblCiAFOAIWIvlzDI21HdAWQocOLkV00PyxozTnrZhH/+u0PnLP\nqdon0meMH4l4DJ9VbwQBidcjus/fPW+/WEST0+oaieBjdaBE/gktDLhgQqpa\nhlQ5baVMKosJVtIdC+Zz7zq06tDOdzRj3zNG6SAGZYLnSpTFp6omkSKaeCqe\nldW4Lw/Y5CJyfGA96xo9cjX1iDCEfSh6yqz7e06IfeTVj4QugcHS/AIMIGLW\nYwWv\r\n=FzVl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHCYsVgPQ5rzVDSmczo7b/RORjvbze1QRgB1CHDKo/MMAiBwSmOasYyWHnBV2U3YVI76oGb5N9zK7Yp+GRh5I2H5Cw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549671895275_1549671906961_0.03875727808502205" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549675314137": { + "name": "puppeteer", + "version": "1.12.2-next.1549675314137", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a9875359aa13b6cbfc7502bdddabcffc24d533f2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549675314137", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-idvfqDGIsLx5U3zFguWqrM+eKaJ+fJS26HQ9C6JEEMuVg1bdGakrraW92S9+vaNYlASX/a1pCZtutISThY0ZkA==", + "shasum": "489b5545690d81c5446a8d017aa361bdcbf0d996", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549675314137.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXis+CRA9TVsSAnZWagAApXYQAJdKycuEg6L3CrZVpB+k\n9svj/l0kcWGxKXT7wacTH7Ql+x5AkA71OoIAQiZZqOfaRmG/Eua5nB2/88xc\nVKFXQUSlyVNS8Tipk9+EaRtysnqMFW8gue75Jah9gQPPVUzspEgeuWMK5cy6\n7lSR7M+Fij4jNBNVo5M/u9ZINlDuCfdTDEiptLEbnI5wjrv0V6aKfvuc8jwZ\nZYWidShUkRS+t5EMePQEHo4mM7W4/1z9SC0vqlVUK+3C5/q+z5iK9s33G5lF\nuZIiFKHGMYgYUT3aBM4+5mhI6KV1U8fuHqZ9OrNpQ/hVZqRj3LNZm7JKsh9G\n9RTubkMw0Cz2kwW/sh5mUc1Azl1VALuqdMWFLdjxciwUiC2RAAimogtgJVAe\ng8U1w/haCM3aLjc03zxH6txt9mSNIWdTXLx6fh++YTUggNCitWphP1aShiWQ\nQH23htDXln/SK2xpSId1MXrJtp9GMXSKRQmreGpKEsqBCMRuThpn6Xu0XDgV\nwp6e6Begk5Ev3sxTBhPZJdLoVngIChoPQiLSb6cYqjp+3mIcRkWrb2o+ndmj\n645LYQirLMN0KxofE2j5YA1m6JNmmhrBXCsPCvYt0iXGILp1MChPBeUS8y/N\nQ/396aHuHUNLg/GRGi+ZVjb0PmTWHX02QHet2lv/UMA2HyBXuRphaEjzsK4Y\nGCPG\r\n=rH+a\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGbVQySPMRM/o/JkBTvZ0MHboJYq75KMGk9Uo5rZunSeAiEA9BWX18kCP58C1VEPjzYJ+zWwBESEs7CXCIUYAtkrmEs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549675314137_1549675325980_0.8821376032605384" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549676493651": { + "name": "puppeteer", + "version": "1.12.2-next.1549676493651", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2a7ed1ada74e9625d8f73eec03dfe560ba978b32", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549676493651", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-a8RBu361cnJNCBTqTpabkcVUxmSNtGl5TMVE5xiY7ktpb521+ZA8jPl2LxbSQQOPjk2OX+56ttzc1o56NWX+UA==", + "shasum": "efd678c381c8d515a8ef6eda34e3aa0d08fde8f4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549676493651.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXi/aCRA9TVsSAnZWagAAKsYP/jFDUAVe+L2Q84wtD4Lk\nT3RR8FnDSb/FQbDOVK32POU+6BR1HQeODmuyf2717m0iMIBfoPufuE7zFRfC\nFHTsB9RsB2nxr+VocbaYtu5AS44Xjvg00kRwMMUHTKIQwQIdre1G9JHKm/Fo\nWA7Sh6LRr2eF5SN0lHm80tFUxHLzVa+dzNV6ooZ082p0JvbNHgNK4mYaQQQ3\nICEVgjxmk9Z6Y58xj0RigdaWtaBVcgKR05YZwgQxzD3zAcZUTapzFiiGMs+N\nHayOXVvBEoiobr6kD7ffpwi9zyOLihTJF2Lyozb6gl3j84XMtS6PMbXK3XPo\ntbibrCkfPhvY7JYLx+2HiZgs1yUCtXAWVwVnMfemmYt+qlZxOILRy1RKKojg\nxZJH7JabsL+NoPy0FnwGJ26r+yRC0Fu7shlF4LIKf5G/P8wptHgMwvXwk/n4\n1xXmPjUKyRt7+ZLop/CDmgFiVyl5Vq2B5FGzU+iiGwC3WKmind8p3E0SgtXm\nmUy19HkuJ/wHwT2dugFn++Cw2PFGe45fYDU1A1ObjTv8ZaeBS5CvUGUAP31c\nXNtF3AnSh/lHARPEXDo4N47QYHM64Uqzxc7wMRq/ywkgA1pJJ5Sov4WKBJCk\n4agFvbLp+9Xn6VKAZifigHlk9Vtrtpxy0jU4n06Q1YSKDFTe+MTwQOfCt4UY\nCQbn\r\n=t3gE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDaYjowyclXinh4Y/vQ4s/ul8dNdFY5NdnKU5k9yrxB9AIhAI04ZveMfQnvYn4FQ7Jj7rzL2bsUUGcLyi5HE7P1OqHD" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549676493651_1549676505477_0.7143945502913134" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549681486048": { + "name": "puppeteer", + "version": "1.12.2-next.1549681486048", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0cf6ab68e78bd99c86d38b99c128ad1cd02be556", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549681486048", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-UvECR7oJZEneyo5v05OQUHAPjj/6qWBDF3bc0JScigx+pDxnkp54YJn6QClVdOWSYDov+g5mVqI1ZKV5/U63RA==", + "shasum": "525547770a75dcb5ba6d2ad26f44408c56934bdd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549681486048.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXkNaCRA9TVsSAnZWagAABzMQAIbKd76x4SIm4/3Geh9Q\nsoQBqieulM8q8cmPiH7rR2SVhQcnoVJ/0B+OCAsoKuQCr38mwhNivj2bQxGo\n3khVRu8sUhYJs+WEFjgblI7RtX7IsFp8b8fVaHu1xEyF/8+Ie4ld1xc1kgY3\npCZOrxR1ViYaBR+DaVZZEIWG32a+orawb4itsealdx77Wkwgdy04A6lFhH/y\nJLRu5LnD5gy5U55bJg6sU9XYqIY8qqyI2vfKmLBtfX3q6czT4SMgyhM+IHNG\nFmOZ2ZMku5HduhBEGjtUOLOXFV8n6wjWq1FQ4AXBDLbFiC8GLy+nKxFiZynb\nM6KitsSUfcy04RdEKlM55dxemtfHudqvQGNnE6Oi8qBLuB5eRCUQSq9tRZxG\nQbXGVxhZkjijtxgYUrWT59+LruDpOGNbWlKM4UrFgTwQGfi/dNXVST/KG+cH\ngf0ZLU18O/ybrq+3zsCLISIoJmN+g8uf0OP4EKF0mcWLqVeyUqf6mOpCo5ZA\nRv6IlW9fRylESvYqxM5cOHwXg7kJZ4pU+T3NzfBQPQIo+BpQ5ibOP9O58mbC\nH2PjZOEyQ08rhNu90WSz2y+sJNn3rEohMBZ+p1MmAUbz4G7tSNUVV5tGnfgS\n0DMwdO2QE0nbREFseIOAO7Uo4PHSajlo11fDP8sCz+p3rdtTul6Q0YU9opwa\ntrTt\r\n=/sIu\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAgDaqkctT1Arpnux3du8IgS0EZSBiZPaZ9Y49LTT00pAiEAiaIOO3bDnIt5e5CLnV7iVT3rqEj12Itw081v/Ozg9yU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549681486048_1549681497778_0.20295652033164546" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549683034841": { + "name": "puppeteer", + "version": "1.12.2-next.1549683034841", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1ce578b7871b17a9d13db43325915e007049f93c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549683034841", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/aUUHVCzKuKUoqv0qTE+iEIlp33wkrWVbOnDgXBMNWcix/MgsLDVDb+83zq9W+n/cyOVlIMvcrlvSbw9BzNk3w==", + "shasum": "1110beda972a82739e56d3b6c88098e208f69c4a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549683034841.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXklnCRA9TVsSAnZWagAARZoP/RnuAa0/ZLvQg6bLer8w\nCpNj9ovKqVeGi4mYJxInW8hyEGTKXyAW23mKqZ9jntEu04HT0xGJAuVfqlKK\n/Ds7Yk4m+KWorAtQHULee47zsddkLhpZkk7+qUiKf+VrHkBdNBwbAgEQpaA5\nsov94Li1lvSG+iGUGtcaatIMnrwRCPv0kIWaG6QdXehixVKkc0Thq1Q16Vhx\nzqaRC38OX4HjfQ6izTI8l5/XBd3UQHFBF8bmWNLbXsz9B/q0v7M1FwWM0TDN\n+/2K6vWIDkiaagKf9NC2rYl1rKJkefRpmczjmit0ELF7B7dRcInj/1Xe560b\nQzJzq6t8qR4BMH6nUQcyuv9fn/cEgVdQ4UEN14y7ADKOAAHbmg/Vnq8TFUt7\nVvWp1eTnfQUgBRtAYFuQaQ1Fo22cjiy1XWeldFg0nN6WkmQ4Km/LVSihSBBT\n7mi2gnpSE7YTUgWOblr6oUrgxGMo/U39WkquzfqNCUYNF0n/9SPpCuHgW7sw\nTMsYNCV3qT0iIO+KEF86AoaQhwjuoJMltNVP6tS2bjocVVrUF1WtJIjrBIc4\npv5dq5NiTJDTwpZfBOh5dFHWqCu4hTcg8ka6h51Rtic+MeU9gSBCBFAZHrcc\nhMqe6DLbq3l+M1R/+j7Hx0yVTuIeUTF+gkzWIgUi3SSrzdvwV2h/xfzhef/q\nXOsx\r\n=k6U1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDXdbNn2BaMZzz8NVUStH3dw9dZz5/ZYxt1/BrpUhV+sQIgQCykC8b6Nq0/l3pIRb16pPOXZaU7PxGF9pOPaWO4smw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549683034841_1549683046472_0.4891644874879424" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549684766090": { + "name": "puppeteer", + "version": "1.12.2-next.1549684766090", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fc18a79e993c50ed9b1c674ad72344f148c5bacf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549684766090", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HJeJmZX3R7MKC6W7FK7wdjSY6wfbag4CkFUfDZb+2DaisM09FeQqoYdxTkf4IFFRMxe6FAFTkVFQxX4zkIEoFQ==", + "shasum": "7f7ef58de2be4894def1372bfaf257b8783e5995", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549684766090.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXlAqCRA9TVsSAnZWagAAuXwP/jn78MEnMHJ/MM20Y2JT\n6jUAKhl4vZg6hBo7ZerXKcSrZDTM5bPZhR2rqbZvkHl05iIKGnHtyguQh8Rx\nDbgUAMtyI1fyNxisBM3i/w8ZfUmZoXQ3si1Ews/awXquM59eYq9V1769Kt/R\n4R7LXw1UrG2Q594Z9tBX1SS2xwIh93S4M35CTvFfhYESbfnUXjzzgxrSsChP\nfU5ta2qlTvZ/5h7aa9dWx9paRuXIyEKU2GSJCj0TzAM2efoehfHUFgnQqc4n\n4l95oWgV0Gw89K3fSQW2d3ykiBsSNH7+mCrYNhtGn/QRo0X3xxFEnJjv8avR\nV1ZHq7sDTAhxh1FYJmHCxmiFuHon4Ra6Zz9Wcrp+mVqE+711k70hXCY4AnDm\n7nZY5pKWgzIvTEwp6KDt9d1DwNg4ae6wGkKZpOtZixBKuyTrbhdNR+TBK5G+\niNwQryXDgL4RJIK/28FXaIVyTitH+NTTTWmscAG7S0exEBnXHEpYuqpKw4Jg\nzB8GIGdSiD72FxjMTJhYdBwgc/Ki+rQ26e33PHlISNnHChSTuPpPwwL6L5P/\nHKZxcFqHAnq9EDFXdaaWqX/crHVgjsV7eEik9cIE4+6II4RVc0m8WCL7xxSi\nsDFVmqkpYvsyukCTWa6O5NeeOp8XHRB6yONcGFwoPThVPLW6pW/HnopnorNE\nlxcK\r\n=S19P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIH1C8grBFT2w/Ro16L8of9pZudj29QYSUrsz4CxHobnqAiEAqrkxm71dtdL47heX3wp7qfhSZd1XxSbe0xgob7L6gis=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549684766090_1549684777343_0.005003010247911277" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549687399259": { + "name": "puppeteer", + "version": "1.12.2-next.1549687399259", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "edb6f62824b0406df2ac383fa6836c74746ea11d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549687399259", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kWbtjn9wxUjz2dM380f+x15CUkHnKIEXGNTFY7ClnoNnubVkNrT2r5qf0DITceSS1JgnC+GBoF2f8Kq9EiRrCg==", + "shasum": "6137becca1d3e4b45e8282d55486de6d7b2d0de5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549687399259.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXlpzCRA9TVsSAnZWagAAQuwP/0EVR/rOPQy0ZFFFKWgb\nXKsgVoGogZoTJu4avsTzgbzUZf8qfwXyX/SxJfB6CZepMJwf1ioGSIX9k5kP\n1NnPJXHh08dadssPG3cvepNeVrTN5Fvmpu90hadqb7ONnrtVJ2TaNNLNkWmG\nytVfAOyjHuiNoDVE825rAgorR5aan9G7rK/9z21Hlfwox/i2HVxxgOkT1Iwk\njzF1yXfffgT1Oav407UagxumKvZ4iIx+4ibSlWxdXpzxGLkCLkq5SMXT33kE\nmb766XO0JcQU2kFGgxve+BBkkETDnmwULMyWcunRkHj9yukTdVEpdMKRB0a6\nHRxk/wa3yPhutXFIXKgdZs6jrn0+HH8jMWzYRv7wsEBADHODhYiREEr2Jta+\nUVX1WJm2GduI1AJsgt1k1J4ub4MYoIsxmEzB1gDt/e2UZ2VcKawGhJwqXtMs\nRqIJmkr4e953XbaRYDMXXGI7fwSW9W6Ls/cw+xnvN91GcyCaiz8MjVfAYI2M\nR5uB2KlCAkm8SLWd/x7qcsQtgm4oTOpy0jjGJSd19lYRI1vG2h+V8XodGDfM\nXVXja9cHXYH0DWTpUF9iXm94WawsVD1gYEysOUX0OHnA12MJkVY+UDFP7Wc4\nrRB4uMIDINVWWBNjv/Cejz3w18oWXaDl6Br9yLXkatn6T0iP81WEc32+76WL\n3EZa\r\n=NtPc\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCp5JXJIfNPSJp5NvPlbnBivXHPDjGQ0a7zRyqDbr/glwIhAOLSEsPszt83MlnX80Bnx8RLYlooNqCbEQb+yhcnJ+Rn" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549687399259_1549687410985_0.8587710391588721" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549688623724": { + "name": "puppeteer", + "version": "1.12.2-next.1549688623724", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "624492" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b82cc150d13aec1864e314a8586f814cef784834", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549688623724", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-4jqHw6uaCPy/yDwLUTrAhji0laJwkOEuw6Egam0wOMwJ1m/6q+3UB2gYE/Y3jfIZ/8YE5Fzy/Aegh3kF2mrYhw==", + "shasum": "d7a9a62e1d9cce7f705bab47d0292cdc2ff674ef", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549688623724.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXl88CRA9TVsSAnZWagAA5lcP/2LoeL4+sOQQuKbQOGDS\nsZv6Rvn6QjcWpSJqNouTuRiyc6J7nXZ69V42tkrlamesjfs1Ll6JIf7LPCCy\nRFZOPuH2QW5uI4ite/szPqChglwpibncUTNMhSRqp+bMFYLnuA+16ynT7UHa\nLXVFJtdU1IEjhTYC/qqUkYGHVIiko4ILATNcohTcRAPRIokPDThRk6vlSnUh\n2MaHpQA2yRP8ScgevVaSvjuPR3GSmUV7/8LErCqOBNypaujzo5r5guVOibiw\nuJItM061pe6bSJ32LWsnyj9q2oho1LxUA763Zy2wUUi5zEf4Jowj56jv4XnD\nf4tSFiWDqTFPtD/NvjYpXV9DzXXw1B3OhcvJ+odffi6IPi/9p3H3qg+Jx9Cy\n8Kj4rNMOJ0zg+lrK6ge0t2epckoXvVR0VexL63nH/MWnvIuLB5KvNm5QnW2v\nSbLE3YO0cz/2hnmOql6/prNqvVC/wV/0uBGuocdEFYuGf/sZ06l9EnlpqoIX\n+BQPbTYcVuGkQhZgx8utEjk2hv9iARMVuY4TlHHYkssXPTUa18TyCosKwqjn\nCdIj289uuAWfrkyxQ7yJoW3E3yEvwVQvH4wLCR8/ea0MSkhXF9Hg0U4O3akh\nfWVvSnXqSwbVLOdjoo2oDAcOKw4Qpl2Ac2na3ZbhiY3d+NcacBqPzDGbiPgS\n00Vm\r\n=j2d/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGltgFdiRgKJKG2P5Mt5mPQb8d3OUYkPyod+EZm6OtlWAiEA2RkfjltMVlpLHK6n0MEP2G3xR5LqE18NIkWuiAdnUvE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549688623724_1549688635363_0.46197399840885045" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1549922885721": { + "name": "puppeteer", + "version": "1.12.2-next.1549922885721", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fb9d4049d82d2eb2ea6e91874867ecc7064933a9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1549922885721", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-iGXzgorgPs7yhR66QmybIlTIY4uKnTILoa2tY8rH2CCb/g9O5srmEsUsiHeXq8Bm8mNZzca//uBlgN1tjpeFew==", + "shasum": "b2886226ff46701e2327509145bf8751cadf8753", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549922885721.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYfJSCRA9TVsSAnZWagAAKIcP/2emoI9hbGrzoIx1++KX\n7Cxndo5Bgbt/uiioEi8kjnNk4N/futwOcsEmDoanOS4o3JMT8Sn07aaGNqPr\nQe529AKKtlwZ2pQ1P/emsUAsbqsm2mf1dH4BD5OL4gFiA+kblZmtPooyGxtf\nXjE1/6oKR7f5e1Z1Nl1pLvF+NCYgf2Sgadq9TwzfUthwDOeW6eKxZiBIb02R\ncA5TK5rsvYAD8RAh21NI9jo/ToKGylYFczrZApIM9Fru6Ol5yxdNlBxAWaJm\nq4UlGkHObQNnsKmxcrKv9IRckhS1V4Aak9VPTZR1o20tUPFvr6ML5VPtP9Fe\nXeBYJxws7QJq/0lbvzv+v4KEskyo+6vamAEAn66pQCEzC11zTUGF9nZUPGWb\n6qG+Xbg2o/EmdLqUxEWZ+29PJxo1HvPZNzwXBxdc+NptoV/mJLkam2PeVDiN\nyhmprDZFnABHIOsipPU6Q+nPvPdNKBAGTaBDvXDXVuHyihamYD8nB8XwLgWx\nA64BggABOrhtm5MM7XaRruGtq95IVz5zV8HF5poAO67g+4Wma3qHawFyaRC5\nmw5EcIjkK+UHFhqO/II9vWltBOhdPcktr45Y4gUSTxIcqGH51szZOI3Leir4\nokdaKuL6xUgTqy4DD4Cl6P/W4xyeZ5PXXuLi/EI8uPRF6XEXhcN2ytOF3yo9\n0a+J\r\n=D2ip\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDLGI91QMnly3OhCIjCBr1qGS8ftIRG9V5pQ6KlW/L5JwIgNcRSjnG3hTxYQz6+sXZlQYftRTZAYojekOY6YQcK4dM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1549922885721_1549922897243_0.875628934824328" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550022326412": { + "name": "puppeteer", + "version": "1.12.2-next.1550022326412", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "afb9355b1597a210f1c42035ee9a37656325fa59", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550022326412", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-rEB+6trBKIiSNb03NJ4RRbqPO2OUUzAzrAh30OVcl+1DxVBJi1jRPkJ7XJ3kGwRMPyl++EgDwaAiCh8Yh2yRJg==", + "shasum": "7b469817adf02b17ba885c09a1776bb2dfaea301", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550022326412.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY3bDCRA9TVsSAnZWagAApXEQAJMZoJ9haEFlz3YI2L60\n3c2fcbwNj8yRpNPcnn7X/g6iCPDKNOcvhv65xkm0kiTFKQ8Dhm4e+lJxhx75\nTBmmpSGSL46ka3vESWWvSBmMu/QUaqZaMFHkl2ywgWObgAO8CtjFobj32mrN\nctlPQbgTfozqEqRPfrsJfae3TJUhVEHnqrH9gu3oL2caci+NGCHDxbaEAfxS\n7+Nx2dLqDxNi9pg3TcnIKgalzNIC/BjHFKb2smuXUjo5fdjrXr1bESJQ+ELB\nLLCqetm6dEYZfdSjF5FHj+hCOySoV9ltgtWfxLdoTN+9tTPBgIWHffIUq9xr\nMMnPkC7V59OlmBYrRK8vVUBByVZHlWRNBIMk2ukk9fUDgY6DBGIV0FEfTKFR\nRzMWBAEig0m3eTc8wuUVFEmyDTnh2OEOKEbfhZsBFk+fTL8MeX0fNhafPV0i\n/YFHs8Ul5PswpogH/UnfhAj4DoP7RVzRvaYtkJyIDP1j8Na84gTbcGFEAq1y\nIDahjD0AXyKb8Qw53xtr1tpn66aHKCWuUuBa/jJM3O0mXyr/nbil49UaipJM\nNh9rJfMFhIkp2Qvobce0q/w1QChgh5VEkcE4pS0Ahm3UnCkwNZr8X19MSKy5\nrO3aMIqNn5VHrH7giAaL4QR7XKotUMDlRfM24zl1Pg/LD+s5RWPhyBOi9u0U\n6cr8\r\n=oUng\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC7GDAEMCRrEJE1trmKeke9mVfkM0nfkj30Xr8ZIim8QAIhAOar3g5+Mb9N7w1L2gX96Y3kMGZR8fTI2EaAzLoK8gni" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550022326412_1550022338250_0.8491709496256923" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550027809091": { + "name": "puppeteer", + "version": "1.12.2-next.1550027809091", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1890dc04ba8c86a5c636c34f7d75222ea7a1c6ac", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550027809091", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+phZ3VzIqMi0sUM3/ots7IvaiGskd/H5LcuJBkR/2HIYfEdZwNP2dEuD7Qfy1T2gSnmKXvTX7eAcX87oVfCVJA==", + "shasum": "d37c9905be92c91305249cd2a678c9ce351a4614", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550027809091.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY4wuCRA9TVsSAnZWagAAWdgP/11B8/rEjtmlbDVwWHJy\n3PBsK0IWEWbNg2Ee9yd+zWvu++2FPC/T/VkPHeVHrOKaMJAh5PlKhfwTg+Gc\nQzhJwV7BAqNnXXcaVdX6QdJNXEmVXTkkxRKVZDMvoEAyP7b3Yp7ox9HFfViD\nyx/QFxQFqvPcYtdPk30sA1t+qIBNPC3jCrUcbgPa3KDbfq69B+d9ImOjFj32\n8RpQcMx36yjhgjpjHqSxEiLgh6LQQrfMIaBLYEdphGLDGiqdQ/sAtmiyIgHs\n3Qj0J5gQQ/xpi/rs8qUal2jn4H5UwLra/VSzAGdkmmRsRyIcQP5TW1iKEQ/5\no+nJ9ufagjcA53VjIwLB8FPWiaOWy2YDcN5ZZBBjaBEx/3zZm62ojmWLh8FY\nzPMF0WglHXUKg28GrDu4FyqSAHCMOIspGFUuUTtLyAP0U1xQuT0Pfl9BeI90\nHcZbI8XfGvMOInLBEoHgfpQL31m9hX3l1Xm7dBrcDhPM/AD6XUAYFywUzpAm\nKnECGLH0fyP2+SZepZB4lyiZzv2pIHhHCpB0ZZFO+seW4dtOSsZ71WuqKtZf\nXiUex8Ivs1OvUnTSpk0wReAzCYPPICNrpAtgHDg1YUfXHUsFDroGyw7zJkkY\n48LFPl52VCm5w972GXWVXAwhVRiDXSpuVK0SNlM0bO1BvDVBDhtRMXwIo5yZ\nkdMj\r\n=PVCp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHJh2SYvBS/0S3ipEpgSAyjcEySLT8jK7WWRxLts8E1tAiBkXPZGtqTc0u6GmAV1e8HJg6N5lUkTXZCbG4woihsBvQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550027809091_1550027821196_0.7000998697139686" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550030782241": { + "name": "puppeteer", + "version": "1.12.2-next.1550030782241", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f0fba56ea32ff1faedf8aca4ab73e700f0bab20b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550030782241", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-hcqlTIst1WLaPwE5PjZyZMIllLb19QtFFlm3H2B+zMF0fEstXrIt+CUFVDXEyWT2LXZSifNRammx1hbmQwanzg==", + "shasum": "0ddb348f09962de2c43861baa7ba29c5db0ecaa1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550030782241.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY5fKCRA9TVsSAnZWagAAmwQP/jtD1J2Z+RxxbB8XFypC\nRpm0LngUBBezisj36Y3Et9S/MrteQdgDPJFS4sz7AOtIkYfngWzYKhlvENxx\n8JJDIo3OtehnRCP2bZ74HZCUIS1vQ4MTQbAtDVk62Ldl/Kq/ps0Ggn1rcKt8\nTACrSubNe5s58gov+ik02e82CJKny/lyLIANlExs3l+oJEtR+obP6ksW/mcQ\nvpVZKGISpjC3ssR28E0xvuc4j+T0zk0VHGghRAwSyDAyBbOE+HbggOf4Ju5Z\nQEo1xcz2DxGnXHjsWvaj+0BaN7HYGxuvz7wt0keKyUFSonGBC1tSJJz9nshQ\nHqnIyr3Si6s/HW1r/zaNlXXx4InHJvo+wfBAae/WNZFT8kRixAR+LZUHsEg/\nIYuJrXXtr2Q05WoyvFYmg10kxwCO2nccyBw8whxrKrtuMxKWOhlYuCrLLdoE\nyzfnaSwZfD4fJJZWjbeQ1EKfluIg2xh3MM/uwm2KI6BocMV/f7HqqOHDPh7l\nQFjwz8hJLmS9jz0MjPMkDrOY/5sUpzsWpg9WS+jmDUXrqrrOAJDqLARCd7cB\nSse4ppv8ZAJWM5A/J+DdlJKMP5LypWL9/imDgG4ABAZlo+GxzEZeZV0MXyw4\nV8/bi29BC+Iz0dhVOVFg3Hhbc+aNvyt/+VlELxLOdjFxPOXr7XNbquDofeV/\nmb5w\r\n=oqDl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCubh4uLqjp+x/u/H4iPCQLLTjINsyNe5cN8U1UddMolQIhAKIVT64xse8LPWDUbOwUjCeDHNnRia9Xg8u01DSn4wuS" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550030782241_1550030794286_0.17921173469335816" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550031427756": { + "name": "puppeteer", + "version": "1.12.2-next.1550031427756", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "89d0f1e1e7dc97e54b9180fe624e7e4748fdc100", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550031427756", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-1/IEF+fkd+CW8sryv5rnfo88iPejEhPSxIBw+foU8vngrA6Gm5zOXftg6CST+/XX1E8XpFyvIwV5SMGyIjOGIg==", + "shasum": "f54de6a12d5d48f40e4a82e8a9c1114dde8dc2b5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550031427756.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY5pQCRA9TVsSAnZWagAAojUP/2JboAMlT2g+43xF7Ozw\n9ATMkmJR6HjJjisa3FBwt7WQNktOEsYgj+au8eYUp90cZJJdUUcLWb+YZIMV\nAVK6k2wfcA/YNKd8uydMjhaVc2ZMU8VDg7TqBHmpy425+FElo/DZm1AMHTrC\nZ/0fD8LC5WhlVPKrZcq2Y3pjVjnJlVO24g1YzR8m8Ki4je0uMqhKOOy/q+A2\n/qyQt9s0Khs0FYoeiXMT6kaDBLI0vDjqW2dPHPez85qK+OuvLbwHV4zievoi\nqGe0J3OBHE0ZB9gHJ2Lcv+n5Eq/EGE7QR8zVM2/I9Y3t1nn1emAPxN85MuNl\n9KAnxqHreKoip2juQG3E+T+Ghf5UDA50ERxldUvkkkMLd5DRNKNnWrvltCDq\ng9HOsTA3Eyh9+GWi2wtmnraJSTeNl18tME/Y9Zn7hQQSmiOHX5OIUJxTTiSi\nOJyFn3bCFoV5/3ARqyvqnET5zKSpU+BPXFzA+BKQhX4jhQRIgR4UgXOkEmTz\nObq1FieDHg14QxUd1qoSRwyBf//Qmq/gGXuetPx8Nam56eNZBbKJHr2fx6dR\nZtzngBsZ8P8E3Z1rA0cg4OBdbhUKJ9ru0R6+Unxo/Nm+nboDWJMDwrWA68Ip\nUHJEWQ6GJs1ZAGxpb+R96eDNcgifryEK4ZZIfZ0k+94LD3/Yzkfjm+dn53+R\njLc3\r\n=8iwh\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDBTYCkmSm9TfpP6xlv+nrNRYV0XfUg6+XuSlYSKE4U3AIgXLsqJv62hZdKh/7AGCgYrwU0QWVkW0NRrp2qUXGyA3A=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550031427756_1550031439540_0.4506996191536563" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550048628025": { + "name": "puppeteer", + "version": "1.12.2-next.1550048628025", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "31ae1d6d150ebcba0c263a2565d8a1bbc418e396", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550048628025", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-A5yuCY4QTSSo6siBq3QuqcisN6MIPvdZDbT4XaJ/WsG4gdtB4PsOuEbl7C7hdgeatrJAZiLSG8BtqF7KElqsVA==", + "shasum": "540b0c13323666c1f0fb0f7bdaf7650b43d2eef2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550048628025.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY92DCRA9TVsSAnZWagAAyfIQAInAJyTS0RIORQlmjm/l\nYj6TVcTxczLzTME0d0d49p5XawAZgse/krxxWszj7FEBkpLuazqGhr/t+Upq\nrXd1bjJspwKV9fUad/PGeb+ymAlUmU5XYWxMaPHMRrIHHo9pfzAqlU8HOR2Y\nAk3RQXO4pSNLNAw0tesCXuHeWYYKP5btyOZaJIsI67SPZqv0NCSLneYfQdqn\nIRo5l4gwBMMu69WfXI4fXaVEbmJclM95bI819JmOyNS7isPZ77XxvIi5QcvB\ncf94WbZXs34ODbp+6fpnDXKp7VrFrP0Dn1MFgvfBmrL7858P9SeizsrcGeZH\nEUqHMOFMAY4vqpJ4SIoy6JNsO6wmgYonGIfVzlGw6ItaFh9TSxFUiGV1l100\nV2osUZgusduLEq1yT3QeCIqnmvKKqdteSAGBvT0U+sbaRzpycAovUXdqV9IV\n0VqYK9Lyl3KDZe/J6HVKUz6K9vstuIIxf+Zlut8ygitbrZftTeJy4JuCbbD/\nInjhmON61ZCeF8dAp48cmfOC+Iv0XRobtR9iZMfXDRpU7SPnI3gjRtpQXL3w\nGSUz0+oBd1S07v1j0B15saQKr/eu7exnjPju2MT6NUyWK6a/e50MsvNx1wC3\n/d23KHQF2qolVCz68BUmncZUm7EHJ4emGiqCjJF2VffUCv07XkEimZqcJP7d\n8pCL\r\n=+HM2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAxlUVXPoIn7XUV5D2DFlF3VvYRKobKCcT3B5Ite5d5pAiEA5xB/uUHKorif3+rEfthYMl1G5c0+wF51GyeYG3qHh6o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550048628025_1550048642100_0.7065518209970185" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550086939093": { + "name": "puppeteer", + "version": "1.12.2-next.1550086939093", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "57e7f12fbc89e7d8151b72a5548eb361debbd582", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550086939093", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-eSKe3btTOu4495B3r1Vq6gIVqeoyyLMM+GwvKy3w6Jd99XZOlSfs87hFZagQwzkt/aRrmzcoObZ7E3jzEeyhtA==", + "shasum": "97fded92e8148da6a41ad132e37b53b925ca155d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550086939093.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZHMoCRA9TVsSAnZWagAAI6EP/iwOX1zyKfAsR5YW+gs7\nwdwBFtM+rbdPLk3BcydC8kwxasDAKIVxfRXGeng64iE3jRPSJUz4HNUd+1B3\nUmhxuKa2NwZ87ChNhV8dUHSP0InYACxsviZENJyVAfuUjOyMXYkW9+ugtWy8\nzo2EoYp8e7dBWrNecLtYj/Si0KcyMNnjbqWTNQndyWQOnrWDlZcpcYm38D64\nZZpEMOYvDSmpjFFJcpbAWTz4Yyhj4eeRYfaecLMZs7TMnJr/Ou17Kc3D93a0\ntEwRFJzCbh8LGCAipA56wiKgCut4sBSQTh/oIGBSCH9zXHA5ryz4RlX9y014\nZH037ZK2drZ0PBgzhlg7VCb7zyxCvlbw+bBdbzQ90YCmJk0tGLLmLXRdUJ4k\nnXYRfZoWROFbo0r+CgTXKA+o4QL9+IUD55cGbNj0Oh0wORMRSA8lxuO81yWD\n325KmBJ/2VBr3lHPb1tXhkSBUZjYXFOKb+6g/qjn37mbhdyk2fArWA0g6sze\njBz8H4fqrGW6ejkulLwd0YR7JXtZxJZDj+4793WoTybugumrCLVAIfJz5dDy\nVyPjz/FoXMYlq3mRR2ZDUC00j7dDijsDIAYEdkZR0IG28CZibNaWEdl/DCtS\nJnAd19pSu3lcxWPrXvE8QJLpEgNFoxyjY35SE+eU5NxNpTgbAw9A0XIjhgzP\nzzLm\r\n=oX0V\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDeDFxYzWhVSavZOQNuBQ4gjBBG7IcneUMMs0k75qK0RgIgPD6GGfipEqRAX16SuWVfnl/T9ZHTzkwV9VA4XYOUA8o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550086939093_1550086951687_0.22491433284618068" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550088214550": { + "name": "puppeteer", + "version": "1.12.2-next.1550088214550", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "13224a761ece560124ad630b85bf0e5151fa3759", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550088214550", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-2lN1+FxrUJuKTX/SrAOHQdo9+tpQtu2INSSzcTGotk8Mkom9EzxaUjDYKu6pGGqzE0FnXpb0i8rzyyTJNpsHWw==", + "shasum": "e3cdf102b6f52b7fb4a3e846714882b53f319634", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550088214550.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZHgkCRA9TVsSAnZWagAAkiUP/25nBWylaLIeLGBkVGPK\nCXI9CuDIYekmyKt4tEIaUHCnvBNvL46+C5CiWIijoEfqrnudTcBmnvUxoyTB\n7/5HLv9N5os4dYIh+CMgyKro85aAKze+jMpmUy1s86G73yxQ45MsvDjo0gMD\nwsCHJLoUDA91yJfPfSgaxyzqa3tSvYGQR4buQPBAgsU3k/maKXWrU1vFRMU8\nRImsiY7ihTNHfEwU7rE3L9wM86YFATu7AyqZNs1oXC3mpbFKR3Ap5TnzadDC\n4iKB6lKNFGMNBFz4qkLDpQi7izUlqFGu8vQiqXxlC3VdSs62o1yKeGOM4duS\nJckXTMat6jmDCrf4PMaMAe/rRvKBI0QWtkyV7sLjVNHZakALtpUbo2G8BrQw\ne05QmWvqJ24SzF/RwSuCfhHeLBIY7YVosgbBosuu9hg48q5Oc0FHd3y+hIyB\nRSJCVqX7ehtS/f+pOc4/A54iGqzzcDh3rwnR5Ib4PJSbhEe93CXlRwQwZ2TS\nHpA9/KPf9sU9v+fSDJVNkFUg40JVpWbvrNoXPHh9rei90LEpr1LXbNpzJaCs\nszCNhVkDYP7+xllm7KKKPx5h6+WJ0niblp2fKeoZTSQTmkm+wzFayhP6uqDw\nzB/uH1sc49SiecPfNPDVuiw0G8wZfWSvlZESfIxaI0oRh12YrBf8ChVljH8m\nlXfD\r\n=VPL0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICE90zOJ9x7WlMDujKSQVtoZBwGYFtgVxdIc5222XoTmAiEA/V27miBxcxoZYq/G7ifWXns8QPseEsV88d7bFzVcgHQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550088214550_1550088228232_0.3944730356127759" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550092693872": { + "name": "puppeteer", + "version": "1.12.2-next.1550092693872", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fbf36438e8502ef37b4be2819afa67a595410d68", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550092693872", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-DHArhnF+ZTzXEBR+63wyTGhvHSkLxVrc1b24ERPRenEReZaH56w8t3uDqkAZwv5hlWeZ5UnsQkxTAm4A7gH+OQ==", + "shasum": "2dedd78dc2e1c673a30f7471768fd4b50b8ac5fb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550092693872.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZImiCRA9TVsSAnZWagAAtdUQAIMiX+1wA5wyF7K1tDRj\nEo7hpu0z39hbRU6DNzLumGCyNEu9RE4TOn3MhpVkc++W6qY2pCO3rXixbQBf\n/WT+q4CLVy+epU/vbytxkQbmfuxozZP3+LkKnMs+Stnm/bUw9pX+0CtDu+2f\nUPfGDxekjNgneLgiXT5E7VtenlSW4mNMsgNOLfR3FMd7Cc4dESyCvRXnykTk\ncJ8FjWmn4l8Pk/ZxtePCwMOvOUdhpvoV1zpawUJkZ5Oh2BDFwsV8u0gf8sw5\nWXPjTq0DkcsGw5JLGHvo/HzzfgxlHsxhjYXrVTUkp7zEveArcIGuBQRvztos\nPH6rhSpBHuBdyFGA0CI43TTWypAk2E/cgrf0y7ZR4DO86lq5tPvjILtPooQV\nbtKhUH7dqfmx+nUU1+JZD9vzaLyxiSmxJ+Wg0Z9F1g6C3d61Y2XWtGWSfUpl\nUPetpwClEK5pcr9HTxzbvqXh0ghn0RpJGuq0e9T27XcSdRaIgxtgEhAcNWCz\nUte/Sw9YaLd2V65PmK4sXTXY8M+9n2Ox+x4BOln7qRwQPX6GeYlJVDRPAlLr\n3mgLQvZ5Dzcj3v14FjyoLFAgblQOgMX2nL8JvjoObMOvUGHA/tFdgcAcDfQC\n9DssasCwGoHPYzlLHXKbP71XbCKOd9Qkydqd6xh92DRKDKtNVpVQahSBOSsy\n/Doc\r\n=jjsz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC93G/poxeXSF2K234bdj5CatCddiwpBGikQp1blrOG1wIhAKZyFzhlUCLnoOMJvkDSL4/C57RuPMTzxHp54qzdtP0g" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550092693872_1550092705457_0.3020747213869761" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550095102698": { + "name": "puppeteer", + "version": "1.12.2-next.1550095102698", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "670d758dfe526baed8f4fef946c5b61450d95430", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550095102698", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-QAMHA8NQ3DQT1PdDUfticpyZaCPyq+1iWdNS2AK1YsBTI6b7TdACyj/Lif4bc+Kf5FXzUPqgXP35fAma7Ebhvg==", + "shasum": "cb676491ffe9cacd457d5a4e416c37336affdbdb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550095102698.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZJMLCRA9TVsSAnZWagAAiMIP/1QfKe3JGmzeu1FUE+WW\nPUzMvGR/9xzVtoHR+ZuCJ1qouFwV3ThW+XkIaAYvyRkmxqNqe9aJxwXN+0Oz\nbRsoZA0wbrwOx2AvOcS0iptiCZ46xqFgh/0136xG+NFgkx9ljyXdWhnkB6hP\nPwHx7MEOmtMU+jP2+9g/AO0b74CckyFG7kHL5TaLxaWdp/3+1nsXbsl6JxOk\nBDqAdnHWOS09rJGN2gaLlQOLVzXPUtozxScppVjWoG1pI0LgY2y7b9IKpePr\nsavltX40sv1pj1BGF5vvDZYkOe3pNjpaauzoTMAS4WDenglvnGEZj1ZOsNNn\nb7SLX53UxeKPbMmgWKkgwUqKjilAUS/bMEHN1a0w4PIOMZHQVPfMKTrB+yNr\nwdw0mN9FKAVSLUB7dMxHVtz4rwmypwwCz7JWIXwgUb+23ZxPzDveKjgKjzR1\ngjMeJzPYzmMqW18R1D+K6VUYFLZMAcOMW0GR8xX3Ut8LbHgpTVesNXcsMqO7\nSLbKFhcbdoy+18vJy2ToJLy2Wh/HhY435QQpgOOXkDNeRXXUuXkVdAZnmtqx\nsUEc+mIxCYM/oCuQtdbH+a/ybxqKSLXy0o93QZANwQLNuScM0VY71yP9te04\nVmiTWtROrwwfUo/YvEBFDwsYMTY4fPfnSMdu8CAjch45LpbimKVUt86aGnHQ\nh+wC\r\n=XOwM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGusMFlTGlS5R+iQ6sclK6vkRzpkkppEcGRaCfIhQbwqAiEA1KQ20B9JGSY+NMDDcbQlUkaSLaA7ANABhuY7j25POeE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550095102698_1550095115028_0.23420445123299816" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550116409786": { + "name": "puppeteer", + "version": "1.12.2-next.1550116409786", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2275c3c0c801d42514d6de127b9b1537d20356a9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550116409786", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Qkg7dqVs1YmHLcCiV38arJQDAmFjI14c8UFVwEBjNZHGr5xVnR4fzLvGB45Cmlsg95MJbL5l3wQTNTtBbjYG2w==", + "shasum": "0e1b4a0286bead2c15cf94b96886401c871d18b9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550116409786.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZOZHCRA9TVsSAnZWagAARmIP/3frMA83eGK9QBSL85g+\nyxIHMvoQGZxwC7Abxh/hO1U/AD9VbLdBQ+jCbZDNTphTMrnvTcxt2Y3ZwxI7\nIgxyV1qN0G8SYLJ/9sNUO7h6DYjXADVh/Hg0/MPcU2Oaca0cSyRh06REEKOC\nuADMZo6G8xjGAaBe3Yhc3xLtDoiL3zcdPzmD0BJbPlELkTpo66+8IdLjZ0+X\nkvH4pMjcwmpDBNrfWZeUXLcszmFMh1ygGIehQRIKQ3eSCRM0/bGg7e9j01gl\n5mfAuCEFkICckhCYHDIGI+bH+prG+hZBIf7Kx0i+l2aPH5VNqJPn+2hFSkPw\nmWRzxpC5yddhd+LG/5Xl3q3pebGmSmp8qknc6S4AVF9L5a1/tMPNtx318STZ\n+VsGRnkXFytjVPhl6uuuB8rbpWRVsTU1oHGQ+QzGilULiQ1n0LEI9aP3QUhT\nNhLvFitOpVx0InxVzV6z288eoIQw64eFhydXS9hojNQGo74f3W629LnHLltb\nh5KsKejRnb9h6cTi7a/2qFWYwBCqPg5smVEmGmB1n3Kmh5gkcLApD5C0hjsG\nCXn4mr+gRthXdub+CUXdC+jnjoMQ6CSWBar/u7GfG8A5UGQS+/gK8izItAKs\nJ1MUxHACV2gK1/nF2/67OZp5SNghJlEkZm/ym38uLdGgEOv6yULFtj0pIKRE\nxhP9\r\n=SylU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5m+fWEeVcNxQEK7KpBzVZIgoNm0RdfFDl9N8ya8KVFwIhAIJQBs19KEgWKQESxNf5jjiEeWHSPtFP/BBRaIL793vX" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550116409786_1550116422331_0.8675721793357558" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550116996244": { + "name": "puppeteer", + "version": "1.12.2-next.1550116996244", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e3b76b2beb1e44ed61ad88fceb73c0dfd8f208ec", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550116996244", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-n64jvlJfPvNoFKLrI8KmHlW48PE/gkPG4nnK85tNBuVaKUKliY7RZC/dmAetvr2YT3FzedAL3s1Ge+ZFUg93qQ==", + "shasum": "d9b86eada137401f314351dbc16a6c1058dced6f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550116996244.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZOiQCRA9TVsSAnZWagAAd8kP/0SF031TPHi3qQKThULv\nKDedxEIBSAPak9aD1CqobL7+OHTV7TzzJKDeVKDHKwTm2KAgCrbTX/eN7DwU\njjsq/7jt88K33++oaIOdjmN9OC+qYPaF2/K3p1R+2vqCtwQApqXSBelasb+M\nAob4mLQgjH47VOcYcDRWghtimZ+cNFDye0JpmbsX9ng0WMgY/S1e5knaw/+g\n5CSb5jHa9BLbdAFnPzKJFdmA6P0Oy1sOS0UU8vnxvbUlCaRsJkXapAAdgwWK\nVDq9U76VIo6dgznlA57pr5QDkNaK+0TgkcdqnAec2lqBIFqmXESslqjLsdW/\nNC2BOPMN01uL6cZI9XL/dQkPJegol1BL21QM6EOkIGtzf6tlNucoXdZSke8E\n5i5Dsg4cDpZkkXEk7R2GkFHxtWBTIaWfgW3VQm1OeUZAZkk9iEOFKXGpo7Rp\nV6Nzkxfad4e6sbMu5sxT86vf1A8qnfiOLsg0hzIbNobykxd2T9dLbd7Nq/Vf\nqk/PYPqPxuOnqK1adqk/NyBKBfOCGWWGo/ReUfah3bZRkpf1tQMtvzQBQUsf\nJ79iFymQCHYNHkeyY0VgJTUJLCJMvqSS3CKN8kx+lF6B23Sw7ev6CSYHHfUQ\nBaCywrOmWXccuEYp7fVCmUZOSLtar2EnHfVOiIRHpHgwA7gSbP9DFir99BRV\nU/NC\r\n=/Xlb\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFhsDUfogRg11JaP9BGNPDzAwLNZ4unJlA751iGvQFTuAiEAn2m/qlCURmvAl+x37CJTTRpyKUyEFJmXSeq6cy5AizE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550116996244_1550117008118_0.9200358415125713" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550125345875": { + "name": "puppeteer", + "version": "1.12.2-next.1550125345875", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0b40d04b992085b484cc19ea3b24209713c66839", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550125345875", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-arWJDrsnk3QM/KfNJCBkiKuaiLcTmckenhFjy0IjlN2B5CRs1I6tDZCgqkW4mkVnqGaSEenzdVavJRPbdPnWyg==", + "shasum": "8ebf4975adba403b28c03c025630161756544bf1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550125345875.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZQkuCRA9TVsSAnZWagAATXMP/im+GMMq34FCxdefK3q5\n4rNrTi01ZtoNYwps3V3wq9W3Ix+PETeH/G3mKcce+jPAk6GbzSiLGyME18AG\nFGocT5uhSwsHFdNBoAByOyjSG5me8WM4oDSY0LJbifXlCt37ovfROBS5J00r\nYxTp2RqZhB9Yb5f4pMLUUBgI25NowAj/mw146fw2N14hiHSN2ny1q3RF18c4\nxWgmErb4waAJWHkDYIpo/Z+YeDXjJLKm2ybTsdJRm6ibYnCLyDE7vXajiPUM\na01Q4FCiAlFV16MV4eEYw5LmDZpHBF6WnUDCtSO9olK3bZ+HmoMJPupQba3L\nVlGrceZzXKLUGTcW/jLF++4CyXTasqBaa32af/U8v1VAA9rZs9KnSU0ZvRU3\nxdOJq6uM6GHV0sYGtQjf1zE4bNBS9wKFFD00WFe6SoFTUQiQEJ2NEZ2m0Qty\nT4d89PMu7a3U8dAtMANL+XOoDEvRajFh32zphei5uT9xoD1wYcnHkcwWAXUu\nqwZuGA4qFhRTSYDzXw6uBdDRC1zfsYu7hsYTUjNVCYpdWSO5rNa1d3rJ8TsH\nr2cEjHTiK5Gr5Vt7/1vVk9slmqpY7aFgwtB4BnpUmmroSEymu5xdTOf3I/L/\n/qYWMTUbwAsAEalQNOriCGhyn8MmA/lJUzyPAUGOT5IegpxVmpV/oS6yZacg\n9ngt\r\n=OVxx\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC2vIu9yq0T0+xdBDdHvOjZd+/iRKgxH8R/PiPyVsulZwIgR2iCQl6bis0goS6QKsBBZMiXoI1BTPNBp7/vrPq24Q0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550125345875_1550125357514_0.014327671735537395" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550129406249": { + "name": "puppeteer", + "version": "1.12.2-next.1550129406249", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6350cf08925394d625f76a23dde26ab4ef1dde94", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550129406249", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MP3WP5jeBiVpX0aoIOeDqgAFQC7zSidRRU0j+bhIvwh1dDIUP0ArGkdpWo81dUfQML6p1qLnNbaLbdTlwRmTyA==", + "shasum": "9c5b25c0f251a2665a031187582aa5f9d2012d54", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550129406249.tgz", + "fileCount": 69, + "unpackedSize": 712333, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZRkLCRA9TVsSAnZWagAAeh0P+wbM6Q2mcEKdnpkruVRy\na/Ar8vY8piIkKsQ2WsJw0CLMYFWqomsgtLUkVGbjCHbm9Le1AYDz/WmdfNeF\n0C6vEm/VZZLObYXE4BMxKEUItAwJiNKZbRyPhRTvhDfiP6Zp2PF+VVuC5mdg\n/d0qPWN+H3ct3p7ljV+ACi2FvZaEEz++ytgFm35zPGVT/rgW6mpZdU+QYkoU\nmV0hWY4WW6J05dYMP2uGXYZ0/SgITCgZ2EaBZLM4Zch8vbm9aARDwfGfVqWb\nLJkoNBYmvxpgitfDmeXgPwQPsd3UV1saEKnPGfNsWb1Y+e9BCHumxM7AB64D\n4JRlqW7D2e4G1xOKd4GFDiszIx3TODOB3XXkRt+gPQ7KsAcAMRogooY3g5ng\ns7+Vdf9n/4McAR9OxOabdPCmObLyvxk2rnj9FqaLHed5zQK4DgPzLQaNlggW\nOCzFiLiwGR93AzS24mLntbjj/Kg9oABSoFOn/A3xWrMUkrh1wIh4prQTz5U3\nCsYiLOp6f56gL2bjOEJp1NXpQAapAqWAYk3VxrvD8oFjYYbkf6b/spvGruS+\nw+HfqtmY4lPhxhrqT+5jDcj7Zv6MibEm/EgfahyYQEggdXiFzuuLqZ8H4pfh\nxlKdXlqCU5on+KS9Z2z9sxhNWv1kKdeLmYZlB1iaQA4Lu5ZKXzpPfLnZCYxe\nJQ8x\r\n=ekXv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDV2lkR3E+HvbnCfsHT1bogjEyX7rakXSTkMEPXKYOC2gIgP+gd5lVireIcQztv8JW47CkEm3ruTWr8DI86EFzCt38=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550129406249_1550129418796_0.35150149935655284" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550130473795": { + "name": "puppeteer", + "version": "1.12.2-next.1550130473795", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e8f044c3be13875b38581cbc5e9889e838c9851e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550130473795", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-uS58XM2NmZilDeTokyTX2B85QY1ZUp0uJizEw9toXWDS9+uqCrfo1C7sFl3t4iJNfK0ra4U8XKj9gyhWcUBjVw==", + "shasum": "6cfcda9e99968cec6541dace53c715303dd4c156", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550130473795.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZR01CRA9TVsSAnZWagAAWXcP/j30IvkxkeiPhAbz2fyt\nyhElD8o66DFsNAxF3NlyqqXfzlo9a30VAO7balRhf4DY9MR0yvgBglr3mulM\n8HY3wkuCEhUgcRBnKS4+TDoHfIc4E2n25CZHOB/0XF2/HmMMbDKd7Jj1gzua\nMaxmjXz1RKNaXcoxtABNYbaAZNL22377IC/EEfBEN3XHCFa5IfIqGMb/nrTQ\nLi4BQ2tUWWTJP3zPAHDqLhTYwvhs8plY7iNsl6ElPCTLsYXGgko2CLg8MsxP\nnIu6cDJgbn4tAty4Fu0bi4E/pPGWmonahqkvO4dYwxkELF91JsYYS2bwC2fm\n2nYFw1pufTW9u60WhuiXOK7QqFhXM8BO0wvXaz8LhMOXqYyB9aLG2ImXhj1n\nMuWwSNvU8rXfS+nXH9PCzHjM55meFLn//luzQsFnCHNcAsEmK/qafLInDLRd\nbeL+t1MkcCOND7tiEYKaxcE30SRTyUEjeZ3iwovbAlTK4LKWXRjO7036OJGO\nmShGAKcrM4uZJw1Gsz+6xn0p62poipMd1aWzwCV+DwcqAF5aVMKSmL77Nvav\n5yFfmZ9LucRR8NAyVawlXwBYAxGGFw2Om+ZQriEhSZ091n1P1vNHmnsMt55z\noDBwU5uLUAXpJF03Xujn4ySD5T9Zo6+wfQVRNnJgXfQj6MQY3RNZ5TmhiQ1i\nrvBm\r\n=WR2w\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCO0h3afQI1RXlLXGI6AtPUpk1Zap5nRMYNDR192QE6JgIhAOLE8iNYB2ky/jrsSn7k7pM1Z3F6xYl6WR8+Z4Xa4mh1" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550130473795_1550130484869_0.8271605849066281" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550131578606": { + "name": "puppeteer", + "version": "1.12.2-next.1550131578606", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "247733b879039dc7a4ab30d90cacf3e2bdb07ed0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550131578606", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/eY7Id6+NqADHLH3gqhugIqK33NjAMJv4joC4ZveeXq9B015ODAzS82MM/ja2owIbFZtorpaDfUAr/N7OyYFHg==", + "shasum": "0bbbb6714d18576072f553d9abf7c2707542e591", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550131578606.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZSGHCRA9TVsSAnZWagAAp3gP/jos4V0Jp2cimoTztwU1\nfa/A2VptZC4eI91InrZ680cxOK3YdH6djG38t5CxyXzvcb4LqyoZDKcJ+gij\niMfRs+uv8USeduH1SL4nwARl+XSZZygZVTG23oIbFxpCED3NznsfqgwS2aFk\n3INIKJxb1lPo5hQhUcAjoF0jQpEhxNkjegHHktwJrRsdQheIhVr+pdUcFEgr\nAGYVOCX0TdSJRVnMUtPkRUM+DaLo6TG5kTKAIpx+EnKYKZsAJnv7yPxfFCIl\nyRifrwhxsuPCECvOkjH4BIpmlLaBNcjFmwpFNmql3C54Ctdw/ps2YQ7UR9am\nJJFxAeS/UGwvXF68A95mfhgVpiAKQGIauJ+ejtEVR4LJ67tAYIsrAMpGhURh\nsqwwvte+iHBbguHZcgk03fEEOLMbnsDxp5yLHsAzteMCdjwSRALGA2FyddaR\nkNzuhzMTEtuYp1Sf5rbqYv/kYqyOMbRQ721S9ixiYeeSAcajrOWi1/gVoBR0\nXSj3OfCMGy2UNQWzdorMxym7DJ4XPq/cSuOuH6x3zxVrf+JPxEAFSE9Hpm4R\nmNoJwXfI6rJAHoSFXHkg1PIqtsa+3vQ1rJ0xKisCjxJpFE1MfJ0Nqt+uYSlr\nzapsjv/i1FBCQbUMf+iwLKIiK6azbhYpXm3heF7Nuj2nlwiZ90goSf6WOARo\nYfQy\r\n=roY+\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAIg7At9g26asMLZPEzeR1zT1A+B6zxkLFtZgQf6LTYUAiAVi+FyTkCkA7vSvb7b13BNgS6yzRnrYQ1MvBRsqHGI4w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550131578606_1550131591004_0.03475500482445737" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550131956176": { + "name": "puppeteer", + "version": "1.12.2-next.1550131956176", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e0d4a5d2ec8d080d857dff5ed94ffd2cb3cded9f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550131956176", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-jRELcCqAWNALBI3QwsC38d6hBsznrgt0+SETKDDJzk3iYvkDM9nznWTNO6htOPiCKlxF829kBvawNJrY7qO5yg==", + "shasum": "7b19c73aa601fef41be96a4e1b827bc0b23ed973", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550131956176.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZSL/CRA9TVsSAnZWagAAh5MP/j6XLmJ1bfZCMFLezdj/\nfF3K9edKGB6Iza6qlNFFLcX+BwqMYx1RGJsW15ujpTbCrBbU29IbX8mVzS3Q\nte3qEzcogfej09R8OkZaYJwfBl97O4bGmfArp7Xw1JjcONx3b7fURjyF75YK\n77jIGUzllsaUl2o0SM9j+DC4AjFlOPqLoks7sF9KS59rjMI9duO8dPIB9NQS\ne9ESAlGcZ9De41hgXbJarC3XkuUY4so6eLgA9cRce3hoviWMm1Y2cP689s9q\nfk4xlRIugzOFi5716t9AMnQ1AVZ2Eh4ZRv97iUb3cGmCRvkYnLQIuWQFxyF5\nwNNYfLPSYLxuxcz0oWCrFVpqSM3vbT75F/9+vgZUEoAfJx2UYuY3jdVID6qr\nZgsXo0lmvddyyQQZHyxIOtTNN2cbOCndx13+gjQ48bpnD9NhbqT1tibhZKM6\n8F0Qv+fUrlS0vPgGdACaH4PZmSsrnYUlCqIdLoKBwbNA+MD+KwGRMikftlFD\nm/Is9bnkm+sBAqMrE8i+XB1g0sUKOdCrzcRtnnKY5Mp6iUI6GhiBm0n/z4QB\n0nqiwUIb54+bns1i6TBKSrQNTF2t4vg8TrgqpKmMhBVyBuUNddieYwy7/kep\nvwFAn0a6MmMn+5m1dxvpXyRRn/q2mwSjFhUzSFUK8yvYEYsacUVWLRaAdxSf\ns6e7\r\n=KLst\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCLxUa1ivmtD0xKbe/PItV53Kyj4v4jYKvG+d96RvAuTgIgFbSh3B6a/BMplpVZmvVWJuTOCjbOMpWMorizETzJRRM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550131956176_1550131967189_0.5119153221512631" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550282653763": { + "name": "puppeteer", + "version": "1.12.2-next.1550282653763", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c35821a1a1c0348c03effdf14cb0eb8186ecad32", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550282653763", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-/9WfHhC1A3yedRdKd7d5eTewuOB7ESDuFoWVb4MRCqwX9BWn/lDM3cLsTe1vV7cl7M8Pql78da2pjdYTfgSNIQ==", + "shasum": "28d7b3344b94ee45dc00896ea7b0b8918a24aa3c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550282653763.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZ2+pCRA9TVsSAnZWagAA2IgP/2FHHxdgU97Io+wON3uI\n7m3UX2l6GBL8zDj+2LBlh5wxdY9ztiR+Dbqkk6vJkMYeKhXl41N/ljPtjZND\nZakoaHmWYnQZWsU7OGiX1JkYyDTtkHiqXpiEx6tF4u13VHthKts2/Kzb8kfE\nypOdk+5gYXXdpGczm9qs15h/yyuVFzRr5r0zUQJpI1eLVRdKj8rSy1MjWQqU\n4pmXaoHnTVjGdFps8gQQYXzRZSCyayMA0CPHf9FAnJE1S9kaoQbWAmmV17MO\nZemooI9hkrLFGjYDX0V6ErFSEGWLjP+TcCGVjmaiNp0dR1SwUNH+TN5EQb4K\nRrSSJt95FQQYizIy1KW/YvgI+O332h65F0N8vMZQFo7bHhPT9Xgvpf3j1NQS\nryOd/oP8s/rYJRuAySHzBMDW1LTd1sBTcXSUY0jnqwfkzgR5jvo/7yNHnz0+\nutKGrlvFzdgzeDkQmX8BA2kF33ICfAt5q2D0xk9HXjeT2v+ncLhv8Bxzv84n\n8cFHDmwaxj/vO52nghUe2FKiBKW2H2i65NebN1N+s0pwZuxgtTaaLfW/QBZk\nqKGWT2zOJsZAJeaSKae8HBwPuDq3RNMIWgQTMihGYSvx9LUojL55TdPP8qAh\nySpZE+iVecoWSDwMXR7ao04pc+sTQ0RuE3iS9mCFpayKGXZ9OKu9OORrqHlw\nRe9V\r\n=XzST\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGpvlCkzje6dLTIINWjzBFL2UPBI6KmKidWsJISdEnSyAiEA+Z+2iE0YV2K3Ye4SR/COECZIvyuGSON75ylCdVCFoIc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550282653763_1550282664997_0.38589011239116533" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550284380471": { + "name": "puppeteer", + "version": "1.12.2-next.1550284380471", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9782f9c82777fa4a18a4a3068f42c2c14ebb761d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550284380471", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-8REC3JnPt/pkONLQJD3HIK4Ir+zfR9Ms5vszqoQQht4VQEyJPVg3TMARc39Zy28Kk8hrUDVEl+O043QPtRxKFA==", + "shasum": "59ce827f1a772bbb63432ab3615b245f3621ef36", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550284380471.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZ3ZpCRA9TVsSAnZWagAA7cIQAIxeyQimTsCI73MwsMPH\nxPZqAebc+lThLrWaoPTy8ivzvSe5QHoT2Ugsos4H7BIAar9MmTc2rHx24r8S\n3Dr2qsywKWPW00ix2Oi66sPGq1iF8QBgrgpxcmSQC+aM5eaZYzv8ERZ1wkTE\ntuSZsGfXkjSqVLSl0ZAT9xyLzrdMxae9+dAIoZNko03OsM5TKTVSFOGGoP1X\nAvCsgZJhE4mMrSzIUV4mHAx051qEb326ON6IulX7h5T2cqQiQQYNuUbmBIwi\nOyEYNeOfPGmKtGrdFpKtbiSDOiSKEGrplYNQQdFOKfyfARABpalG/Rr+/Ztx\ngq7E+mHhhkFsQ0LsCnm6vrHGz6v0h4xIe/M2NYO3kCgiE0rdGupwXUcF2Wvj\n90bBrQ0lV1uSwBCPNEj0aD7eVk583UvjSB22bNld4qRb5aEUHTVeoY9EeYtS\nVZUoiLc5V6IPNtLd1H3w2RDBR29KZnxEYgcbmvWizNhZihXOXQz/ussubw7I\nucFaL3L+cgkcvRjAL+GJkGxv7M9As7b6GKYH9RZA0+5x+IJO4+5KuxBFE/wg\nHyZZgw7j+PjhmA/8KSAPJ54lumno1xK3pswVT1o99IUV0w443EDvZ2DCB0R2\nPt9wmGmjdR0q5JWYNxj6l6R178zSVB4wZ/c4iLttoDlQuE4WZAwKi6Y+YNuq\nIxhL\r\n=rB1d\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDXJotdktZ9rKMSuTufOW3Kilcq7ksaQVWWtltWy39FHwIhANZDYqbc3btVUW9Txakgo2Lsw/M9sf5VAbTsvW4od9cm" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550284380471_1550284392506_0.8967868083900381" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550428217621": { + "name": "puppeteer", + "version": "1.12.2-next.1550428217621", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4a4793a5e18725653b0de792df89daf6323700cb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550428217621", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-uh/xmSnBREWfH9pmKgXJUCDB4Zj4nRgD0cU4FCNQQ0Esv71jFl3KYJPIqNp3qieXuljKKafaNOA7Uh6kYpQkaQ==", + "shasum": "36ca5a0ed99532ac5d60d30022a6b2cf2ff6b23e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550428217621.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcaahHCRA9TVsSAnZWagAArFoP/3oet+S0tj8WjqkS/DK4\nBfy2XDkSJNSxddLuC8Q3RckNIpbjoMy1wKBSsiLaEPAX8/uh4gg2TK2P3l+R\njDI1zhle80NPBvtZsfQ1tPc2q/qc8Zqxvtt/ReI/538x9KeSyX7Ou9dmt42i\nQAt5WXdiC4oxToDMOYdGLeIItisSs5p4E697w3cfRqCmXBZ4FtdXWMbEDZai\ngXkB3lrwiX3fG2mAHo9xhoR7GP7wz+OTYxPa5ORu8xXqfPA188dohX4XTseX\nv8rLD9ow4ej52TuyCS9G65zztA8YtvHw4H95brqVNHLxopZ8xYrItaXiW/aP\nVvgy5Vs3JNyMKJk+ZouXYX4R4AU7TtECrethDyd9CuJffAxPVGgkoKPV6mwO\nsB4NjTBWJxGal4JP1r9GLhzpjb7j9cejb1wY9er42Qpx/0siVtbAYLqKePBd\nFLuJGjKmg/Tx6Yx6MzpuBpT3gSOAl7Qgf3BCAy0cB/tZujiVJ9agfSf55wVe\ndCuT25CWiK9bMOkYU8r0ouu0cauaur0lfNXV+ZquV8smtyZnh4r+BGS9xtRz\npPwt0B7rHvp0J1mgWfylfWMtfwXLYx6YtlNi783DARBfSZLUCFL/dJIQFRuY\n6323FsbdEFzT29yDsYfop6VQ2DB4+y4mfC/l6P+0PP4/X/nhc5OkX0ObL3GQ\nxT92\r\n=FWK0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8zQgZGGwYR3hyJ2EGq0Juu+Rg27qVdIx6oPBxDljLggIhALkxvKz82udnDDrYHoJYVYusq2Y0kkp2iDfgSjQ2di/q" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550428217621_1550428230694_0.7720411097999262" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550611648487": { + "name": "puppeteer", + "version": "1.12.2-next.1550611648487", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3b180923a62cfa570e8a628bba4857eeb3b45c07", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550611648487", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-PczNS7ayq1caIsobg6+EKJj36i3eFGDckNKtYvAh5Fr7av7PuO2uxBVInHEDauRL1xOT/lE6/B9MH/pUp46sXQ==", + "shasum": "3231bcf220e2cbcbcb2a14a4063f177d0f595880", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550611648487.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbHTNCRA9TVsSAnZWagAAUPwP+QFQLEGrZZaS6R0Z51ZA\n5gRFQt9EjqTal6tOaJQPnwLnwuuodL0MnZBWk2B5OOSC2q0ghaw4F5dDawKv\nNnMdD0Mtd7RWHpoCnk4+jpUxSnhputyV/XBCJo0TW8To2fuI0tafCEWId2NL\nbCqYdcDcPI7iJZ0dutJHcHDlRtWkXDfHnAWtb9yk7VMbi7nTWQ5n+x46qyqp\nOAetaQEsi/vVhGT09HOIFYxlecn9Ymlt+cKtLUljclrCaTKC0R4MH6jm6P3f\nUJt+QH+YeAaX5qUCP53lckTru1Mh+S8E3vZLAlntO7U9ibRIKZT9+MXT88Rt\nUNJkr+9X/OAHWE+sbu8T1qfTdz8Ze77J4Cyn60bZmkCJoMhAvOO76vmRmsMB\nd7c15zzQAvCWqvf5mmxFjjAMuVvZdijlTefR78biQR7XQgqJv7O1+DDebzqC\n6shOau0x0hcEzUTn1YWdqLx4r1y/ERiDQbHUoKSXti1EsYo6c5zswyAb7k9s\nY+o+lpMLheZmh0c0oUUqSD3bfcUIAcQKdYT0QwaA42+QLXtH9AdyaTqKHj9+\nkPzXnaTpBPnsB6vakjMVSvT86toBPotrvZ1uL4EG0LY+tCMtb7Sp4S/aUsb+\nrgEcIsJ4t063h/GF+YakGpX1LoIKGIlYtE4IKj0ljHrkj3/tCtCq99JuvyUc\n6w/3\r\n=gOWF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCUrg5R7c6hx0LNzo7wqtlKTHUW3aE6joo1JFieFZYJwwIhAPRgGiHQH2irJm9ikBcjCcwRpTciQVnw8A7SZg6NAO9f" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550611648487_1550611660795_0.5177133157416904" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550617121272": { + "name": "puppeteer", + "version": "1.12.2-next.1550617121272", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c118b208fa639ad45d94f41488441ee241353e6e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550617121272", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-7gGC6Tgs9YM8W2U0k5j9rwi+8icfkrkoJ2xwTliUTaHBd0+SP9AvUKG6fSnBw5PA/VNK5wa5GF0UvNEqtlh+pA==", + "shasum": "a1f262c08e286f0135c93e22600b94e1f66180bb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550617121272.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbIotCRA9TVsSAnZWagAAKsQP/0MOOPhI0uEml4gCisXU\nQoP6Nl7rCKI37NakzEbE3x5YuzxU+rt5iv+2LVxAz4xhTnxlYOFSRgBK19ji\ngsi4o61OrElLs5YCxvSxW3Ns7IdHXlYBhS5gqq5JwhRcq423OPj+VyYygcLr\ndtzgmX4QqZbInIcZeR9FALQuG7JoC2jTbW67yCuYJ64Uk/TTJm/dVZaJqOJ/\nqhD6I14FuwVpO41LtQtN1CihqgH5HWLLEfxMCfXmXKz9Q0APBALhtix9+sD8\nwJlJNF5rsnJbsuVfSKMc5Bt6CEXJSMGornhXCV23kutJ//s1514kze5VCyEu\n61TvCi4Dql1Cz65coEUN+JTRb7pUVNeOVdKEWJBLiBbdNyXp0mL/2dIZPZu7\nHFYJIkjBK9u1MHvczebY6kohvr2WTH0jW9FaRga+Pwc8SxBe3QdH7yVmC2Vx\nSlp9SqQ/4vu6XLU6YGikiGb/wMoMt2+xVIVCClHeHxiqzI4MI58AbqXyODZ/\nbtkN5kC/8F4aTDyo8OYu1A2E7rSSBpr6ijKcCho1YflYkF9YB+BLL0yfjJ3f\nZnCawnZegCkwZDGepCRxZajNi2jjMokPWDJrvRDZ/TATe+aCisuppwcL6mJf\nxu/GRflQ5oFOe9h+eawVQFtmM0dgu3x5FRanyKEiaG72MujmfI/Wax+iAu2a\nVA7h\r\n=pbBB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCoBFQoq9d46IiapAsav/j+wCIigyt+y8tlHucoEWkPIQIgf8fAT4skjcj8tb+rUpmYSAhHmPyd+sompC9lI0C4CSM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550617121272_1550617132705_0.1247488568226065" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550618944816": { + "name": "puppeteer", + "version": "1.12.2-next.1550618944816", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "719ee5af3dc4ce419dfe9046d087cf96fb1bec00", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550618944816", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-GW1M7FKNT3jQfktX7HrGn71O6zUH8Ijy8sQ81HgghPVpNc0n2NCA1t9Jz+FOCHM79hw21ENGR7b0RkjwwxXymQ==", + "shasum": "1a9397a75db288a92330abc87bb42fda29f07887", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550618944816.tgz", + "fileCount": 69, + "unpackedSize": 712429, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbJFNCRA9TVsSAnZWagAAuWcQAJYnSsCJEapNVgvyWjAI\nZqZlmv49djEDOHuqODmNZ9m1dDs6doNKj7C0KGRip9+Ddx1298BkKJYltMJA\n7rQMB7/EYnGKlekbyjDcQtMECMw9Hp5a9Y679v7odYiJyStEg9a+Y4tcTMM+\nKYFi+opUSgiQDZv5XbhN+bmw8s+Qg4VudwWw9hztMoNROO/cdSNrwzPOlHPx\nOLImW/lzhcyam6D5hvPOw9VCxJ84+PfdPz1ycY4tOc8ed+fiHInXuThEqxg0\nib/EX1Qoher9RhcquOePlWBwi7CUCtJxxRo0zO6Fc52HB5a4j8E3lqEGw61y\njo+kR1QXFPjoD5Vl907PugIhCtWKFNFe/0GD+0FHj6r4l0qgyal4kDUbw7BF\nUGkjUTckMz085OssTXrAAhqpHXUyqagB97OedPN6DjQ7uE6/T6+A6Tx9DMto\nrLVRQcXzdBdVzmP30AINruQGeHh6HywsQTeuRkq6/VSv1TfwVkcZvTRi7ePd\np+/EN8WyDROjnolmaGDDPsEbC/7A00L94om17nMbEP354ifZAixI86hRX9I4\nT+jUUFXcjsblz/nG+tsaM1NNbERKJyDkSJLcFGNW5ZPBv1Yoc2w92GVMHDfq\nezLZ6PvB6+ha+j7sT/eNxs95uKAMdNJfmAG8SdpcdIDN91R2YvOxx6zB0c+4\n837J\r\n=EKT/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDn2Ym0gg4p2V+Dhlne8rVPt5ZSG46HodAg+6TUXEon1AIgQDYSrcKWVFyR+qYI99dxozBliZ1UroYNl9Vgl944xNQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550618944816_1550618956595_0.3513533801517086" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550643350858": { + "name": "puppeteer", + "version": "1.12.2-next.1550643350858", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "03c542a6c1d93f823ed91c8a266f9d8eca8e5f3e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550643350858", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kHwyur62qDWm4o4eW23gLRGUBkpCH8kEBkVqjNAJ94Io0vFl27o6S7h4BP6gksZxgszunLxwdZXe+mxyBti1Xg==", + "shasum": "e2d680100ad7093e052930bfad17b7cd9ba47218", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550643350858.tgz", + "fileCount": 69, + "unpackedSize": 710645, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbPCjCRA9TVsSAnZWagAAGZ0QAIgnIUCnfaIxfBE82V6I\ndKAFjdP+BJle8hCmpkjNgdZNMK9UB3z6h2SeqqhB2xFZ685jXtKeKb5Zb8QB\nTPWYdBXUPq6dEB0RbRGOOA8Iwms/W+vrV6+kspbkl5qujoJgutzu8g5MQ/Mg\nJRRjPObrqV2TPpqLo9/R/hrOqnlMlLjC2ljmoWo2wmYlJp8GFKNGP6QXjgZf\nJ2X4oTrPw7z7AbOW8+eYtHthehIMpOHddqe9nf5Hu2UVZ+8Km+wksXbFvEcR\n03BgN0IAdB7qTm3iEmM1122cSDwy5Cw0zeJurRCq0w5CgW7JyAzMFtyDkwGk\nt6gjP0QXBrMeHcm+MNJ1Kms354ZRClIF6wVBgBA/ZVmqEru8JYqNFNtQpVjt\ntTIc/6p7KyJpWVUDXwnH6NicZ2NLXEOi0+KDjFvwU6sjREcFIPA2ILeqPZaD\nGP5cJxoTRrlh0M5BjrJKKiu/LfR0id0NjL3zMOje9+PZPXWdcDK/4KoFR2i/\nEJX8+Jk1HmKp+vuY4/U6448GF5oYLBqMSWb9pSlRgpNS04MfO9ECYlJm/P9x\n8fEQUtk4z2dElnEuMWbJ/5w7wEWRUqGBmtEtOfyDwXUvTyK2V4OIyTp0tz6R\n0qm/V35n9gCKgGAXCYgcatNpu+gmQQsJIqZr6BI/1LmJu59Cl/hueXA5AjDn\naAVj\r\n=q9rt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCgVZL10QC2LORbqkO6mQ95D7OATL617kmEX2kTsONbdQIgN/zXRkF2oWqv8mmu9YAKMIPJo9DH6TezhwerzPJCWjs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550643350858_1550643362529_0.629007871229045" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550645075490": { + "name": "puppeteer", + "version": "1.12.2-next.1550645075490", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a0fd2ce3fd3b8a05a3a3c4fdc669361285ccb48f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550645075490", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ZxYT+gWQRO1h0PTuu9DGGtn1PmFsieg5o87/MMzZKo/ET5M1Rtm/pNK7Gb8zQUyTcSxnHCkRZ6p4+7OEgXjt0Q==", + "shasum": "a154b9d89907288ad1a8c1b081eb44b713a9d9c2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550645075490.tgz", + "fileCount": 69, + "unpackedSize": 710645, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbPdfCRA9TVsSAnZWagAAgPIP/AuI0nzRokOny55tKspI\nJuqli1mcGVRiOrDZQBXLsa3I7y7ks2QowtBj1adxkpd8zy9OEyS50c15mc32\nvTp9OAe3ais5Z3gr2FsBSkeNRd7jO4ohy/SvxVWX9PoY2anSQ5rGKDDHpw3R\n55R9tS81Rr1Fc4H1kkoDMJDqKL4J4OwGDoAPBOYjY3hhF0xgoSMdsncNJKBi\nW9ifhTlxw9CzX6Au0s/msQyeomXQ3cvXgBGQDFdHtxc7hTkQcSq3kAqmHc2f\nm9ZlGW5z5NhifprmZPhLu5G9SQWUZxrKdA0jrzq4FZGmQOI7AEYAGM2Y1CEx\nqmWiSiN+sazsCu842tX9l4L0c1I91o+MktyRD91rItg2UbGLryVGUWH03H5i\no5rhj8He+7DtvK0aBDCRJpkCywhho0EIotksxz1lONY6kjXtnqM+zan1uc0C\n26qwk9+DmsVGtCUqKOlZZ/0jPwsQcDEC0MKRglWezLMFyBykZAi+V5GNfF8r\nGHXtHrPV81wujrTubPDGlWtwYw+thZTZc9fKX/i5JZ0/0Pp7YXpFx6lXosqL\n4er/ZXZfLbNJM7g6hZxGXwCv3ZUYMXYjXWilV/Gp4/bfskd57UfekL/PyxeT\nxxle0vMnEfAgRQ0hv6kfy+WPcYBIXdEgq/nZ/TMOITFlqdCLqrTee+OB8EeO\nh8NU\r\n=PrME\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDfhkhOSadG42sCmJlFkhfpKrUeCuV5BmG8LHqEOEWmLAiAPqK4jyqW9di9bh9KdIozyTwvHXZS3ZcEL8G+KSCX2xA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550645075490_1550645087117_0.489932524442793" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550772889548": { + "name": "puppeteer", + "version": "1.12.2-next.1550772889548", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "fbf91cca982aff9549d593fa85aa137278e6847c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550772889548", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-OgQ0MAoAc95Kkx68bmSTtqht+C3oQldLxBH7iuFQ77GqvSqGAR6YszAvLoVlfe+6axuEJkJRq3i3Dwu/uqKtqQ==", + "shasum": "4dfc118f11ec5607079e0d92df70fe40185494e9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550772889548.tgz", + "fileCount": 69, + "unpackedSize": 710645, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbuqmCRA9TVsSAnZWagAAFwgP/1t3/4PBpqShPrTv8NDK\nuZUJo5zs7WXaL0UWoNNzzWcfuCloI6QLKWKIJ47uY/FsSj/e9+djZ2sE14jr\noOY9CO2WGiTyYkNpD+brJFc48xOTBtapHdCdNZ2dCYIgZswQSagcOvuIgmmY\nC3x4IuYRqH/sxehLFmtHwo3bCuRVuiERTGshqQvFVO5jPgUUQyWau5naMX0Q\npkOeclYgUHjgCQ5JCOMpL6+0GoFFLFw6NVbjLTxNjEaKoSltEbZDZ8DlivKE\n7UyYTF9i2gIZbV3qBYr4SXkGEvNo/NSfT+GDGBFS3YVdElnLbJZCc3HsSMXk\nesIPYjgKlbHyzWok7vhEPmJS6uPTmcRMUOILYsLc00H8t1SR3vykEmI4AaVG\nJuU2LaC67gVyr92jKBF5/JbhX43YS4D5IH15q8TQKN5CokiCMjbiTpNwHGoh\nWUSiybHssQDbU3Q2B3TcHIfveDDARZ7ZsThDrtcnAYOBE/zD16/vbjO5RZmf\nKe7lVdZmK4JKY/i676GS10ha9tE+Th+bb+svV2yds+hS+Yw7Vtfrn23hHoyO\nnDvKw+Vpa+Y/9pQbKxRxSmLC2DOgtcOfhrw/tJGtHfkaxbFp1uA7BajtwVE6\nBD8la0zembjzySM6oUKTOSmAI19luVc0WhX5klm9pxCqYH6z/xnVb+elUBSO\nJbJY\r\n=1N/Q\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHWYR9xsueXQw3cS51kf2x76c2KapHdiwNO9RhYDj1O3AiEAiWh3wulLerZT/qOayzNxmE4CqopQsjHx2BxCZV9Esd8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550772889548_1550772901438_0.8583563243333219" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550783848074": { + "name": "puppeteer", + "version": "1.12.2-next.1550783848074", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "ed984ac47983ae40cbb2e532b58f3a9c9ef1afdc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550783848074", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-FOF13b/9AZCvAbI9XnwILWSnncUh3HlEr+q2hQA0nwKgNNBWjYCnTEAvQOlDFCdc963dy6bwfGYVLAE1RQfGlg==", + "shasum": "beda79e83df7ad1202159bdc9e8689c975dd1b55", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550783848074.tgz", + "fileCount": 69, + "unpackedSize": 710645, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbxV0CRA9TVsSAnZWagAAFUMP/Aj4itJd7EuYCppa0CC7\nD8jxCfRwVlUCddKWkvbYH4G3DT87jiY3dt/spxw3wYpniSME/n2aL/Fu/yVJ\nV8QKqQ0QskMSkHoKo7NQUvVWBcLHHJbU38kxplniJHKSVF15wxiCB6vNN2xM\nveXG4Ps9MS0dUL79c9xdF6R9gOoLfny9ChuR5GkvqzQm9bnOoRYpZonuUHea\n7xBk6GAk6uyKRT74RcpioeyaqPQR/KiS4s5lEcmRI/mrvPbsDWSNcPrVDAEy\nYfcYF6cz5sTsw0QP1ETV0gEzMhsvytSO6ilVmi7tOrRdbxR7bIKpjormjkaF\nQP8fmZNNFg+j/DqXHC/Yw7VpYzzBbWmuP1aGYMx7c0xQuFpEHK2G2jurB0nV\nnc5ZkMLeIY6ktlHHSCBM10VjHgFHjeJ3K/EnDG38T6piIY0aShpocv3uVbYy\nZldUamcWIOn58wSCT+vsbry+BSFJ1znTKKUXkUGtT/wZhdaODNfCa8RyMPDu\nI8mHAYfhJ5MdR1Uc0QeVVjtami5W+Ug5UJSaOj3YObwOE1bVvMoB9NmfnFeb\nVHHNb18o/bBfvILZHkCJJb3t/lxkLqpKyk5stZ9S0xfmLkONJuqC8Pm7XHuh\nyda5+lhgO6Nie6wlbJLme+a2ytohjhme+3nJ7q5afx1Clyw4sBqa8jXnbjY0\nNZlI\r\n=MLtd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQChY1vfoMOyQVNjCChyxreV/3Wl+fDQgzIcudeEq0XhyAIgE/eJNwRk/Qo97WsN/75SuPgZJ26q8nFsDBbqk6FGX4M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550783848074_1550783859925_0.5850727943637515" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550793853898": { + "name": "puppeteer", + "version": "1.12.2-next.1550793853898", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7d39aca93c78b2026268805cddcd560ab7ff12ba", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550793853898", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Lcxbvyrz5Koa7YeibeRufBFo2cf0ZKuRQM6ksVvW7HY4Y+le/3H6Avqdlgj4KaYyflYVxLMlJvncUXMyXXzSNg==", + "shasum": "64acbae136330d12b722c063ccfcb822e81e826f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550793853898.tgz", + "fileCount": 69, + "unpackedSize": 710645, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbzyLCRA9TVsSAnZWagAAOHkQAKAPm7EFhZ8wrN7sJxs7\n9q8mzEvaM2l3PcbUP8lcfFTRL8QNOndOmkF/KdlYd79hIo7ZyTjyZkvXv2od\nHgde6OERYh+Mrd2/DQ8T42ZsevDMaPj0EW/tYJzf/T9RWavBwG0HtaDHcQZT\naMjiVSzEy0I/yuo5cQ3J85Qy5qI70fytya0Cp+pfYeRsjk/pQ4icg1QHuO9s\nOks90lxuW6zKfK/CZzvkZhaMpV26p8QPmvKGXemvIlfGSyRKvn5nb6ph+gC+\n+/f723D1zdbZc/A5ezlONch6zE5BjjllisON6F9SD9weKGDN+Mlh6T+DNEK0\ndNakVfMhQCtk7bhbzaw9kSzObJNI1q9KX0Xwpi4fhS6G7e7xknNLK5CRgZAa\nK1wIV4HkK9nofaj9hvfipLbkjCaWXceEk6UDSANKBnGBrhN+Vy+pjgbM/wb5\nNiEBD2/h3H7bfWVl2tIYDkOEbaQ+/k92CzY78Z4fMvPNSc7hQfy+KL0jtvVw\n8WafOny4BLLrq3SEv1zpV/LJGNw+6zchuRmWZjx9BPOarWQcInP4/ZL4tI+7\n9nL4yrdR5ScSrQzKwZbA5wwoLfTwpp2pmSAYPODkhMxv3QYbSO79Zr8GjrrO\nj1iR4L4WnIV6ognFGP+AV12YgrSogKAKOsglbrUiOLIspG9K4mdOYSIMWi1+\nOVMV\r\n=sxlP\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDFFD19d1xb81GFdeoDnpM/a0wE3dM3mXJlbARtdySHyAIgXc8Sx0wBw+36rYDsMmvklCrzuPBY3J3P49V6L/AMdaA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550793853898_1550793865916_0.7432624745798921" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550823147572": { + "name": "puppeteer", + "version": "1.12.2-next.1550823147572", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5c818368a597c55e5a93943fe3fbf31b4fc0e6c0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550823147572", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wfBZq9cDhNhNJ82LE5nanL+osPy1d8MVsr8tlZBWxL6y5eCRwSoW+gFfw0qBLUBnP6tVsemeBC5NGhXMB+IN9Q==", + "shasum": "936966bcb30298ccb79e49a74a0fdc20cff27727", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550823147572.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcb674CRA9TVsSAnZWagAAVgAP/jnoctf/Mpz9pLJLlY1N\nmwE/JZUO7a9qF99FHTuTIaLT2cws0yH6zmnjxbn2UaDCRf81mupj2pDnqKfr\nC8xX7z8RqMMHnihKvMaaWbIERGgdUFzbyZqkwkso4Tiae8zskxSB8aurSzV4\nqFj/9irqccTIOkns8UMbisZZuCRaSe1C3lCfMKEZt11NLXVIv0dNnT4Ii94K\nzxAIgeysFOh8OJCXrGozSLYWV2uFVXDMVlDGyBwpvzzagsUUAlCAzGDdMTdT\n5U3obGOAoR9pPa3MeipLQ8o59Qa7Sia116ka7nwpUrHFPWeWL/f0AZBi8qbh\nEFje3iOIlUyBt5/7IKcBXopcKbB4+NEpfddYTXvWeb31rEeOEml17af9pSUU\nVa8gdq30y1CpCWND+NLyf5N0VM07gy2i/KcGxLxRjbWnaXS7IlD6Sx+Nu9dk\nbIITSh8RnYSZiuOd36HQRCA5m9JdJd8kw/W84TYVGHhlbwABqu2usK/GmMur\nsViz+D1BHHswu6wo9NMhABxQR7woe5PM/pa5sRCgxIfb+YNH03ZzWH3agnYs\nkqRShS/RGVqIALcXA0EPqu52TfI/WMzgzjHyK/pckOyaXmvc91FQ70SHmTnw\nM08TbaLR/SrHb/xfv/bnKbuyHHOiZK2HAAUSsh4zQofnEPeOeGTDdatPeHBw\nLtsz\r\n=KrH4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDF69F6yHNNzRQmqj8itfmk+i1kUoDkey6/yC8+FSfycQIhAMuQ4dBt2Izr8Jli24ACvzAdS9yT+sRGdhZJwksb/jRH" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550823147572_1550823159872_0.5218261803774564" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550873538670": { + "name": "puppeteer", + "version": "1.12.2-next.1550873538670", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1315dc82345a139f51f45f63d29646e0c0077607", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550873538670", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-g8ZNgsiJkjKjcqp0PjtKzdkg2ZqfQcMqYQmYb8/fxXVDt8PvF4n+Zs6XGBqhWdWhG4zr8+bu0qxSo8aNYJzinQ==", + "shasum": "1a912fd20ff36b14c8f946e609e58520e9009b90", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550873538670.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccHPOCRA9TVsSAnZWagAAVqoQAJHLvnF8g4wWcCEjIG9o\nJzV6wGMvF6i971mlpB/s8bBmIUnIYRjeqggeET2J33h0LdKYUvvTPj1tx3ol\nKZCt1pOBUlt7MTuk1/0DSuPG8HXFa2GcihkJt7k0TVhMa9AOdTy2e/ioRP3v\ndm9pNcS9wumbc0R2+qRD+Q3wdIkdXN+lpV1yzfJZwGx5vJWEvUJDV7tqi1iM\ndrhok2EEDeUPj1HUi++xO00gdsdXZfzrECVCVNiI27yj6fO2cT1AlREhGeVv\nXxAPprgdLwlk2k9hXNfdgQyuhr169ZkRprNQZM1f2xLue2qbZcP+Jj1uFS3q\nKM8pJZnE934zHq4wUCK1JBKna/sWZDIkdFHOgmKZMe9VToygXo7mntxno6j4\nOULmSKdZGTrexjFWUcuHd7CMYt+xZ0t9J3zsSTsbmnnnmrqu0oUWHhThYis8\nIVHT71copivjaAti9k15bd5f+PgMwBsAtawPwnswLidZ+773V3VrcVZUZN7F\nA7pNtNKGUkNtqeQOZFOISAehDwaPpzgVj1Rc1Abw0j5oIM8ELBVIWVGlO/rH\npwqiIo5m3GYVhyd5KWZLrf0MOllqBR7uY2rGrYbLNMtfeZTbohl9TLAP3RJ7\nUYQxTK98/nmOptBYrt7pYn/XBKLLa8L5hpz8iaNEPleF8qqf5xrP+3dnTFbi\nCUHS\r\n=VuIW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICG/4kKPxGDxbAclM3An7Ee/gGWHf4/XTEY/+v4TbZD7AiA24DVcUZ1GSVo40SqFzWj+1nadfcQ+VrwNsaItcObDYA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550873538670_1550873550275_0.7166094057191459" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1550909202855": { + "name": "puppeteer", + "version": "1.12.2-next.1550909202855", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3bea5d6017c36ab848a0c0b0c809e2a6b5259749", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1550909202855", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-SEB6Y2rlvkP6w0ols/bksFr8IRHoaBxjqowRRV6Ba0QDjDx/Ctv+kuECSuchyzCrkDMZNJLgHwYgS4SdBrGRqg==", + "shasum": "45e5f35a4efe4c17fa0dc31254e3153bfa2f1eef", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550909202855.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccP8fCRA9TVsSAnZWagAAsFQQAJutdMHlExgfOZwd0iAQ\n4P/mOZJW5bjV7mSQNKBmfrjiq6l7g9Gofmd96Y0dHH3L8953jMhQgRWOuu6A\nvv52gs5W7E20KejD21iudQsdiKL9rEzMH6RXWAQ5Ahyypg6fiFdd9v9Tw8m5\nQFNX73JmR4024bRpYBGP6D9yqSoXK0bGPZGy5aMFwGsJmTHyP8EhxxPZ1wgo\n9OMTfnvDMncAqi/FcfWivk9MIlcRMparyh9CmSmXKZ4LW2T4wPBB/P3u6sBa\n5GxaN3K7S8YxINNkueoMsqYDHCmkYjhYIOOU+RxgNJ2sFfae7QreOpqNZxb3\nM9g5hSMl54WYzlqPTiFz+6p4fFW28yif5ELCzq9FloA7hFyRnwMxW4gDb6qG\ny4b4BSgNDXstJdfyP9v6jTTlnG/jgeP/wJyVN1FjPpFrR+AD9wzR43cUyo9J\nCwTLsAD48rAPeXsD0r3eVHVWIWP1rZczCDaMXa1YquECr9IEAFygMKiv6qO1\nYRGpZzo/fqwQg4V+r32geh5QtwdD2FSSrE7+tPe+oKbWjUU5KIQMwDI6z4tJ\nvoz/El3qBMsygy8LoEdqDc4GSdMO7BV82xz5zVpZeGbnXSbwQysGWU8P3IQD\nLKJC3FWnWbqW4V8hAFFeOGuWPrh/0xtvJ0KBh3DzrEEOrTTln7kVqeJS5Ij5\n2JVP\r\n=sthd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIESmA3Y4Xm+5r7pvKkd++8bpkzQgqlLqKGNFYfcdv3bvAiBCVTM+e+/BB82BvD0OlrSc9rqlcpsAS/MEs3pv8rRimQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1550909202855_1550909215196_0.26227873523780443" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551078874966": { + "name": "puppeteer", + "version": "1.12.2-next.1551078874966", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4ecbd91e4b16caf96a112cdd65372900a12d2fae", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551078874966", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-LoAKEEQyz8JcqK2pJ0SoZagzmsJOjAOTInRfcdmvfDwOU4aru3g8qzer/u5Eqixyw6Ejz9FCoM0T/rqMnjwRBg==", + "shasum": "b6cf1da41c4b86da3ef621e0620690157d905ae6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551078874966.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcc5XmCRA9TVsSAnZWagAAJHoP/RXmr8qNO9CLZzX3cNuz\nayssdFcoySiKyBYM4jYlGBt2YTe3LsJFXMaUrlDj/pd7Uz4JiMHw18nC/cX/\nww/+Gsm2xA9krdmeVY6xhluHUi+mHSJLMTgdGqGNKsItr13ydVGh6Z88IPAj\nmrlkgYQYjdfYCv0gs8wPiiaWmvG+ciVFJ9s8x9+LfmZaZcGRHlbHCZPpa50n\nCC2v9G7kQN7dm4abep/15ijijSGLbC15Wjpar1uYWi6+2tp0dD7WlODbQcl5\nkCduAkMn6WlqI9DyTqTuj88/tRjedajzbCJ9PXXMGz2ia/zJF8jUYRvErxMr\n7V9ValtRetK6GLhL9wiFdT28nJCpoStkr961A06i+jdtxmoQg7Me7KP9MzKi\nqdYfNnNWbhsyC7hlmGtTFxblwn29fagVtC5Xr/uRIKNmhPpbcKioag/EuBHl\n2dEHib9grvA9G3R5/mS5KIpALBJ6hU6NFoBhcNcdCZWE6jgwlhoT/FOnzVpe\nfo/I+TJvI6WU4O/lz0wzg7SFZ3RukH3q5HEQ5r18JAMstUxKkS5RsFbPCqdq\nAn4D4TtgdG0p07LN/W62CQxY5Q+uupYkVQ950W/A0nuxkzxGq/oCk9qa0fyb\niL/3E+b5FroXPsjPRVGMp9xrNPaWWU5BjYqU2ggtMKfl2V6aiB8FFmcignDE\n12zj\r\n=7n1M\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD71hWRZoHQysc2GxW4kdICGm6w6HNVls3R97epA6KWjwIgdUzJ7rEuQXLRXEhXkwWjOoGFVDiJKl7xB7mqsYBJvM4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551078874966_1551078886321_0.12555985768999944" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551124333019": { + "name": "puppeteer", + "version": "1.12.2-next.1551124333019", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d04a8d55b410d8cbc68ff8cdbbeb3fc8c6abca8a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551124333019", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-WhU1feIbl/8NJewS3TFHwf/kVcs8wsQ64aQ02XLmXgxoYwiljOUfXTX9AgzqeINaNtlaR34gSyax72oed6o2Vg==", + "shasum": "3bc916b391f4777091e82fcc1c7bfcc772e52184", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551124333019.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdEd4CRA9TVsSAnZWagAACjMP/jmafb6JG833yE/x4ZCF\ns4zcbrfoUOMUngCJ/zG2edwuNWPVfUhevzxIna3NqTwZx9ncE/HhSbIJGmjU\niWEpTpn+ZtP6Us2i9h0GP5KmUTKzrjjT9LbEz9MwmER0+rQ18WFX/8mBvIRK\n3D9E3SvjkUpXgHjz4h02WWg4ZCabBdxsKzxzFT0KwaRhyilxkHVGRC/MAyHw\naZkSUCpM/g7gNKRJFH32sCfuOhuWj1R1+wqowJg0L7ztcZNQu/0JSoUyp1yw\nPGEkinf19KFSuO57ffx/X5pyunlwdLpzAqf5DXYLM7/no/Mi628WY7RmDozB\nNIponfiIsgtRKQ+cJoB63ccsreoSoBwk7tGinctsTpKlwk0dEomQ7UGEjiBF\nKYsN08iUBGXEKBtwfkruevock/RySurBiM3H1A6RQoFASA92qn0PDysoO8Wi\nFwM36ZkxTXNcF58txCVmfQwaI8VZgaXqxzQhen933nlWWPqiIpp9o3Ih+PuO\no/Y7Y11VeoQjOyWNx97H6kbA7eB1EBlP9q1fXRyF3KeLlj8as8VlKP0RraDX\nDKtSaFuBJLlBp3LDNGA2HwcEt/6hccBinK+NoOmnu4LTZfvLe006ZdvMopR3\nJ23hsBIIkr62Xru0knj7cNFkz8Hb7pC/Y3jGuGUbcOPSBU3HhTLV7no8vaAC\n5S8u\r\n=l5qv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDZq3/dqfuitUwUSsCEqOXPphMwrPJSa3yDU+rXMDU4KQIgVjGqEFv92qRUvrdGKW7RzotPo5PaJ4F3rAAOXQJ+42s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551124333019_1551124344291_0.16860736838404322" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551127698921": { + "name": "puppeteer", + "version": "1.12.2-next.1551127698921", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "77a4ea505e8b65e1d03ef1001e7c75b63b49ce6c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551127698921", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0TJNHrEFb6/PWrHasQowGSg0FopdK4ugQDexDhMxIj6KGffP+rVf4ZZQrIIshTONg50r9Ol7WR+IGIqrQSRl8w==", + "shasum": "ffd20aafa88f7936fe22dd6758aef5191d5ef718", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551127698921.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdFSgCRA9TVsSAnZWagAA0j0P/jOyr1t+2jajW0H41k1Z\nPVIa8TdzeetBYGCi0G5JKSc9gC0XgPJN/+vScf7CWvzWwJ7gn/NmSziLpUyP\nBDZFRGY9ZLNrsQamFw7IskKZys1tWGd69O0WppGI6doDxhtCXpdQoqjK8n2G\n5zJUFStp9xbhvXaPv6B4GzKLHEVNP9b3RaAnKcygYIppcJN9peEFLjyRITOn\neWNHLGcjefTgpH/7LmrP0VHAYpIadgnN9vSOrpvgWnykZ9yyxMPNpuoTWtdx\nQDCrou7EgxbiYGDpDIP7YbWnHE9qn8UCf4mLvvNam80OSjOchB8yZy2Dc1Ou\n7ILpfK8oUld8Rdtl3Zt7JMEIfAmTwzqsn6alR2oxkLyrjCBUfnRE48+frlrd\n/CFvun0RgAUmbObhU9yJg/JIuaSbOrn3YuUDmmWlAumwFC5ZYpEzmeSITft3\nSERepAiCibet2XKGz2vNfL80hm7t6lHLGrwbKs/tNLqiA3uu88mYzm6lrQ8V\nljGdakWUqd0eALjqz8TXB9dM7d13pweoDEakOaAOXrFPOhVJaQK3UvONUbaK\nFwYffy7R/WtQdNtL4BvSSj9fbqoGzuXWbGsPfZPPhYN23czN96Jcmq1ZHQk0\n07WW5PFj1gOk7+vw3dUkn2Mo2xyhR220m0dIEUTBbqJ06LVzdP7dN/48CaTt\ncFMA\r\n=7xVr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAMvWcF+i9055TSGW3/imqf5NRBa5PThvQWmAAsL70mJAiEA1z+/bqPaEH6zEzku5IinS6i3RXwZURyNSb5RsORQ1/o=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551127698921_1551127711555_0.11184346022227576" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551128306241": { + "name": "puppeteer", + "version": "1.12.2-next.1551128306241", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3541b894f5d4f1b9496344dd04e9f717b10a503d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551128306241", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-8LlUTVdsJ9U8FRoyKptcYymJypztZGqsor31jDpmu2i4qC/qWW/lqbuqQ5nqamYs8xUMuvbnVIRFSbiKVisQqw==", + "shasum": "83ae55943834ceadd3ae9a361d0f3f110b34d114", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551128306241.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdFb9CRA9TVsSAnZWagAAZvoP/1TvU1caXp611ctPISHl\nuMBXDcnx0lSfZe0J0Pd8ygNywPO66tjuPTodg9ZUNhZGyzt8Xpx312QDZzZG\nADJJYZIna0B231R51Qi5PuL3kSdvBjJU96MBUwiV9JZapQifqXlaxa94XbUA\naFOLC0+dJ1SqGoGeyi0h4yYGqXEmi+hxEFPaWD8xdKi68tRvHOPD/m7nhOlw\nCXJpuW8BfDtkPJoKBmSPe0c9awODQQJozeJeCtB8gmaGhI5wUA16mQSln9cs\nllhBWRcS0cIrP6g1iLtUZmk/hM+bB6yFUiX0LFjfRiPwB7CeP95qWjxqBHTI\nfkazuKyCE6AnqsLoFSrF91lTY1rvwUPMdsActAeN3ulfZFx8pMk9AZeLokdg\njxPQN1mlMrZsyb0/Fbas5NimTyIZfEEQrC9v2xOryaS1745+a4T4yDatGxbi\nEFGc8Ua5Sc3j3RM0h1fl0hKH0PWUbNyvSOzpS3LC8majO3vxKaSZADIxUnPM\nKv+Mpwcm0KCGWeTQDfgkTapUHu3QeJq5BL7Gv8xY1r/1JvM8qMqqZYHNwxe0\nvE0m1zcRpiJIDx0lLIPYhIiFZ+gE35JgAQ3+qQ69jfTsBiAMgMyd3cZadwZj\nhGDlaKDAyjN3K35PWS8pRwD0Wk7wR1KJtLLZ8PqZEhpJwE/lIe5pfICI/V2g\n6Fvt\r\n=IWwK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDbFMUDWJ/pKfGtXe4wvLjw4GbL6gAn0bJT0p0uWoi8cQIgK71Bu9C4YYitveOiyphTzT7kxEmRRWqsO9Pfizs3v58=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551128306241_1551128317096_0.27008793147660004" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551138240757": { + "name": "puppeteer", + "version": "1.12.2-next.1551138240757", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f21486fa1b0ebd921cd0d2ba953f5166e0f24a8b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551138240757", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-X/hyHxiP9S/rWmRPCxFBOvNjctrMknz8jcwQu8WUKTA4CZz9cMUgCLPLwHA9rA9bwkFbO0xZTlh5zzRb3upqUg==", + "shasum": "be868f7760ff3298d72392186d657444ce301ec1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551138240757.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdH3wCRA9TVsSAnZWagAAF+IP/jMCCAQTEqzhNWw5EYLS\ny5zxLyOMiUW+SGUHNXso/QF7GQA30GAwemuJI8rFYqztt2eBY4z0HnV+XS57\nZk1G1j9SrD647NXTXjzkDcylPyNTs2R6rutRYkUWGKlIP/p965V9AoyRUWnJ\npVOSBzd00EGKnwCUAwYckyyCWsesTri7IXa7Y6CqHy73wo92qcQAu7fVfu9a\n/Cn7sp+NeqQsB6yt5IrehNUstKy3mkckd24EBgDqarmet2ogHd4e+387b6Rw\nbqmToMzKUMMpu8oJh3DyFidRgK15W47yyzUIVYiHUI7tumNXvqmonr6GexVS\nGF7YmmDkojl5rqo+q6i26YKmxSfxic0++qyyc5HdbHNIBibXlNn76cm6L+ZP\nyMteJkeJ0kp9upYmmRyK0l+Csa+y+EhB0qsS+meBFX3nhyVFrW1PPh9KFZSc\nQrDtLaXZ3IHvOzSjMyxU5/t3Wnodv17nzH1+njJt341XbuSQRrOK9/TXGu4N\nuI3M5LDmQQieh8X1lkec5JhWDsh9uHBmJQWpGSeASUwicohF2Iq2PbqFqEoC\nFCrls93PnKA4tS9utM0yxJzIARvpjufqjEya19au1SkTc2MXwylxt6R5vHQg\nBAf9SJV1PdvHcRZj3O7AGzkMPkgqgDG0xabbD+iO6UawUOmPvzyyfr0BX/IJ\nqhHT\r\n=rQ/W\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFFFJ+v+unybkgw3wJX3Gr7VSH9i4u7s3fF38q0tsQPnAiEA6BAiOhqmWYIIKIw/jzIYXLSbpcNWralrY6dggR/+85c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551138240757_1551138288204_0.10314088959351508" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551161941289": { + "name": "puppeteer", + "version": "1.12.2-next.1551161941289", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "03d06f54d67a314b77729aba38b214f599062a19", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551161941289", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-YedZStKKKAoRLrvP6O8VgCF3qccba3NqhdwLqkl4tQeWs1REsVJ9cDw+PiIlQ4tN8ygFJdme9Sp9icKCU6yyGw==", + "shasum": "f0ff5e011ba828bac8e3778a785ab76b5313e96e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551161941289.tgz", + "fileCount": 69, + "unpackedSize": 710033, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdNpiCRA9TVsSAnZWagAAoTMP/Rb6/l5kxYfbzEJ3LFyT\nKcRdfmuRZwbJUCaZzouNq3jEXBfGuo2M4xATdbd7cHnAwg4saPr0Ya7RzPje\ngV2DNzu0CvrjujQK2xE4AvfF05i+UixxVuakGl4UIEWN640TiStoIU18wUpj\nLnrzjbDjzfXbZmda0/dqFjKBpi0ccgtMAh4KHHeXYrvQlK7mR00TF2L4RFLH\nnVaM6XOS4R0qbTcnl9aKssXAj5m+Ok4XUPDNkD3ev05ULvhFKjMPeW/UW6ur\ncQ1+A5LePCmAwFCr967zy7c18vsWy/zKMppeTx8iAIrk41bPJkIoel0M5sHP\n74JxuWhJizGrRbzknl3NHgVM5eC4XCEnDDx9nZaJxQLEE84Xkkj4nIvhRoSv\nISoBq5/a6DLkOYjZgheTfCLT+gY9x1pZ35gUPHwdCI3oMOyIA0KSYTaXkgQO\nYxVFjE3rUkVP7gHnPPqUW1VkHDyuY8WH0ugcaLTXxi1jU87fVReaqkYVrIuG\nLtZrQ0Vh6AxutHEh9AkMI3JqJVRABp+gQKno4XWMr2HZnHuYcD9pO18BxYMt\nG8uB4bKdnbMk9Znyafaz6e3pjL2V/mWKJNMkwOqyeFo44wHekD4C6M1Jgzy8\nOSgRdruPDuxV1Y6OSmyuV5T5N06OpnrYaNcpbP+t0gPDa7J+HgsRDaZ2hhwj\n1YkG\r\n=oMoR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCtRXfhwRccnjaiS+2gvP3w3muoUMka77qquN8pNTJTqwIhAKWAmy2+mpxVY6Ue+KGwRE2FbiAUvUcR822AM1kEjWMy" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551161941289_1551161953364_0.15883886403956526" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551242657823": { + "name": "puppeteer", + "version": "1.12.2-next.1551242657823", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e8a49633d971fab4da6fab32a5729aec390b2329", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551242657823", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-54Q7Ra/1YxtBVYcyQpJzHMYZb/z59S+BAFDKwXEYJL6sTbWCK9bvjZ2FrSb4pL/GGDG8nkwXFPu82SPJIVkcYw==", + "shasum": "bbd47f2dd88326f4e12a9c05eaba6bcada373606", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551242657823.tgz", + "fileCount": 69, + "unpackedSize": 709921, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdhWuCRA9TVsSAnZWagAAgWQP/iJkQJWvEm8TjKdC4uVc\nAJ6NBxILOk2W9Xkwil2LgNyIV/SGgPsVuk9XliYyjeeIeg8vLwh8FHSSvqDZ\neHte47Y074aE5OgfI2MAnhjcJ/a8oUck6/NQoHhRUiYU4hpAhw1MMUE+AhMV\n0LMZZlfDp5qjYoQsxgApbvOXdcZMS8px0v5iukMYXYhzNj/vkXidb7l9Z+qQ\nBfPW8u7G43RceZT/kYJoFxp5JCuABNqvohk8Ev5p6WilPb/lVSfqx7pdgSIV\nyvfaed1/kNdIHHjemi6tCkICiO82/4pzjhDzOxYyR0KgN0WooYG7ehSmD34f\ndJ0FIGPT5QNDgJdi53ViFkveoWUrJhvIDiRVOMr7xsmqU8k8SfbTPabhGCOu\naO0wFGkhPyfMU/nw4Av9d1n4fOYKwbZGTUjnM6yHRBTB33EasCQof51W5QSA\nuBShwCaKUnPCqQ/s0ILcldiQqlIP0PjAzIXTyxZREuymzNjh33QTcTDscFoi\nkSd/oXG94GKu3t7G//dC+A8em65j0Y27qIiG87vdnVug/mGwnM3H/okUVXYV\nFeJMsfXUTTuPEdt3PTY/dZOQSPtKnXtcV3oE1/4CuKkGWTDDjAWABhNLYwz8\nC3AOkE+csc0XzzP/GIQfTn3CJQXv673uxYqSvZXqGVdKNmTJXQpBpYaraas3\nYhPh\r\n=JYn3\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQChx2cpv9Wbju3MbnckB5oTNH69Qe7orUrgV0rb5ZHaUgIhALULV4Ma/y2JmqnGIM45SLbTj2RM/5kZh2iVUW/+hRBj" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551242657823_1551242669461_0.13724226844107168" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551309648206": { + "name": "puppeteer", + "version": "1.12.2-next.1551309648206", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a6d8ecce6fbf3582359f6e75feae6e8d637d40c3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551309648206", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-VHryDVoTNKkDW80TsMtoCDM+bVyWL7pPGdibN1l0fwAv1vN/y8rDR59UcjNdUDLRDq309hKVqHykE3a7x2mgEw==", + "shasum": "48aa9c01698d0523dc207e1f48b8ec4f3b39ef5e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551309648206.tgz", + "fileCount": 69, + "unpackedSize": 709921, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdxtcCRA9TVsSAnZWagAAOy8P/A14HYtYk/QMqJvn5Brm\nvmTcBuSMmMW+qqK35FVHksDzH2OPcL93X7ZsNBqsRU8dlLObBr9YW65Qq8mA\nhP7QNKVx3NEtxDnPCbYKzdWHKkpF2mR9kxA7ixP1xI0lB6kc8MonDX0DCcNr\nxGHAM8BD+GDXx9Rdk/eYyFVCfFnTxpebQgOlPvHNno0gUQp1kCsV2gbONkSV\n8Id6dXmJbUfacxHcknJoSq6EqdJ+TuRZIUO5xTp9m/8HaG4Toeg51J6PwHpS\noRtHEteKDzYdDGJ3CkpQflOdc+1M2ho0PmlZXFmLomREK4OzMjAUbY0tInym\nCqfoaMISsfO32XNldciHNKc2+M2Ay1dHXZ9O5AkHC7PgNYBX5FKYjQI/+vQy\nPFPY4xV9RToLFDiU6PoFPE5dOMMrMpqdNlcsxdCqS6zAfABb/ETqbv/aX9N+\nzBDBKQuxK4kdsaZ/jQRkRv9jxDJohplTAFO3RP4B8eiWMXd9QU2LXjIcxTV9\n/TOAiqgom0m40VV2yeHfNmLTwrtFpv72MsTxlQuDsErq98gqALL6qHkvB9Hs\nbPxDA0iwd9obtPrtg6sIiTE+098piZw5KyVIrey+QGm215Gf05w2noaJeWJD\n50dQfrg3BisipyO0YKVbpqMF0KWVj+eBs1s1yD295zCRuC8ojbxplHCEfyeo\noUII\r\n=PPfW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDYDZRT8Kl+T6NgBzW4iph+ewqYToZZdWuB4iDoQgONxQIhAJMXxLPvNE5sR8NwM0J6hOgGfNXhTqB3tvC/48KaNxLw" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551309648206_1551309660281_0.9887249975848647" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.12.2-next.1551401475539": { + "name": "puppeteer", + "version": "1.12.2-next.1551401475539", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "630727" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c9f6a3d064adf1e14bb736ea55c472df90ca4e02", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.12.2-next.1551401475539", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-J3bifrSheA0iKiTiZ5RC3Ne2stnSV6ZXetcfX7NRga20JLSMuCGTwzU6wYlsI0MRuW4UPQQSkMzmENJW9uRACg==", + "shasum": "a21c2c1fef9185d4f3d268635d396a0dbafe7645", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551401475539.tgz", + "fileCount": 69, + "unpackedSize": 709921, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceIIPCRA9TVsSAnZWagAAsi0P/0CiQThmgxuDHdTTlMKS\nCRDlHRwl3AiUTmsgEPUjqmOduShcN5jeQX0finmmECUTvCLzgh2wTWVI/xmn\n5dDg2g58ug6heRDJPHUn+sdR3iNB49c9ecrBYsgbOwmxNMh6IV5VZf8OWZd4\nWQhgSosTaMjBtDeQH9PDPMWprjsAihMryzXePkvEBTaIRlC5yZBoGgHKGZEk\nX4vGumJqMECmHOvzSbrYsFp13XZj3DdD4fPSPLb4dKPrSp5uLkhEvewq1CNP\nAoanWaeQToW4z6DZ2CPa9fjS9nqiUnkrQEqKEsBtPG5G1G7Bc+aKKxkvJVaT\nk2dxxEYU46HIzdL+c+NLzyb3D4gXqT130UmwB22NsahHp+DZ1x595rrOlrjq\nqjKCXCKxXKcpou5yaFKpduJb+c72GextAMulAdtOvb4PDvzSefMVt7YAKxY0\n3EfQy3lAbvxuEEDeeSX1mP61SLDm9iUtJm72isqlBzD+rSdpd0zRNKyibyLV\ngohVSDRda1bibcpfpPhTT6Dsj0FC/+YRMdKFfT/iduWm7n+cO3J8pRy3YD5E\nlT2AOqaNBpppzBEuc3bnqJvcsuZ/8K7TqpAGJQPqRJxuHthC7ePN2t2K9MWq\n3R3Is1txQg9EXWBloF9NJSkKiYqpaFMIl9UvpKOa8kyChmtmjq+K9v9QHvNA\n8AF4\r\n=OYj4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCSWfOxXWcJQULOqSgPIsXPoemUlu5U9qZS2uWXWWunWQIhAMsrtZ+OdpKeH3l3qD8ziwr16m3eiPYz6tGU1m9K3OtI" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.12.2-next.1551401475539_1551401487164_0.23311573046410605" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0": { + "name": "puppeteer", + "version": "1.13.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "77a969419ec71f8834ec4b511b63bd77d2f5c816", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0", + "_nodeVersion": "11.10.1", + "_npmVersion": "6.7.0", + "dist": { + "integrity": "sha512-LUXgvhjfB/P6IOUDAKxOcbCz9ISwBLL9UpKghYrcBDwrOGx1m60y0iN2M64mdAUbT4+7oZM5DTxOW7equa2fxQ==", + "shasum": "187ccf5ed5caf08ed1291b262d033cc364bf88ab", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0.tgz", + "fileCount": 69, + "unpackedSize": 710132, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfeHzCRA9TVsSAnZWagAASwYP/ioNdd7m5N+ME9koCOAq\nvachLcOShGPM5sCdVRLZCQDXhYhbS+1gUq66FCo7DVhKCwaPYjkfBftVbaJJ\nSNorGJku9qiXHCiXH6WqhaJE7Zu7Oiho3jQ2IYZyeIj27m7xJmTEPSqMHIQR\nZNR8hwsfLl040dbcsuLXxHffs7FBPWNiAH1xjJ2Ffq2HRexVDeb1kLiqJDwg\nMNk/ya1FiC+R0arEe79NtDH0mtakkuE7dD6D3UxV5O8NzJSl9yHdny+lCW9r\nLCHy3lL3aPl6R/iiIPnnhIHtY/X/mRJajAPweYkUhy6K+wZW0np9GIq9iwjL\n2KmQ0ueKmib9Im+Hj25zZf+ec06tHVORud/GlmhXNOMP/4UiTzhwntHoGmN5\n/0bHcgd0A1v2BGH+Dadpt1qw4cKT2O8C/DxdL8Zm7FV27sI2j5f5LUasGafF\nOf437knN/L7Z1b+zFwriImROiCZZvIiPjJVAuvK8qyHpj316Os3RhIZ0MzTy\n4an3RnJp4wwMwNzsi/V2NamZWMpvJ2ZOXd5xrWsdYv9qmTLxkSzK7/l7V9iN\nEx35QAZuJlpWcVvThFgo6HfQMLAJTFJwWA01U7AUElUJNj4I579kojSbJi8o\nunDjZwMGtiV00ft8kdBV9yYLmSzUn0McS7pK5hPdOLpDeA39JBcIjLWMqgOY\ni+sH\r\n=1kwU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuU/mroC+v59vRuFaBsefRlgo0iqO1u+hqPKq9GWAytwIgZvvPfCmSEzlo5GMj/sH7IH1HHpUXIO40xHSnyrMovHg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0_1551753714318_0.049292754393356564" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1551824103486": { + "name": "puppeteer", + "version": "1.13.0-next.1551824103486", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f32d77e0741a1bfa50d7cf3476b90f49aa5f48c3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1551824103486", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Z30jBSkdVh/1a4XywHf/JBECg1TioMuW3YIO3gDIUhovYolnRaQSVxwu8qlzH/nSDV5PzurKEuMEotOapw6bKg==", + "shasum": "193e2f5bf5c64ad56cecf056e43d7ff428cd5924", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1551824103486.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfvTzCRA9TVsSAnZWagAAiEMP/2t5xaATjVf7GOM8u5hi\n45NO7cj1dCDk8BvlaJ8+7jA2erXl0dslhQzsLJPz8ThpAIVBP5vEfgXbFL/V\nz28JdtCSKFlxl/Al/ktlw6LZCfEyXO6Ii9JKAWRnZ/1dwTPqcdAIBr71fenm\nvQL5caSTWsCmxPLLKQdZyboGcYaYBbYeSHpLKxJ/UOAYa27OyNf+Brwh2QII\nZAE2t1GgvPe01h74pFF6MqrgxNHTZ6BbyILL9qIGziiJVb6xC0IYKNhmawwi\nq7PHIq4JN9njWFHT5Jcuy2bONUuVT/KXc3ZeGzqnd8IfeaIf/6YbyDTH38r5\n/sIMtBZWhi+gR546uu0ahmSkN0lT68M5a3Dmlfwp2nIsFi9j4FclxNZ7JZYY\nHhHKI0s8xN9I1RnAh5TrlajMFYNwLqLboZXY81EaVkS257AtklP6vO5CGunK\nEXBuZjJ8WwNiuNNOUGjGw+olhKCEewxJ06Y9jVhjcsFsNIgW9nkXhP7qj3o0\ndOpZdZqA1M4saZC0l0klZsvfYh88pKKkA93agNBJTwn/gikm83QdPZnDlkW5\nA/AQPPEbfvpko6MhjJv3e/918Ici1rr8g1ncvWH964PZXoZFyGOnfV/B3dEI\nVrxyl98Q5u+c7w+wtzW9fyfVdF+A2dVbLo6r/aidC47lNL4bzS1ssWca3gF4\nyPH+\r\n=ZfUU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHJiR+sdMKayAIV8DICYf57y6DBVCYKvrqztXu9pl826AiEA/NjVaIq9/uoABpKhiEJZ6cIpzKxnfApM4ZQ4wkIPlUs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1551824103486_1551824115294_0.029976374832549668" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1551827100936": { + "name": "puppeteer", + "version": "1.13.0-next.1551827100936", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1623bef26452f5f90c899ca159f237e074c765b0", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1551827100936", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-xbCfgltisa1mn7a1gUmKgyYovV16PtDPLelpFyeUkKYVk5bowV7C5KxkJBkuJLKsiD+MSraKgo2Rd3BqDhzI2Q==", + "shasum": "ef631553e97410b3ed8829b69691edddf0650bdd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1551827100936.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfwCqCRA9TVsSAnZWagAAx9YP/1lMznRlMq2Bkce43CIj\n9yTmCyYdpTbf42kzTwMIWN3OLzhCrHnC7GU0HOAjfzCPUD0iSFXZL/zWDhOP\nP3tpUFmppr3H1micw6Zk5ra9h6vy+FABUsjsHxHpLJV4p9FMtZlgRWsod/eK\nqKhrq/2BTaaf3O5dts/ZDAA704BO/+CvXCCqdJ8/6Z2PLuvVwOBviJhpwTsh\neraxmQ82LYZhMQSdc6UJISUuemP0gre+QH/BCAVEYbXGACXWw/FCraZYts5z\ni7YhV6a6M6LascRKcE+uJIhdZcdTkAIawkk+GuBppBNGdkw9z+zb21Sfh8S2\n/9QtGw7CAta07Cm4BaMguYEtZM+asvkUwabnHJDhsEAfQf7f/5JTUnktIvi4\ni1RXf3PWEOYRymp224rR1/g3hdK3vtye52lZq+M0MzedYjP8C4SwZRiGJ+qI\nv1BMn8YeOBeADGgb+L+O4i1FvpesrdecpoZ1GHHNR2/3m6sjIU2pvhe7wh0T\n8yKIDWoqpqhoJNwNO+KT06+0lt+Qo1jU5hLvms5B+ecwtbYGKJ0dEuyyZQ5P\nBMYXTG/1FHYD91Wy9OxNFBb5Ti8nHrTrTW9MoD0biiVF2Qk2dDJxfhS/Ayhs\nMcOCWLYRuGtoW1XLkBPhSA1Z4hmrsFf1AIQbwfW+IiH7d7mRgwi3AHf+ne1O\nS7wd\r\n=zfVV\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC4B8AAjqTSaKSKTIr9U3JYWEITwr4KY4nWq47nLCan6AIhAJUP9U87o/Y9BdKn+BH247g6NbHD4wCOz/FdhvI7+Us/" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1551827100936_1551827113346_0.6788043157734502" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1551927265223": { + "name": "puppeteer", + "version": "1.13.0-next.1551927265223", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "87a8d744e6a2295e02feb550418150dbdf50ef13", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1551927265223", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-cOZs1qFezttv/+GAFZ7XCk58/p/3uVkpgvxm+bbyDVjgIkxfl0IZ43Ip89z7Q4UNNdrObgpRS7so9duuw8UBYQ==", + "shasum": "69a2f867b3ebc4f1c424b96d2803d695526d25ed", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1551927265223.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgIf7CRA9TVsSAnZWagAAI7IP/jBEVtPC9JULyNCwCHSv\njwayZS8/cZWggTjK52mRXxqA4g+kZrZlRMtpc4O9M49v2GyJ114mbXayQTd+\n2ENlg4SmVgeWhJ4GQeLArXuwWu12SgdFI2hlgyPfkJflF6plP+GiV5I3dMOt\nfC+dwSe6gcRvnVDA4+o4taMFymSJH/Meoecu7jNAQQEn/FipcfwLRd40FZ5m\nxgAMAJAcJDfSqPAybNcEUbBm+H8PQWLEeqOHDg0QzU/uwKKH8ikUKeRxN1sX\n0ow6qfDxqIkJDScPbnj+UtaKQBUVumYdilcpfXzMJABpzW00goNtFFy7kk3j\nULO+/2RM7wJudIsG8/POLmGMmJKw9Wn5kZk0b+Fh4z9/3k8ZidZKCciYk/NI\nG4z0gjA0qqNZm6R4CJbJnMt2bHd2X8gHPlX7ZWyM5k2wybPG+e/Yt8/yMuwn\nMEpu0RR+Skpoj7sj7i4CwDaT+VDGbJ++woZsJHog+ArhUlWB1z/aqfLI2hyB\nObMI5v8hq91nVn5EQyG6mC1yBkowMR5LfdsqxhjhcC1f4mGSNRFmqfTVtsvg\n5uf0lyGheBkvxh6Sy44guQS+o/dgudatLZkfGx3ldJnIMVpjwWnm4qw22TBf\n07eqsT6H8G2xcbYCSbJomTTEDhMnOgIKYVU4unrL49xSwcJKq6VW8EwWX4bs\nRQkm\r\n=QXw6\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCkW5BH4/JUMEaVm4Nlv5QXf/lvg34rTYkM47u88R3PTAIhAMzEgCaysMKSoIdD+BPxofvKsp5ItjvEFntgC2rtODzU" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1551927265223_1551927291009_0.20345985769605757" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552064905462": { + "name": "puppeteer", + "version": "1.13.0-next.1552064905462", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5d6535ca0c82efe2ca50450818d5fb20aa015658", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552064905462", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-U1i55dd9gTHhoyktgQnS8YVUU3JSKvO4FwSGNTYoQffVUylhPw4ASqMnZHjXDEbTfVvMOAFAIewpwB0b+/h7xA==", + "shasum": "a82eb911ac2d82648ba689f7b14d07a44e474878", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552064905462.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgqGXCRA9TVsSAnZWagAAGmIQAJ9c681nzP0FGf3K37ZV\nbqM5HuISTOpq5WNpXKgokI8ynLD6VPvtdz4dWmIf4c0Rci6xheDEzENM9kRI\njzt06UKnCWfAGDHt86e80CTCjfgr4nxmSfKjwyQV+c5AIKzSJygPY8AmQBUv\nGaTl5dwir6OPQGXBuxmRyyk0h0rgNbsM2Ss0XtkrdRhtoquhbaA3i4IGObkr\nT1LX2bDMEW2DbiBkq7Ykpsc+YbrY7rim1iuaBdI/6wz/+JasiST0texZ0cbr\nf2eOCJSPEsiRUFQRg+xXLCaNcsbXCHSjpO8masIAF8Fqd3iCkjzs95oSs+/G\nL9tARD4RQOimYfo5kHlruMVI6ZyBVK08J4phc9LXgkOE1B10iXCoohbIRTBY\nmpJ61reHbI6AFHNDyVUmfgSfeAyWiqLR+yguawxCteG3ebGnwqvi55W+rrw4\nC3u0SYw6Brf6/xVcajWxhODoYzEly6N4SGTkFysspECz9k031MK5K0bpIoPC\nXVrLflMyQO2svYDm0eozxXK2LwWTm+d83/WQotLXRhc/u/tlkjjik9J48h9k\n4NyJZP6DdBNEbUnmAgaF8afJIM/Jr2JpI3g1g/O3a86ibQzcaIQlbaAbP2It\nA70hwAipqayZqVnXHO3jVrHOzzCc5ImwM/83zE1/kzdj9jVGCAlRDQQzkBZ8\nLzWV\r\n=fneL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCkDUavdLdMfGcenWu1EG4g0YOO+r7GlZR4rRaFHBgb3wIhANXbZ4cQEOtu0peTKE/cy2gQOZ+HgvjmkIGgOhhABHA9" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552064905462_1552064918961_0.8458603105607321" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552084427037": { + "name": "puppeteer", + "version": "1.13.0-next.1552084427037", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "42351c7fe576d1c35f36f0f97923b222585bda90", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552084427037", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-yYa0rDCqTGMagI/ce5E4lugRgFhHMkLyBWNsxcc/fIaegPRWfU4kmeDm3ivmwpN5VqKNJmSao47CE/q2CmRifA==", + "shasum": "e16f9aeb196a4a3b09bc5b56bc527584877db0f0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552084427037.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgu3YCRA9TVsSAnZWagAAJhAP/3Kz96+t4bq9dL6kHJs3\n7l5yhhMH7HTJk+s0P0rDJIjGVO1gtsz0XCT0v++cyiAVYZfNGuZ3cBWKYSvG\nG9UH36v/sqBYih8IAyCW6t/V3GKB4b3k6Yp1Hs5VXnonG5pUtrDkullp49Ke\nH4GXHOqru7wD8MDmHDb6qWHPPWfdEs9NhaR2hrSoyqzRtZqe6OqIA4v2W6mp\nWDuw7PO/c9UUikTlIuDN69IF3hTeFewYm/eKJpAqYbMFHfZ84mhUgav8dYpT\nxlJ+TG3uQnDAw39x+LBZgRkr6UAMJ3xAPyIKK29Z+EV5sTG3K3IRzkyjwVra\n7D23HCJJu+NEzBNVypxeb18XDbbdbI6yS/96ee5uobueeG3XEdIY3OxRJ1R/\nR1UsGUKxaBFMgMCosVGhZMFhhfAQg/2jhBn+vQAP35CGldNScYpj/k4rA6Un\nnh+mJWtWXNN8KnCL0M4n6rCFEstKTdErAAoPJIDiADd1SKN4VRzz46XdL0r9\nLrAr8gQbdhLucF5Pp6b9uX9bT1OX6jm5EhC6zstp9ywzDDt0P4TKkFpi7QVI\n1jw74X1O8YHT6tLcU32++vcesTWsGwfDC98JO/hQRHucUbg/9kx5HA5zYjmF\nz4tvUsDlN6/jx1XHVtFOCyBMdHDsQuJXC3XS6XvBmVvhuA3jbHlbRO2E+4HR\np8pw\r\n=cQ8q\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDs8xwWMkc6wy+hzfbtesEoKxmggKBA/73NC9UIGJGpLQIgMsfZCohV6wbg0zRZPcYwKmsd8NJM1yecJN5iHDv06Es=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552084427037_1552084439894_0.30573612883165624" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552352667968": { + "name": "puppeteer", + "version": "1.13.0-next.1552352667968", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6474b3ffe0b5c01296ac1f53bae6bacfda9215c5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552352667968", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-FT6ly5bKYzPN9MBu92NafwhFZO5ydpKlxUM5ofW3FrNqqPdQ4X25OziGpv8aVcHG33ImVzLrqbEKDhcB54G3JA==", + "shasum": "c28b9d19f21dc8df16e2a3c6e433612668d48a55", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552352667968.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchwWpCRA9TVsSAnZWagAAseAP/jo1TMEIoRn5HMlKXf4H\npWERg2buys6zdfIoU1NeKFQc0C957kjZZ8ln8Kn8qgjN+ZzRGwEhRwoV/7NA\npqk1S9hxKyizy04ZB1O3sjh93cxSIfi0Q+evJVbWGsFqMtI0l65QPx1c0apO\n4cdpskDPjMtnpouHQkzEEvXVXW5hNeyH3Neb/cuwiHthpk1aLOdr/hk5fll8\npaZp18SY/dcvNNhZIzk5JYUsqUjpHs2UypWzwBx3tBAlLwBoGQ59t0Nnh8nh\nno80YsH4+X0psVd5Nd35hxGJagvvgq5bB3tv6S7/66SWmoWs3QHOLtXOvx9b\n30KFbuEbYqm3EEKRQHkyDO3L56SozKfBT53snwcqqixHmNuTYlD9cz0ypEsM\nE8/umkDeEqKTUdcXba321fKWHQgDAEW4vQChqF50rmtLWGSeCWvpm9IhD9ta\n9yvB+4x5h95WCSE76LTmnIqqwQhE0CW5U+CeBLsoHkV2U4IXFO55sfawP3R+\nvgcG4EEHBPGCzaiwUzxSihPozDE1MwRjeh4YEMZ+UiDJ6NavBEAk6EtZy7Ks\n2+/HRALxF7JkXGvE0mAcpEus8u4Yauf2V18OmqYBIGFc8d607HLJ9ui13W/b\nmGLQhLTuZlSqH79twU7Mj8MX42Lb2kkJfEhdUQZjzpMqirbE/2stbL1x7qHV\no6s0\r\n=b2i7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAcA8ScZlxA0cKXPY+7dKdAFhasLkOL+2h4uHnFGxXQ6AiAebmfO4EXgR9ZodNsPw2XcCpTycFafQH9Q3R7c+EyQWw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552352667968_1552352680417_0.36182055436857574" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552427382660": { + "name": "puppeteer", + "version": "1.13.0-next.1552427382660", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "26abcda6685dc542a33bd65c42c6abfba4044c7d", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552427382660", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-NElAevkOHlNGEEtvtjYhX+eQHfLqKHNId5P4hhYFHauokLGo9vyCdQEvPZyY6aS3bsjw1HPXZ7yDM1CwNcrJSQ==", + "shasum": "ca397447d9439915ee39b54c03c1939b0bcd70a1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552427382660.tgz", + "fileCount": 69, + "unpackedSize": 710151, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciCmDCRA9TVsSAnZWagAAAcQP/3bkRmLs3Eyr2nExviRO\nzQC/5b2dINmins93KvOFygjbACJmYX+wUC7GlfIMnt+Dzsi7WmXMsz2xRpwg\nxi+edjc/80dQMY8y8go2nCWuoztprdjjw3L8DHWoY9LyHLWlSslUPap1HV3b\nKp0RDaRwtggdhXf5yJW3Zd4mdlQ94YOALx1pzREukpTDJC/UF6BWKl3ZTZdH\nNjLzaAGAE6nf0mdr0ZP5o/OWEMaPwrHB+M72g69O5phmVrTaoGqLO0b6+1ZB\n2m9D/oSVHamRILr9wYtaIKl8hhOaWMQoUCwM9qoj7i38CmCPbnBlFFYFFGPZ\nFnvn7RahOCEBKpzv1rI2YPqWksCMBrwBX5lCB/WCrkgf4FpHnK5Z5Kqzq3xH\nha+t43Dy5wTQVBP/d+1+rGeZu1UZCUyFQGZx2dfgsHnUPMEkkNuXPRcr+CAS\noRNOLRVMMBJokk4ouBCW6zJSsfBnL6t9GQvj8MsYn37PinRpNoghX/9RJ19Q\nQZya4P7LGBzfWI9i5+GFor9rAUoUoj39zdfmhDxK8gPRO1p3SuJpbs4+w9FG\nl5T3IOFQ9m4ebbH4h9mwYDE2df3s333FKx+452GhUZEkUKFJnVCegDyRKp/k\neIICygSS1VZUDwbfo7XYaMP4WNwc4PlP2C7rDXvbkoo6lAMKcB/yH6MicwOD\nSUXI\r\n=t19t\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCQPSe09XGYkMYtvVAE4I5FgHhXYSz+H2JaBdl6Jz0QdQIhAJsg1iKXgjcuaWtT8bnizKiEcxXgzrstg0bIONSC6foy" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552427382660_1552427395032_0.5445759260834793" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552429408444": { + "name": "puppeteer", + "version": "1.13.0-next.1552429408444", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "0c8ace2fab4ec7c7f8add21313760ca4c438d256", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552429408444", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-yJtHESinJ+WJrWm+Jc2xLRfj63hMgQePvqOHZutfF4jqKOEoYYYA19+uFea3QVMC8nAhRgcdFf43RlfMVZze9g==", + "shasum": "c99c949bab93c0aa961a084a4954ea5feb8d46a2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552429408444.tgz", + "fileCount": 69, + "unpackedSize": 710267, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciDFtCRA9TVsSAnZWagAAAI0P/1dSm0X1uMse1UigP5QJ\nMV1jEQDw6lR7RIjO/odw9SguIPhjy1QtBMLXN8ViIJ6Kx/zjh54SkiQz6Xvd\njz8mOLWCmWzo2lnacSC9Kvnz2SHoU2LyMwUjBF6yvaOwtmU3UX7IgWbfY2hp\nY4EfN5j2XJ2JCYaR/MPXHOB3Zjf+AxRXXqFUFMwf/HtOSKD4IOWc+x5raXTv\npmzk9mJdmnBFfSizlq71Y0bj/UKQj3mJZIsgJDi8xe168UfTLr3n4gpRufaK\nZ0FQfLnF5Mgw0qoox6qPsI+ub3YC6c54k85EMX79mWXs4opzwwF0KNyJE7IB\n1QgNJfysRsRRaPUcZfbeTlT136IUW6t9WrNZI2LqXjGV8tJaWnPVTmYjGgJS\nU+LSFr2ccNnib3cWz3YzSguy+W/6M9yGMuirNdzWxvQk/9pGNefiXDbs6wlr\ndYactwNIOpU3WkUDWSDn+sT4kTFCh1YCS+XqFPZJmCcOGF+vHaePr6w1DGs0\nnQs5TFuYSYxhZh8/S3qhe9ICKcFU0NdFdTC1aPlDRiVAeUCPa38f3EcwhLAY\nIU2U1qNebSyxQ4GErSkOSuZaQWwJ9GFYFM8sCROLwobGTswYtkQC42ctjmmv\nnOWAOdI7wMdpZffw5w6RQ9Rj4ZHIDJXOMEkwbdU5GpdiUDG+DKvoBWwKNTTc\nDCaM\r\n=ui4G\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC/WnWZygDrPANG7mEOVcZVTafNroM5eTNn6BAOCWTQZwIgC1c3FR6AFtg5ZsQkLDSMlN+6HbqEJkMajkXtk4+vK2g=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552429408444_1552429420258_0.48783856255220526" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552508707139": { + "name": "puppeteer", + "version": "1.13.0-next.1552508707139", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.9.0", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "808d1bb5978ef73ece47fe96928bb3cd574f9528", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552508707139", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-eH5eL7OfK31Jk82miG7JXCr1gYI2FLKdQwOsXh8o9+BTR49/QGxgNWwLibIbivGMf6je+KXnnGCDoNJkAhBfJQ==", + "shasum": "494dc92f4c773e51cfe3f8edc362c966ea90d46f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552508707139.tgz", + "fileCount": 69, + "unpackedSize": 710267, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciWcxCRA9TVsSAnZWagAAEtMP/3/rF1oggUi1QN6mhxgG\neGX87W4pv/j5teZPD+c8OO4mxUsSGcQIvaHe2M6ko30APdtbRJMx35EklP07\n3y1VenhoVESI33eWw3Sn/eaA6nD6GvyM1arK1XxpHUKyJJ+b7oWj3zgdH7Xe\nJbvmXLcSvI8Wlf/7Q9n3oBQ2+vOe31pTZC4pN7p4i4Vf7FOgjB4c4u1znePk\npMBkhjmof7PwRdft/T/+SmqVbnP66IEg9tzQqYIl8iL/NTJs+LIbHO6aBzE6\nGaGeOZZ81NK55Jo0GSMVCnAfSxYzy+e6o60Zv7vWWQHt22k853cOAi5KsiSA\nDfdUsJmzKy8Kmm0W155KqSdydgY+tm4hY6otyCwPfiV5PRZXvgnQoyYabMlb\nu8obmB97A1BkPpZmCZm9f1aYSKGxlZMxbkCsSRZhIfB+ORDyLs8BhCYd7X/9\ndUOjbDNV2YiCfSq0+TyeJRmv4w0OLClk3XBNXg7IrhfNUL5AIPQrH0UB09w2\nVQMm46/3ehEW20WULxpR43LYX6lR8dSgFvuCleg8BZSmLG7Mv1u6soZJG8Kt\n9ND4nw5NQhuuajblx6Wulx/pKhzOMqBKNq5oUHCQn2HQj2m/2C0wnVet5dec\nEI3L9X/7KX0iDd8IZTatvNdTSoRwnlFP9JSBcKiYarhrcVsiIvV5jkOFKYbw\ntfuB\r\n=zcmB\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIC6yGVlHme44F3e27GjR68DCdV0vNFeBeOs4WL9y5S2xAiEAu8xvFRVFQ6K62hzAYl4aCsCPXAzeBDTmTHD7rUG2VsY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552508707139_1552508720543_0.5170331321848514" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552520077410": { + "name": "puppeteer", + "version": "1.13.0-next.1552520077410", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3511a35fa49f3d1c72123754aa06e3fb06c71073", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552520077410", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-dFnpPDEKi/ChFYhoo3otXW4ogPOsk2Mv2LAzXTkoeccmMIZgwl6chJ/s8KI737bzYylFVeIbhhkZTZrwXqhLGA==", + "shasum": "fb9aee989837d323c63c7d66ec76fcd2ea0c76f7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552520077410.tgz", + "fileCount": 69, + "unpackedSize": 710268, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciZOaCRA9TVsSAnZWagAACJEP/2445bp1Sk3FJUv0ysTf\nEG6Rz/EeDQ7Xgn02PidOzciuRIlec/7Bl4bt9jswpCd0edgVOFQGtkA+lrY7\ndNbw5pJLCQWPjN4fT0viS90gWjroLes5A7G77pq8ayH8M5Pb4waPh24Le3la\nyBZzknttg96Q8njGClS1SrU0L12aRxJGVJExldGgCIsndSN15y6zTlYoOCFM\nv/Txt9PzeYL81xYTkYGe7b3LZCliUpaH//+/jtApaQKeGyOQ5J64xRzklmis\ntVKk4AJZt/ra6pLsj93QK7crppN3FsxK8B5U6IRTYOrCTp1l6DrkKtPN9vzI\n/qsviTngeuZqNWnZR0mNDAxy5n79eLoHsXAsrJz89+A9TfWx8HZOKt908We0\nsube7619gg/dpM5TvgCQG/XWIJNbrfsJpm56vZ9LuW98yK2Zr00KluLUAjYo\naNJeodCOuoNxTWtjpkTVv9BcHCI2aOVaf3rIO50RBsrSfE4zw6zaS4+nTLap\nlWJ9ebdYjktG0MQV+DXLg3c0ulqDvLEW2gABDl1Ilav/43ok/D+aEc4AFXzJ\nJGL55lEp59EaYlQj8AgsNA5bPCrR5CnPhUknkHsC5E9mmKBx2A+UIbDiHDAq\n8ytahopCqg4e1gClzTRAYPm9o330Dg/vycS0IjSGuzsLoz7T4YcNfprmuVTR\nMoPf\r\n=tKST\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHYT0iHklIsw3TTaU6m3IcSxZl01llTd7XfltKR7XAzZAiEAxaE6nxceM1sGoJK5XmIVm6RTp35MRopCiMNUMZechwY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552520077410_1552520089739_0.9616962771547903" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.13.0-next.1552588842411": { + "name": "puppeteer", + "version": "1.13.0-next.1552588842411", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "637110" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "27cf8594c2cf76874a65cae2ab5a3b2a658d4962", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.13.0-next.1552588842411", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-R3vsldtHff/4Ddl5wmQwcjYdrxpCd6HuTDnEyCE8euYUpqO2lPKVmy97Rf1Be5VCcYcCMoVjCi9BDSG7k7xIMw==", + "shasum": "ae197f15faf579462fbc6f2613239a31da454b5c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552588842411.tgz", + "fileCount": 69, + "unpackedSize": 710268, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciqA2CRA9TVsSAnZWagAAoE4P/10YmgC+BCA1/8TaM8PJ\nVFlPHmslVlSuaN7qEVmAy0+AhRpxOvJm6zri6t7LnCOocp8ccapPqdQS9qth\nepZBxERCFms0KYfh5ZSdHF32zJOJ3mCuznfsPDdrdBIfbrtQ1c+izkJ8pwsv\nYVxi/e+Q6CFX/y5d1LrkdpUZX0zjkUTk3loe7qhMmRRs4qPybiaAF8b9F+K0\nWOz402LTNUIBHdk0r2VfviqV/6rytT25K4rP2+w4mEing/3//bsrILXAJ7yO\nSrJTTgp+oM71zd1NepH77VJuM27sKvnItVSh47/CwayFO8cITHzLYbPXFDEX\nZ5P1WznAeBquj0A9pp7OqMS1BoUZcLD92AlYWFLUIwKKW+3XcL0GeAfQaBHy\nVG7AguvpI3iE6EDXcVI7Y+oJYopvazA0spMjrEfCGrea1sIX5NXd40nLAGok\nLEwUYMG7TTelsqZnvsSp9nTXRDfxaVzkuJ0fluXLZX7xrbVFMz8mU4V0xklA\n2sKr/jDV4WfroX4e0XJWAol8X8geJ1F+ELHN1zC66V+4qvLy1Pn7qGtr05JU\nJn22OsuPCXBiu8y7/fzuB9xXXgMG2GdfklRdGpFmB2h5pRH2SBB9JqrDQ90V\nq3AoU/kkq6YWWRLdmCMf29bZM1rrxiNsaRvmkZPYywlIgk2KB3P+dcADDSx9\nQ+ff\r\n=ZTll\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCNIMUw2G6Go5dwcZJVNkwgU3SboukL5ORMwlAS3MosUQIgeSmTiFoceykBwIi46K66uyNrKcNiNPtL1WOnXcVQ1Ik=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.13.0-next.1552588842411_1552588853384_0.24989154283517467" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0": { + "name": "puppeteer", + "version": "1.14.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "641577" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3fa91cace372588bae7d710cefb81879076dc219", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0", + "_nodeVersion": "11.11.0", + "_npmVersion": "6.7.0", + "dist": { + "integrity": "sha512-SayS2wUX/8LF8Yo2Rkpc5nkAu4Jg3qu+OLTDSOZtisVQMB2Z5vjlY2TdPi/5CgZKiZroYIiyUN3sRX63El9iaw==", + "shasum": "828c1926b307200d5fc8289b99df4e13e962d339", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0.tgz", + "fileCount": 69, + "unpackedSize": 711036, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcna/TCRA9TVsSAnZWagAAB88QAJOmVL09u39XZVgHv+Je\nGxbxB5Qzaopw+fei23oMCJkmFrqqs6NyyYTFFzQU7cKj06A1JhW3Yr8jou4O\n8Y8LJJ05/S6W4uZ/iepJaRMFlO0sYqWdnAvZPM6hsvj8X9nvDbkOje05ClBY\nBOKNy79FCNWkh3NR/OWp3JV51+Vp8D6MPbPzBwYgYUR8BwUKEi8Ug5ZiGqqY\nfuyOj6sFuQqKEKyfgT6uMVlG602zQ+5nAuFEdbF2IVvQxieL+6J7gI9yJ4wH\n1fAg5sWhHMZ3NDFVU60BtCvILdo98DVfekcRR9nTCeSX4pkTilVf42sZvg74\n5D1E7dlLULoCaR8K9Hc/k8tu9+O65i0YU8jo164EMJ14pFke+F9aGJIPmq9d\nmOyG+2SggCqPF9SZpeYy4dTumsxVt+jP2rYT7xbdIDt9N4/viUhkPhGwd0xR\nJUMaLF/ldow+Gr0hgF2B4TJ64Vk6qcOPwSHzEFsPTInZd/ibC5L02znaO0NB\ntT4m8V+wozuy9r7BAaDY8cwHlaca869ASzWPtBeh6RCr5MXV0s++LrkhDMNF\ncZK4JgHMTH8zcFyTOFxUTBmsrvag5YzteBSLxO7jMLJQrCYIoZBjA/Am8zaV\n32XpaNLxCi4seX9w3TNLmLxbZI6odNfILURg8HiAExpvW/D846i2su5t5a+q\nnDlq\r\n=OaQ9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDUyCyRDZKAtSYeFmrznkPl6CMpvU8nLcdZNel+ADdDcgIgLFR3D4TESFhKHCrfbDiHckjVDl6gmfpbeV086vm6B+I=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0_1553838034479_0.09174463667387767" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1554765238660": { + "name": "puppeteer", + "version": "1.14.0-next.1554765238660", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "648643" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "54cce43aead1a2965d4641041f80c7d5adef8dd1", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1554765238660", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-RLX8Egwat/eQ6VWxCLqtzSSwqjUQ62TW3FyklHgFW0q51X73zj5gkvP9ftIhFkaGZ/LrCdVdpboziqmu+8vT7g==", + "shasum": "b39be6d170c3309ba2dfd82dcad26e1eacd158fd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1554765238660.tgz", + "fileCount": 69, + "unpackedSize": 710021, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcq9XDCRA9TVsSAnZWagAAUYEP/RdQQ3JJ4FMdQnO2LSS8\nK25K2nepg+mS/OBre6uB4uG/94ljsh0HNLQsDQQ5b8K6BvN/XfQjbrkp5CbZ\nLZaR0LKCoWILhbCQt12ltWKGtbABrm5WofSnAV92ULHbpu39xoM4DZpBjrWX\nN3zkWMoEEg6hDImNlt4ObhjZ4Wi+8zmWABMyDCYrrOO6KN+d0yn26rjBOlJR\niB0twwlvUw53p8WMq+OarNgl2BbpsOc1F9oJZA3X7Af5sv1FeVEbJLDjdc5v\ne3nieLFi0gbRuubdmTRfF8un0FeqnNSA3sDhLcSWrd1PnBHw+zhvcAyOgsZf\ntIyX8ISozwmNeqCX7G3q/NtYCwiOgUJu5mKWPMzK3jm72C23AELIILcKjLPF\nzdd2u7ghX8TUiQkai9Yl3AXgcXDctJRxM2PZ2HfeZraCpAln5fY/Lyq4+KJ9\nPAMEU0mcB/M7Ywz01eTTH3JWfCYUpx5A7Nq1QUibQR3NleES8Z53tJnwUjrz\nJCUQL0bw7WdLbRYcQkPkL3LdrPRIdrQzNcb/P54LViA0q614i9SWoUL0PGCu\nvB/2/0R6Baj/fkagkyhMS/VJ8qctkdbmCS5G9EW5OjicQBZqdKONBro2PJqC\n8VA1fFFMuN1J5BolLAjxTyI/xgTpuGiv8BKYMjgjtRkvk4BQpeztI/R2DIH4\n35g3\r\n=Y2Kw\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID33g7HMA8f2gaTSQhLT6BIrSdh8SRg62DMLFC4IfnADAiEA3iPfUF09PUIl55NChyv7wBQEIaY1ZcLxMtFPuBszqOM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1554765238660_1554765250304_0.803921081567446" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1554788705298": { + "name": "puppeteer", + "version": "1.14.0-next.1554788705298", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2a7c3fe3e68aac3dbca130065a67a8f0aa7db621", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1554788705298", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-6dxzqyS9b8mVh1xKPXt1OAKvi+cVdbE9MSku1PAjRK0YTqcPtOGe7rsnNhHtexcxfwq5ghP6TeGg5tpTg8wlsg==", + "shasum": "d91fd25d060152e70407901edd6db0fd5a9f3fb9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1554788705298.tgz", + "fileCount": 69, + "unpackedSize": 709861, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrDFtCRA9TVsSAnZWagAAuHYP/0WFHWHdKBHxH3YyGbeD\nPjEPZWJo43JAOTmTgLOnHke5VGsL7ME58ev5oLzNN9sR9rYZOs8IJP8kfukO\nP9ZsRfTmlymFP81aEEEP8LtLZ/vvXOwKMRjcJ7VKw2oejP7zRu3tHDDdMce5\nK65KeLVh4CuKVxuwI2zhHKenLkY0R1rk/8jmQDtmmYPHmO7zx3UKdckXgq+3\nLuKnUaS2Unp1L8j2GR54FH67rbWztJpm92QLxUcEmLXeRpYDQGQam/nNo0vD\nJE78ZQvOilYWUlyjBzrias3CKclVHiv4CuMmn4wwfQ+ojfpTuB8I2Yw9HxhK\niiZCuQrFR2Ti5FeuIfgeSo4IDAa5PJxHaVD+jf5nn0YN15hG9uuQCLbmr/xJ\ndDwL1/1v7XLY0Dz7VGhIcWy9iy9nQqv4JLDVIOvCIbfMbxSxfIG8jX/FaLJl\nUpsHhu9/ZiCDku2ZCL4KWFAdz5C/7iG6JrePGqIOd55d39lZyZ1rwmlW/MZG\n7rVc1sRqIG2tVmoUDvRsmXMzSQSui7zY8dTJ3KbHqWFUyLgySVn7d+QehTXK\nQSfHItEQGOvdXtxY9qoyz6zUDiO8YLlKr8Q003UKRlYjDa7MAqErYSAC5/Tb\nFHyncNcvQgNTc1MJgoW6j+1uIvGuijBUM4YJ1bx7iPuCBT6/9CQ33+gaXIDa\nhgN6\r\n=17D2\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCC/zM33O8sE7rNPb80LYIoyiBUWmCJSuNYR5e5Wy0w9wIgSg8eYoFH1v/Oj9XknBB90XM87H1YGHPi6lvo9Ys7V3M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1554788705298_1554788716610_0.41263103326300077" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1554871834316": { + "name": "puppeteer", + "version": "1.14.0-next.1554871834316", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "19606a3b79b881528877204bcdce46416bc171c9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1554871834316", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-zM0Szm/bWWdeGM4CcZAXRwnUpimxlBIE4qpFpFOzl2nP6aTAW7cW8bHgao8R1yzo5ANLU4S/Z6z/Kai4HkkCjQ==", + "shasum": "6770ab0874ff9cc58168ca91be094122c50c178a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1554871834316.tgz", + "fileCount": 69, + "unpackedSize": 711787, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrXYlCRA9TVsSAnZWagAAMkkP/0Ho2Haphfp4sdCpPFgT\nUkWWEJi7uBRQOMtdcU+AmwH01l/OPNx1ITQG5C3T/CP/So/3kbhIZoyzpIjQ\n4oDviUjMaZGjxg8sUN+KZJWFQxOdTuZ34+mgYRk6l9MwwPV8QyiL6/3BW7Wi\nmBtXw652SMl+AmmeRuqA133o69XeYbyCAOVklYODKye1+xfc351eFxaUn/AI\ndcLUV6CBt/uGYvH0kk42CVlebBvlxZV8gdT9CvMLQnr0RoExeFpWt4ew2Ai7\nDs844+k7rHVdcz+nj0yHY6pU2z2P7yr4ifhgOkAoPDpW9DEjGv+GdZ7ZPbYK\nIn9mSVL1TK47XdgiMX2kC3ybeHK0gWkmIpsC5JmpIYqN+qAgzT86WONJLJdB\nOQA/lIVuOz0QARW6P6lqzSSGXwl6YGnMcDHxz/dfULTrT5LU9kfbkDnXG4Nx\nrov1rgnDhePxuSFcwubg8Ts5g4QdINk+eo+CWnRZiv87XT4GFa9pt2M+swZ+\n8uSNkS9buhscDU7IbvTYyFz3mHs1GERZuZr29YQ267pAWKPPWg0dVbZgguJG\nr4yjckE+2p+Lu5CdL//Mn547JyKUgSN/Vx5svOju+79HrvkontRjDs3ZNTAl\niy/eTMihCf71/fdzEpRO27pgDeK3wwR1zY6Fkhr4cKdsBDNrkvtlDwGpFtGT\nqtFV\r\n=fVS9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5TLvMCRDauVxvEU2nhL2E9/eLnwTer8ty9pnuj3etDQIhAJSfB+VWKhyWUPByWZi60GP997O3l6kTJCzNq+WIQK4D" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1554871834316_1554871844697_0.46911175751046685" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555005273405": { + "name": "puppeteer", + "version": "1.14.0-next.1555005273405", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "08e9a4ddaa2e3350d76d899edcc07077d54f0acf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555005273405", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-D+OG9tO+CRwMBQ3eV+Fzg+7/Q0C0P0tZdkiDy7XBrD30gmD1t4ZJ2XiqjXBeL/wAvyH8lb1Mmk/9ES8rCEUkew==", + "shasum": "b9e127ba05f49c64f380aa1e7fc9f4c1bf649907", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555005273405.tgz", + "fileCount": 69, + "unpackedSize": 711993, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr39lCRA9TVsSAnZWagAAiekP/iZIgydBh5PabQSRP9zj\nwBMU5krW3ojybl5XUN2PwfodGNaZsxgPGjiLmoDy2AOcpOG0lSw7QGM2I46G\nh4uvUDs8VJ8s3DkLPhyqEPZVQGSiRjaF5gTkbOzs+S8Ov9kx/nKnHdlv9trt\naqcrI7uNbFW2ZwsnWV81+KQKVEZsBrftXsaRixNMyJ4g/JwqYGvIANLCrnBf\nOrlLG9RCN0dSHY1ypN2FQ/Wl5hRasH0QuVCVjDztSylbd0Gji7aFRpfN5Fv8\nxmsqPAAbyTR0zz/L7Kbu9okUudyhZ7DEIkQvKt/Xbs1jxfwzS5VktWe1vDM7\nTnINi+sniTQXLVE05thLUh6/DlWwnLeZ6XvKfvXwBOC5lUDCoceLK/1LGOPd\nldrwUjQOvrS7LtvQPWNjE6FFx655jv35kCTbmWt2iCzJpGsFGjKNPXMOZb0i\nxFEumjMHian0ytgCSJLY9M7AuVtKflKLZL9PqUdWTQ1Uo//4NkqI55KJnEXV\n54ufu9D6mwEXufkZln8Rh7NNgoxFPc+UA0vhb8RrkFXQO2ddOhZJpwliV4gv\njzqw/J9cwn0OnQ0HED9L9HCnL4CPu22DYzy8ezhT3O1zRfOL1rP/5xDPX9fT\nNUIUkR8j9rJBLMleN6lKoqe7ShGUkSJZf0pT1KnQfhwlejEVYOzmIw2Vh7pB\nKl+Z\r\n=uZRN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICl3LRc9lY7cvtv1adcKaqEpDiKhqGh+x98Zk4/I6SA1AiEA4gBkP2leUnd+Uk9PF48ray4dxLcCUV/PtNeBH9nPdy8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555005273405_1555005284175_0.6479816773821536" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555008760759": { + "name": "puppeteer", + "version": "1.14.0-next.1555008760759", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a79b775430d80f546850c322d39cb77879a5a5b9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555008760759", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HXPKKtZcduaDo/cwtcCET011rjgInZylIal8PGaFMblvzvkllPuj+xuy9yIamdbfmBnYOYwXskTepWYWJ8IgGA==", + "shasum": "030bbce7c570ef659a8bac338969acde6b4fa015", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555008760759.tgz", + "fileCount": 69, + "unpackedSize": 712211, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr40DCRA9TVsSAnZWagAA0A8P/30DPW2BjWCiv1gJIesR\nupa204sHhrBeL2oVX8M+Un1iwVlmb6uf0MZsS9/OZD2OidnpJ/KvxmOTdtWH\nA2XO1bdq0fK2I6c5uFmG2xea343rFksTSKbfniVBTwBJkdWiStu7flIsE23L\n/RdSxiVbIFE/DT9zdCxCu8Ve6brShvPF0tevB5+dBbC5BKo6zAjAaLiWzlrC\n32jexj5tbd3tcjFWgvC1wwoq+SNEEI+yQecVNa6S5d++o+Zecd1uM1e94P2s\nVJWSQQKocRRTFTBE5nCqrFlFvBR/LRJG4HNGLwG3fXVfW5xVb2RDpDMJGWe0\ne5Ox1w0lajsvD2w2TMq5ndFdo6B4e3CAPoMShz+pW39/qKgDo3Z/vivsAvt4\nn5d8D+kF8L8otpxSTmwM8S4Vse8ev6KZR7l+UgTL2hmomFyDHuZhKTYXXPRO\nRAEjNdXfSiyWL9q66yRzo/arHhpAmXvA4yI6jP8ys5hOaf6rIOpHijaxZlUq\nzyprrR1eWuRTPmzq1FVCc8O7T/Ilphq5I+LaAyRjxeJMLojsr5oHY38AcKN/\ns5i1KVtvaAEMNENuRSWWzdWUBazVQ9Gz3+X+gfHJeUXEXC5IGRPBQZ3wvVsn\npzLYlcxnCToS3HXth6/b3/dRFEXtpCWqxouAU5wSlS2W4tTsZabzTSxAIkSZ\nDJ8O\r\n=2vyN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD49AfoXE7AvPsoUifMq7MKAt0TgItAUNptL+jZsi3MggIhAKMaWJ+gjCPHVg4B9YDPCc35oUARhHNv1M+wz2nR2akp" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555008760759_1555008771132_0.07300188743916247" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555009768788": { + "name": "puppeteer", + "version": "1.14.0-next.1555009768788", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2265974ce579c2a07ec3f1632a37eefaec24a844", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555009768788", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ngp89vc/NBzYbnlV22PhgsnV+PDW3jsXGDojBplyiIfnM51SPgZwA5zcFE64vNGa8cbQbdeAijgpMt8x4rnVsw==", + "shasum": "edb39b033d9028f76518087fab75bad507a05a07", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555009768788.tgz", + "fileCount": 69, + "unpackedSize": 709015, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr5D0CRA9TVsSAnZWagAAjR0QAKQUs//Ramsyw5HZbVq9\n6UoWQMaJuSopb5W3bi6GjBnFuWI7/skJW8acpI5EjaICbeOccc+aDvMizTSC\nnlY5+ho2/fvq7SImnoou8D/zNKN9XZUrFbOYbBQSicAa9eHYeNta8vY7ofHg\n6FFUQzoGr/h7FrzAsg5EPwyFhoo19ohsi9UIG9mB3oiubH9NZJic28U9HL5q\nwD6fyLY1ozgmq8T1FB80++qfKGq9CgwRFs6Q2FKWlxMneEKWBmJ6LNWMW8nM\nep3CpJ562qSQxtxu3+ZhkEG5qjqAt/FrFoWCJjtcDiXgNEEwsoTVuHbW8yT9\nZHWuxu65ot7uPPkV1I/RwKJLEKGvZzVZYUDEXvwE/x8zCTljtcNDNO2A7SJy\nHFgw7CNk2wS1+1l4KLSy3f3bt+BF/ttOhtMnSH4nXSjFKK60JlT+yYhCjRO7\nFzHVSddk1h+0e/OINI7DDkaxj0oQBwTRBaGwkiq/mAE3HyWIVlr2exqE+Q4o\nZH0W7PUH7EwI3O9U6V2qthGUHMS0WhLG8KOXxwBcm1Alfh09JA9OedgRnJZZ\ntN90ZGwsQUfJ8lJHbZ3CW4ZhX/e7ZpW2SB786+A+HKOHbEf0rRf3PeXwTReN\nbQ+mStAd/nhHlnTvRwjWZP3NFpGyGoEBgaE13fz2FricWmbCCUMaQQ4rW99F\n8NTs\r\n=yhCT\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCozG4FPOY0qTPPvEHAvjyL3se4F+anYPJgDN0FKYqPXgIgVmMjboBH0O7UDGyxJIQrhQ/mCMZ2h1muvktP4JqiPNs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555009768788_1555009779645_0.09233896556115795" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555014860639": { + "name": "puppeteer", + "version": "1.14.0-next.1555014860639", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "20988775bf537c6343ec082c46a91c8eae741955", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555014860639", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-BzNV5rpfhARdLrN9q8AtYdVTHYSpsrgMMwVwg/jlMOzk3NOkFVVTUeFCSuW0+agVkMbO41T7WeZtZHM4HDcnIg==", + "shasum": "f093865236f13de089ee1ec6b59ba71da3c04042", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555014860639.tgz", + "fileCount": 69, + "unpackedSize": 709703, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr6TYCRA9TVsSAnZWagAAXZsP/j+i3w6NC9UA0vO+tYlg\nMko12pU9Sh5Cy3407TmQ368DleM+YKAE8oC/HWTFM/8ctTT1jlYFS2BNNAsT\nJGPAQrUeLmU/kgT/w7GoJTBp+6PJOQqi3N/1FzgVfz9ejbQg4tyoqa1a0rry\nyg5C78MOamYaQurb+H72JnpwjFj8z+s+kWMcLU3qT/0tyIeG0V4wd633M/eC\nPFhl1CSnvrZGNopqmvP8ErOJtAVt0SGVO2uJ9E8mcbmhYEklBnDZKvMP5FpT\ncYYrgOJQxdLC8fr8M3x89VyFbUY3E9G6rftiTBD19IolsVhVbJbNz28kSbnz\nPyZKXt175bUviLFaITVFhMhd0+t8ZQJK4yt92HCxXfnXPGcCh1v/mFmpq2yU\npfhXkOZrikE79kxVKl98a3msXBN1vbdUg6vqhMLEPRqBPuwcznLyU3COqNay\nUOxlgQl1rIS/K2ezNudyD35nweJEBwJdws2DSzElBPKSe9AnBaKHy6KHcdwX\nFX+G0LckpH7BGUPrY1iGBnk3q7mc8jplEadH74+d5W5d0EfdtIDGQ5U0MxKd\nQmgE1vs7dt0HAntPR9SlM4ty5v/1qhJtgU/joX6g098ZPjBb33f9iAeZfYDW\n+A2oj6QS5/mMv2+Ahscl6u1EzSRd0h1iHYOPavDa0aSchOW6ZEGJBth/M/qE\nkF+a\r\n=fmig\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC+88n3lcRhwumHYFX3sJI4hmyKf0PNyr/NHHl78ho1nQIgEj4mb76i/icU6yVI8SPHtINlFCNgroVlnemJiBGGviY=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555014860639_1555014871534_0.9911207662267285" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555031981782": { + "name": "puppeteer", + "version": "1.14.0-next.1555031981782", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5ee21d97e796263857b9f3fbeaf63366179d346f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555031981782", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-W7NFqCFuBreuShaGYk0uFXnNvWDYJwHPxaj+o1t59mYwrDwRswzS8OXbo+x4cKSmV6P5nm8w87fyEqdy0egeAg==", + "shasum": "3a260f5bd2ea4dd776b34cdda50c2c254c945948", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555031981782.tgz", + "fileCount": 69, + "unpackedSize": 710913, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr+e5CRA9TVsSAnZWagAAgJMP/0hkr41of4Xsl2LUdQvF\nMZlCHQqTG5MOz2bVSafnhXQxW+WwXjyJfAB/FPTt3D6oDylxROWYwdStZ5gz\nw4CwHuP0XYPKIjPtuz5urL3oquQWKSjZfsk9UzRFAeoajZ52teEBbydEf876\n0uOoIfngblfFwVwxjPGCR4KMqMymUixawaINuzIvcMfSyBsIXR8YCjWxngPT\ndQc+L9G/O+uXCN9J0nhq320V6XulV3EKFEG9UMRqgF/Rn87LdLwUBHxH7fQP\nke0nbKK0+zj677VkXvnbFnotXb3V7TKLqTbVxEckw82jq8U9WGoIlfzXvBxN\nxqAX2uvf3PJCIkbSkpt1UqzZrBo40aV/tfqeWI7kOsoV5onsl4gsk2Na+nm6\n1TVTLXo0pZChonpPsHzeeQ2QBHxIxN/mPEFU7eex7dZmv/SvHZZR1amez5aN\nTc7fcar+At06Vuq7JXQJTS9adM4ouUJX3g2IKTe4EsJFTjYTlnTC3h03bbH1\nEW0t1ROdmTjfNUrjRA6Gid3WgSi76Ss/PrdZ+8WlaNkCt/FOaUC37FnGIL5c\nc7l72htiDJMbuvlm8Dk4lwQHip0Jvmg0QPnljTO1J4fDCCDH3OMnL15sBQD+\nXCTTYirVRu4xVeIJz9zRAIHnK54WaX9pmBvtPHUY7sYSSL7MY43DmV7a5Kp5\n339o\r\n=2WAz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC1nlJBQ+bzr3rAyishb+zaAxoNEFploV3E5BOs1ItQTgIhALLbS+j8HjYdrKqbvaCTFq0mqY2yTHdNzQm6/1NrU5PZ" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555031981782_1555031992901_0.5163254781252016" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555033249139": { + "name": "puppeteer", + "version": "1.14.0-next.1555033249139", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8f8e77492dd91a00d53965b998b4199bcc5e29a3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555033249139", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-39JPHOf4xdtIIIvWyXoOKc7dAOQB5MzRn8k9wVSlRLmUqv0tSnvAV5g37gtPWjes6vzBcn7muUelP6cnmQtOAg==", + "shasum": "86ef064c2cc8e8a522388d8cf53e047a50f0b211", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555033249139.tgz", + "fileCount": 69, + "unpackedSize": 710913, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr+ysCRA9TVsSAnZWagAAEzQP/i+XCGntudR0wjgYLKXF\nKbfv56oJ8PsMoPHI4jJqh7mrQaZpJZWRUGeiraJQcZd+5Dl5DlGrawQXkjg7\ngIG/v3CIT53/gViK3smwhhgx41aKhQIqeLT+vVpOPkeOV/HxUNjULOXAE5CR\nW86EVwrlMxJTd5buUD2hIbfg8HyhQWCNGhAcdZlTzh9rTFtPtnBs3RxGbgwb\n7oDIFyKJh98S4wSgS1B2g1zpF13NAUUTLVGeJCW0IeeZYkXbS0ilIwu09JW7\naGh/QOD77WvRJKC5jBGNfLpgpAAgUi9p9VxI8u32sNsbpjqGB1JK94+2a0p4\nIK7A6738+hdoOLsdwkcEH3azJVppZE9Nwvj9sT/QhioAv2ZQykLKWX42z5me\nOiO9vGHXAtWO3SnKbfxsPrL5VaoyDPJ1swKRviptQrFLPNIPTECywpG+MAXW\nZFAwUKAOUnHwn+mKZWI9qYS5pDElnbFVpiUcXVMQWY9TRzUBdREmgQTLMQlt\njE6uYpD5Ujl1qZkdyYxcBKr36IvyRalsNcfS/9kltE2V5LxVoiypBGPKdRVs\nFTzo+XxhR7tjg/CcUkju4GEUGwlA9Hg2EoW0kzEKE7th1FViVCVpkGctUz4I\n53y1UCpz2Sg9nYa2V8iWJyDKpPiejWQpGzEfBCp46A++bwL8h73PqYUKJr8J\nPrvY\r\n=KxqP\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHX8ooNVzJRTAmQdTYjFxDPmB1sAoe4FbQOw0KBxUdlfAiEAq7MeZ2BVWAy5Uje/u2+UstKHRDZddBJr6VEU8qY1Wjg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555033249139_1555033259725_0.18035019234004257" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555129131525": { + "name": "puppeteer", + "version": "1.14.0-next.1555129131525", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "649004" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "145e8680b16edf654219304398e1ba6ad44c8e93", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555129131525", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-oVpUUm/rPSiTatiyH//85sOiFyoY2CvoOp/aSyToEuvNF130fZt+wXp90DYz0eLeGQNC+nyQmAlb687n+u5CdQ==", + "shasum": "e81435d68f8ed40cc0b4b8eb20fbab98a10fead7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555129131525.tgz", + "fileCount": 69, + "unpackedSize": 710913, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsWM3CRA9TVsSAnZWagAA6KMP/2Pp3ONSkaLXL8tdevcf\nN5P3UHl/um8DHY60dGUPXGDE06Wpom8KWK8BwRs1NFJ+s+HUDCKAo3UNwmwz\n4UkzXNHbT7bgAKkmr9d/kYtgskr0/0w7mZE5rBKSnilhSOp45AvP2MzS29WI\nc5WdjvKJvebTaQyvwSi5rZsGgSFRqgZ0e8DJyzgRfIW/7IC/KnnMyCtp7raA\nZhqWCWEpkhj+hARRi0hSERsyYn6aDwE0vcgZbYuqyTfyeCxK4Jeb/XY/XenW\nP07RhF26CE7vw7OOYrZgepCQVZndBIdZ7Oj5QibOaC1FX5AESCVs4W5duHvY\nMKV4SjZrFSz7dq+a9GZrShvqvwQNRNLfRf725HxIpr5PqA7A2/jyia0YbL10\n0TG2zByYc8pazReftnuHWysBSqe/VJSE/TYf1P0CB5Of94UfteoF+3QadS2g\nbCJAw/A2Zus5vgmjpzxhvh39BbjuMt5SBEM3G+5ddiJ2FOHcLkoRWWNO5b14\ntWNZIt1e3jMnHhplzO2rC+Pjdv40UShCofPcEm7m/Bn4P9neykSeazil4p/j\n0PcWhy7XAyeRlVhmQoKN3O7y9Bmr0v5N+auHc5ePfwuRDWkDP1SqjgIRtGzO\nTjX9rCARAwo4LkSeKCH43EiKjdDjdd4ysiIbxXdXXxxllv1al1U0p2teogMV\nSJi6\r\n=sG4O\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAdWVV7DcNWUyFeFeZfurUzvvTUb/IczFEI2wV6VZbgaAiEA5jayJbPFjZgR2rPMlMksru3qQMrXHoF0dXnWNMVWmNU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555129131525_1555129143179_0.11229576261291174" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555141000741": { + "name": "puppeteer", + "version": "1.14.0-next.1555141000741", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a8ffdad76e3df1f209f92a69e4df25a6a10855f2", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555141000741", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-OGBHEqTPIRIrBXjIQJgqoSRL89Ipwf8xEn7ysD/OtYTzp+iwdGR5h5oRD38zm9WpBpORGSNRLXASh18Py/7rFg==", + "shasum": "d5ccc422dd9fdf618f9138ecb3c979d7a6b3da38", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555141000741.tgz", + "fileCount": 69, + "unpackedSize": 710913, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsZGUCRA9TVsSAnZWagAAxqoQAI5a8vHsuKWLnIk7+rhv\nhSq4r1aO6eyidnPTrfnlWVUFU+7QNwKoefTFO4GivBG2ee8l/f1kQ894sKsH\nFKKZqTi70OGtx/tkwyah0o0l82SwErSKKsQVEIg11x0bNB4xJCofJfSz4L6k\nT4+u9ModTQVxcQA316Z2VXErUadKz/idHxDGzw3pzkhSAirdCNnTi0SGgvZA\npDJljnelVyAY28763cVHfhf33Ab2GJzSaycYJoQD7n+YHv+KfnG5YjSA31Ag\n/rossuJGev6dWk8docrV5FQoAf5Kp1FRIV8GZmcQVzWhNXASuilPLi14FC6h\nROtXZbUINtBVNxojWg0BgjkB+rfprYDel4neGuuPHPCveLnSfdeQdnCxTT3p\n2jkHitCMbdHr+lbm67EeMVRbTdobqECf5UQFe287ebPjfErexxmZPpP/WBxm\nGCk+nu50LZOcE6m+h93b6hUdzrCBVQnfJ0LxUyMuv63Hhi0Z0etZ2DNi3OVC\nWmKwtWDn1YMahCpgH8pdYyZ4M77/5bquTmnNfCnqk7VAW8fGa0ng0dfj9jns\nHaYUtnG2dHDoGuZ5HCA7yjMotNJqU518+1klZ+9ZddkkAymuGP9HFFpracxn\nnFFndMseLLlk25+vJn6Gsu8tjBKP0GjJKLEtOyYiKlqqvMoHBCwk01ca33Gt\not2R\r\n=KWf8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGMyC9dY4kvLXQhPFtP6ZbfwcG6gyX9q5brqk4PqdNb8AiAm4BwkP6DJl6jLjXQRS+iKOEQf8HiqErkg+3jkbjxJQQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555141000741_1555141011210_0.30210288695861665" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555607469881": { + "name": "puppeteer", + "version": "1.14.0-next.1555607469881", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3def8a25580ebd922e7301597ca47d28abafbb9c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555607469881", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-a48Ll8sFlusPUkK0yU7cg1+cbpIrXfZgeZ2HvNYRL50YsleSX/m0v8nu0SbTJwlPSJLaRwTrWDdpwjm4VQthtQ==", + "shasum": "aca456db8db1f3e7e0cffce6984aa08cb979b351", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555607469881.tgz", + "fileCount": 69, + "unpackedSize": 710649, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuK+5CRA9TVsSAnZWagAA8ZsQAJ+UM81HdATL5S31MGPZ\nMAnBAC/gqYW31paB0pTrhKzooCOa7tPtKNWsZvAc+uJpPZS7RvU1z6wEq+yc\nAs3er5qpwsB9GbK5H3ZHI4OUStaoujFtW3axtFnRMdSKojhEoj+J2xuJmL6w\nO3Ntr2lzjXWir1EkC7MJerLiSbcrI247J5leKjMHgZLAtH1Z85uMncsaihj2\nMEDVaL+HD+lfj4+zmMJOokQlUDJ0IHajo1+OvsOgJDRDYlEdQ79LdRjrQ+Pq\nO6igC5SjYtxh+cLxQAl3TT8p3q2CnOZhtvfusYSBABZ0TrNhxDxlxp2UoNip\nhTJ1KB/ejnAU2/hTneyccf2W4qpzJvve7VoGLygwVx4xxwFzya1gLG5xRHNw\nRe3fjF5KMomArTKbwV6Dr5bc/3nNC76z/0P+9rtipWCL4X8VlNHZVwD/3hJp\nyk4QIBd7imhMQq23wHv4/cWlVYIkUyH0APdmZy+EQmVkfwy6trmsPSBD/WOe\nig+vbEyRerxTQGWOBKYd8HAlA+tCgbAGE6iTWyKf/o+yDoXpTMuQZQPCtiuC\nhSZaPfnJF+xCNT5lnlil9hKDBhGy4YdeLcvheVDIz7zJHUSCbAANDYIuqsS0\nZwtGB4iLX3fKZ2r2qTKREo81+5ocp6io/9O/id8cjs3Xu8NoppV/vyQr07hF\nmalq\r\n=9NQr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCuPrTbSBI8q4Ap733JX2S9O2rJK1BTl7FJFhzkvTjM3QIgUvtjdMxyLml8GjnVPpb4aR/+oCIuMr+wEyu4rYKzEP0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555607469881_1555607480408_0.5017973914216656" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555617635177": { + "name": "puppeteer", + "version": "1.14.0-next.1555617635177", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2b68c104aaf309488fe710a0dd7127369373d5fb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555617635177", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ZJa/QwJFoBK9huokc8eobl/nmrqGTWqS+w8QRHQuYF5HCkkfcrtP4LcP+QcBsapI1vZCV7fBorx7gEkwwiZp+g==", + "shasum": "5827a560d5e19451892cee0292ddbc0c33b10b43", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555617635177.tgz", + "fileCount": 69, + "unpackedSize": 710569, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuNduCRA9TVsSAnZWagAAyckP/2RPRsRulU65X7btGHaK\n628gU4+BlwSv9GD88OzCoI15Dt+rhcMwcUJ4vhJaBkRGCLGRjHKZAovQTba6\nAYyvE219FX9hyb4AgQA49ohzDTyM/iYQ1CR/5COWfy2mJsLBcb1aa2f7zaPt\nz9+pCt2gOlWbE4UT53xOw42Y2bWr3PIqiSoHONxyg32BVv4bS0mOSgsV2tLY\no7yAePJb/32VcI+1pCry2/pm0H3I7YBMotnH0NiE7ngH+vKQp/D27LBYCoN0\ntN3w6g0H4KXVF16Mrbc5o3NPmRo72ftO932dE2p02AYRcGF3BxrniJXeFuWh\nDqSz7KpCt/dnayiqtFuzcmsPgHRNeLGwmv4PcfWKM51ZUC33ZRUPMoYyEc5B\npLWe9DRJYVxKB/+4VyCKGheII+3TZRy+eO+sHiwpzycwBAmTU1IyDagweV4q\n9T3jmkf0ZQR4sMsDahE8pCgE6ZEzvKIlgpJsGWE0Sx39txc5pDnaayWdWqjE\nxiREnvtfiRU5XLcLZcsEF/MVOqZ1qRXn3UR6MRHZVC4y+6p8BaGA4Y7OJ5Q/\nqJ33y8coeyqg6p5x+rRhzcoqZLHlS0neodwoCQD1m5wox1HlMMFfZQpZkE1j\n3ZgiBY4r3x+MM51AgaNriOpsr7FbxBdQDqcIIBcI1AY95G9tVzJyxqCq5HDy\nSpqr\r\n=Rf2G\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDC0vBdZvdq0IFae6Nn+D3F1Opu5W+Cvc46UzcKDXRy1wIhAKoGi5CvOQQJW0bhjK+MCGvW42lVmiPZv2HzIsefobKp" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555617635177_1555617645497_0.35642984973339975" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555699029448": { + "name": "puppeteer", + "version": "1.14.0-next.1555699029448", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "dde55b025746d35311b55a885793f113b410c4f6", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555699029448", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-MOoC+vB1JxyM+2io/KuzqjdiCLfJSg9lPLTKiB+TNocT5RcceSVVlMBZF+WNUchcCRa2ej0JLb10FtUUoM5hAA==", + "shasum": "b8314a1beca8373f6ffdae311bc9abb82ba66f5c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555699029448.tgz", + "fileCount": 69, + "unpackedSize": 710569, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuhVgCRA9TVsSAnZWagAAUXAP/2QzciMe+DGIYBNzV2kI\nvyop48wv+Oi5v4N1MRsujRd14mijswe83OvopYEdYWSAXWZFFIogcDeAR+Fg\nL1wUYpBemNX5LkiwsF+xDnts9oymlL+774tuFkrUZMVHuQzCN5ZtMDMCIJfv\n0dF+woRNlLYHbVcUkQNj1fWWN3pqWvrakkD9dZANufDXAX32dVBcGcBGzYf9\nsuFPYf19hK3OHygHVzX7qplGpqByFo3C3TkNHS9TXJtAYu2Yx9jssKNF/gjs\nXq8gk/gUbEqMy7PXgwKm3hbgY3bNMmGyUPZipM3jjlIpPlswBWJTO3JDiR6w\nhLQhDDhhpT3SkAibbBCgHyru5RPOh8FSP2B3Ncv1Qw8iAtKc4b9HIS+u0rLO\nB4pbMIZTU2E3xqwt7peiw6V/pvHFeMBx4/oVq4qi1QJJyrCoNFJUkCRO4l41\nMdIamXtmE0Sb5mKqVAWMlcxEJo/47JPrhMaU10Cz5zTErypGoAuHtEWGiyNO\nvKyoHgySrhSkpFWRl3Mn3sHbc2k4MNU+ZlHctH/yXOcLWa0FfVZ3VxPshVLZ\ndOHzxlh05JGmzASeSUmi5+M0umyxB4PEX6h00ILW0ik5J0dk1f51eujI/Adl\n/kUSr2n1caKqfXckhBupoTA/XVZmdaA2xgLe4YyUET+eJIIhxyqAOr8fDzjn\nXAVA\r\n=0qiz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB8bl43nAHTNYOqYePCEN2y7zVX4MWhTmsI4S9LEm28RAiEAzqAXddNFMTb8GRmpqYuoR9r+WNLoXzRM8S4GGPqpbA8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555699029448_1555699040094_0.41198535838774064" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555713627875": { + "name": "puppeteer", + "version": "1.14.0-next.1555713627875", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e3abb0aa32e38660abffad22d6446473be4b13cd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555713627875", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-sNlRk8vOABokwke1t0URz+53qKTaJRdyh+BB9wLi5lYW1j11Rn5Z7DjnvbZBexX6uIJoEpGSDw0U26VOki0i1g==", + "shasum": "b44fbca01726b52d4229f71893c601f500aee9af", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555713627875.tgz", + "fileCount": 71, + "unpackedSize": 737285, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuk5nCRA9TVsSAnZWagAAbWkQAInrDxPA00WfYt33RlNi\nR4eu7CLHOSn793AfdJMv9H3e4CseY7mEXc4xnJlFRjOy0e6CcHgR242sKWwJ\nuRU1YkvSj14dRtzCbpTBmdINCGUd19OG7BRlFToVHX2OW8pUPSdJiEKbNIm2\ntfVIb1+FoGHgo41ZYpwYzfsPOTBNFXYFjjnARPrsD6fZ0jGYTfvTh++nVdNI\n9m5mXJrHmt5tuZTJaeyMcLdL5ippvA/FSeco7C+O5ZsTe8OELz8F3e/gWjUg\n86KPfQxqA+k7iwS1J/+rQxlpT4orvemPH6zlhuCkBvXjTXHz6AQzt/nItJtz\nIXlxwicNUvw2Rrznx2GsZMGWdR4UowPbj8EhhPT9anfLFEHKU+3tE+19Wq/b\n7AHQrL/N1l4ZHI7Ui48CPskRK6oRDnInYdQUOkZgntnaOsp7CWF1ZBBiIdBh\nc6I6MpJJvoF0o0id4fJoEkTdXiBkmIUqokkgi3YoNKNv6jcsBzkRTiUZqgFi\n7fWANOxbMAKbx2vKLUAJwoxwaUd6pT0ycRF5IjOgmpsF732oS/LYPO+JyQP7\nap06B/AZ8L2Z+k4FQcNKUJfsxUkQF4rAsfO6nnZqkeu/zjeljq81omhmjtbl\n19xlJ4D5T64xfpSDTefedmMTfb6+WTY5szQMg4WDhC/pNZxq60Dcuw3Sodyx\nSbFn\r\n=pxIf\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEVkdOc+JaO+6F8K6hG0a3PjHStpIw0Zl+4k2+QXedXgAiBg1e43TE/8gM2xcmV/PKluEiCBZIxlz/eorTIQZKiKPw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555713627875_1555713638907_0.6618648481050962" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555723800354": { + "name": "puppeteer", + "version": "1.14.0-next.1555723800354", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "770411be9d9c0cfdbe3685bec4efa3ba741482c8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555723800354", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-JxZMyyGoIFId0v7ZOryJGKka3mGTDxMkZesy8mmhFE5PTG991yh5g21xB2AH+u73upKLBslkq7RDlorLl/on3w==", + "shasum": "2890115c9ff129945834cc6953004818afffc336", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555723800354.tgz", + "fileCount": 71, + "unpackedSize": 737285, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcunYjCRA9TVsSAnZWagAAJNgP/1X63wejbBlnualcv4wH\nTn1eVpuKh4/LYBAl6FEDi7yjOT5jG/mUuwOF3Od5d3DudGsHQRjUOtH/IFT1\nhAh2Vj9X1Q6mTVI36xi7Sc8ClaBxMtRdxWEI/wpJNixCYgfDYkI+nvGPEv5/\nd95PsL0pWTjmSPFV8qBGD/bcZ+JsS/xlCUOEbr/OlbLBB7RJjCOe/Sy5ie+1\n8iJ3VQ9mnMNC9tWyClKYZITfPiy8LJhyrsqqv3hp0/h5KdWh/a7Nupw9fCVE\n/LhloQW/HA29fSvE7sNpn/Qry3Zd1vEhaPz/bo9MetTxFKiBvkETC2V9/gIt\nBLi/kr1EkepIrH8UD2tuW+A8nB4DqpPBWcBD/KxIzv6y3+pnTcRdRsYSVKon\nnvpXOrNG3wl+JrbXlgCOMXwXkIJ2/NXzFvRd6p6Ypr3HvVmQ2VMfkhuW0qEM\nj8LxgvFtfzYWZwt94NweKNrYNku5fVFPQPUdxlf8O3/HbgKd2aKMVrHYel7l\nqrib49ysaKm/gDnH+Aj2djAqJD+WD8d0usLr2PuK88fxD4Vh8bcPTM895q78\noheTJopSBycNb13qhjf8IXWsBG/P9FJDN5vK0/b0WsOIwyJfalcuq9lF3mXD\nXUD9wLHCA+Onhxb6KPa6vpUF+YZQwAVyFrr0MXpXm85gwPPeWJZZ5szaN+6+\nUQiR\r\n=/Bxg\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCMNMelsVpuEflPIot/zZADzHiXxIHmPmwzl7Bt/PlIgQIgbr6YcNC6+A6pB8LTzUQ9pJ6/udZjnMqkhP/OwJ999rE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555723800354_1555723810317_0.32829013872227275" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555949658000": { + "name": "puppeteer", + "version": "1.14.0-next.1555949658000", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2d536519a4ba6b4103954d700fb18d023db4ce4e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555949658000", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Gd3QKQEsbVLhN8FKEdePyGk9QSnX9qk336PY3lALhOmdCCb2WAFkD9iLGJU1ZD7EI3QVqWMqpbIISw+U4QQ0nA==", + "shasum": "088b850140e7c3755657a42c3033afb8785a986d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555949658000.tgz", + "fileCount": 72, + "unpackedSize": 737364, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvehmCRA9TVsSAnZWagAAYKwQAJ1fDCbILaIqBz0tkAYD\nJQTV2uYcgFSk2HGhuBo06D36Cw2DrpzHvSduru4Xgmp69hFTCjV1rA1wy01+\nGKv8du0Gt6GfRU7nMgdLJWWpizPfpyg2e2FAgk7BN9FHRYjUbpNZfNYrgQm7\nvcGMa2k/9PVfJnF5mvCPQTe29fCCbN6BhlNuXrT/Z5I0nkgjTGRqPbPv0uLP\nPqD+tWfA7oiQTrCQz4PZUOp+zBd7lmqW3VePRMiGn8smKOGVMRloPJNGGFVu\nvtq9SFiUrtTVe+8ukXyBffCabfSTbcEH0Txl+0F9Rft06dkqcEnII6Q30s6u\nTngTeSKOxXrKb5RFIKGBZhFeAX+3YMBad9zKU4vdqu/3CRyNhGYVq/Hi8N0D\ntFr7suIIEZ1vH2TjWs6JHATVbVJVmwnlPY+e9hPaqXRGRd+xVN7vql/BIbVO\nRdtcTvGm7PHHPwalrK/BFhirmufqMHu6frh4ptLYBEVlIvYHLChK2JECBYXY\n5a3lsSPgwIWBcJmCrnhiKxRUNUPvmopnpuqfNv5DqVRnE/IKB75KBCX5Q3oT\nWvzYQ/xfXd/m8WbxZexmUWbMOete00WeXTUb4+JYO5xosXfZ/8DiVRgbg6P+\nf+aJnvGa579l28NOTIcOqOSguI/KixUKjn2TQWD39yOX40CgMlhszmgZSiVB\niNHv\r\n=/GLl\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCP/nLl8/w9jK51SSaqR5gxD3fIj/xPxJ+glRfVvFllugIhAITqoMLD7/OgH577xRQFyQZqD2uQ1f8FLa6BDlex13Rb" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555949658000_1555949669325_0.9777946751537778" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1555975600504": { + "name": "puppeteer", + "version": "1.14.0-next.1555975600504", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "5e21ba3cbbe455317158e6a4fc5af2808abd45df", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1555975600504", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ASEhk/yp7Fw7tak2+7k3Y50y4PrKviEhuzCR2blKgJccXpFq4TSn2bBAOdtMV/3c8QKLS45VCFYyacWqVjiEGw==", + "shasum": "5c2b3717a6d73fcce102ec4fcf2eb2f88109b343", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555975600504.tgz", + "fileCount": 72, + "unpackedSize": 738730, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvk27CRA9TVsSAnZWagAAA5wP/jQKZLNXa//y5swjZw8E\nIEN3phR+JZObQ5SdVCmA6yfddu2xEHnPFDxl9PlKzsvF/ogZEX31IfzGDo/B\nAvsfzse0zdb50cfUYZ9iWkFgGvSDB9/bRGVTHQ3Ojeto6SvbhOWYkWMD/V5O\nW69wPLIqXFukN/2SuZiuJXkmnMeCeufxXfQPqvLTYqf9g3kWCvgNWRHFG9NL\nOA1HiU9FpOyaSMGpWawj3Psb1Degwp9GqWDGdCnm8QGMY3Bh6QkibzCvXXKi\nJ4GrqHkTJ+XDc3My/LogmSM9OkAKPEmyM3M7OPqb6/UiIoaHHgQejdI6aUJJ\nV9kUg5wG4dPA2twG+ag9MGJYwwFeLQcLDuMa55kS2RO8pSYCgH7R6g0dBX+Y\nH0OyGw3WFGKgBrimYkPi7kYeWOEGO2vRMteAw+Twd+DRWocTu/V8Yk/yQSu7\nv57JZ4GQfOVx4aYMvBzqO7lQlJWVp4YvfSngBf9w+hzv2ezdc8f/yd9o4SVA\nH6EtIKbft5Km0hWSaJ5YrYkypW4roJBsuLyr8ObMpCcfc3PVM4KrpJXEglmL\nFwoTnMXnF+SVPx4wMJAyasjqC9N4+FgJPwkTXD2byg0siLrOYBesGrWhNhTm\nun9TFTC4FdxvKn1fuU7Zan6/5VDImARIiGC4//cMa9HPEJB4f4YBKc413vsD\nuycF\r\n=Gf6f\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGXJwvnsMGDdvkdr6e30kInhJKWhhTyynMZwhjMsQ1HzAiEAj/w/BnUUUDyHklxvmKj9+IUJ6qAK4atrRxV1iX3CoS8=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1555975600504_1555975610989_0.4826746847176029" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.14.0-next.1556048038195": { + "name": "puppeteer", + "version": "1.14.0-next.1556048038195", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "06fdcaeeecac0d137ee34c7da715ca4105ff1771", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.14.0-next.1556048038195", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-mfRyX9CbZfiXyGsIyFu3fA4J1bvcpghwCz6fWbD8Xqgf9i9otB5W/LUZOcnmKQdjDYu5zRoc3ailOFMAHE981A==", + "shasum": "cf4825803031d5abdacf8360adfddec0d4d4bb8b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1556048038195.tgz", + "fileCount": 72, + "unpackedSize": 738730, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcv2iyCRA9TVsSAnZWagAA1lcP/3j3ooe/m37vAsHCLW52\nk0YoHhyM4FH2Jkvvesh+12FuK2/X94VC1r1EOEDl8cWKTQTbiYOUEpKEwmpH\nA/fOhUPUN8uDyjxDMcrrtdntQSmqcclV2FIEpGnO9qBw/m7IRCUH17oVGXIy\nfCUFW5YkP3WwuXjaJA2ZrXtiFrqusTKOFhnK/uO0YiTw0yzq3l3DIW/NNm8O\n1DWAJsMLyFCuUTq3vo2tkbatShDSOqLndJ6EKCDCdoePPaUDKMmVVicL5ME5\nhrXV04bRzt617a73xAluC+sop7IYAs4S1GIbCjbOy8ymhIzpOYNmzgFLZcD0\nySZdirsaiXLV6HmyqsIaEKaRa7WvQjj99jYGVsOksMIuawFHDJVdZr1aObHG\n+BI28RYJ1sm0KiTCC0SAsSDmbAOWX7mtyOqymLQwh6tkFDFfX1gfwOQhPmNy\n0I43Gp/pdGB27WGWSE2fOGswjldg3ZNYKCYVnKJjz/A9NykKKOpUcNPHAVlF\n33N9mUGF9dqF6vvyOIpMXHI5FDkD0VG2tecQcO0Tcry35udL9qsAPSq5f4eN\nT7dZHxdrVuBg5hG9r6MmhKwlm4JMopLcCR8sgh0Mjkq6pmz5JY6X981LDbpt\nLTB1Rfwr7IaZBtMZKdvxMG91TjWIQEXcHd5lZDR91GCgGffH+E62Ct8t8zOb\nKBN3\r\n=w6AF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD3WYgPPjLrw40iDi6wDxqyzKfMmGcFUkvZ+lOhom+AhwIgM/k0ns2DdYcmcor/YQKNis5J3gLcn+er1Iglw39iDNc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.14.0-next.1556048038195_1556048049311_0.9067256087630702" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0": { + "name": "puppeteer", + "version": "1.15.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b9f4a951759b637568ab25abf7ff8058bd2d8677", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0", + "_nodeVersion": "11.14.0", + "_npmVersion": "6.7.0", + "dist": { + "integrity": "sha512-D2y5kwA9SsYkNUmcBzu9WZ4V1SGHiQTmgvDZSx6sRYFsgV25IebL4V6FaHjF6MbwLK9C6f3G3pmck9qmwM8H3w==", + "shasum": "1680fac13e51f609143149a5b7fa99eec392b34f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0.tgz", + "fileCount": 72, + "unpackedSize": 738711, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwm0hCRA9TVsSAnZWagAAq6AP/iLpradAMtH8EfkrSN0U\nbeAC08oBrgdybuyfvlA7rQRLcCDUvtGatA0NeW/Z2a71JfCLQC9xhv1FNpDb\nIo7PMKLochTgF/RM/DN9BjTKF7fmelvYrwmT/Q/GV6hV9FQPuJT86W4VUKJ3\ncGAVwNx4dQNTVmX0yZzzi60gEP8QBTrGC7Rdb1BV6A3RAhTXsBIzSQyGNvla\nEQs+jdFrBVoU1Ovtgl7u85QeugQl2VA+JCfRWd4rDNhTB+3ufalu9zGcFUAG\nQR6QyLSvtJn5lEX2Ws5cY15TRUepdP9kLkACPnVYM30EooPJAbEKkZjlWkVO\nG1I763xdfqjYLxsTzw6dsU3TTNK/d3fruifOQX1Br2s5OPwonnV8qvUOrJkT\nviKHOZiisqNzkPncbUYhl202XZVhyd3hN4FXpMXqEeFEMLjnxloGawtKSyUw\n0kTQW8orsVJEx8T6iQo/oPRGR/MSbobCveqk/LJp0tWbMYPm81KrKexNsZxs\ni+aftGvkAwPPypf+VcxORSe5TaKu0NpS1EjEYeYtG6fr8/2U/lN//CYiR/cB\n2eFyWgLQTvMicrgmf500kvWoyyy23q//Rk8aGD8zDx4hIM7MvGB1dPlHZiJu\n8syjXwVYK3NZZNm9t76q47JdA3L2DXLubIEtVOmrMRXKcy557F3p1O3GrQvR\nhq6b\r\n=fgr/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCOkrD7NvYRvs0gW24wYK92moLD/o6dqM8zWbH+UW9kcAIgTJBUEmp8lRjNlWutR17pGXzfn9U/bYRkCn0k4vOMUXM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0_1556245792071_0.6750619869390695" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1556245956624": { + "name": "puppeteer", + "version": "1.15.0-next.1556245956624", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b9f4a951759b637568ab25abf7ff8058bd2d8677", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1556245956624", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-FrkNnunqoQ1oV8aooy01NrSNnQYtq6C19LuPeOPI8xWvp/iyGRnnz+SAH1BfLVQBVV0MdcU4hppdyXmqLOit1Q==", + "shasum": "04656ee6d52610354a2521e7a543633d7e96c672", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556245956624.tgz", + "fileCount": 72, + "unpackedSize": 738730, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwm3PCRA9TVsSAnZWagAAo5YP/26nRyBk6aFWNn9O8fHz\nqrXt6tPKltsLuIfRh6bjmzt5lknF2phssrWUJe0f3XUC0Zka0+jz9Yqj1QDo\nKaB6bz2UR1KTsRaSOG3K3a/42bfcvhn2IhD4v6/lfzMgzO2vRABgy8YB4n3n\nezKrRoxCHKAkeHBmr+ApOzVlhJyc75tGu9YdCalMtXF3JlMUzcgJL66V/TVz\nS8PLvUD8lZv5JhWrESM+UVNUd9pXROdOF+7UbJslF4g1UJa89g18T9/sZNU6\nal/XAztjJ+HdpOv49oJFKHkJdrgguGrgBrKnvazoMEtf2znH9Cu6XBt+Z6uB\nGOkfke+Xzd1qBvmadCDc1dWVw2mUbUQNV7fpqIRo6Z+T2BR5PmpK1gMgPlNr\nNv96nQAsjJAVVqoMbQ40y6fq9/w/YRXvyTS1atUDX5fgpTS1g2VuYxoXoxMr\n2QneukdP0JVN0awWJjLjOycUTfnEuPoMSuHzsK5GH6cZGGtkHtETnIKQwiuU\n9zoP0S1yg9jCLyy/FFV+kBKP86iq/rA65bfKX3q31IIvYZZN4YwB607HYQCc\nLpH5VP7QZv0RAfIow7oow6U3TIptDWcdg8PGYtErgw4QNx9x+M733JYsF0hO\npZDz38jK5JM/qsHvrpfQGYCbciWuPoAa0KJc+2QTXOZjrSuJ9p5eQBfiXvPm\nj/Lj\r\n=5Chj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIC6QkD7RTAJQJcXCceJ54ZDSq8RhhI2Lh6ybDyqK5eb+AiBcZ6+/5CrLdl48y2g6c5rKvgWfccvpBja9mX8WD0jLpA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1556245956624_1556245966772_0.8743082084496545" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1556265138389": { + "name": "puppeteer", + "version": "1.15.0-next.1556265138389", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1e29e5bc0fa1f27279228161cb87d2b6dac55874", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1556265138389", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-4S4sofvTQsNMN4mJ9ERhbF6P0LZAljdVcmenoXtrv1i75Q24f8UNl6bjvQdp8Ap12fpqZIxlRksaKUidLE6EfA==", + "shasum": "b0bd3e1f0d4b1253b5a1a6d40593a837473f7fcc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556265138389.tgz", + "fileCount": 72, + "unpackedSize": 738730, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwri9CRA9TVsSAnZWagAAmbQP/jASqWnvIQ9k39XBAwL7\nlwP+PraToMad7sFnvMJQNw2Wnhv2ikKBhTR+4qslEpzpZ14DtBmEO1j7KkRJ\ng5jkXmNDL13AQQo9EJ1Vq/3dYU0j+XMjb/TfRLvZ83e2+AdcQcSf164EBEqn\nWNCeYq8VQuHM0HyAHxsayKVyVC0Ig55Bpgh/pAFbMaIS88yjZdveY8C59HZ/\nfcTbZQ/D+k4ohrI5lzeR3UsP5YNEueNpcmGOifunnnxTkRg0CLRCLuAyMgmQ\nOlIpuwg0wvTWrT1dht75R5VCJpbvy1YTMJFIHnCuy7GIdxV6r8fxf5kI2DKR\n+CFHQ7AH4QW0wTZVdSt+O8tj26GY7RH2afAvWb0i073tPpOIzlK7pPjxnsRj\nLRjCJJ6F0CJaOb4wWOe0jG22xEa4a7sVSExdc6s55/MmsZBxVo9/F92dN20I\nfhk3Jgx1Dy6Ql9thZDgfEWz39EhWxRriMXNkrR+Ijo4Zj0iC8Xc3AZm74YlY\n9hMXuA0cUrJvc80W/nkk50Q0m3Y8sizTO+t8fxewYTPOBvNFcn3BSMYUeT9a\nTzrRYSniRSFHosUcgcpJ4187QtVhpbM757fgwqg3MKyVGs8m3gCBIuCCajSQ\ne18X/0cII0SOzOrx+4PE51OisNkvXLAT7LoCZjW7S77O3nZ+7RPaTI4f0gqm\n1OMv\r\n=2QtQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDcPUVoqwzSGLcNfltyb4XX6NIKX3XrwyUET1oaUoudIQIhAO9J0pIYrBHJZb5A1uvF7FRHKhTPA98gIjtGZZfhmRws" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1556265138389_1556265148468_0.1784341972393504" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1556311665501": { + "name": "puppeteer", + "version": "1.15.0-next.1556311665501", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d64f700203a1c9fcbc5d20d51ba4fb44ddbd1fe8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1556311665501", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-IoTEY3SbspsqywlMrLa2erFnzYbW7iYKN67xKkCgNMGVFlQonVSxadu2a/IEo9HP0ErahlvOAyFT2Jy+0KZrXg==", + "shasum": "69128972c58edafbd10150307b0cae42e7605dd2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556311665501.tgz", + "fileCount": 72, + "unpackedSize": 738730, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcw258CRA9TVsSAnZWagAAO0YP/0DjJBoIP5F9ghuPOF6L\nUEIYkwLKiMBY7LsNK7W9h+SpAvAb9sHBwXR7aPETxa1UN5KlPOmkdgxujNw8\nSz5DhxpGbjSTEN4pvJZY2XogCJCwhMLTuU1NNnGOBDhJCl3ZCdJYFzIyAWC8\neYetA0GQMmvpf2JDoAO6/apJZoWDU1VDGZQldMVSabcEVGEI59/xZUhWB3qx\nrwPrZ2VFk2Wwx00lGXAdTsVWmRyHqBxD7oYtOpG3lmauu+ZoygspqBch4zON\ng82iriAASn9AK1qE13qeLCgv4bUHX8FgBJpX5tdDyf38eAErp+ii77BVbohD\nv4Tzd/TMe/MwvQzZVZQzfOqlaPJ1/Of6Mc53ZO4HcjF6zWBvLW+EKVa1Gt1u\n97+n7XyKD/FBDNiczuNOdGAyNwLdawVtppXwP2Me3r4niT7TpZzYk84MNDoM\nvhhOoX9lyi78jMwGNFuvecdrYsk83O1YlGIXKj86UwfksBrv2d4hVLn8Fs0K\nZ9zuCdbc0WfvVDVbX/Krd+5V57bOBvIfnxp+2aDvvSF1hROtR+7khYsDiDoJ\nV6/8Sv9Qos7CujHK0URnpiBL6sQqTNyJHwE/Pfw/RuHR5M1a/EEJ8M8LTVGF\nBGKIggiLegFrOtV1GHVkPWYXvwj0f5wl4s6E8zTNSbM2ix4W3OIBKJ2z1K40\nIobl\r\n=27ws\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFtuUO9c5LeAqkMGcV5O9KrT9eQ9qauGPrD2/Y58pJ+pAiEA4RvHyOySKXyFOyClMgN4UmoNA8I87fNxmrJ6UuR0tQg=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1556311665501_1556311675434_0.3500475880874214" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1556321762762": { + "name": "puppeteer", + "version": "1.15.0-next.1556321762762", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "650583" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f3db28c94b50cff322d7b74ccd08d84dfaa651ce", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1556321762762", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HemhGlnnYYtDYjqDlttzAAp41DioXe/jo7YtrWiFLmKu6rUDpxcrJHt+1SGZDlSIrCdicFX/J2eatiB/eFIrLw==", + "shasum": "278c48e7a2188664e095f3db47993a195740cdf0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556321762762.tgz", + "fileCount": 72, + "unpackedSize": 738730, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcw5XwCRA9TVsSAnZWagAAZL8QAJNQeKXfshW816tJUY0D\nsna2NjsCwPnG2cUNV/CE+I7k4kWdZbKrzF2P9HDWffF0uaHAGPg7DqfrYGRF\nZ2FmVPpniVlN4exzIdbOtJtHKqsZ7KH42gYpocFBtJZPnQFf9fPXoNYbaJTx\niAP874mF/Wee9fMwyHGOeAvShwb2Mk88uyhRy8OIMKFKh+NQb/9XQj9JPs5Y\nmoSACw8fISFFDKg7a2F38IYfe9u5+P1zg1/7r6Xi3+wx+rEJjEX8ow051vvf\noVrGEGGaGqtnZ090yAHrRCz/TPJXYElM/bko3TRh11iVJSSYxH6oJ2h+lg54\n3+OxIQSkCPXCQaNgSB8caJaGlRThHXhZU9/aphUutkLZcV2ue6RHW5tVpL5p\nDqKLo7CqSkMipSLp1mh80AEYIGCZLoMQ+cc6LzkyazYRbqLtIPTq02Dkh5tg\n0qMTaOnpVrdhG6IxyG97w7lelzKuJCOXsomUY/czi3jxf5KRX+ecCTU69qHY\nHNZJHScc1VLQvZaavQadpLTzat4Y+hadVpipyIoi8+1DlxhtCuqKobCu2ZTe\nZGduhy5kD6Ymld90MPc9S/HjoL7By676ZonnkPj173f+yk7DTB2gEZBNf3hZ\nBtXi+Mt/XEPocgoZvLTs2CvMynCI0nT5Ig/c7neKqfEiyXqtxS3+y6+DXNkf\n/yCq\r\n=eTPW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCNDklvOIDk8Nftb9UOKxMh0JPVnuoLSfwvLeXAlvRbfgIhAJ7oIUUg+7l7ppdp+rXr7MXT6YLn93sW5cCwjITNfDXv" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1556321762762_1556321776016_0.7720255558433311" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1556508387804": { + "name": "puppeteer", + "version": "1.15.0-next.1556508387804", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "654752" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e2e6b8893481ab771c307d413e6d66d8bf05ec6b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1556508387804", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-c9AKdYcY87hnxZR3hII1LKwtFJ9sG+yjfTGOQYeV6n5vEpa4uhg6WwiqnbUdJisEkx2VWgeArjhzJxdF5ISsOw==", + "shasum": "9fcf9b9c1a317c7a0546db4ce03a0e34d411d192", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556508387804.tgz", + "fileCount": 72, + "unpackedSize": 738766, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcxm7vCRA9TVsSAnZWagAA7zUQAJE+nJoNacV2lPXQg2jo\n0PbX7qAChTu9Mw7MVoFv6I/XdA8KsR2O9xCfGuMM57LfvTdk8uNGUZqZKdTq\nvMIp5uzfx5mh96EoPoyVLzL8TE3hVV+jmFhd+/zR6NxqCKOGNYljPYuo77yK\nXFT85FG76nxJsH2o4s0z2WwStsZ9rHJKYX+WrpNinAP98fx8QtmJEWUzSo9Q\naxClWOav/9s5wKpIGQ6ikLNgJgY+4OPli/gly1zFI9lsoAUd7G2uf7qWdbXu\nQe4EQvbYJv+cMc1KSzzHd541EdgF0ZD1XMPKq8pB/nRjBfX/U9xbIAEcrm2J\neAYa6/z7490gSeWoKi7u30Pm/ACcWcrRAkWqdi4lF3/tTbTwCqK/C1Rq/nqf\njbUX8Hy5ovi/AOAyCAki60S/F96yG2dbtg0o9OQnEL6oaEm3AURc2mfdXnoA\nJdSUH8tdZWF4br/4WMk5KgzQQ/lZa9LF8KwrQTL9eqnu8U+4H9L8dZe4vL1a\n/wiCUI3LrJsQyCg8OV+a/S/yofzCfaVKAakUrtIT2SuSaKRLo5PIWfozSv/Z\nx9vDGs9rvLsrzE0PNkFwZNtNMDJ8a0WoXI3m5E1jmOFc4pQ6mFKPxhVYVP+n\nczWlhM53WwazlKKBUjensUSMlmznbn3x7DvLLnxetjQXzqeUk0mxWakCSBQM\ns31o\r\n=tFej\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDy4SMU2c7+NpG2TSG/REzeYtyxLe7GfSMHTU0qDFNicAIgE3Q6hhw+ywk8oSjG7848uaWJpFHkXFt9MbM+gd+o1Is=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1556508387804_1556508398273_0.5970881091782301" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1556610202561": { + "name": "puppeteer", + "version": "1.15.0-next.1556610202561", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "654752" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1de9906260269491c9011fcab33a58e280603fd3", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1556610202561", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wVJJRy+4PewynuRjzsLwDX0aTJAQRLUbXAQ8oIHlF13eI7imaioWF81wiN+VfgSV2lv9+P+2t1pfjeQEYrifyw==", + "shasum": "9cd11c2f0e5fb5cfb7ce3985913b2d300184f631", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556610202561.tgz", + "fileCount": 72, + "unpackedSize": 738866, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcx/ylCRA9TVsSAnZWagAAXE4P/0Gs7h0dqhusoEaGoMZi\nLU3Vt6BPJccojzQ6gm+igQsbKzGqzYGMNYRQG+pk9Qz6qlRiTo6ltfCdSBcc\nSkH/NMIEFhPAKFo+Tq3BoBWp1pON8VFbL/KhwyvCZTyQFoMoJjOwiVnLJrW4\n3tq4c5RxUnY3U/N33z1f6ptFO4BwTtrJGBmsSgi5lgeS1ZpDtbwOOuKk4mhP\nHLTXXVvrpk93pLGLQ31J7a2/3FsdJvAMY/oXpTtjCtjaNi+DCSx/lYWvQo3B\nGfRE5aT+qGHvIts71RjRKV+5KwulszI1Hc6vRclxJW/8bgXyKZakoSHDA44p\nHLZg6UTGnlA0u/7nereXIrn+CiU/ivuLkm870IGeJmGtnFzjTXgdWYdhq9W0\noChGAVkqE5I+6x1vkffMnjPRmYXaHohvANH3cQwE6p6HvD8IPvePjUImgty4\niakEgzewOaCFJRwHtaF4nvjwBtGVKKBoqdtuZFt7T716OvhV5Ce17RokGZDh\nop17oJMhvn3TiRGeRuZ7yp+/UGl8vSS6hNA5dzeSkAMArlVxNZgDdxj2ye7Y\n8IXW+Oa9UMkWGL7PVTlTkf2AFPx8EfZYrPMtqud71YhEeI8wuegIPftCx3PN\n7C5wYFu15QXbP6Vtk+4eTg9IKbEpCket4rPsP3qQJrQak0ZVzitkzQY4WvOR\nFLDS\r\n=o9lR\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCCABZuVC8SFEkrEMNjIXRG4KcTtq96g/SqIyfxM+8IcwIhAMgWNtgkKDWqYsE43IG6ujqhQDJa3WhzVITeXJ4sF8E8" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1556610202561_1556610212995_0.4380298721862246" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557127789501": { + "name": "puppeteer", + "version": "1.15.0-next.1557127789501", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "13f73b5b3a279f18313630e0f58c3c17fb0cef66", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557127789501", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-Nnm9lIySz/Vx1C8c3oabDgc4JIyClyTiTUA1vjII1oc+YecTMRxc6ziq6KWAxOYd3ORdf/jqc4sTo37hHNQW6w==", + "shasum": "28b2cb755a588746f6903f24bc3e707cd0b4a3a0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557127789501.tgz", + "fileCount": 72, + "unpackedSize": 738866, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcz+J4CRA9TVsSAnZWagAAF2AP/2n/MXdeJUwUfgBqucch\n6VdR7ciJTZknWdDqvjEidk+Vt+Ns7KiVFvZPdv9XJpZbX7eTDGmE0bOZpQgo\np2Pno9mvm4NDLPFLSjM0CpQHxfIrt0R3hV+x4VSgKbLqStDvIsMHcPJPzZPc\n/F70hQ5usJiwT36PFCO5mHhp7zEwtjPcRKSRZnXzveICnGjnRvdsuHEfRPjf\nmGpkbn1BUlO2ohn8vdD0CSwIElkON81bJxEdMUzmctMC6n+Seh6cE8lAR360\nyyHyNlDy3VRUEAAdaFkDqmcB1cU8zSewf8c/Ie6S23xAdQ6fRkw9hxyB0iJr\nvXk/mbr3wZN1mZxgYmyJK6lK+Z2JXhm/nite9jc9lgf31CkhEOZL6nBksa6s\ntqW1NPgj2PVrKBjw+aSGT/7dsUcZR7fN62gQAANWJtuLP4j7Dy5HMsaLGqIs\nDSCfbEsaRdvkyciKHgC1FxW9WGhnVWFsMt1KHxA85bn8FjjpKFz7jJ3YXwo2\nJIcrcVh/2z6ZrPdYz+TYe9dq/bOmXXDQ+Xtu8YAitqP+NkxbalzT7SWe/2vS\nnrkTj03EZ3JJ6fGYuspWvxk2d8SZS0Mo6o7z9CmvUhyPn5qb+y8cEULtZSf2\nuO8T7UJmeCC3Ht8mtkKU8PfWqSYzt4NRtzeC4UsUTFRK0M0VCKf++++k1Fhi\ndCI/\r\n=Kxto\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICnbF+O+KLihh8/mhfzXLBMemrOBTyvITHxcT9/qSLk1AiBqZ9zLBGJKIjZgHoidaPSvoIVbSEcFWkRlvoiMob/NtQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557127789501_1557127799855_0.5211710286016751" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557445012701": { + "name": "puppeteer", + "version": "1.15.0-next.1557445012701", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9a2fb2a0d459acad6cd09de504b08a2c9e845b8f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557445012701", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-oR3wuTk8sK+GPUrZYXb/V1ZPkhRZw7S08bZ42d0Gk6RB5M4jAxIs0OHmnB4oSY57PM8wlj/+tI/k5knETsUBxA==", + "shasum": "5aeddc85c81b8b2f1a9a282eb6cbce08c097ca9c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557445012701.tgz", + "fileCount": 72, + "unpackedSize": 739058, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1LmgCRA9TVsSAnZWagAAvwoP/0100SACBnQ7DebIYgZN\ng//yg+Vh60c0IZgUyNfbwkY6N7JfnwbSsbnWubI1KtCf0L86qjvjdEkR9RKE\nd5So4m2HvFUFliohDjGcEmL6Zxq4Uc5/CFnN7rpdvDtJkHIjK4dPNyuSTqVM\nLgbNUzuULGwCctNuf8UoVu1446TpazwdohoLUSoSyXUpaC+fKEWZQfaeDyO4\n1clyhnWYhyy8DYtAuLRlwmKkx6pOOuKH1fBLuiiehw/eGiS4UZ5P6bgKCKqN\nPIs3cSTKauzTMRPA3xtjOC9CpW8w2W39rD/nyMkMJ64SOOYzdhBgZzqLJW0J\nHNTiPeX2FtqoJfaRpFsGW7mtDv0ZoE7knlr3ywvH4cSk7jC+0lsGDGcBbAf8\nUoZftZq0WzyascFP57Wi7geQD+bkDd2eMesYQmAUdZpHCZlD86KezBC8TSZD\n0PIA1bzJodV3RW/ZO2/bxNOd51ybdu5bsInsnnKDhFwx3emfy77u5DZjunWT\nyrBRVsPEZWt/Ycssh6IUPL2QadNG6bie+sON+UjmvvjohEcW1Hgm0vNfyE3O\nY9ubFn4q8sZ9j8A9G1SGTUU2Go5rDFlEOqoJQ7SzzGamTzX894tA8G8qCLnF\n717mZEo0Z776EpVZHR7XzAxTjFnEz2UdS4fSrDOPeEWo9eciDJv9gVkxFdsx\ntx/M\r\n=1T6m\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCF6Zr7kOlbtnEN8f01/S5E26p2B3lxqwsYhvgunwbEgwIgfCYf5Fl1Kbsv1/llJOjbJ3zjkjwoRaOQegsx4I3a1oI=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557445012701_1557445023610_0.030553840558409817" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557447806775": { + "name": "puppeteer", + "version": "1.15.0-next.1557447806775", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "ef24c69c624f080ae04f7d29345d50a340f31c61", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557447806775", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-I594gkjX8eOONdmcOT6zjZFf7yY95iOGjmOwLTBt9OdK+cLUGn2ryauBbKxEaGdbvzcZTqUen6egmUofByLywA==", + "shasum": "be31c4dc815a912570cafdf37277fd7d1de2ed46", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557447806775.tgz", + "fileCount": 72, + "unpackedSize": 739072, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1MSKCRA9TVsSAnZWagAAjWYP/jxZJSOZ17G8tpF0+hP4\nIkpHAzKYx/+QoUGbDjRV87Lmfvmj2NU5LYJ0xGnXJfF7u2KdJrPKyZGbe2YQ\nnU3uiVJf5HkHo2N7pWiqOtkmA4/x+Ur3w6Bp8WBGTrWSviu2O6sckULA2UnD\nfo898ReSGw5PqWE7UFGmB/y/WgIGijgz1na2GV658mqhbERtU7hfMqxnZQsg\nCeBFDhTSOQH7gRWH0FvpCdVfTTno15IG/nQ3m3/mLic1wo+gCPA8dZcdibSz\nf8Gbhm6pj/mNx/C88lCbTJZP8cz2irBvMIQ7q3dTP+m567aOntKEmkaCrf6U\nRND9uyFfjKOPGMYy37szxThkTAOo+AOrK75Y8hhvdmHb90jyMIctYDRyf+TH\n8UjZCYh+5tvb9Sp4SwoLgMKt6KC2Y1GE0gkcnUzoUbyqMwCAA6/OCjk/Lphw\nETwTbEIn214GUwumUMMlQIRDER5bSo28jg6ECRVAPi80NnyENHQTUTxEOuki\nPR957jhbyFaxJP+obSFnCg4HgQ5Z5rLT/sexu02n8gMhQ1zKrjvIdT/BubWy\n2Xr0sLKv09jcqSSXNDX47xjnpso13dY5Vo8xZZYG7NHmWEYZyogimmvQ19A0\nDTQSba/clCKJLsw6YNfr749l+Uv5EqZhS3SfeLFqozfQQKHhEcaDt+XgoJJk\n/e1e\r\n=Z6WQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC6nApcMbK2GHdZuFIa+6q0UUbOXktXak1NbBmTP9UF1wIhAN/Rx/Tql/O86c4bARCt3C30rviHIZAn4DEdTYyF6hXk" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557447806775_1557447817864_0.3260627867050274" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557448609535": { + "name": "puppeteer", + "version": "1.15.0-next.1557448609535", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1516e0df212da2df601cae4a5afd26acd9941aea", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557448609535", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-lybObkeHN9yZ7svfUHHHilGaC3ty/YKnw7hthyyX84WYY8zY9EoLO74ux6D2Irs6zTedUiVICwtNb3LrwMO0Cg==", + "shasum": "0924f2e3ca634b7116574a37cb555adbbc2093bc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557448609535.tgz", + "fileCount": 72, + "unpackedSize": 742554, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1MetCRA9TVsSAnZWagAA9jgP/1jmIbMiWuvEvuwCBc4E\n0STVmRFXge02HfwS0/1+DynbiUROEfAA/k4W7yi1+FnWZvGqX/6j1Hu5YYA2\nqjafO4x2XghlBHLNdHyuAWqyhAj0doMG+YMVxCHNyAozCqVxvrKeqUypBVEv\nqhT4sQ/DVEg4lqJW1H2UQa3I/zgFTSUhzWEhngGqhs2+F2ayJ4X88RU6VyvC\nJfjW2a/Q6Jqrn6SORFkSV2K2zo3SbjnENqUg3qdAU9jsz6xHdWrWSvMikLx6\nh5emkwXHEmDAD4dobBhg7PGLh6z7EhT5uWneLtLJ0QCwc5wEgQHG9BwcOE56\ntwsy2KCWr3/r5JqtaqVqsKXUbsHcm2VPtQDRXXI2WhwulJVE8fQFp7B8lawF\n54s8PLBq6C00sCcVMYKuSEKhVoNEg/zVtVcPgugtblwwSEVZJy7WLBbkezUs\nb2IoR6G4DzykSHnmHK32o9VrNg+y7flEnPvDDvsp3ZyXKJCKAlWCxCujX/Nv\nlia1aoSl09kQW1IBUvHG8lzzM0XYi0/lEIBLfA5fqDzZto/QfKHZRrrdANP1\nOBGlan8MLbjRp6WoPYWd0dxtJHLUI3sXTEUqYyMQI/3qbknO3tuqi8nkyNC6\nN3P5K2LwEb7h3AP2VfblKuo+jQwnMANFlY4ZPwqT8GRJY74GLflpFOoUZzYr\nXjO5\r\n=K5f1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIB8Widhp9NazEtYnWB4HdmIobBoQ21HNhZzylAB8lntyAiEA+wuunlBN+eQfcaB63CapHzOJvztvR1xbppeQ+/WXK1Q=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557448609535_1557448620139_0.4257252516374259" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557449360739": { + "name": "puppeteer", + "version": "1.15.0-next.1557449360739", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a0b54f041f1ffca888d422cd7f7b453ebd18f96b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557449360739", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-cKrh5nDwlRCJgsErn/cJN66FYdErMq7ULd8lEOif36BJ57U8z3VXup7M9/P0lL0742dDtGm/Gt93WOslDhAMoA==", + "shasum": "1584f54a562848b1cb6d96f6ab082037c4a0cab6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557449360739.tgz", + "fileCount": 72, + "unpackedSize": 742554, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1MqcCRA9TVsSAnZWagAAzGIP/js5NY48SlMwdffvakpF\nqp18aScuiolVYlZUedBzOgX/09jaf6zi8CuVpzwaHuJxzPy2ET1QDA+Dsioc\nKxok2i8kkFiHwfS0ksCFdKj3YOj10VRlkmvOPRvOBZ986ikdnt0IhjyyapAi\naYfJKE2qsv5XeBqnu9b27RlZZFMlegjQFdfJ46qHmSI4rrXGl7Bz/dqUzKL5\njxMk0llSMcFgW6pg/Vavl1pQ4BRp7xt44H63UYZjv5sWUEw95gg0g8Nc2dx3\n9rUb1dZu09Y+LFebXqwtHw3Rtj51rdm9LDhvk7LY3+/hdv08x9FiitM7MRah\ny079NE+YcjIhowDpdn3TP8ttF4MPN+4slomg7x0sYHrdfMRjsrZ/efQvih25\nRvSSRi+N/icDYnGoOx9fq2rolmdNd3CBy9mbbeRBGj5iQsQDb8Sk3Msz+p07\nP283rDPh0IQa+H39gvNVEbM481VymNwhJ6/Sr40TamqJZOAbo09M9tQkLVNS\nO369fHHt0hSUC3BaXtvXfSIZWKnmbKIHyQZo+Qm/kVf/mPyWTxe/3q5Xl2eQ\nYIUlH0bCfYOd4dQRtH4JKMByqYu45wEqnGxjQbzy4uhEO2l6AOrJbqS3ZbMe\nefmzkPsPBtkMHP9NV8NenD0zvPRWLgIhVUq3MWqJY0Xot+h2ZM/0fKchbx7H\ntNbP\r\n=14hU\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDnBazaYQ4nNqGF0Vb+4+faVZO/I0iyGuImeblNtYz77QIhANS3iMFD6HBSgUCLwMFrwO4Wpae5F/vkWTNRyJCk9Mm3" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557449360739_1557449371633_0.12461473024166247" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557450628002": { + "name": "puppeteer", + "version": "1.15.0-next.1557450628002", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "b3027a6e1612c7f6cb28d299a7d5783eb345aa6a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557450628002", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-FmjjZIBArvBrugsu9q7OdGzR2ANgBLnJxQeB/L0ARtz+piWdlBV1G3fXCzMiLPMocQLtYyyEv1n8NrizcB4i6Q==", + "shasum": "0e2efe4b8eccb9d816d11ed8875f644b4f1cd12f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557450628002.tgz", + "fileCount": 72, + "unpackedSize": 743699, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1M+QCRA9TVsSAnZWagAAtfMP/0GLAn7is4gX5ezsqtOK\nQEMyaY5StZz4M+/b64VtaUJTBn7pdDj2aHxjHPcsNHB7wRdlivufM/8amf9N\nhBXTJoDJvytwgBupZrZHNsrWHfUqBVI78uM1+fREjMtrjd0TLAgPH7Zx3za0\n66e3xoTzLSBd1i2sDEyR4qaz3mTf4ElZybLQQwO1JUmHIP5dQ4YdRKT6cKQI\nP9Diw2bKS1muWs4FEGhuYjgnFd2IkqFaxYlpIeK72XCvLbfb/tqPzRWN+DRb\nGHBBObzMecZyDL/oue0vDfnTNy2U4/55Q7/XcooM4GzVyRz1UvsyNf0N1pxH\nT2QB3aRTmYX4P6coHdgSwDtQwFF5v78q3lku4iLfhHXSDwDRDh8t32myW7+v\nKlaQVe7inleYH49Wpp9r/zQXCmbRt0X9utQ69JIHupTlL32d1cG0pAykE4sX\n6fCH31QqtK7aZ7+fV6JIBwupp13ah/AMOVL2I6NCJlh55rorN1dqZBtZp84U\n4yJZmpB7kfRB0fQ+pJ6VrXG7LSJqTZK/TE2GFr5oT5rL0aVMLMqtSmqkVF2m\n1seL83vzTPWVVspiC2Uv+0e+HbqeZk6T4RFT+nBk2Ds0tqQtgb8PNuFoNLdC\nrBknYijfHZXWA4kalzqa4ev3RSCtkNr4uHYEgcE3c8s1+4Ot7bi7ojo2DM71\n+E3X\r\n=H2zj\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDdp8DFYbD7twP/K3aKEMr9jtW7dZ1LxnOxptrYMcM7pAIhAMonzOvyBvl4AVJoU11lmkl1TrJairWsRBJgrNVyTQGf" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557450628002_1557450639419_0.05406222437189889" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.15.0-next.1557470832533": { + "name": "puppeteer", + "version": "1.15.0-next.1557470832533", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a3cb16308cd264b1cf1a9109931aaa9c6d626e1c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.15.0-next.1557470832533", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-rapr+8+G1jsww18LuEkp0SMDx8sclGknDV9VmUSMnoCnSuci0kGHRxvqNEZo1wDGy+TEYY2xEWMFF9Xwlw/Fjg==", + "shasum": "4d53be0e1569b1a6ac92d33a47679b803b562f5c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557470832533.tgz", + "fileCount": 72, + "unpackedSize": 745375, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1R59CRA9TVsSAnZWagAAyr4P/3+mVSouA6TAP77kEzC6\nSAMH90lVoHa8E7wV3xgGADm6bYpdLWs6rkM+DIZAXx2DBdZj5bMcH0ikEw1O\n2VtADumbu/gE16k/3P5pmjwEAa5lVHynOFwWxjAKiZv2aAOubw6lQKHOJ7Bh\ntWth/lhlN7YNxONxAFxVcm4Zz67z72cK3hMd4T4ykeyqk3ZmZox+N0kauubl\nBFvUovpCLbYzTHXo9R/+pWRe4QRUQ9XKHCu44yo3Wq1jywXmofAFLbniinJK\nJWsF+97U9kKiQA7k5SR58twr4QkD0fymG48dBW+ipFaiIfaz3/q8Lx2LyQAl\nPbiXfgwkHiDzI/0BE9LXqlrOI2ZpvUUc4QTvMx4dvnOPT2PE7Sr1jFTtEWao\nG5VU2XTGGhVapWXzMqoQyhsQUAGC/+13GvRctPEZLc59tDDr7GUVXLZVmdRI\nMs4wF4hvCsENgHK7wNbpmaeNClnlj9El0LxIna5LqIqKlct4h/YbjWdWKLwd\njOI2LSjDIn9SKLfp67eS2kzFC5qeUtPxW/ArMNBECujKAcTr7ZPJWn0Xazgq\nE5NVkQVOYruit/274C+wxKaeyMNxu1ocHot1XkPSVzd5D1KsL/V9hJUqqFAK\ndfCOex2sNATOjIU/XxPS2SAKk6Q+AyapakBJ7CDt3P/fZGEkhuInFCkYNeAE\njPfX\r\n=1qf8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFmlx/9Il9Xsy1RMhJnIAP+DmeioV1j/7ps22nzuqBSAAiEAwZxG9FaWNYtn22DxQu7minuBNBCbAtOAhCQXlAVrN6E=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.15.0-next.1557470832533_1557470844697_0.5701105123334871" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0": { + "name": "puppeteer", + "version": "1.16.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9f2635c4ac41281bdc471e4386c05cb88080f01c", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0", + "_nodeVersion": "11.14.0", + "_npmVersion": "6.7.0", + "dist": { + "integrity": "sha512-7hcmbUw+6INffSPBdnO8KSjJRg2bLRoI7EeZMf5MHdV5kpyYMeoMR5w8AIiZbKIhYGwrXlbgvO7gFTsXNHShuQ==", + "shasum": "4b763d9ff4e69a4bb7a031c3393534214d54f27e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0.tgz", + "fileCount": 72, + "unpackedSize": 745356, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2e3DCRA9TVsSAnZWagAAThwP/RB6v8C3mTuw606/aY6v\ndZOMkeMbt9tc+fwW6VOmac83BaX200pTq/W3CGzRATh9UCsd1b8X8cNqNwqH\nzWl5LL943EN4Iow1wM1dQ7fTn78TqEocqUOI+ir0DekBAQuXBBRbh2zuhUM4\nwYLufJ//yPCk/0cnPB58uY0Q1tQqah+TjKNLz9zNCyDZZeeXeutEvx6Rymhh\nx9RzkwVk3dWLzoPqU++NVGWS07N/1wIp5Q9VrGjTTjqyUzlOLvyCpOaNjr0R\n4/jTnx2Wk/psxc7Q7G5/PfE2y6kkz072mcaj+RW3oXLQdM+CamSp7NeD92Nr\nAIvYS7BY6E+hZ56maiTgmJ2DVSYVkLgOe7dkZ1cQR45IxxlaTy63iuqKJzuy\nD4qCbRKsZBiMfdiGYi/1xj5qYdbbdQ3t58bze+iNWk0lUuq4FVx2ImzWOmX7\n6ttciJb82S+iueVSTyVHLzotVC0jjqIsSDyichghdD7qi7hdFce3gkNRsme9\n6Q+VM16GYkFH4D8snDX4l7JBncttSeSvszM4LjM9/Coa519QKN1NEqe3+QLU\nCFErTQme7gJuAIqwOl9C2J5eB3Fs0vy8IIKpGzQJbfinD9+oTqEZLQTBmKHo\nK4oo36Ri05sVNYcTcPftU+OYgBJ+id0pMcn48AGzTc2NnyDxo2CMyg3HwaKG\ntE+T\r\n=tV6l\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCGlsqoAXTBzPBPtjdjgSjRNSQxK77Dfbt+n+CMknjb2QIgaYonBe2ADGFaRqkEvXwgw3msH+HFwtMWN3UFnyyXb8s=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0_1557786050272_0.3933401430932466" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1557786223072": { + "name": "puppeteer", + "version": "1.16.0-next.1557786223072", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9f2635c4ac41281bdc471e4386c05cb88080f01c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1557786223072", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-3f9Kmk8+oqzvPrx+LeX77JNcCu77JHDOFWgNG/uh/MNvzpYB454YgFRvc62wYhJ40TAtTD8Dfr8k/XYSmOXmUQ==", + "shasum": "216dbedf6604a817f195f18ed8634950c2b53447", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1557786223072.tgz", + "fileCount": 72, + "unpackedSize": 745375, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2e56CRA9TVsSAnZWagAAJfQQAJTNvb1aL0LsxNvsVKwc\n5xNvYJv6FZmUVvhhBFiM576Q2oMxfevM/pSkTyfYfEhV4dXGEHTSgie0/2Z/\nI5YCw9M+xM0E9cEWXNdYPJKrZ0/lhkup8OfHB83wHHxqak9scolw2vv2fu8S\nDlrmp71HMI53VHW2MR8VmfHb9OeGFA1OyR67rClfgNGGLpIDlY3Bk19tqnXR\nyjwrVP9d8FJM0p/hz9sqjXuuGpSPCIbOQdlF/J69UpOdwbvHO760HrLld7Gg\ni81IxlyTxqhNvgXBzy17snWEWodFBsac3fIZCfQiPqgK9MbLUPC/u7/KeEK1\ncy6VPgpBiZ1F72yYMvAnnqI5+Daw6FaOr+mxfbgi1EqWpy8L6Sz5RKer7dAv\n/W9pIdeBpCQpKkCqhSxi7hfzFvxZLyxxOIaBxNYR4owBjN21I6JPX5e1xV/c\nxsDRBsLzEDlq4WN0yzPLfIxHmVX8QxJS9JsMSZpHgwTIn2dwG9uyy8ercLzd\nK5KWb0AEm3XRlgEEMKxswp+g+tMGTmFOwwymebyFS7OKcqG/rhv/UVGKcQmy\n9ETu5S8qDoWipX1wlE3hmPdhEGaIoKYgESzT6MBO6UAtyPN0rBo7UuGJJu2G\nMrNZM4zROkAjRctIUHNAIiTulhpZY1il2BJCFBEONxeRDMz70X0l/SRKHg0x\nV+pH\r\n=Kc7A\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFwKz1mK4wpdLy+vAr8prG9Q5Ya2jlv3wlDi53UjRWesAiBRhztgfdDsw31dXtTSAwD7YEYYh8fjyD6oWfmu4GBlGw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1557786223072_1557786233772_0.6566865359770921" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1557788139173": { + "name": "puppeteer", + "version": "1.16.0-next.1557788139173", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "04906494c49dab462df62260f5f1dad73937f034", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1557788139173", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-2MhqYkn2KyGP1InvhasJPZx5KYlZOERzeRsSJztYo8HJ693trEl+pea7ImMcILuA2n9UWopjXkJbMaAN7AXLUw==", + "shasum": "03865bc4697d94a74595506e870f2fd5573c5c9f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1557788139173.tgz", + "fileCount": 72, + "unpackedSize": 745375, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2fX3CRA9TVsSAnZWagAA9UYP/37HLxjNlOSDJV6GYPfI\n4Z0fGn5iKFLm4Hw3MP/icsoskBPZIYQOZyGlqiiMX23kZ2vGFEPcIS27KT+H\nYH8b+h1qjTNaSYUqMpKrkfy4hGdaZVjA7mFLscqXMoDcq2tjcL2RI6SmaFHZ\nLE6CtiT0Cpra7l2KvxF2O+kvjQLL3V12ROaOAPBZDPYEOs1QmTfLjUYcZJ/e\n1oTtvoQqdiypd+9oFDBaMO9BT46GT+qdSem0JH2A9iNd98WSgrjo4obcBUFd\nWEQyDkvQBDggJx05URp9a2BMIGnyA/i9QKMNg5YS/YauP3AO08xNwAwlq6BK\nRXLmnyObmCslZuBlf3GqCyzMDgc7Em5XHd42fqN6dxiSqRB9xitU0A7tDlN+\nn58XEGkOKHvjqNVLfLjD5jBk7AWl435f14KvtHUzo82OviPHZbTzipJ71GIJ\nU8ApBc9Jvxv0whwQCjcnhr8XJemcNvmg6x47tuAfuWXSiUlRw0BNErlM+yNF\na2l/q+0+CrKzbVhyMr53Q6Wy5XN3D87gf1YR0ff3K4WJyOwdQTKsO4LKBfrk\ngwhKkQ/+k5MqR6t6iMPd72DXcAX9CJdSQRt1Ght0JAFVTbR+DalIXcqQ2z5k\n7MiFpCw26G65UpOyf1ksZ6XlMnYcGqkasHOTPGqrhrcupjPL25Gqd0k1aXkV\nqu7u\r\n=AnU8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFgVqvtcOOfK6MAe1AoTybY6eBnY6RL50arR/ChTx7I9AiEAkGVPB3tMcazX+xQ1ow453aCFCZx4FiGFNUiOfwXMhvE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1557788139173_1557788150597_0.975410116481533" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558173496842": { + "name": "puppeteer", + "version": "1.16.0-next.1558173496842", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8a1c2495c07f9d240355ffa5c9bceb0e200cb136", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558173496842", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-SU/NziS63VMG7dpldEdlv0W0EryAcJhrpxIdpWQgdqYY+XgyKgtf6s963YxIArwOnw5Rt1LiE7Kf40voY/GDdw==", + "shasum": "6d7d04b1c3e2765645af2e3620b34b0ee8dd9786", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558173496842.tgz", + "fileCount": 72, + "unpackedSize": 745133, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc39dECRA9TVsSAnZWagAAw+wQAILkKlx8L3dlqh5zc2NQ\nKWIPrTsVpN2NA8fVEIdS2sxGgOuOesPUUTZ5rs/UVQe8p8U8K/Y/U2VUn1I7\nuZr0SqV3odURFVw2RAQPNqtsJH+dn7dpVVXclQUtn2R9zZRj2C+9grh9Awrg\n3/ppqCztcifraW4ZC0Ix8DLj9D+dnP0b0PY8tMzq6+4CWN7fJ28jGejBUwko\nyVuAQoa4ikCUM/CpPQSv+BtvkCXjfznJEj9EmmJ4laRwpYdG7aMww1UlJi+f\n6p3QLN5Jp8JMeijAMEnxcNnqAxsbmh7JfPV0IyvtTTQNMsoKxZkqypiEznhs\nRNpphKAAc7c86Yad1zJl0Dh4dtZQovC/Dk7B+ZapS9cHWkEY0TxJq3TfUVwn\nYpz/ZOnlMwa+ve+Ev02mKevxbBhHh6NVVwbssgGEbUscJc90RukLd6DNW8C3\nXQZxFYkfn7TEvkAZW6qpWRbUm1PnfDiZPykA4HgpECJ9qsfnnJQP8RidhfGA\nzVVzRYyWCrGpAHSa/tDnTAWLcI3H8pJq9Z8hlgLXEPxm8vwAv7aNbamMCtS7\nDy87QJ3qsRB/+ZXbHoLHFvZZt6JwCAOuVtF9rg6XYL9Ke6gds6ERRdD1d6iS\n0ekfKWUyJ6d+Lyhwyit3AejsDhJpIACy228vewC+YbeczFFd695EuO6sxFEA\nvvWv\r\n=7B97\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCxEGFPnKyMrbXK84mkYlQm5xm7+Xb8tpDvQKlWUtAHvAIhAMF7vOfQobYbD47hMSY8epow2GkmCAFIDL3ZTi/ayqCh" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558173496842_1558173507569_0.8196092488318425" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558177963258": { + "name": "puppeteer", + "version": "1.16.0-next.1558177963258", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3f23bb022e7d8fbe9f7f490e42640a0430ae09f9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558177963258", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-X2yF8/NEjlv/II+iZ8ELacr8jvebhaPBcJb/4h2+6gBApFYx+CGITNNDfTh4p3i1Uy113UUSzHrYoI8kyfeJJQ==", + "shasum": "cb30ccc336be6a25079178a06d4f61006a105f1f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558177963258.tgz", + "fileCount": 72, + "unpackedSize": 745133, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3+i2CRA9TVsSAnZWagAAk/gP/1+OtzkWjzxyeZm/jEpv\n7WtbC0oEPyaIBqw40MwckukOhg+xdJer2bWc/+QZTpd38tzVorGM0IK6g87S\n4+HCJCx/v7jcEq2xhu4QU+BtnWAJzLQ/V6Ig5yz72At/SVC0OwZdhg/KKxpi\nRrw21Yiu95FHPTWLUYUBwMce7izt5raGJtKHUfv7q9Kc8xsBwwiEAQ6+tk/S\n1PED/O/5Pi9Q1H/WGnqBSyCKz7mZWATxSqBCmdYy+OkG8T+wJJWatP4mgOyc\noF7bXyU2ZOORScSnlAZZ2vg2EV+28we9zWE3mC1YtSrVLv64tTI7ZjTiYKBH\nYQCDVO5P980+hbe2ROSaFAZ5742E2tRzmj60nQpXdPfISvfN7ymOu2Cu7DPF\nlXi90t3vMrBC0PkRmzk8rxJ11lVtfwnt0nG7zf/qd7ni4y+ccPh0oEFax/cH\nNLG/OvWffyR9ds83IRoniTLD2eoZAezSA6lZNOVG9HXpp6vSOAjcfEq75Ouv\nbS3sy4CzJNjbWbW0nQpaZfpljBec2sSjAULNy1PXmEYQplUFO7oMU3J2waHt\nN3ubb7srnJ9pAvOLaIeqZbotp8SpxTPLgGcM6O+U0yWqwd/lALN2HGTP/w3j\njSWp1Wns7vTEC2ZuHWkq+74s2Joc807ezEKa+HafPKXhLBVC99OAwV4XxRNJ\n8Q1N\r\n=43V7\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIC+WhUBCz+tsBx/GWYe0Il6pCQirb7CjN5vh54CThNIuAiALJr0gBRu25vPcEVuwW5diz/5Mp1uwZCAlmVK1FpwKhQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558177963258_1558177973764_0.31219566916867914" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558189408000": { + "name": "puppeteer", + "version": "1.16.0-next.1558189408000", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "60249e0bc2396c8ae3a4f37b4aacf592570e17cb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558189408000", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HUQSP1grfeyDq2wvPwr+LXWRMch8f1UuNpAHEd5s22A49RUMo0sIeJX298J1O+mx3ozBbKCWLgPxx5TOaK2bCQ==", + "shasum": "b9b274bf0f2c2a53d7b69416adac958beeedc90e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558189408000.tgz", + "fileCount": 72, + "unpackedSize": 745339, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4BVsCRA9TVsSAnZWagAA2VMP/1rayvGGW3198FQc369L\nBVBKVkBg+2ymJok3zq03DPpB2iSB5kECG2odwSlYDbryPp4Q5GYdfFIFbG91\neCh0ofRumQbDxhho1nvv1VSqhkqXHyax6nxwTCL4iybdqpMMcZft4PUiA7L1\nL/s+7Rk0obvZiknSv5LrubsWkhPwuqCU5QmBKq+q4iFdO4Z8J2PgEhwpFyOT\nmqEkTe/x66omQGkyLvXz2na2WcUCu/soNXDdcr8fQvRnGaKXeb8Hc0yDIAfa\n/CHdWcLib4EkxxJ+F9utPM5vs7B6WgT5zZsBIBE7yWA9zveCynmETcK/dV5E\nSXRapf5yN3HlAfR3ahxalA4nXl+ldTNugLLmh0i8WpG3Y10yDvU8WpMKl0jw\nqydeql0eTItfb8iRMlAel1fhuTR0hK02AvaqCDypM772G1DJI9fuzplFIa4T\nXXB7uatTy0nuB5YEgd7qxjhSFAReMIQu59dkZ54OO3oBCKyXydxjW5BOoWXf\niiBD4O+sVtTP328w7Jt9ouAK0EgpwJwSdgk5Hla9kRIGDXjEXYbgmOFnKVSh\nAwCsb4JjMVL85XKr/o3e25aMQBcbdGjWria86/rivktCIhoIes5AdhAojJUf\ntLHgHsNuJcZCbtzTkv/JfJ5tyqZ4hapHubOYOS0QkxDf4dOafiVKuNuAU7Ua\nLoMi\r\n=2ZDI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFmbLiKc6qw7t7455fI2vWrtgLRsSaqqKZrLL/ihOmmJAiAyrSwJqGAH/Qk53vm0wsZGWCTaUtNBMU2Ta5cM//n25g==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558189408000_1558189419316_0.34768967243082405" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558275858428": { + "name": "puppeteer", + "version": "1.16.0-next.1558275858428", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "3f19bd57a593d07eda45297bef52967b171d0d8a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558275858428", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-oCTh/XBZYThJvMDHqovGkVuNqNj8+FFh04O9u+9zb+fcrDjyPZdNzNnjdhp8/YzRnq+bOA9zjboUPwPUUY7Zdg==", + "shasum": "0c291a447f725f612b79148b1a16386a9d054d87", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558275858428.tgz", + "fileCount": 72, + "unpackedSize": 745339, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4WcdCRA9TVsSAnZWagAAnPYP/2hvJkKFJNpfp9CUjpkC\n3JKfBy8G3yLrrSrH8RDs9eWEcAM3rEAPvUiawjkAYLh7tsQyLaO+gCzQvJKv\nvHoKO27gtglswtARG+FlmJcdF1nTeZV2XPb4RLw+9pGtjsVvbH9blfDcrZhc\nypCFPdcmtAsHTJ4rxeP6OyXALjxk4NbxGpH8brUoNVTKLTOlFSIVuJQUQWat\nKUt6Lbj2GBZACl7BbqpGoX0EjMgTdmh+37A9Wi3rgXD8S4uf6gBm0nngoIbZ\nhUqo2pkrVv4x3UmYZD5hsKI9xsixPhKHPG83L0dMRh3tUH2ftA2L7fXPoUdb\nSrIeXI/WGhao/8tcauLFcpIEESjLxrKU5KetADaXM5952OP9uAdoJtKNNZ9K\nBkEmQZWeyBxcmaKHEpJmH1g4uctlp5gLxIkRLShkZdf3wqzL2QSFkH7vQ22y\nmsxNq7hlQAsXmH984sGgGqW3zRiAZxuCeATe0f9Vl9Om1eocC5egQqp/cirb\no2i/G9vdixp0FgUyg1TzWwhxj0Zc5L6Ib3Af1xDqQSBliyF4hAJtskEgjrBO\nI4lWpQVuycTA2FYSSVlQx1t+tM2zwONe0Y9uuyHtDdaR8qjY/aAtBiRZREno\nAwKhjZXTFE/70+UXW3hncTSk4/LIEC8ASUOUz9D/lVA2gXdzMEcg2Vbjr8Pp\nvZdA\r\n=bdY1\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCrExosnit+KqPpzJLag6ttqi4TjByZ5DMAgx7hFQQJnQIgSVK3yjLOxcWwMCNW27eJ+KupwXc8b7s87wrwYesv0uE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558275858428_1558275869252_0.47030083433616166" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558339988115": { + "name": "puppeteer", + "version": "1.16.0-next.1558339988115", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "90a1032300ae9802c96046f1ebe550fb76c19cbb", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558339988115", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-o52YjxeVayCh0NocN2FmuUIEdy0+VpizIshPGCgMrDuz7AAKDecNnZET6wXffjXbw6r9+Sb7Eh5mmfsadmV4SA==", + "shasum": "bbab5968da7421db21cfb0ba9d966d592c6e661e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558339988115.tgz", + "fileCount": 72, + "unpackedSize": 745349, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4mGfCRA9TVsSAnZWagAAhvIP/A2vBjcIQuYt3tdZHiU0\nnBYqgmGf7sqm2gK4+SOY7PC6C8a0ooar3TjcHDQ3Flu5SXXUpkNAsmCDApS6\n4hUZEl2YZQEfYuykNS8v2Iwc0jHkYq3AE9LupuD2/ldfWKo/dpmpPkOPX9Jp\n6Y9gUlbLbAiC8uAyvVKXWELttb7VF5HIA9oTFFh8c/xmko/AmRlzSZijNETM\nLTVLlFqOHMXeZBjLDtomAho06h7I7MAJTyPN95kgJr9WvdANHDNSDTD3cjEH\nmJ4bMjUTZyWFHtRcGLCugNk5v4oJIDPTIneiSEF6LF7wj0E3o033YdRCPoMQ\nLIIfZniiDZUhHTlgcRdNSwq5QwWRJBQkReZz38XUnboyHA9CjwcQPs3Qxe2G\n0OrcJLXRjsVmepQt6xyQmr8TXWfQ+5i9P7EFG9YVtGkE8eP+ISdztmRy3JI9\nhmNXo8wOlW2m89WgqfmsdHt1ZeHgnq8w+6jLFk08XrfrCD154npey7dCEceW\nghO8DEYbv1NwfrpNqoGsxZmzgKZ7aHP6CdJ9LxJV37xQOqyM3twMtLxiVPzY\nJMXPSdFf8T1SH/GML0LymitmA2GBK3k259DLtJcndo4LFzstK8tMU8gLp++7\nmplQFqMzKwOtI9ssZDCUianw5ZIZZaLgOeSiJEeOrOaua0kB1nlJYcBg1eNO\nGjtl\r\n=F6c4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbB4jxZ9eONLTIWn5ETQp71W3Czfuws5C/E0LbTyc0WQIhAPCU9eyD078DomYcKjAa0aYcWW3i69lw2ZejJq9G/i4k" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558339988115_1558339998964_0.23817904621663555" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558449288228": { + "name": "puppeteer", + "version": "1.16.0-next.1558449288228", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "bad98baf7068cfc0212e20470e40182be563fe70", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558449288228", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0X8RCSc5jgnvHnND5Nxnp+fMrKLHoGCw5F/RKbIpvVL+jApEFuFJr7WXoH+6qNxUVYXmx3URixfFZ43jCck3fg==", + "shasum": "0079958a3a7f03d258356903c2e4517d17344b46", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558449288228.tgz", + "fileCount": 72, + "unpackedSize": 745349, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5AyVCRA9TVsSAnZWagAAbYIP/2Q2a3WYbAaL1bj1dqMr\nnHJyI59sT8Ri7EMgrue1lvm9+nvoCea0bfJI2nhh1QwRTzdhfbN/ukRqEU0B\nU61qYSCdvzND9c6q7AJcm3FWmZxf/6yQAoJtZISvE1D8/NTd/FxBQxicDnZz\nRTq06gz2rcB5cTCD4BPL5Sahr5HmNQEw3kRuelrfzbHp/5M5vJCBrCOEPveU\nY98341bSXenQIde6I3GkLAlmOLgufsscU8kOBhcyQ8PvDC02/8aah5PpjWpR\ntt1mYGyMoDPTYUN76YTaaoA49b/D5N2ln6agewvfc1WpOeAeKAa8qVhotr6b\nxUGbRVR2vhV7kEZQ69TMrIHvCciK7nQg4nhooIKfLhzQa+1sYBpHi6hNqr6m\nBEwFPETUswb1Ge+3T+L9N6rwpARbT+ZrvGlEzBlGcMgNiYIgP8d+sOAUkKPs\n4/phsHjBxU/pXSK/EejWA9p3Qn1IBJmtCSI6DFPq7tLcI+lQi4HlmNV7L2xi\nITpL0xSdwDqbKvoI8OCws3Ml5x1udULj1C7YBslsCbQf3PVERO8UxbNPeego\nW+MnEr/E/yR1odCnPEHwbuLmviKWGGipy9mK8TS3xN+XsGPLNQZbp0KnHkJz\n7Mym7GJqjR7+YYmrYDLqK2SYV/i5SWOrPtLlFY3nTk/pD+xpgECBmpO21Jni\nVchE\r\n=PVVW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC5lGR2KkFVWe5tREx3EJS3+mFJKYj3K6ARbyb4Ry/6nQIhAIW7YxDh/FUMHgWDndWQggkiTTiGLjUJBKzLkuy+HQG7" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558449288228_1558449300968_0.20814276513150465" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558469961321": { + "name": "puppeteer", + "version": "1.16.0-next.1558469961321", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "656675" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "cbecfba0af58aba78dbcbfbc78d6c84a2dbe1dbc", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558469961321", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-dFrqcfVLFHQ5WJogL8YtxJreZOMxbNhSXlMMirjudzOpfniNhT7jbBkic9nRdKZTNTkah/B+UHFWlcYoanaDSA==", + "shasum": "de11fd147020bc533dc47f4acba8c6ecec6078a8", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558469961321.tgz", + "fileCount": 72, + "unpackedSize": 745349, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5F1UCRA9TVsSAnZWagAA5IIQAJLpqu/TuBA7EGFWtYN7\nZHNfT4mAFR/MqGp1bgTcPqF4YfJRn+byfyffdq9ffOdszpYJgmSEOsY19MdZ\nS7nFeRjgo9mlN6C84DN1oj2POe9NTZpmFSKwb9SLXA76MhiwqoiVXJiLl0+5\nZXTGVheKUVVAjSxIMGAILVQaMp/UbHNgAZybdolJkuQ7P+pII+ifQ+yHnMfx\n6Yx+TEM3X7IpaUyN9GBNAz+SOygAi62RtegkW5Apbxr/LNZNm3+UcNm8H2uu\nF0l9nA49/bZ22ju/1CAasAh73t5kmuGJjc5xRUzuxzZ/VFbQsOCPmiK6K3sK\nkNsxHuDGWRTl6A6rpKpEyoftOXEPMh5/MTnroHo9yxnluCNYHexAPmIQ1kjM\n5ruNYDl7dbyvJ3d+wPCophAm72Qp+t4kw2Jr7uwux3Vkezc+pYNNO/IGZpZa\nHbdYNn1AvV9YdJ8NqZ8HfeL8VHLqP3sSf5yDqVFXoRl5DGcupYa3wxxNAW4G\nQLOKqMKJksO4slorBIGlDDkn6HJjeJE3jHVNdhPZSdRcLlYGjhBbJiBe0p9L\nUxacD+zaP8IYAzmU8JfozzrzMzjQe2pjUDmUDA4pJv1Rly5WnDEpJorTPGhv\nqKdx1/RCRGjy3seGTgcIzduvwT9Da6gNoNmDjB0kfJiOjRIMcSt96mEkT2A/\novet\r\n=k2CL\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIAkzGw5P0R1hFxpjDMXG+aJLx3t9S+Xaf16MFbdOk1mRAiEAtROfY/zqp0Z7p21fCTEGYrroOAc0CUT6RawzbigBH4Y=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558469961321_1558469972034_0.13751351427783964" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.16.0-next.1558553082812": { + "name": "puppeteer", + "version": "1.16.0-next.1558553082812", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "76b24e64e87c88a5da2fea54ca640deb41924a6b", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.16.0-next.1558553082812", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-rL0PxLSNxZj8TB5mBgkDRDDqKTGIYdmMsZuGYUnJb1pBw+iaRPsvzKcm1PoGDTkaru9LG9rYskcnzxdrgU0BHA==", + "shasum": "8bbd9dc7bfc63676150f664f9359a2190a51c91d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558553082812.tgz", + "fileCount": 72, + "unpackedSize": 745043, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5aIHCRA9TVsSAnZWagAAQDAQAIbbejN6g9qJwfY1HgjU\nRoFZHWa2NRB6QMxVZuG/IOMP1EQ82n2zo/DgjLEy0Dg9WoGmMu5faPGJ4hjO\ngcETtdPM6c8TYPLCwzr3UCSquQTWSRb9uDggNdzuQCF53hdnjwe93tpUjfkz\nCcBaIHZZeYJ87q3mqEqD4hQg7B+OmUcmd6dPc87k7KcsthdDeW66KAMpeeHa\npDpmyEuvyxcsvc9NhCaO+lfehHZC4Zy3/X38JxnB7LLLGIjmGLdUmA15Vr7f\nhx2O5V1MsHBWp7NYU7f9mb8QuyYDKUWVfDAjEwDAzp8sPexj7mPLpyRQl97K\n8LFK4Zyn3qbxga0XQMHhUY/mmkNhb9PV4r/zkkX1LaNvYGHd4SYBJstc8BBc\nNyMb4/F4VCtfB3XBR9xBJWa2+zyjY7ILK6bgz5D+2Y3PAwugln9fwIX1tgB7\nna1t1MPjiC23jEwq5hj21SH4l6DpeMi6Pky1rdBhjgz1nIduSrrPl0XoNd6z\nwq0IhUSj0pIJBR2yYI3hCX8jAqvQB547rcjnVXYTrACjMXPv76R7oI9ddYx3\n0MsI285sg6JEsNXOJ0cQi4b7lMKGDNR+8NZ8aBqy0VPAhu9/T4sN4xXkHU+l\nwIHeD1vfrX7aiNQJeHrboZ4vnkR44/s+xhFDK4husf+5X85/Iv5XAQrDndsj\nlc29\r\n=OAME\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICHqXgOQumBjySJBEkZHkQ3LlA/4+kfqz++MT+mRUwAaAiAZtXJk2KI1T1RVqOLaodetV0B/VpDr4LZp2PUVBi6UeA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.16.0-next.1558553082812_1558553094242_0.7549716838135341" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0": { + "name": "puppeteer", + "version": "1.17.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "1840ef01cc1fda27fc4d7d39ddee199f7857fb75", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0", + "_nodeVersion": "11.14.0", + "_npmVersion": "6.9.0", + "dist": { + "integrity": "sha512-3EXZSximCzxuVKpIHtyec8Wm2dWZn1fc5tQi34qWfiUgubEVYHjUvr0GOJojqf3mifI6oyKnCdrGxaOI+lWReA==", + "shasum": "371957d227a2f450fa74b78e78a2dadb2be7f14f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0.tgz", + "fileCount": 72, + "unpackedSize": 745024, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5zeJCRA9TVsSAnZWagAAeSEQAJXEi2ME9SactrIf5DEP\nZQZPigm1fv2IqPlmeNbqJe22a5dK6S69AV3rNWExrPT+TlURbqsoYNnH4sog\nIz3xyXLi4SZTakn5d1SUxqERGgPkry64epdNpUIw1d4i7/eujAe860rfPzvT\njG2zQ9JIaxJyWJ5p1waYcOLRfxDUvYNkPleOBKD+39P6/GDOGuEcbkkiryi3\nVNQVc0eLJJly8kf4mRzrwGiHMD+n+wR9M7Kb0tIIVa9WMR0oE7cy3M4rXIOD\ncM7LQdv+glAYCnJSd9AT7CbB1RSPyPImm2IZ4bW4Qub5cJRO3LpqTSNnlgKe\nLx3BDDGfkcgTCjfUom3nUadUgYndQiHwBcsoxnFjHpmcTf1jXzfL12rvyRiz\n/tkApv4Y0wn+zQX8LkeFXJzourbPNN1ltsVwtbmxYLzU2mh5rhrDtsDTt+e9\n1Ovi2CB4WCnApkVIhj+WmynEwbjO8648ydCzWaZIfgNaGImaZrbUchOOoVAY\nxkcyJ2akFkDaBVTO4HVy/8ScvdRZNCcxkF2SoQZ9lb9Vzfu7GA5Lve9xc3NH\nxryaTw8uTzUc/NxUwdmIeCn595u8fVYwlDsj/0kNya4SKbUePyM3tarmIpjT\nIS57WCluPBhv7tLxGwIelOrZEzP7xG1iGLg7U7XDsYzYAdiUIB+iBoswiJ2y\nBf90\r\n=PExA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDnv91R1pb9U+hjlCL4fdnMh4+xy40KHPOAo09z6OdOIgIgBs+iIapkT3HRF4CD2oRIR+e+nyeM4QLQ7VKpOiXQVHQ=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0_1558656904024_0.39858525718160487" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559174221711": { + "name": "puppeteer", + "version": "1.17.0-next.1559174221711", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "015e3308155e23282d76b9f846636a5c4eb4e49e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559174221711", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-vOaHKTCgjMZxVmlK0Tb/ALiVuI2dIGogvryFt/dULSlemvvMFiJig6xAis2J6EkR4hTehgOAwzOXMY6s+V7nXg==", + "shasum": "0920dc72acdebeead1b862dc8bf9bc82e284181d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559174221711.tgz", + "fileCount": 72, + "unpackedSize": 745043, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7xxYCRA9TVsSAnZWagAA0/sP/00kTj4CeVND/bpVEIJE\neZhJeJlG8Pb0mtNF/nekZNvHPmM8HzDCAlsrXgbAkMyUKvoZJtXcnm6CVeb/\ny9AGg62gzF55AnzJrxChKEAsz2tq88qkalTnaOPtAphbEXKX6KJRVAF9huhb\niP4cWe7h8kDiBqtHrRu33/dxddQQfEs/jSNTlN9SGHte57os0fIMFOhHKjAn\nppqnjPHmKUW/5Ef726nyr5PxR4kUVWRkBvfYTU1SMdg1jhrBpu6AS+Sf0Q4U\nnOZYn9/vUhdv0G7/50gBo62hOxJjjpHaPTRYUsykWnvSSR1vpVZrsGWeALsc\nyS8JuTShLbEvv3Fw8zLoI8kgre8UmHLRc0NmiaFyT12EsrJTXbxG2Y4Fl58P\nCPvTdYLP6JL5L2K0z+TNAAyJQKjHhx+EQxq8HlTw5GW8JoAPUxwaC7mVz4gD\nONukLBsUx2qv0Q8fmr9SotQ70HiLRgftRXD2AKy5472pUy9aw+m1VoWsJrf9\ng+w1AHpQvzMLONirf/kN3hqXx6p0cbp4tHMkDhalynyVBR4ZXZdJPLYpfRZc\nDyHij8mGDjpj5xl+KhA79+BE5BlB8gma8c3CcsRn9lLp94qqz6gmZJYTw8Vo\nN9z6uVY74KtuWMrq0POYaDtSXdJ6xg6MTxqdwRcfcP2Dn7MTxuiwiU3U8x+j\n+Tfh\r\n=oX5Y\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDHUAKBpLvjZp4jQjqZQXApkQ/6o7oD1Aoz8iSSEmEkmwIgLPNhbvPRT8y/vVMIS+eZEniqmpofZhAlXyjYhoYVU3M=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559174221711_1559174231898_0.9995172135731227" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559348385017": { + "name": "puppeteer", + "version": "1.17.0-next.1559348385017", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "d221c02c13c9c50bcef03ed3635b0826b3b684c8", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559348385017", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-HJYgB+J1nMvVAdqwa2OcctOYQizzj47WvIbELIsmfYA/uuqrz7C2NIl8vZ2RFukquAR/KIoIe/p227rxWzV6aQ==", + "shasum": "bba437c990e8a7b89948633e07599b74b5f8f286", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559348385017.tgz", + "fileCount": 72, + "unpackedSize": 745043, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8cSsCRA9TVsSAnZWagAAvoAQAIzr1i1Yoaf1JRVuozym\nB8m0127bAqEy0UzItgSKuy8pznbUE+fmoAskHFUkkYXqzjHxpAtwOBGAU71L\nDvrsIFxhIbFwwv9ta9g3C07wtoDWFPp+dEIxo0ObPw8NY20oqdFryfnyl1Os\ntFrjLJt9jSB+axaCXDhwF4BJAW6k3MuPndaTijMb0szoOU0iiOlYo059G9Er\nY0LA0z+TP90J7/W8N4nyhYBpPAUM0gem8K21u/ZzTwasPsoORYAYcYW/uUJR\ni9PaZZS8HON+Fgwry9h0rxP6xZoHZ4NSPDnPyB4HtN67ALQMBkook4kp47ob\nm7Cz8bOM3bxFEDhQrcvk2ZTADYy2h++35HFTWpr5+qMcFoVZx67IocxOa4sT\nDrr/ue4j7D8iMHLMjX4a1JsybC/GG0frBZla4v3yufs3i/GnyD+KKMqhWTFf\nzwqFcS2nNTNCJavmXxpjyZd5ykrkmLl/7hAQSC6a3drbFg3pJ3XsLvUebpka\nD1H0h7t3hvQo6XhXFQUREO188nFFtwzSWaFDCd3R+ya7Tk+dzODsi/Kn9/tY\n3oL9n8c//HAiYX3MtUNPRuX5KPb27PD6Wr6GKooo9/zmXE09LsIbOqbLv4ws\ntA0uxC/uvosfFXAVIKIzNpf6DKgpVGxvqAoy07X9In6eEF7aecQwKMDcagFN\n7r0d\r\n=PfBN\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDp7bNJIYmfQZ024G1w/fjlm6Lzs5r9ay5IMOO5B9ewiAiEAggynIz2nmIdtqpYZGCywqxxpWA7zGGRxC2T/u1ObIE0=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559348385017_1559348395621_0.514909241708406" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559357260458": { + "name": "puppeteer", + "version": "1.17.0-next.1559357260458", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "ac611bacac546a8a9d1a70bc1727590b89173903", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559357260458", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-P/yWi2nuAwcFWyMHXgr55AN1wbXLLrnYbDe7PDiSVzwIjro12n/HKjv8A27ek+EazwUT8D2RNVaEtHU1CcpMNw==", + "shasum": "22fa18f86fb5db8f5af5778114941f3784511e01", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559357260458.tgz", + "fileCount": 72, + "unpackedSize": 745113, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8edZCRA9TVsSAnZWagAAbFcP/0bViqfwiu3tO0LKjOQV\nNcNGusk3Hf5a+rBuM0+Rh2akj8Ikc3uat/Z7Ues2vAMNsVlx9bzNRI/eYzmg\n2YtTp1aAw+U+7VZsPmKDOpJAMVkSiA4IHdSJkE/NNX4YDBpUNlVKUqoKXbaV\nA0EiCHgldvkNbe5Gv2EyJQ7gb0AZn/fUCkxRESfhiPaL7RvwAJCzxanZs0Ln\nQHpuhkX8ynBXYo7MM3yikkJmQv/y1M0oxsf74MVtTdw8QwGJELFOCyVXwZ/8\nrTUA+G5mbxB6wlseB6mxJzQ87s7YJk7NYzct1SzfPciT3MBhyItlgbY39xsS\npcA5YCYd4j5o1VY1Bwk+TDR2+fnhbcvyJfYiPiuNc0e5EjVpby8wHS7uYmRH\nlZ4gUCjgAJTSNS+rghXsrEp8BCeBGFGK5vx3v2eY5+Lqst70lfLwmoVfkxN5\nESMoOswmcInyn49omyGOyVMJUUN11jr2h+nMMkFbJkfnFIo4QWk9CuVdFPXR\n+uKVabKwSZOADXeo7EvQaYGo9dLWNDhBbBB3NrwMRuUDvttLyGF6DpKtmnYf\n/zELtFFBvz/Y6WSslwPhfydFVvE9J0I61UhLPpXpH8E0aTLOm7FQOhKhAF4j\nzNSj93vvxCjFd2eUUaf69JCciF0DJHq8X0oNfDXgCMrPbW/65UrY6F2o56XI\nzzAc\r\n=J2Aa\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDOVRZ8MOz9m4gNR4VYvLu5HYdQvParouc/akl+LE+mLAIgVLm6/mdupbriovyCCSI1VbphMdu5YDyGejMm12MX+Tc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559357260458_1559357272359_0.7619419832562744" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559498343979": { + "name": "puppeteer", + "version": "1.17.0-next.1559498343979", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "94ff4de309689f14b2c104e99061947914f49785", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559498343979", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-sfDqXxS8ii1Qf/CU0gRv0RmOpBwiKBfBCYKbXC5L8bB9JNSeoHjN0XToJKdZXLEkIj40gPS0YKo/4LZPRHnixQ==", + "shasum": "4058566dfe922a408605ebb504d19ec3da50b99f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559498343979.tgz", + "fileCount": 72, + "unpackedSize": 745113, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9A50CRA9TVsSAnZWagAAprUP/2IJO+JFO15yrAjnk5UT\nMalMSuj1tZto22N5xCyUXvDToP92y7gw8bG4GR1UbeSXZ+BdSYwuPQSdbWwD\nESwvAoCAvBwv3yrn+2jq3ZN636b3KAmXuzrrXqjxfrVutehmNpLzmV5Z07Ne\nkUPJH8ErTgwV0F1t2SxoofBWiBWr1Pe/ZgpzisDcShofB3j3nyVCJf2SembR\nlqnDi/8Z6vKb9EnP+qQeDHZznrAZroFiYoYGzREpaKY/D9e5w0iCYJH31k1o\nQ3L229mFe+QhV3PNxk1O+/W0PWKK8J7xQ3/m7B495a67duLk+7bE2TSRvL4u\nZEV/HTtrOLe2oenAFlIxY53MB6PKFAiIOS9KDcivubGEwnT7rx9VKEeccmiG\nLvjOYdqCZKmZA96bNI/zpm85dUu/oKv57zGH3k0YjTRJRJyu+AjHY1DeRF9D\nrgv6NwbtZ2FjOBTywYCdx/nktTYOokksvnak2s1pBYi+RTeq98uD4uDeUnb4\nXf3cEDLTYw0AfyETIjEFtidOfu1BNFfWztU9HvMAKLDfZ7CTx905P/L4TCLl\nyRRjPNAR4DbO0nYRLl1CA3yZiMy0w6uG95rpsA6pf26wY51nDWwlSSSgV3zv\nxWvHmesdtROoTQcf1yRE3YUWjQq2TSeGw0msXARq1NVrEItrxr1Lab3qJ1bX\niAPk\r\n=RrlW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFiz187MaqjAck6J9C3PzntmePwgq0qbUmZ/1Z6CBTDiAiAw4y+qhQuI/MhtzvJHi8Mr2shOqTOSC6mZd5XeICMV9w==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559498343979_1559498355266_0.3605789840363842" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559599383226": { + "name": "puppeteer", + "version": "1.17.0-next.1559599383226", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "662092" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f52738ec1e0a26b904d53a1949122ee6c52fa6bd", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559599383226", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-s6WaaCRDvH+TDoOefhsBPJ0ywFNkm3px5TM19aTuBQgzZrns9Ltbi25T2lq5uhqnCVpbi80t+YXglMbjMc55cA==", + "shasum": "c91ac8216b50ea41029011c3c8b94bd6365586d9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559599383226.tgz", + "fileCount": 72, + "unpackedSize": 745113, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9ZkjCRA9TVsSAnZWagAASF4P/2bbZipDzuCy31XUyxyP\n74DnscwU4J35kQ7BzZhqdigQNS0ebpODT1cMpl2KQNz/TsXqG92P/MvvwA6M\nWLJVKRAGJczcjha4MkJ300kSWLBMbQ369EAYrRoiBZovhL3FMVk+EnNPDR1t\nf/PaPzBGC4oFiCLM4oykJ/YZOjksFXREJSgUNDPGunlJxA/b6/Mw49bHpgWn\nUKjEXdIfKoPH5pr1EWWVvspj0x876kjhL4JaowM0+C8fETDFDDrmFIUTKIl1\nltsXUvETVVEI9E05Sx3Q1xyswXlFCCSWTCLDDVSiNAQZjxirkCz1UW2iM2S8\nCAqWY6IvCJIoZjLZNZok8da1PnmhVIYht5df1evmvN9BB8cNkpKTHNTYy3R4\nz4fdtobfzixsRp87Wm5D0QswWDDE2Rj/5bjCT+NW3j3Hw5Vq6DciUgu9YYcz\npLTz89O3d3dMXqNAwV02jeptHszPXRRIGLjVthXcxD+59t98OBD+AogJkNxX\nVFRrrHhJSHaLTTnYc4Uu1i4gWXfjeyFnQuGy+0kl5Aqr9l1z6Y8z4mUErkp0\nLszIZJYvaQqUWUaIkUwIJTBe/B9/Vr4jJROByCDY0k5IuJtk4XKsD98TFtNq\nqtqBWyUqtDhq/kOqfGU0t2ytO0Jp0d3sJAbM+JIp9Vu3ykOk0P+RlMOlKrVT\nRKpe\r\n=77ha\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCDYtgTsBj2lKRC+7IzCYPk3y6ZAr0pxTPsj2zFFXBlBQIgTRch88K5SKrPMjm3r42KWHwoTb6EdZ+omg3Oe+k1obE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559599383226_1559599394792_0.6904517899009919" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559671868980": { + "name": "puppeteer", + "version": "1.17.0-next.1559671868980", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "665405" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "78d5106dd9b8a5a1d254316362e192f2322ad0b5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559671868980", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-njCEvUaeiur0c5tgjJwB3WoSNBofBLZ+GZqYyBG1W1n72gZzP2Nqu4hbO6GCKUKqY/hQdJHBirZyjymJoN1ZTA==", + "shasum": "2e2d32bbb9b15d678d2fd34d292a149d229bd2aa", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559671868980.tgz", + "fileCount": 72, + "unpackedSize": 745113, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9rRICRA9TVsSAnZWagAAQ9IP/1a02D1PIJC9aSueDSGD\ntK7iBcoDTFv/g3HR/PdfKw9YuwSjoeKdjAsrLQ1KsM1i76QH57Lzl7ux0Li0\n1MPrptQY+Xc3zf8hosYRwr9cZUE2dEtr/TytFoMX47BNY0HLicukt9nxlYf+\nB5kw8YKSbWvMqA9K0wK7oUpy5zhLcKActGNumwPRYVzZ/MntfyI7wOY4ioLz\nmnhWcoPnTxdhiukAJJk+DDbW7LSzSdY2uoXgVyg2X3ucMwze6pskPFg+muVW\nwRl2mSuPvqDYF9Jxj+kkDkyFVKxFjEefC/qBndkMBGudS5uOL1UNftQ9McLX\nkeaD6PNeM9z+fKygJ0hXKGbhQukqTMoY/HKeJH6galtvdNmPLgZVJTgLLdxR\nMZ1cQESwjPt1Sc4AxUQH0WPKTmvMBR5ddVMWBuSxu1/2KW+H/NuR3Hv8zgwz\nLzL2A+uD6TFqeoMSp2h4Ye4qhTmHH8OEqXVAy1sMXHvAl2j2LvQULnkkznPr\nLT6W5Qjo25iyC34Rg++SiuRh6XmD3PZyh8E/5rS6KTT0t2CQFPE2/RJy+PK3\n9JtzSWyEGgXJraww0xaQ4tp5jJXwKoUJors4LLMh4iXSV1J553wRmUbxHRDL\nWAXGASwLBBg/dcubf6aN1b2/f/ONg7sy9w4yvuz4QMymm/4DiZZJx14+7am/\nw2z1\r\n=gO6/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFlPdkurMHTJxVKnQTYlEQ8doTDhoMYbx8ZRfn5Wcw3HAiEAvI/8ndCOaX/yNXkRL0eOwQvOzL6UUQb7gKfUcw2HAOM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559671868980_1559671879110_0.8133023099581391" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559691340031": { + "name": "puppeteer", + "version": "1.17.0-next.1559691340031", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "665405" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "15804d111a907bdc9ad5ab6a17ead1611a3715a9", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559691340031", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-+uAcSilX5Pwm1cMC75JgPAmV1pQqp9GQ6YB8Fk3GO5mruEw4PBkINb4MHxIo+LF2rzv/IlE37A7zWmORLhTQlQ==", + "shasum": "e2ce1c234677c0ab3c4b07850312fa6cbc943dd5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559691340031.tgz", + "fileCount": 72, + "unpackedSize": 745113, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9wBXCRA9TVsSAnZWagAA1VsQAKFT+fQ8bXjA480H6eXg\nEqCkGA38/IWvZvPlzr/iASVZ7HxLz8y8abXf5eXiLsmTUmle4wLOEHRYBRPP\nAhTHn05/5FgVIitrZcHGiooP77jJU3VYiNPwm33D3RbT13CUkm+TvLZpCrNq\nroNUrlr6gPoHV6cs0sZYYquNmg1YR8b5ay7vg/SOt3X3oc5wtht90ny47H1H\nzkpvMqB2vEniy0HMcoYHI7tGr12YUrkuX4UbLHLu35abRLpWMFFDUCbSb9DY\nTubpAu2y/U5pH/7FMUguYmFOUW3iXYtqNfds6LmXh307NEsi3XvRdTvICdQd\no6B6IbqfWzKPjdIgjb/hLPI8OSNjMmWiYWNmqxMthBf6/9e4WMp4vdpOGGbO\nZaSuFMQfGAx1vvoszGKI7WrreKbpIYZd+RbNGz9nub1se5XuEXy0nUzT7W/S\nyzqXhU4+htG975H4YliY/zOf96x0uf8GHkBiskTtdQnZ5TYZZvsoPy3Bdy1/\nYwpDIxO/9uL5ppORIijb/K7wFFrxXXVzgsUhGecXG3cwlVP9EQefqV9+Osu7\nzlfMmh1M9c0h8tyRg9alvzM/6jJBK174Ux2WeP3p1Ps6yAfgbWFqP+5Kfij8\nVNqyKe5Jh0cO9dUCWeXwsysfTImqhPbyIaSXzOjSF3vBDlWgcYiuqMcZSeLC\nESOw\r\n=RTO8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICYZviZ3WvMQ+EjeRAruiDgZCV1jrOQGajTmfIdZtKiVAiAJ6G8UQj8rfjjeM6DaLVxsKCN9C92eeYHDNE37AI1Sig==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559691340031_1559691350616_0.3053781547794674" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559787105207": { + "name": "puppeteer", + "version": "1.17.0-next.1559787105207", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "665405" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "f79d0a3be86281b481609f2f9ecf6208df32c1a7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559787105207", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-gGwAQnWqmHnELhYyN1zZ4abaNWLNS/ROiTMI96rL0bQyOs/ngpWVFLARVM2pgmhgFd1Ymsiqd1RBJ9gxYj9VBg==", + "shasum": "42288c9ead78327889efa54e8f5a568f87c0b13e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559787105207.tgz", + "fileCount": 72, + "unpackedSize": 744945, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+HZtCRA9TVsSAnZWagAAd6QQAJ503E5pNk5YfP+Qp20y\nHYkSRYiqZkIzI/JKCL4/XnjPbDMlQ6F8ZweUaEbd7QKTP79KSEVtRTHckPWd\n90YDSHZHwgUXUAVMEZcjIHxN1qhhx0DRYhFLyEbWELNNyM06chL1zKPBpamv\nkul6jcFyQrKTsYdPjCrlNQOH0TteHf0p7dUoA+iqa03d3VU2FHpObZ+UEvCc\n7ibAFhH+cJxfyezZIskXNsSiXZ9w8rK+BYNLtAps0Ep+MQw4WfcKLvmh1dwM\n3RunddKc1DmY9UBqZ8bXEhFMk+qgANyNn7srTv1spA29FwYXNoFunad0MTIx\n+ZcB+jdjElagW+m1H3bV+J2EFH8MTbNq9EGcOsPOwhpDzFOaXXGq8lWCE9vr\nAW7oDZ23MBX0IGv0Ahv3DeYeyAsDudRRMhz9Nl5vFi+opuHL1mRCOQLVfPZk\nUbJrFySWkiXJzIQejMj4Ae264MdBzpKfmM6JLVbYF28tFYu6WHhu0qB1YYeq\nB0zvGcEjAQWfe3x1Nh0U1IJr6SNDQb3x9FmQc04udcR18JruWlbfGmv9wDXO\nK5Gjl8E2ZgFilXm/el29/hXAR5wYJKzjb/YDgPq0BJxqPVOrcUPUwteKgssm\n48/MLWYUEay4NuL1yYawEWB27y/sOXYme8uzZTl3OveYvu2RFdZmY9154O0S\nHUYZ\r\n=EvIm\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBOVqcpI3U85egLza4g+oTwylUS9fYdsSNPTx0Y/4YIKAiEA91oQdHzr1iytCrjYpChISNBBP25ksIB1wIxRb97HmnU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559787105207_1559787116759_0.23490256029672563" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559843347793": { + "name": "puppeteer", + "version": "1.17.0-next.1559843347793", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7e1984615ad0f8d6988298d1731abc884b86bbac", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559843347793", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-0qoUbMQIqzqAsYuprxJziJIh7ZzNBVTDysatchWAxxVmiB33LM4YKlPU6/hAispBJBztIoBwG5SgSXYDltalYg==", + "shasum": "c88798d3fe526a24056cd98768981f9379c0bf23", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559843347793.tgz", + "fileCount": 72, + "unpackedSize": 744945, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+VIfCRA9TVsSAnZWagAA3vUQAKG8QYSWV4VuD9aiF3R9\nR9q8MLKjL8KBdTUMw8M+SvxeATwhJ9i0NdyJcnbZcyBFOd4Ciuab1gEw9xRi\nHMXPoKu7+/qBuM6GRe5ct6FmcsZpSzJK2yCYf3Vbb3b0krRdHbKZS2ANSS+L\nOGbQnTFReiVBVuMJ4DPMgf9mvp3GFrOqspdRPhlnV755jAeBi2ujnPf28tsJ\n3+86iUFZ5oVA/byMdUVvEN1ctkGvczINYBYWTcVuXC12vlSItoTg+etVoEac\nuQFS8yaNKU2WiUyooxXspZcGMQin/23b/V64vfd7slopNCdbZ3xLiiwLHFqQ\nbreNlbnsQId4dM3NarXJvW7VR/JdPlkQw8IV0UNdxNmMmwCvkQOhCVNFkI6r\n8eV2StkomXoHh3XDJ63KLCp2SlCjGIaZkY4nYZGsOBUfwBu79pYDxdluRKzK\nJV5rn26YlXIk6y00a+B15cFmyn5axxEzAQn9awDCanODbke6k+9rOINg7zf7\nUgnlQwp2VuyH2wYgh3ZnkfmbNoZCKlPahzGzmWEf5l7Alj4l/a3G7YHALg0E\nd57ThykFNQ7khaogNkcYmCllPSbfTmnYv0SszdqrtDd4vuMb33750IypkbeI\nO7BAtsVcnxYSCcQpU+M0IyY8gd0gnNdZwD4dthzfUbhjt+2VniUbAq4xkNJB\nO7Ru\r\n=ea2U\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD8YDxbcWSeYuYviTt76yZuRe44Oh0cvGq+RhB+aLDW2AIhAKnyiDWpgib+FuKCORMK6VGZpec616vQVVMaW5PdbGRW" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559843347793_1559843358317_0.752773497482558" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1559940912627": { + "name": "puppeteer", + "version": "1.17.0-next.1559940912627", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "90df69cf77e88cc4a057cb2ec04b6aa973f568c7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1559940912627", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-OzasgL4cTJEpgWcmYgyWKe/5460KLzabZUurrBwt/BWHNuy3xgl5bOnWBsR5JL+fW+wVYJJTjdeyamtMPVc9hQ==", + "shasum": "136a3f31b4e2da842470b652c569ed097b4d3380", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559940912627.tgz", + "fileCount": 72, + "unpackedSize": 746189, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+s88CRA9TVsSAnZWagAAMLcP/3S/Pn5XqqGKS6Y88J/s\ntav36NqTaa6oRsDVjcPVmoCCqA3gVJTWIk2/jgctPZp0j9tUMLD6YQSx2xZk\ne9tej3YF6VTpCG3+47kysx/bQKrnp97ORDkivk/0rR+f6oApjB0G0/3j5oFs\nB2hBa8j0b7RXsiN6SpGF20u3N/SjF3NWaH2x3TxAoPdVrN2aD7OhN8QpW3Zh\nfKe8Nk1gtemDVb79p4fk/GZ4LLgcuK2isdakRb5CjlqDrQzmpgWgsPc3wvGF\nvyeOrInHbIEmb7Ktf+p6ivoSnE0SC17gwodtbWrKtrrsPftW2QGYQGFva041\nCrgUZW1YjM8EMOnVyJQiUR0mSrbPgk9gC7ERmUxrXP5pnUCBNW6xjf4h8lL8\nv6tHEoiDL83CG8TVy5BkI/606LlGCJimjNkNFZ+Ap5Z+yCqvURW94rku73yN\nEpqLG4iUQwmz8j3vXOgCz+1V4tYq9iCmcPCjCTvhxS2kMY/Cr2q4u+HvQvYF\njtgM2HvfB4mcnZ/XgQjyanmPK87/dVLOX14lpVzgonDUe/gILXiSAdqx/9MQ\nzbiIlatHwaof74DkG2NrK2jjm6CJ8Nw8fThnRHycIu18vOnAFQ3ozlcYXpSI\nXxs9FjXXGzmtV0PuIbmJAYTK26BRXr0pD1ExVuwO4Mc2r+ITLKRJ70x63wBM\nvkxQ\r\n=L7AO\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCa5fz81T94/7am942jq304qYhwSlz9F2MzMtSEkzr4LwIgJTM4eLUx7Z54fRCfV/FOjjRKmWvwtfXbK8upWxsPbCU=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1559940912627_1559940923355_0.21582884733538932" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560040655095": { + "name": "puppeteer", + "version": "1.17.0-next.1560040655095", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "aca99cd89c624357e87046193f20e18d9da1680e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560040655095", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-wbpA/HEYY2wGADZkfpw2gFOG/pGmhwIQL/lTp4EwJSGS8hTmqX9uIOEccj+stFlD7TyO8UNm9MU7UhTRjM3dWw==", + "shasum": "a9960b5f99edf52f15639a90a9a822f0d2d61a9b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560040655095.tgz", + "fileCount": 72, + "unpackedSize": 746189, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/FTaCRA9TVsSAnZWagAAKtsP/iKXvpSQmSMHM5FleFs/\nKioS/g9NA7oXhkzeSe7xCGkg0OvgnqoWQ+6oEWOTZX44geV99KCBa6WeMy8c\ndZsPfrpl+Ns2Wz++gzHjWScatBhppJH1hpQkgpnshePwfM7qKtTjKGYukY+7\nDq3FyZN0Fe6Q/upRWsxn8qxyOk75BGkYKdCEM7AgNY7nsQaTFdIUhPpTpe+i\nujlSEk0XYP7h1A1p90hd9V9R4roL8jI/rWHEN8H94Q8ChIOFkNcNt7PN96C0\nTp4rAZiWyPBkRDaD1lm4NdryU5EPvPiR03iEju4MKBWzbb3ncKqTqnvKHDGk\neRiuBEF+lgAnPpjUnFFTF/8Ph/v30pJ/iXNB0en8O3g9BoJdWInSkATLirkE\nkJhowynuYMu9mfcvymQfzwfWqCt0YpJOSBQa/990Is4iIFHPxHvkrh+41a+0\ny1PI/tNaADv4BG85GW1HKRDcxKGN7qT/5lBTb6JZQOy4Ollv6bL+Ig5kOfKK\nVH+mCnOSnDwlN2RBMgxnXh1FU08L6h+1zleV0rjMBXWcR7I39IRTntfrpcl8\n2aa1It03TKMzeKP3eipc+qs80a01DWl6fat7lViUyg+SumKZl7S24PPMNRo/\nA7TwXTG71oVWnPyszc9WcKF/E0dvXxjG2bY4SUnDGkePq7+o4QW4A/YL48Mo\nmtwA\r\n=Xe9x\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHNkWkWp+Co1UAd1TiJ/xEewYTTgCtWTuyhqCiz1OPkTAiEAvvXTj+W61poHUoFY+hOOPj4DANhHD6vxD1Oa09Ww++c=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560040655095_1560040666145_0.8568340001094386" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560130890336": { + "name": "puppeteer", + "version": "1.17.0-next.1560130890336", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4bcdfc97ddd286787b91f1834f4df439832c0123", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560130890336", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-pvLbZ2x9PSGR/p0pLldOz5j4nyBDEZNRcfPZL7qDFIpqq8m5JLNhaU3bEb3kjzRbx9CO3I9vwxIVzjti2Ax0oA==", + "shasum": "9b056f3159d57ffd2a1cf5cc7912568d2d7fab48", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560130890336.tgz", + "fileCount": 72, + "unpackedSize": 746189, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/bVVCRA9TVsSAnZWagAAYIQP/iQK5/iP4GSCgZpNy8dg\nqfXo8LQVVTNxXZfWACPytwQ5haTyYirvzIvh6Za25deoLXIT1BW7pzJaFwV0\nznB4rtq9jOnT0AV/tBU2NwTwJTvNfzH9TnXA1FUoKmUmTq4g3BlZxW5qT08L\n6dwrkKnxyfDtCz2DP2cW7AmwpFC+cIpCWB+5TW6WFyWmPKna9xcL90VNkEp0\nTSCRP3E7ZYrYLH9BX+yReB9e35VeTQtFFbqxwBT34RgiV6Pg7cfXUEoCCr4m\nUnIc4WdmXlknSk7VwTLezgmnJTDk+JABpuFmyOOfd6of+wx0KnddykcmPJNV\njUaUAm/sPoVxR+I/vsyjMA15aTIu7RixYFRsaEuWbxg8+pJR6XTsDcuH9+1l\nsip4+Xpg8bhu6249+YLn+0pE/0gEgA7kxVZ/UHfxrrjCglb6GrriH0O//RhE\nxT3c7ozurel4uS1/CsPHnIgbK87g7x0Urnc42Sz8Fo/VDSdnDPCmBwYWJbK5\naF4yV+f0foab/FAWa2u6HVpXhZeUbAI1Vycq2Jeo1lioATQ+2F3sZUOkMf4p\nDD4RBwafpjgGxAPWX5dNFJ67ZgPiRy4eqShK6mzhbZgCmQ+lj4WlXA9tBPf4\nXcfmwRq+/1Z2raSkI3aqCCsZHZiF6gplZKCmq/+L92e1jZXchESc4aagF/dS\n9t0l\r\n=0BH0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICmLR5GZG+hxqVBYYOpp9P2ectsoeQxhDJpOdt9vGe0XAiEAs2MhJu18afr8NlOEPB+nAdMEWp1vxewKBjdgKy3gAaM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560130890336_1560130901301_0.8608801654266367" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560154754882": { + "name": "puppeteer", + "version": "1.17.0-next.1560154754882", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "7faf1c9030cc5bf509f39fcb5e4a0bf23cbb8626", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560154754882", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-tsKUuLyK9UnCovhTE3RGJYLYDf/lLS7kflQwGTvHJBu1gC+BmTbQckvmS3jfsDBZPpAFlMKV+QzmgdsPKQbXmw==", + "shasum": "e56b1bead9fe2de1eda8e5fa0c21c080d17d41ff", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560154754882.tgz", + "fileCount": 72, + "unpackedSize": 746617, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/hKQCRA9TVsSAnZWagAArOUP/A1L57d6xSHmUxkIxLSo\nJ5azdiks304NX54SZfFsZmwehOZ2e8R8xwOk+TLLM9SattkTMz44Ub5xDGse\n9u+R6ua6s6BfuGn0wQiMifHVYn+5ppCL5XcBlayWLcFrbh67I8CIe9wlevsy\nF8yY4lUi6C35yzjnnlMCeJMo3GzVGx49pYE6p5fiuFj/uhkKVPYuFhGLyzD8\nvWD80jt4FwvCzCEOXe80BdKs36tE85tBrSaZXA9BTBVq7WMDnncNSBfay63D\nyOWi4U80sRQk5xpUgn9Ki0/jSE4lJrFl4aK3gaE3A3VTjx0AXrH9nS45cCzn\nC56pEdoDKC7ANdL0RiUE7xaBLrZzX9sZz3EIgXy8WZoeQUd2FgNEj47XoXwa\nkdsYDD/NqlwebdIU8SoP1ygok/8Trg2vJzwUsRoCoQ0He9Ybnuuc5B0coWJc\nyc+AyTP5ljwzp/0TGR1EbPEs7Mcs88Iv3ftWc6DOhicdSp9PcQzsS2oiYbTh\nOh3yrt2mA+yHjYWu86grNnEaTay9A9U+4DjFo3YZVFfVEac1w8CjPEbB1ocq\nW0trC4UwrIX8YD0m7kkxhRL6lK6o4RGLO1yVNw/xnxVi730g3zDVk4Qc/PmZ\nES5BTdkKGCD9mEO2pRSALX3LKAUGmmOUcHlYwc/tBsemDhxuqPw0nf0rebZZ\nVMsb\r\n=juLA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIA215bVSSNAukTx6oNgu0rDwlVkS+UMLw0NVUtcPZxPGAiB3bxLwtLO06K5JsgcybI0i9/RosN2Ebv8RSiwjz+FeMQ==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560154754882_1560154765808_0.9415405063671762" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560156775686": { + "name": "puppeteer", + "version": "1.17.0-next.1560156775686", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e1432cc08a125c49e02c785ec18056f3a5cfda68", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560156775686", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-59xgXAGw5ld6eQ4eVgqaWA2MzjCJ6MmmwBkSR8B/XmpJ2WXpLmWAkzFKz9a43GKiqzUKElxlgTWbN3Yw8U1Rhg==", + "shasum": "397f4a44c583848c95a4e1a801dd930d2f720649", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560156775686.tgz", + "fileCount": 72, + "unpackedSize": 747004, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/hpzCRA9TVsSAnZWagAAlu4P/i72+/t0UpyDlwwNEVfc\nAxfkCkp6jEeRPr93WVodCkqRqqVMY60UoAicen4vCcjao4pn6RH3dv+9YNgy\nHcViy7GKNZB2OMndLuiN/h3WydgztviXsDq7TKTLfIBLI5LjMX6TxvgSOgBQ\nBVn1/6xg8yjuIdzvHbO7QoYgS8XuH6wIhUavw9bGyRF0+Irx0c9FpCZoQ/z7\nhFPFbA/9DdZORpNtFpm6k/Ytbt2VAHpCMtwMlqCPfjD3xTTBwkezoGfc8LSb\nMEu2AOX9O9wlOKdCTQNfupRF/YyTQh8WZxG3XYHHvoqkKwhC9b0+rl1+TcFm\npBI5pfhl4F8sW9DRhj+nNNIb5c1/pUUl6IsJFkhJ2X05pylp5lLaCAP4M1Bo\n2KVLyglL4oSgyTuwXOxeVVKH4M10eVYDoJCshe2n0oKx2s8qlUwffCB1hiPl\nIUYcus/Jjh9LZqpvto3KbF7V697vvu3C/ucLQBSwWZgLyzMkIOgTeycgHJx+\nXdx2pWMI6GU0nrJPUfKPjGx1xErwQ9BQLeTbdKND1eElCAYTYoQCru7JpZ7w\nHlP3spZhRy4/BJWLsZ8+PUrhvkn2mF325/7eYOZHk1cNZ7XYp1O5t8mCEQgI\nM9DF+/fx5BUTrLHobvXhVqh51eW3q5FISB6QeFqEktpPRc4NEsRBN10CoL+B\nb8FU\r\n=Qxvx\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEPbJhUDX2+xEs48+6vVliaqaZWB8C1UOXFEzNjZNoavAiAH6Vn8LhrtcoW2w23lTtmzq1Dp0zDrfHFrtKZf0BjmPw==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560156775686_1560156786502_0.5924240150253883" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560211377753": { + "name": "puppeteer", + "version": "1.17.0-next.1560211377753", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6a50888d346d5f243c4552c5baf8e6e883dcdea5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560211377753", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-EhR095aeIlD8Av+7XLFmiqXJysgUmBmXIAn6HX1Q6slj3k8IilpJ+IR4gJPx7GQZFQsVHxTSalNafr8L8Z+1nQ==", + "shasum": "17332c204a8496145905b03a7793c7b6bdf99940", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560211377753.tgz", + "fileCount": 72, + "unpackedSize": 747004, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/u++CRA9TVsSAnZWagAAPlIP/3KvaZrF/KVrjHpfyi0q\n5BSBUjFEGdBga9yhTRANs1j4ITFHWzYvJX9GU2a3vd/TixsgiGbvNbJwKopW\nj9uXUgpRfDVUOSWCxDM8z7dT8hjH/X2EZHz3J8cxrviKoS0fojJTUYqicxcD\ngRPfjElBw5SI9s6KDQrcDgrj/HFFDoaZiCVcaXQgNgNI790kvvuMAad2LKyg\nbk8rfEQxjGnpnfUQ/IoqzhRbKBi2E8ueYWFOn2W2UFFRbfJ4i3M9vjOxQZ83\ngfXSQW2WkUWGVnjYtu2RSqMJC4+ZW0yS+pQrXE8zO4yDLUACnhBP9tm19fas\nwJrUGA9lKpof4ijiH0xYY+yk8AquUMP8Wuh+75O+hM15wzhlGPN3BNAIsh3d\nscYdjeWli2V5FajLoMIwnPqZ1H6ceT1JKcTbMAk/9BRI1l2Ww4duT+Yp+G3a\nvPElLcGPHZYjAa/OYR1zVoTtbxV+ysc+GumpIs1ISVeG6Ut1dCnwzB43/PDE\nusfWgS3lGTFcQoO1RbU10O3KC8pV9rTScTPGTpIFAU3z+xCvYAUWRV7Gha3b\n3Hl7MYh7izBkJDlJ0oMYyGio64UHbDL3SPC0hZ8n9CFdGymhpxtTMtlAr7Jj\nQ8qreWeZvcBSWAfwPE6K7cZnz/n5618P8GZl3dWuFlZ7gFZxZRNIrbepGMEl\nSLM7\r\n=gwjA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCoJVNSMGjWzf78b32dhqD5PNwAxaTNlJGrBJ5Sixi2fQIhANtOCOjK80yHUNpuYaFCveIssi6/CSVGEwVO4pbK2vFj" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560211377753_1560211388837_0.5529846654430095" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560214083398": { + "name": "puppeteer", + "version": "1.17.0-next.1560214083398", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8df0b3ec3b33a8b3777693cbec1b559dbdeafcd7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560214083398", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-1p9TER0hksgeTU/FLG9dxdoLKoYz/Z8QYGaSW3ab4SCWw8iWuKYtv0IkFkiIjA7C7B+bWXZfsiFGP8gPS3R0GA==", + "shasum": "b480b1302a7f449071874468b4570f5ad73453f3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560214083398.tgz", + "fileCount": 72, + "unpackedSize": 750608, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/vpPCRA9TVsSAnZWagAAAmkP/j+at9VpOGNZNXkLClnV\nkVScvllCLM/xN7QTzug+4ZaCS16CAfr4K2RSmH447rf2j3I+nem2NMkyhgXT\nXO46TBZr6ihYlvLdmXfBtlJnMHX7HK6UR+5vPSRRrmh8zRSI/XKHC9GOU2zY\nqv3b81airMXCHNq0dY/iXWb04111QvploLVMPGEfYrY0cbg29XRPII50B8xb\nSGo6jDGbvODvX/9fUV2nyPPEHMH71Flrn0CSAfIm2ohfyQRCvgcB3WHEWw1T\nlKE1PCYDbkeDHw3WHgSsTFobQuhb/WZtpqPXz0fbe0Ydhx/mNoN8vsY8NNxQ\netkalx1m0bSZffDY32bTlshENz3uoGocxWonnPjX1TgAee3Q5tIV6jrmWAm0\nbzELSWewp0S6PA5lFUfQoKu9lcsE+GGIBDzxoyb3qcm/IrHkWHAV6D6zLU1K\nM83xTIBR0TqkFNKWGMrpjRmrYKQgUaxrZPwTkch94oipJWxWU6qmAKzU5p9A\n4athsWqSt02+93lUkWiNgumI7VzPaLXT9MTFIGaa0WW/qbdHvYSKl3bYOdZx\nHi6VrnTN2nqjrNCE39OpDUUXfPOJfiF9NCYfG5B0+NC6BNj21YYtylK5JcoJ\nDnaNyZXYhkKbsm/73G5Mv1kMikMGRVYjwoi4lr0GyIdA8yWRQfSo8XUC+GNJ\nwHre\r\n=vpQ8\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAlXG5XiWoUpdKLzV1SLY4+UpjCBpi/pfa7AHgiVhgZNAiBuVbRAAVOYq+d8D6alTP8g9r0Y+dFmTc657Krz2xlgeA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560214083398_1560214094496_0.8911255600605184" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560215757076": { + "name": "puppeteer", + "version": "1.17.0-next.1560215757076", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "65b7e8ecc067d0f309c4e8d4adec3a517edc57b5", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560215757076", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-hOOOJgmhvFkQd9nS3BmP/s2qmCaFSbKirg3hrIhSeivoxFfca7Bq7oNsiKmS/pRZ+38Psq39ZfUbThps3j8lzw==", + "shasum": "151e3d4b1cf4272efb77b0c496b5974d368559ce", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560215757076.tgz", + "fileCount": 72, + "unpackedSize": 750608, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/wDYCRA9TVsSAnZWagAAhvUP/RXwJeu8mLT13nVmq+Zo\nLCF0cqCxHzRDO/zBKbuLDUSADTiPzRqK3YvXrYmVPjoToVyUmsUMKTloSyhF\nM9RPRJ4exfCLjIbGVH3TZeG2kY42YfiQ3n37T3CxYFIReP0TUsjOrKWAIFva\n1CpeCrFFvctdkyOhb5gF9YL5ySjnzI3GSVU0RhyTYGIPBFXJLrHf8rLYpLv5\nI4bjA0wvAGsg4lXIVwtVA4OppgPCydv/dJN8RtNrJlw8CHL0+Ee/ws/4Awe+\nZDnVFt3hn6taWIMFb/0spmq4R2hDPPFD+O+dNPwUxDSf8oKna+y5cjqcYCFz\nh7e80VFf9O3L4gH/RIqWGhfMMnolMZ1TWCHJi5zbKOErVh9LNsGBKgECt1ta\nApNt6zNj1EttkHPk5/B9A9K1hS+hDROgeVkj/uWUFj9Q1vpiqDG7UoJt9A+I\nEaDyNk5y+4kKXqRRcmL4whNU+3rzf/aQu7HQFn21KfIGwIoU6+BhiTjojkNh\n42jWPFf2tSrDUDrUU1LBSYskg8PV9iqAawGqo2kVAia9RAYAP/UxCyi9jhK5\nJQa/o7GXewc216Q9BSWa6WfRMFS8Hi0n05DoLXkXtU8vlqBomHhX4hLsOezg\n488E4489CTWtZRhmQMsrEBk9LTjcBLFBoJ43IP9Z9xWuV0Y8zCCqAdnGkBlw\negBi\r\n=G7Vv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIHftq23dXzDJQHZ7Egt/IMWCAsxVItL//KLPDivwvdlDAiEAt7MBpphzv4zjkE/mRqomSEA403HZty0xq8rtMqz93T4=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560215757076_1560215767864_0.7369318638499072" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560226381096": { + "name": "puppeteer", + "version": "1.17.0-next.1560226381096", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "666595" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6860d73212d2a36fd789a9244667be574f396164", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560226381096", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-U5+pW0HlYmxHZlQx/uJb8MWCXSifWFMFaD1A4VwyGHWTyKVU4z0QznkYfXj16kXh8e2sr6lNnKfGDJ0W6WL4hQ==", + "shasum": "9879e6b4964c36d99c4d293dab3a12dff256e282", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560226381096.tgz", + "fileCount": 72, + "unpackedSize": 751004, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/ypYCRA9TVsSAnZWagAAanUP/j/KCTO4NkSXHFSV9CmT\nptahfPbOqZZcbJb83/FZ1L3BA6Ni0i140MXHZqhHEBzDLol4AmxsXFpsW+Lh\nBQZjN5QW1sDj8wmd9Fi4gd8IdouFerfe6OuQFs48UE7pRRv0mRc5XhJHXWhI\ne/1RaD7BPV864vpZFwS4G+jHNH+WlGA9VqFSLXnOmtnVzyZPsK4j9xZuepsx\nKTIQQ3ahSEeKhp/FFUC0W+k0OERzLOQr03ef7q5m6tOXdHPqHhPfw6xZrf/W\nk4eYNBDeFJXSldsjUs7M2EE8PgiSpCSkBPgjKW3ZH69M5APLekCpm1qAkw40\nkiQ/Krww7QhwCGRfivkZbZYdwqMh4VtI3oo7xBp+6seCQtzIEKQfyuN/g4/E\nIvTqflmAfgMQWXkLglC8ElRRZz6cXoGAQoDviQ7gT6B5Zm0P88N7YhITw373\nZhcAWMcXQDLJ5wXRyprcygScapqyQVWZ8VWrCBeryeK9vmJn0jSbDooGTAXi\n+bH0CjfQ3aFB4m/Gf1hOn6XisbIz/Dy1xQhJzeg+x6CPRdpcNd4HwC4n0kZD\nTJjJt3m6Wnzet/O78opybbPmSIoKhcj1/Ya2lP8NwvqSjRgMnLvNqck0Yvlf\n/fhNvPG9aiI5WBKRPBVQ/8DhojgFJ562HziPF5vsqWrCdb6BEj+SxHlmi5GP\nEBUx\r\n=W+nW\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDji5iVYwPZx3lynYg8w1+ZLLfktrz/9CTDmLxQjBEi7AIhAKsGHoZq2VEAfSPRCsR93kvTZNmOY7IA/9pcqTKcGneh" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560226381096_1560226392034_0.1377099430627935" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560499996426": { + "name": "puppeteer", + "version": "1.17.0-next.1560499996426", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "668716" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "62733a20d726f2687e00fc42f3051e7767051755", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560499996426", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ziSNn0YCqceOUKja2pvOW6+h1mYxukRs14EbrgeBd6iOY0VAVFGJGMgp1P9DSblm4B5b3zkIY2tGwwqloohLBQ==", + "shasum": "db7adfd7c78d0059301bf01b085a5db13c38a5ba", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560499996426.tgz", + "fileCount": 72, + "unpackedSize": 751130, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdA1coCRA9TVsSAnZWagAAGmgP/29GOCxE18k5IDFUlEMF\n81mzhCTS8Wrcpmf7wTVUsSrCx5x7tavkwW5Oo19QnRzAePijcnbTLzLsYUEJ\n+c+ibHWtlvWgSaHBFJrXXW8lS3rsj7nFk1p0xx5hplmfT02sJhdq3x4VWDvP\nL6UUoqFAUp/qKurNF9Pchd48jz6GyBFjs+8dtBqIaN0Hp7fQAFoZDC8hoNA6\n2KSAWbPeV+aiJMrAGQMZwebYmTV3Bh6ceMnF2kngRBiYL+nT+znYXfkUkW2e\nAYNGRbbebtTXPnXLxovYEgQWyGtMA245agROCRn+H97cr62lwQ71P9226aUm\njHsfY3PaVjY+6wsxv65e8L3P/VpZHHh6R92qK7O8up0nFGcUNhgWl/JyIeXo\nZk+MSkK46+dyan6ZqaPn7JuRkzRvuyT+Sx94RoLEYvyGd36hPIckETGziB8G\nv2+IPUP170/OuomKjOpxLa6g/MyE6E1ZZ+9+aVTkyaRHjW5gKBfL22MFGZct\nm6DqgdbiSytrRB9X3rmBMJhnsYLaDUx9fgcJEQM0ejEP4DW/kuA5GW8tt1H9\nRpxN29Fh3u39FFiOsCbqhyEob1GDnmDXxyA63TZJJr3+vnw/8pVuGf1Ux+mA\n2jmfPQOubjs/CdE5TTAAw8JgGGPUzf/8NAcoo5KJpuMDMshsA55OIq6vKvW2\nr5cs\r\n=Qk7P\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC3JOqdd5xGkIuF1Yzr20C2GdcDX1f25MZg7TZArybPaQIhAJo4e6HmCWrhu/CxJS/0V02EtMZVKaTKjsu1unFiRzSu" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560499996426_1560500007243_0.8147536950343812" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560576036169": { + "name": "puppeteer", + "version": "1.17.0-next.1560576036169", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "668716" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6c2007f1e3a68487749e5196ee0c389da5c1b30e", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560576036169", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-PMkNA+RltQtbp69iobieqko+h1r/wldWRamTfSkZHpK1jUy0oisbvVLLCsQXxeEceAqrwGUZvmoSXlb/Oig3+Q==", + "shasum": "b9fa1c6f54970a2f77c756e660e5fceb1ffb28f1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560576036169.tgz", + "fileCount": 72, + "unpackedSize": 751131, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBIAwCRA9TVsSAnZWagAAsz8P/0PLJSGy5qY6uUIjqmUU\nAxJcrzlRNpXXB/6voskabDFhVM6O2N3P5Q/TmcecmSMGj/oktH/oXu3ls4vG\nWyZ799uK65g6TGu1Em/x8yF/vskV7kHQWZVfli7ykGGWqObHmWywGIrNI6q9\naErJndso6h1aSFl088/jcWVv2yYz25Yni5/f9B4k6EBZiKUG8/2TTFc11r5W\n9vacVUmjP5N9Y1de+v3/ctqgaF77B9TZmGnMxATXuV8M4r1Mqo9ia1Zjb/MJ\n1usupzqgFVrndrgyJWdre29IBs5Dl7ZAnboYRJ7ANa2BWIL5IaFsai1fGk/m\nhX1/I7vLwJw4g3AvncRqrlqJZKnHCjj+TqFTzRCDQZwdwdSriG6qVLLlcQIX\nUI6A4Jf75MlwgZw3L+dwCHt5NPBZ2N1oukpexFKFlpiXohI5Z/PIgg/+vNMb\niAMH15iyExCjHPSd1/kfJigIZQ4PlEKbHPGKGNTqHqlwlFFyf8OocD0Ch73y\nOMmKHFo5eoFH+igLMKXMadB9ZJwX0eygceSsGCjMGoEswyMFGFgnQMKfUEEM\nvXRt/lqREqb2/0z1qKI27k8xRt9XbH5+PAZGzPA9a8WOIg92+W+oRj640Jtz\nBGjrDOvo4bV+ixqQwseeDZluKZoYWd4CDwg6L4z/nijo2pQ37WsmJgwODRaa\neThZ\r\n=j8qM\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHTqaCcCONWh1+ZmSNAKr8ev9Jwk0EnqTbWpx5iq9qkFAiAs/xs1Cw7z1rca/VWZg3+jLyNtrPzp6AsGw2g2SnkJlg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560576036169_1560576047396_0.21913876889741912" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560577493102": { + "name": "puppeteer", + "version": "1.17.0-next.1560577493102", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "668716" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "955e7cb6fc8063285c687dd366d5abfe0715df32", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560577493102", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-lQ43Y7nIRiaXIRPdrY5/b6rfgx6HWkHEqwfE4dYUbkMfm28J4xa542je8+nrbXqzWvN9hMjBEl10sRU4qG/ijA==", + "shasum": "66cb2466d4e169abfdce600aab3884b976e68654", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560577493102.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBIXgCRA9TVsSAnZWagAAbqIP/jbUiY/0FON64VgDMvQ4\nKhzTQY3juAUFciFcw4Ak1lDJYoi1Jde+7nn6ACEzzR5qIHh3CDIvOPdBdFIN\n7yDTqrX4gC08cqVa8KJtOw4F+FyW+xkq6hjMBxQRIcESNNEs3ixgmxHvX9gM\n+OpW8jECNRiPf9O2TfZa7fmhXPNqKOqfEdu2cg768eicsSAl+FE5T0m0CTbR\nBbl11XjxaVRuO3oYZIbDm9KbyigyS2F99zHaagOiHIkOFHQFcQ7RT3cni21o\nHRZcpYHpjlrivSsmS4RNrhlRvBN6u3HC4HWwM12AcGJ2txeCuSeQwtEau1pL\nmUSzfBMA46uYfGN3Ha0Mp6uOFSAXbijgv1ZeFbbxBR8hSMgi4QHN1zZM2/mS\n3azdF6ZfbJhlClkl8Sd7uPWtgchzyNAbp9SwrH/nkSfdDzKWT+ydJOSYjfPN\nEQcWELv3PW6GZJmgWxMQf1tqYq/4PCG9ErQRAJd5RsQYYKt7jsO8htDpfLbf\nwrUP33iSbcTp/l3Lq7y+boPHTni2PNEjeKrSbs1sD5VEMu1wZfLa/D7K39ms\ngf1Y20puHgkR/j/Y4y9Vhxo2wzG9kWjiEHObXjj8kNIAmdoIe1NGcVkFQvfE\n0C5EDUEmXBtWKaeoCtaswe+c9fk5YY886rlGlaon2jF/r/hLdq7qOjVc/Pot\niqZh\r\n=xgQx\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDIUvgrltSf/opxsVY6k/GuY/fOZ04biYWzu0kgJKcpJQIhALvkJKFn8kQNPcA/I4UJjGXMGqvpQj3j9rnVYAguUWcV" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560577493102_1560577503802_0.9489086367998927" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.17.0-next.1560641867466": { + "name": "puppeteer", + "version": "1.17.0-next.1560641867466", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "669486" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "45873ea737b4ebe4fa7d6f46256b2ea19ce18aa7", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.17.0-next.1560641867466", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-kX2p1GXkX7PfTJ8Jw4O4I1iofbkmv22+TkYtHFBMuqcK485nz3yEsqSNmsKDSf30iarn7daiHbnE3Fxz17Dh4w==", + "shasum": "f38ada2efccb13227543a1bfe76a3ab4d0ba9c09", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560641867466.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBYFXCRA9TVsSAnZWagAA8mIP/2JNoGy8IQvgf089jXKb\neUAe2sg31wm2BMLn2lK7pzlTKVBIUKMA0MiGA4wXx2xVAmXnV4UN37iOlIiL\nBUueqycYJjR+263FXISgTOqvmiEHaPbCJNEU+q4uz3d8Af6Om7gYtXW2IJK8\n1D7FWMYfwpJcuWl6niLRiCekgLqmE/3QlE+7jeyYfe+6Fxaub0YokKnKoaFT\nZ3xXcwyP+nwilquHPs8PVIXcOoGzdCAkJ4SaqL2FlhhPHF2IX3Gj8BjM/hlX\n71XDW+z8yO9+W6Ll2wgi9aNsnJUkO//aqs3XBMSc+z5z6SiPKCJRmNHLMwoI\nAchkjmS/A8Vi1mbXecNRbFMKQT+vIZujgmWFUwnDUv4YwEwKSvN2g37GC+7R\nZdbegco6z37r+yHgDhhYf2Vvb8bJ4O+Q8TrxZcTbSHtyZSucqNWstC0OpH1H\nFcFZtItlfCylG1ZHBAumqLmUOpj6RxwWanEfqndIEvqwF6xwMdJK3R4vV66z\nXeIPCLgf7/K2vHvCNX2ejy429jwP3e4CdyLN0W7mNAI2OWqqh9CiDpH09Izr\ndR3gP61Kg8MaTIhPb6s8+LeFTOAW61X56D/O0YJCgQ+0t6Zk51ItSH6p7uE/\nAPNOUH9qh4/KPWtWaq4trLtPsyBH5ivfaET7/LXVSjkXlHodT19zz7OUvKYX\n26Wb\r\n=qevC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAtogL468RoHKsdLD7JMylmARuWiK01Ir6EicIsWOsM2AiB9ps7zS9Zzj4q7ZAmBAEGHOZfm8QCnx45Civth7B7wLA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.17.0-next.1560641867466_1560641878730_0.8114306756489025" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.0": { + "name": "puppeteer", + "version": "1.18.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "669486" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c96454d42c2d09b53a603e2b9cd3e89cf55700ba", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.0", + "_nodeVersion": "11.14.0", + "_npmVersion": "6.9.0", + "dist": { + "integrity": "sha512-NCwSN4wEIj43k4jO8Asa5nzibrIDFHWykqkZFjkGr0/f6U73k1ysql0gadQmOGLtZewXvvWqlNo+4ZMgX+5vZA==", + "shasum": "227bccc52806db37b3ccf762a7d95c06163f296e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0.tgz", + "fileCount": 72, + "unpackedSize": 751404, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDAaiCRA9TVsSAnZWagAAlngP/Rjoib+NPRZZmddUixI2\n9iyY3Fgf7E9bqKyBMRSfeejoHZDGuRyqKv8NS/PODHZvyJv6f2UoDmZ/sNEH\nJGtvagVeNNIUe0HBM6FZDcdeg1fqtSv6gkxy7vfpH/ZAdXRZFAffUQvOFr99\nWPT3HPWl3LwEf+QfD04JbvRtw741O5ugIDtunWoJkVtkOAaZtkO52iApyiSu\n9E1Mzt2dwU9qfVDmS+4uE3C9J3V41QtQ3N1eoMh61GjWyjAn1AcOC5ygPe8+\nogqx5czLb72LZGoyrKPqlzRS1DxyB9LhkeIVl/VFybm1jGUsOF5FTPyxB3oa\ncVByrx3ZLtKphk/4Kw2Zz2CGCze2O36/AkuoQM5D5lGYAt9MdBfjHkC1iOyH\nqfM8QCHSqwp6DM6EhrhlY/jyqaMdptVPI3pF4HqydB01X00jmBSx13mEhuXI\nX4sRsIfX+Hml4xNutwer/AW6w6H3ynrNdO73hScTOogRAz6J43Dc+qdIV6mD\nLsfFNteO/DAJ95DSJDIK90s2uzyiDEB6eMtDL8sLz3I/FsMqxu4wPCtJr7A+\nAAICpfbWkKPjbxKPm1tLYLqZGGcNmQZtAzF3D//PAIjWkc0HqrOXsAruvbXm\nlpKhoXwSTtbykXQgN8dto/u1V66wd0dq5ylccjWeM1DakrM+AUjEni54lXap\nVjQa\r\n=P8PF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC9IJENjHuBpqC5oO8grDCLiRu5hh/VmzghNYKREabE+gIgJj9IfYCWKQ6AUCGTvbG8gLje4Mj+JOz14tglz/brzcs=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.0_1561069217636_0.5386106141380476" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.0-next.1561069341499": { + "name": "puppeteer", + "version": "1.18.0-next.1561069341499", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "669486" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c96454d42c2d09b53a603e2b9cd3e89cf55700ba", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.0-next.1561069341499", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-XtR0Dz+Hip3X7xdD0nsZTPJ4ooXc1YADycqMZNXNk8sffgAID4E2gXePRl882nO41rYEdfFxbBJL5BhImG/45g==", + "shasum": "180c81f5e9855d4312af10a1f5312ddadf3e3dd6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0-next.1561069341499.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDAcpCRA9TVsSAnZWagAAfFkP/3qKmqWoApegAS060fa0\nipxZ6e3ChYw8Wpf1+feVVhaUie4eil61V1wxLNQixoy4Spb48jgmVw6R89+0\n/3VS78d5PrbrP3URYxiFJShrfBpYQDjPtpylSUIumteVilalAXy//96arSq/\nwfIYPvs1wEAEC7mK+cpb1Sh4ZYJF+wXW+ugDb4w7B357A1Zml49ggHSuSGUJ\nrwcUA22LwkO8q+5PtNLHAJ/zZ7agHfhQ2W6yAl9xDDo7rdkap05hJLxSrG5E\nXwPZ5dEM5sS0hUxsr4j+giupRjAEqZEkvRoYTHcDdRCxvpy1DqLKWv+18uNu\nAOGlPoA6Vp/eYNCCRuIjPCOgwQJjiqSkbneKbQ7kINVUHBHv45CRltfEU81m\nL9GASjUmdn2h0FAEE2tcC8debBK/FFfWS+7VtLJ092m0+hDU8HwQDunTU7/I\npOMLA09S42o8hl+CMDYRgsfMjCtZEzL82B7ce8hsShP575Gx3kdtuJDfzjXR\nghxlyFR9i5ZMrYjJ2lvcMBp/VfTOlbp0482uEwEXd4vlQPldZ9FFALM1gdyU\nsT+oodYbD3rzJSYy9otTQDd3YGiljm3ZEjri9STWkM1KvaNCfzFWk78MvUGv\n4vsqplyT3lOfiaP1ybb39pYBsiroJueowZwDLbQ9JWyguaK495Wnk/VY9OLv\nn7TV\r\n=Yxuk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCnWJ/+cOEJWACdQhLurG1Nzxdct4U5xnUZLETyaLqucwIgIwVTUDiMVdyh8VlJVR2JVVHwf2xIMdsE0JRHCsxHB20=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.0-next.1561069341499_1561069352940_0.7836992052208354" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.0-next.1561071411692": { + "name": "puppeteer", + "version": "1.18.0-next.1561071411692", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "669486" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "411347cd7bb03edacf0854760712d32b0d9ba68f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.0-next.1561071411692", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-JsAK+Pt2495EiAlGq6U4QcyLSXbuhc1K5IJ+jIyU/991pETJANJOX3T2/oOH4bw1Kk3nQhDNqAJL0ycuN5UxtQ==", + "shasum": "844ece1e83a9064a29be4d27e2b401480986088b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0-next.1561071411692.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDA8+CRA9TVsSAnZWagAA+0oP/1817gLT3d6/IK1QIe+e\nZPqUNeizcEONIB4F0JgPAatS8XYzmGaW+dY9g9StvvOKf66XWi622mdKPs/l\n1FXdYM3rRzjmAstd/y8ArBuUwdURTBJTfVz5G4Q5/gPSWrrTyWXLwItPIhd1\nj8MJ+ES3YxNWS/fOCNnl77HuT5dkD9ryWQ7QGvPsJiJDSdzXEIDREvkTo7Hf\n898og8jZzXP1hqGD/NvW8OIiUDsjXoHw/trPer3cXRnYO2MRORs7Q+OrHcBl\n0D/pJcJq9ICdAn4JLIP8AG+Dv7Q+BusLADuIdkQWY3sFXMPmTkRz6Ulv/C/d\n/7Lf0KsiyMBCEv2hbbFzhwEI4ew/i0frEHfPt/7AaHfah/VRv2TsgH1HPxsd\nrgk91B4NPGOMsn6KGnb2m9lqKxGk/viXUVWxeA7NoG/yAOb7npKn8ymr++x+\n5npsXCSVR3Rpkq83qIX2GDdAJ3bMcFLhO6GfueyBolOWfYClhTn+KzbVu+5h\nGnzmEQIqnLbOLfX9BCEP8z2IAWVqDMJ1iq+TpceDiR6eJMcN4lX4jDaF0P47\n2EVWQKlvthasRH+YdSC7BxIWarQ787OW4lk1rKdvfG77TcNwZdDHB0gDg/w9\nuWC7SBpwT9h1uOgF+RL5y7jYw/vY52PUdUKNWWYPrO4l9/xjmyOm/chbZOJM\nz1kv\r\n=2xmz\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGFbXcIaNUqrBe0peY/PXZPAgImxjVrqliBw1BCe/tnGAiEAl9vWTmZ8FIoswhH6REKTHgHIvqSDdt962LZc2Gj11IE=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.0-next.1561071411692_1561071422281_0.3499147722771536" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.0-next.1561537553179": { + "name": "puppeteer", + "version": "1.18.0-next.1561537553179", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "672088" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "cf34583be53cfdc40dc382502dcde7dd64c5f483", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.0-next.1561537553179", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-gHplDdiqiLtiLSBMt4LbKwVMGiMG0lwtbvxuLtL3IBZrI6IugNVMznJQn9d+bw7uG8mhtJZwQrGSXexBW/e8fw==", + "shasum": "104a2d635875590b6c3372a7fdfcf1533147f6fa", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0-next.1561537553179.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEywcCRA9TVsSAnZWagAAePoP/RtZoNSYybBVpHrpntZk\n7sZcOuHJyzDiHqhcWMs6YTZOI9XtgdfZKWm1yzRtrzHIwXyrJsYvnpTCNSlv\nd8ANokBsdQfLhMabswF6rBRBxKu6vuSYw9h73o75kp4ODCTXEtOU+UCm5ap1\n45kfklXh0x2i/4AHsgtZrqRyaNj+8AjfSH3O4J6P1drgH1EqznzwwVdpQxA4\nOfdOrofB8AWuNbcPJr13vi2zCvRzmJmj60GKTtBjA3CLSl6JFuAix59oyIiK\nFfgi/Do3JZ0LnYJEjU2s6m/fHLkYPI2Rg74WNyyAVBuc8r6unu9IPWzEfbv1\nlmKRRNr+POPfkQl1vRvAkwimzqSrvolH6Ro3VAEfomZOJD0Zq+fRfLOVbDlC\nKmP4lKJ1I5Dlx+I724DBnTerMr8WJQQtXwFRjYnSRZvyup1JvJMQCxHjh+ih\n+iqV6eFzWRtBfEtlGWzYou6uXB1Ke7phW82/OCwGjEP0XhL7QDFH3YkNe7up\n4gUbWLRR0kYxyZ7SW0vsJzqL6lThcaNI8+gfk+iV+ELqq//qysIgIPyhm4Jk\nFdclZNq1M7ORZ/rKxKjQ5T1EappEdoqqlZ9JhOZkRhqZIzvfAB+j3AUMHHvV\nYKuuJHsm2WCsgVSG251f3R8d3Xa2NjHupzDDXij2vD9eP8qbM+4BN2Si16xF\n1yQB\r\n=y4bI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFX31mD07AZVEfdVV/csN6+Zs/xNPmqW6aHhkuF7/GH9AiEAlXBJhnpGTMIJzE2GnXrb0izxvXfixu6nmr+hXRIA4Fw=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.0-next.1561537553179_1561537563991_0.8875947774764328" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.1": { + "name": "puppeteer", + "version": "1.18.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "672088" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a2cf81dd784327cc6133e180277000610a959b75", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.1", + "_nodeVersion": "11.14.0", + "_npmVersion": "6.9.0", + "dist": { + "integrity": "sha512-luUy0HPSuWPsPZ1wAp6NinE0zgetWtudf5zwZ6dHjMWfYpTQcmKveFRox7VBNhQ98OjNA9PQ9PzQyX8k/KrxTg==", + "shasum": "4a66f3bdab01115ededf70443ec904c99917a815", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1.tgz", + "fileCount": 72, + "unpackedSize": 751404, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdE68qCRA9TVsSAnZWagAAkF4P/2dH5fC+zCva76aj/iUH\n60ZjMxhHvyYAdWc/aZteIbkITAHameIzsywQrhW9wFlzwc/Z85kI/M63z+SE\n/eZ8fvdC0Hk/cRVmFjQw6Ggn3c5+X27+GNcVvdFcR+UXkbW984BtPuGjBNJ2\nLRjVoldlEHDGfbZIUV4kTnEHSD1GVK+6bXUPaK/F0VIVFAIwU3AyWySDv9wu\n7EQAj/HE8nIqnrVigd0bC851vPuAraNd5i3HAaFLurFanGQi42QywImnD+lc\nwxwGEyZVfBCF6jSlOSS47OIzZaXEiqgkDqR6V3EDowSR90i45p8+7Ej8NpSO\n1/NFFPbu5rblX8h0BNgnSv3HYXtqw6rWz1C3br59MNOqfVJmJRqNO8dIVckB\nRsBAqRJXh4iys7DjlQjKTgVuuWgV3NjwIHFTDNOx/fGqoEtn5WA4dMzy30E4\nX4F49UVTo3uFeQ2Q+GZ1sPATheFw8AdFpRHSSI2cugyLqII2yZcXoPS4u777\nSNQgLfcz59TYx1TkwuqFfnn0mrJD+s02g+OQr+AhavW3dpjTfysAukCMBEs+\nQXLhYdvyYte+HJS/3Ahkk2bX0PChgUzaxPOt6zIvP+77ZocSs8Rt3U9W20nP\nsJI2Jy4B4eYer44QEcMrccDp06YT1z1GSkuZXseL342+y4gH2oZ5J03Huqen\n/kZR\r\n=IXtA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEtrO+93DlF+nAJHmx9tPeb9nU09eH7SD7tZjA2nnmNUAiBb/M14qyVMhJxdK0DNDjCEWlxrTcBoOKkANEEElZIjRg==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.1_1561571113502_0.34019041390325966" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.1-next.1561571308956": { + "name": "puppeteer", + "version": "1.18.1-next.1561571308956", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "672088" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a2cf81dd784327cc6133e180277000610a959b75", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.1-next.1561571308956", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-x8j3k5hxur3ZqdR0F6/8hWeYLTYhmQfiC48YeqpBbJ/4jYIzKD4GxaHWRknvUGmyioYfwx8eIHKBGUbRrklaGg==", + "shasum": "4ded7e14a66ce60f62bdda634a25cd8cf644917f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561571308956.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdE6/4CRA9TVsSAnZWagAAX4QP/36yaYFfiAeERIfdbkv1\n6l7mK3cQFXOh8UwZ/Z75Y4N7TF6f2z8DFcHKxsdCgDuTMN++wFz7XKQ13dYm\n+/dLrYs2cIvSlh7bfZGB+tKpXRkbbpVn98V/GDOjfdWosrecqfNz5OHLbKDZ\njIHxqQe1ZL+BSNbBaun9j5VJwWYv+9PzEbBxGitqCSie+SSuDNKyn9RAV8xh\nflqV0sXxZ3no6Buex0PDYt/OOSGnDduQaQY1410n9SJuU7IgS3jxy/xNfyIG\njt6jS7cl5Eq3uuv3vY+LOMDgUyrovFrqz21JZcwbdy0VVWUVhIMPR/qiQmlL\n/40Om31FpOTePI50nv8wtOYLpfECuJ4iL39LCTjH9DyHEpSktHZTTpdxccFA\ngn4By8yWP6OTiBcTFjVa/Z/x+iZgCeelCRZbIIZo8pUEH50H2c77+Nz8Rd39\now1A4Mo0X4TI9Eg8QLag1OcaEvNh35SabbFh+KixYSanTZEez4DscXpVSdyl\n6lZLCbAynDQqCUIMzoPELj0UECOz/bJJAME7wqKIfEqAVGM5rAv9FqjeELbL\nRgZNMHCLxGNRuotWIbFTaR0O6XxZxpLKNx6IUZvZ9M68jzyyeSRNM+sk1PvD\njupzVwh7wWnRbwL8/IVX7SQ8h12bkwgL0jIFLAgbavsQRex4AyMFbVfSOyFk\nn0m+\r\n=jj05\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDTyhZ+JAPVkGJ75LeN9t6SeV44k3q/s7tQ2VXdsOF0WAiEApC2YvwsaNb3LG1nnVy6T+kylHHsQThh5ufl0jcuidZM=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.1-next.1561571308956_1561571319875_0.00867501889554756" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.1-next.1561572384242": { + "name": "puppeteer", + "version": "1.18.1-next.1561572384242", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "672088" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2d99d85976dcb28cc6e3bad4b6a00cd61a67a2cf", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.1-next.1561572384242", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ka01yw5vC9D0S1JR3gz/uicPBmbeWFP4CmGi4KQL66i0PSz/3mP/9rF25CxEYYvLCFRIMSbmcSBIRy7RbGNj9w==", + "shasum": "32a8df2d3ed7a5b850d0c985746fc72b55f0d05e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561572384242.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdE7QtCRA9TVsSAnZWagAA41wP/RbBZoIaw1PLLx0yUKj3\nKCfbIaXEB4T7Pn461Ga1Uatt8K3kK1J2VXhSXqIo8oN2wOr1fs2KxkvSyNvv\ne+i4ZKivt83C4Aine2V/YiXBLjfJY8z5c8vaFMflTEw6G+MI085YqyAVWKdF\n0Ej5iNWrQ0pGPDDftzKGl6a9rFjtoYGVZrkzeIVGhWpeE5zafGEdJKk231EZ\nn2uUzn6N8Jy0Kac05vzrD8f8uyTY5orRixRg0FwN/41CsTRrEtCPzreRtrbp\nszlO3vW2Sk/XfdT0z50m744q6EHZKmaPLq1pDhwzIJkCmQt7/ptk423i9xLl\nG/HaRLG1XR9Z+0GgEPvXVR4e5EpX8X27V5PYgaQX+h7b/3FRUk+JYbI1WGWK\nYFirKWwkqjWOfjPgM/dZ6evt3KdPWELKzXI2Wok4zblU3MOXIqlNc6EVP4HA\ngd+gFcb1D1gckLsgzSQ6eaIQY+7IzMXCvjrRI0thE0NiSLbf/x8k7fxy2C6H\ngSte64Ldtlv5XFAzVWpaNCXu9ddBeeemeaNP8iT7Bh1IxT5kaZL+HfgRHIM0\nClP+enTOGIecKD0wniPeHLUi0ZNXDpK6xYGvbUC9i0tKPWKfgrii144rruB4\nGH+/h/XcvQenR24cFKPHi3k2CV4omzOhwqvIi/dHiiOjPwMEnXtCVyTtMHXi\nTy+1\r\n=opr0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCz6EB5PWhK5t6Tj/yV8Q/W21mTb1oDUs/T3+MGchCHCgIhAMxk2bP4/XSC9OKywRm8PTJfSdUjpGhU2ix4gwuz4D9y" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.1-next.1561572384242_1561572396401_0.8544671411924922" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.1-next.1561809958367": { + "name": "puppeteer", + "version": "1.18.1-next.1561809958367", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "672088" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "492132f9b0f038c44f028f23063bbefc3f8a8a4f", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.1-next.1561809958367", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-JD0QekdQPS/ejKu3OV304qWlyRQycKPvLy8MXZVhi7+jH9QYBD+oHT6AD48eRMEnui/XqgNvTA1+7WbchfGeuA==", + "shasum": "c075d862e6bcf6efb0b6906dea6f8685136947fc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561809958367.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdF1QxCRA9TVsSAnZWagAAuzQP/3jGBFWwcI4/6ajRyxnS\n3oyszfs6EC3KPz3ZvTUFc08csKmDjmhxXcMQkA9K/NKEvYhoJuUqIfdIbUZn\nxEGX5vL8k9sZBvniTqyah/g1wQRXXIrlwEvMV3JshwA85GAumkf9bpple9nu\nmIZAtVGm5IPzlyuaAgqEhi9x5B6u2KBPiI3SVn8USg7h9Dgb/k+K5t77H2mh\nXN4J24St+wxqK62poPfwjh8n6MOgVkhf/7dRj1N22BaG5SdQ9opC1IdJOirJ\nlz/aPXpreOCCWEe4nx8upvc560OV/zmtvPA35Y9Iu+Cda3A88ExbdWDLWz/M\n57oRuQj9VFZvKmwHEwXVsen8xAWuQec7cK6UZgj9LGGUCUgCXHpnzOgL9/FA\ntFFSXYRpuVW2r+ZYo9kHQA2j1TkYTUfieouu3QIhxyRO3Xomz5l7CA3GM7qn\nEJmwdPlEdA/lg87W+DbJRbKkyBSKTFbwDcGed6xoCYORUiSl/XHy5kftWosn\niHEoXT98AitPC2h/yVi+xzfFDnwMmYz/eIou8rC3NohbvYwoTRqxiWzwsVQb\nBMavAZ5H6lB6mTZZCmDOTn913eOI68IXeObAE5P7WAueWxSVf+Ge0oahIxce\n46eJw7aaMnUtQE6d0Shwbhg9/HgWBde/X0MYHNs/tNq7i8p2Otyuuf5CT2QL\nX5Cy\r\n=8Fwy\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHZrX8Wlx/+A0nEfZTrctuXXv2gK3FesSN0lFxcXsA/eAiBZUg+XzAfzFVBSGMbaH7YXu8diLWsC6UNFDcpW49MNWA==" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.1-next.1561809958367_1561809968962_0.9833840921483177" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.1-next.1561972156009": { + "name": "puppeteer", + "version": "1.18.1-next.1561972156009", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "673587" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "9ef4153f6e3548ac3fd2ac75b4570343e53e3a0a", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.1-next.1561972156009", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-W2rUUUiUkJcAW+uVvNnXZIZjbEkwzEE8fnm6MmqJWwe636aHLfLciONwIusu4EuTnV5Y/cZEb4N7jcXJW28kYw==", + "shasum": "f6ad3410713c90a234ffb2c08ab57406d6ce864d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561972156009.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGc3HCRA9TVsSAnZWagAAaOkP/1UsQpav0l6SoqHjs/rP\nNHKpBZ4XMrwprHR+rjUras8PQ4T4l/FHt7Lu4UE5lYGVvoGTdxKakZjkHbNp\npckj1A+flraxiWLhpVzIuxxqDpS8bCwOQ/YXhMv89PH+XkDz+J6Jijph78hB\n05E8e012l7RFddyF6GvrOmjwVnJgTJtd4kv8ppsNcAg7LrGv6obef5npMIT4\nBl723vk628LiVZ51R3F+lW4vq3gwQ+sMuIhkMiEC+G41sNOGO1VSbuLNNZdC\nbFRmbrF5BuhRPU0EBvw4BfeqYE8nHf2I/r9XWri3ECeN4OLSvpDEkUwII8ts\nGyHolvPjAGivwQRYh+bjx7Y67II4uIT6H1BWO+VnfeD0TYLVTEo0dLVsZErh\ntDhLV9OKFGa0LoomI9jDn4kHNrBcZY3Jj/xOm5tRaUW/iqyAzWnBRo9LeyK1\nNlfQ+s4uj7bXyiEHhrlAJ8qbLmTBeu4Eu2pD9BTsiopex6jkj/l6L5sFfbjD\n5cz/ZYV959/X8UhEjzQ1OrVR6lSBkp5lXrnsYGtmt0bYQUTIt1RwaOYmEzGc\ntTbSRPeoP3fiDwL+sFI/6NuHaroTKg6SZK5+v8bBdNQEFqRf4NJJRf61zWQp\nW2/7bSkhDOq+TSSQFbEMBqppH7olbJGGwLr9n2Aa+YID+c/wrqo909ShG1BA\nqbZL\r\n=ojad\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCHy0818nP2LGpTid9MsFE4Ei84XLiuDTDv5AGCbIisLkCIGcdTURlbVQGn8GNAnYz54/vtQkPwnowtAEvuT8/r+eL" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.1-next.1561972156009_1561972166522_0.2337366254621427" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.18.1-next.1562564221866": { + "name": "puppeteer", + "version": "1.18.1-next.1562564221866", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "674921" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8e0c2fad39e6bfa702b05e399638a9207a26056c", + "readmeFilename": "README.md", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.18.1-next.1562564221866", + "_npmVersion": "5.6.0", + "_nodeVersion": "8.11.3", + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "dist": { + "integrity": "sha512-ubv8Gyxa/6zr2W3h3TVbNt0qB6kkQi0v2QOpQQEIw14rR5YeNPP30n929shx/NILTj9D/5juks1tA7sO9v3I5g==", + "shasum": "4f717dbe32343fd11172be438ce035288caf08fa", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1562564221866.tgz", + "fileCount": 72, + "unpackedSize": 751423, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdItaJCRA9TVsSAnZWagAA1mEP/1HtsZPnIEdpJE8VamWE\nJH/oPyj+zIh9MYgnGvLXQUyk/Q/WfD3NXvAChIKVHEvh74Q4ApSEsOmCJKQc\nKFUH/JBVENXyhnl7/eDk6iDFg4QUuWS6KwhvyOn8Z9TmIWVGSJLFZpK8tJbJ\ndmQ/ny2yHCylgBEAFtH3bqHSZ7iMag/YdGaTfbZ0wwIHPqiVjVtzlfg1szs5\nYX2ujnNn4KNpuxofp+wuB6uXkbuP/FVaBej4P6FVOA9hrMbgU02zRcIRk9PO\njBgnkDq+ZQeEs9Xa7lYvnlpOUVJZFYTdjpNu3QkEApVfyqqqSpDsys4mY7sd\nVfVEPfVjZU9biThntIv8/0TpG503L5jcP+f+IYQNmW/+Ls1esQOz+4sOLAg8\nPEn/ki+W04Zoj8lzdL0yL7oQQTRw0Z3zIUVV4WBeb87FDnQTx1YepV6I+zT5\nbmUH9SUPZfL4IBIwz6XHqssNSySal5AfegfPc9D/9VIFucdkVn1Rp1ARZXc3\nWr0XlrVfQu9liPI7A8GgTVNoSzKglA//rtkARzY17akVq+OVgSenchOa9kZL\nkbmY3EgTSjDMH5sjFRHh6RaP/ngTIAKgHrmvPJsEHXFP88SnnDVoP61ZzVFS\n4jCDrbE3cmDnJNpIUff0M89wzsgW/w3merYVS93uZUQzBHj2YFUBpkVJlNTU\nJwJL\r\n=LbFx\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGKttD+f8Xc2V/PPPcxA2vTCmAzrDNXI1wIYsPvySw2jAiEApaI9F0hC07PEIov2NIewIFJmZizQREtzXUwMyAp1DBA=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.18.1-next.1562564221866_1562564232702_0.8314893521529656" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.19.0": { + "name": "puppeteer", + "version": "1.19.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "674921" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "af0d2290448b291ba51cd98f7f0f6d4c5e4f5956", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.19.0", + "_nodeVersion": "12.6.0", + "_npmVersion": "6.9.0", + "dist": { + "integrity": "sha512-2S6E6ygpoqcECaagDbBopoSOPDv0pAZvTbnBgUY+6hq0/XDFDOLEMNlHF/SKJlzcaZ9ckiKjKDuueWI3FN/WXw==", + "shasum": "e3b7b448c2c97933517078d7a2c53687361bebea", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.19.0.tgz", + "fileCount": 72, + "unpackedSize": 761618, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNpW9CRA9TVsSAnZWagAAcsIP/14vRtc2VZACU9mU7z/o\ncXrZtPY7fl2qgbg1tp8GEBfgQmuZfYDZ4r8dDoDS787y2yl5jHGLrv5ANHGE\n/kzJX+LhchHWIJ2LofS87nbeivRhs9makRwuZxmsnsOoNQIfztA7TNgBz/qh\nR28bEI9fr4wjuChhRHz5CJNbTEgWDKiG7oUUF/q4vwqy1RV4dXRHGjj9beoH\njWh54ULTDTCa9p/IsD3ILpUUH4iCNGb3LQexulFA2IApPwwIGqjIaab8JmXh\nRYsyL+etu7PEVjepfRuZC2kqVAJ4W/heht6gTUN/MrtauAGrNQULD7inZobI\nwkfRm+beENTwliC75R0nH8BNBtsm2JF++F2NJjAaUrw/nTcdzgZUKwduMPGM\nUaOBZel2WwvKjVPWsyIgCibQQXk+3p+XHnklZq7WN0BDDtOaScewmaUmtlp/\nWy4Y9oK25CZ78NI2+FYjPIb2h2eQHkLiGuvnDiD29dr7KVVUkx/aPcqX9Kzt\nhnPmUlKlUY48c8rcBoYK+634tiOK7LVB2LPLYHRh+fbhx4aLISuAIDDHZVok\nTFZ3qIp1Qu9X0AWQtVZy8CuJDMvtBZQM1vrD+IugdEUH/ccoxBi/0V08aTv4\nqXH47hIvuy4JSgb/9OHgx+O3NMc4q0qtp2y64UjLYeshH8lqGmeld459gyNL\nGxsy\r\n=/RE9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBogPzyOsa/6NrVM65pkjjkxEwYN4thPwRomB5aWBWvjAiEAumirps8TcUduYMQr/ZbbnchJfFORdTyZ8jS/9xa2Hjc=" + } + ] + }, + "maintainers": [ + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "paulirish", + "email": "paul.irish@gmail.com" + } + ], + "_npmUser": { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.19.0_1563858364654_0.07757411233123235" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "1.20.0": { + "name": "puppeteer", + "version": "1.20.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=6.4.0" + }, + "puppeteer": { + "chromium_revision": "686378" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-node6-transformer && npm run test-types && node utils/testrunner/test/test.js", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "test-node6-transformer": "node utils/node6-transform/test/test.js", + "build": "node utils/node6-transform/index.js && node utils/doclint/generate_types", + "unit-node6": "node node6/test/test.js", + "tsc": "tsc -p .", + "prepublishOnly": "npm run build", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^2.2.1", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "./node6/lib/Puppeteer": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a5f03ce1c85c2630739f2a894a303c68632aa250", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@1.20.0", + "_nodeVersion": "12.6.0", + "_npmVersion": "6.9.0", + "dist": { + "integrity": "sha512-bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ==", + "shasum": "e3d267786f74e1d87cf2d15acc59177f471bbe38", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz", + "fileCount": 73, + "unpackedSize": 767882, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde0iTCRA9TVsSAnZWagAAtsIQAI5D/aZ4+p+KrrFjll+p\ne87vW7jxqXK34sxiCHL/v0petJYoRjFrdXeA0PJlJfu8vGqQFU3XLTB4UJ+n\nwT7wSRnWcwZIEhM6LOtyfT0oGVWng4j9YjiMqzJs0d41PSarJts4RC74PU9/\nm/wEpLJwbrHIlmajzwiMtclYHnPUEuK9upsbh1cU9QFLutowDGype8zTRXY4\nofgcLTHCkkP3qrbqD2xXSD0y2083ZPPEcGnWLCUnNF8RDQBYfCPZczeB9y3F\n+Zqoh7qVqRggT6V+q6EsWjLdrVJfuukjKWJIBYyqRtS0hL0PWRmo5yg9xKm6\nntOTjuVuXw6B2jY61k3A6LgtbHrtJDKbWDfmdqQdRzkwyKE7IWpqGqzBUAo7\nn6RLbkIYkgZ2Iq1N8jqmjvxryOdC2GSI+V8W6JX0466DUij5k+t3WpBdKQHB\nqLYyoAXmWkb6YNTEsLyLNsIDscx8/8D9o4aluSDWdhNkwxgBfKOJGt4vepPj\nr7P4I7HcIySERkDs3+UoJD+r7EuncRoqqKAq6k2ErMd3spFu+62GRPlAoQLw\nStktmOB4Z8h8xeD85k8faJYcXXJTb9KxdXfqGDauU8Wl9N2RPPnz50ThIdqD\njh9WBiMgvMU4HzyGqT8nW5v46A/5gczfLcJAnZlExVVNtkM+0O6ur4A/lBf+\n6nQR\r\n=0V9d\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGFvqX5W6pcMGH+ZQdwhCWlfQyQ+dRZC49nTiIzjrDOAAiEA/MrGnbVrSpqcPJxf113bvpT/uRotdMr+xwkSQPPSemo=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_1.20.0_1568360594420_0.5373290225892353" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "2.0.0": { + "name": "puppeteer", + "version": "2.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/GoogleChrome/puppeteer.git" + }, + "engines": { + "node": ">=8.16.0" + }, + "puppeteer": { + "chromium_revision": "706915" + }, + "scripts": { + "unit": "node test/test.js", + "funit": "BROWSER=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types && node utils/testrunner/test/test.js", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "tsc": "tsc -p .", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^3.0.0", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "aa246973b96c36768bf3d4db0383f7101a1b4ee9", + "bugs": { + "url": "https://github.com/GoogleChrome/puppeteer/issues" + }, + "homepage": "https://github.com/GoogleChrome/puppeteer#readme", + "_id": "puppeteer@2.0.0", + "_npmVersion": "6.4.1", + "_nodeVersion": "8.16.2", + "_npmUser": { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + "dist": { + "integrity": "sha512-t3MmTWzQxPRP71teU6l0jX47PHXlc4Z52sQv4LJQSZLq1ttkKS2yGM3gaI57uQwZkNaoGd0+HPPMELZkcyhlqA==", + "shasum": "0612992e29ec418e0a62c8bebe61af1a64d7ec01", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.0.0.tgz", + "fileCount": 39, + "unpackedSize": 346444, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsaUFCRA9TVsSAnZWagAACRYP/irYqcaooOpXylpMzCRQ\noJXvAN2UxMgMdXNvbOKQSRcn14b2tqClFS5Rf72qnKRrFdGGQZTVMDHxP1Gm\n+1DWOO5cy0Lc/Mi5nU3tZ/yOta6xZP497HOgs5dRF6AxSTISnroFs0sv/T3r\nS2tlMorGMgc4TSFKKd4YQFgt6KA1rkArcsV3DdYn5YEDD/8+SxFGowxc0xnv\nEoshP8xCA4cTCMD36Ap91Flpj3GalgKlpqvcHomIbXZHdQSa103vQjiXU06v\n4U7TQlYZ/Asv8atpb84Kl9n93ZGUCM6XVSdxWicPxuwbhuzjEkCAWNtgUSV+\nvZ7DdeltqpMBQLyoaBiea8znlYsgOV+QHiyRjlZWS2qWG8lVXSMDN2q8SgSS\neiwPMbD79s87qPxDWM6vl8owqAu8bjVfAM/g2sMuSJupopkCHIfwfNqZYXm+\nPfEEgzmdUVl32z+4nlYzGzizbLA53UoRIGs1VOTRXZxBbCViWsX1XIw7hMwj\naUMOQRLjCfr6QWM/pQM8w0m33bOV2KnZIJDEve2oegQwKVPwbl9fgO/Up/1Q\nJMrhcoyC8bXKLo+DSyVpgRcvUmc/Ak3RKNTdWvCpFadzL6v+DsYE5ZjqE/ju\nlLOnw8DxwjZl+IOSS1GPLW7GS/SqbH56VbEAnW/DQ4zRqstD0fMnV5HEiTMH\nQwvX\r\n=KQPI\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDAN5zG1pcF9uwejadmFB52pwov5XQyWpQBLzlewAZxvwIgZFnzmb+0TCpkakND5wJasS1UtittNFnpTPNuBFWdTsM=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_2.0.0_1571923205069_0.3613257079330432" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "2.1.0": { + "name": "puppeteer", + "version": "2.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=8.16.0" + }, + "puppeteer": { + "chromium_revision": "722234" + }, + "scripts": { + "unit": "node test/test.js", + "fjunit": "PUPPETEER_PRODUCT=juggler node test/test.js", + "funit": "PUPPETEER_PRODUCT=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types && node utils/testrunner/test/test.js", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "tsc": "tsc -p .", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "a30cf05e3aa867645f17de1c75ec942c98836dc9", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@2.1.0", + "_nodeVersion": "12.6.0", + "_npmVersion": "6.13.6", + "dist": { + "integrity": "sha512-PC4oKMtwAElo8YtS/cYnk2/dew/3TonsGKKzjpFLWwkhBCteFsOZCVOXTt2QlP6w53mH0YsJE+fPLPzOW+DCug==", + "shasum": "c10cabc5525f57c6766eed4f3006b6e10afcafc1", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.1.0.tgz", + "fileCount": 40, + "unpackedSize": 887748, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLvqACRA9TVsSAnZWagAA+u8P/156GBjwrv5kGXULMs7E\nfh5AnWHPoECJzLcHvajlo2TTlu8EWdz04WqP52/teelJXJKVIX2tvheGfzWM\np1HHsbRawqZpU7cn8tXDxfeV42MBT5Rupa/3/kCsWdEye63Do36xwI5g+yIP\nf0FMY6qxcLrJEDHeP1jCphJ1JLKSh828S/9VTE75aT2l41NyWMFyvstLzPze\nPOqEHMYvL8e7wRwH1ctroG0B2izAPxLNuOh5DTumDLagh5Bfgjswgdlw5avj\nXTwYV9azFh1JPFGtRHhRR1i1Dn/bqo8ykUGLJR5p+WU4a23fBaXPRAEBugEA\nySmc2Ox0+iDJeJNaD2GqcDfbxmcO2NTvp0OdGy5vGeY6bKcYshvVpKWytq/s\nIrmxlfXPh+2Xk7qSqsgHTgjKKXd7EQEBN/YEcrFw6BIwKxqs/gOlRqzpGBGg\n5/yrpadSYtSp5brXSn4x2c6XaDzIQCTVnSLlCr5bnR08OBXSa5gwDwXnIkrZ\nWI0j9UPBp1Q2PeaFyLs40bXSDkevGAmyESTND5TgDBj/9Wp1VysgZqzo6+ek\nKjhfTJKA4eEfo78WX6A1KqY5mE8sBOJxyC9x/DE/dgPg5nu8J33LAfU+vTp9\n+rv1ZSnVs8/emjHyHsZeJJuc7A61Tu4iuY8/jzRCd1L4S4jRvmjciJn9c4RV\ncukw\r\n=bHAZ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGEBJQxVEbaDzZ3qZGqepIcs2h293iJro5wabH5IB491AiBbzo6y9qapthUBu4Zw48twHwdHOP90Qdygu3VzZ4PRIA==" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_2.1.0_1580137087437_0.8149639882924038" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "2.1.1": { + "name": "puppeteer", + "version": "2.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=8.16.0" + }, + "puppeteer": { + "chromium_revision": "722234" + }, + "scripts": { + "unit": "node test/test.js", + "fjunit": "PUPPETEER_PRODUCT=juggler node test/test.js", + "funit": "PUPPETEER_PRODUCT=firefox node test/test.js", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js", + "test": "npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types && node utils/testrunner/test/test.js", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "coverage": "cross-env COVERAGE=true npm run unit", + "tsc": "tsc -p .", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && npx -p typescript@2.1 tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "node utils/browser/test.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/extract-zip": "^1.6.2", + "@types/mime": "^2.0.0", + "@types/node": "^8.10.34", + "@types/rimraf": "^2.0.2", + "@types/ws": "^6.0.1", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^5.15.1", + "esprima": "^4.0.0", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.2.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "46386eb8669503b9bf34a17bd0a9f7f4e4418402", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@2.1.1", + "_nodeVersion": "13.2.0", + "_npmVersion": "6.13.1", + "dist": { + "integrity": "sha512-LWzaDVQkk1EPiuYeTOj+CZRIjda4k2s5w4MK4xoH2+kgWV/SDlkYHmxatDdtYrciHUKSXTsGgPgPP8ILVdBsxg==", + "shasum": "ccde47c2a688f131883b50f2d697bd25189da27e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.1.1.tgz", + "fileCount": 40, + "unpackedSize": 889013, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOsriCRA9TVsSAnZWagAA9NsP/0jcWtpYTqRmv7f9aiLq\nzkxmE/mexOD9slHzcw6awoxgAPJMrpil+3tihCoMH3u8EhJ2tIoK2ikwvBQA\nEs+VUmtENcaF3/tjDHLeDuch0dbPzbopoFbwj/zQ7B0o5uh5xOg60HfZ02gM\nssL0oRKHzxj960ALsKi5oHQdcq/Q1Ve3SeMYyu8zGu39W5ArEPlWz04YSXML\nHLE4mS7T0oJqSdFhElrdQb7A9YnJL4HHO++z0eyHZBDX0rhEZIZt7TMa7NNz\nx1yWGtPEm9UEFJcci4Fn6mXuSZEgqz4DITuCnWGVxzIi+5CpKTC0rDdFDxLU\nb58kmzJQOV/A2V7g/kDa2UB1tR/8J1sCFLkVnSFSixpUeHHM9DjxQcS/M2QJ\niGQSnryBXLaOJxORYsbOSLLXLyFm3ajIgniZIY+Ajqmr4EIaJIOQ4KL8JHBo\nogX+4ly6fVftrqw8JHdn/n/uMBtk84u0F+NP/jTbFUL7wo1ii20Yb4xMe2WE\ngbktHvyqdFUfnwrEWaS4wBGMVUanZSnB29sgRlQtm+nzdXNoHDx7tvC0piAV\nk+ZKraGLZAH0ddZJrBxqxX3CDm6QGbmY6zsrmuxrWlBqeUbyPg6qxBjp83FP\n2OyUByb4BXZT5Jz7FsYSviusLeg80HBhw+0x5CZBjhmCzSlib2f59IU27DCN\nJVhY\r\n=0z5o\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGvUxAB9sbWhft0TkgFCoh9BEmS1hNhRVjlrdSZmF00iAiEAnbTjzeFiKK1G2eyhd8gA6/0cs9BfRM+58w2k/VHNgP8=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "hanselfmu", + "email": "changhaohan@google.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_2.1.1_1580911329462_0.6547509769549213" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.0.0": { + "name": "puppeteer", + "version": "3.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "737027", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "coverage": "cross-env COVERAGE=1 npm run unit", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "lint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .) && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/ && cp src/externs.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npm run tsc && npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && tsc --version && tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "mocha --config mocha-config/browser-bundle-tests.js", + "update-protocol-d-ts": "node utils/protocol-types-generator" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-plugin-mocha": "^6.3.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.8.3" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6760b9225e52d2722805ba5b8f7f76816da7c15c", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.0.0", + "_nodeVersion": "12.6.0", + "_npmVersion": "6.13.6", + "dist": { + "integrity": "sha512-ArmIS8w+XhL4KGP05kxMousA9SFxmeirMkNNcVe5LjK4iGCbZ8qKnG4byuXMru7Ty7a9QwiMUIf80X+zmJuf2A==", + "shasum": "844c714d074c7ea63cfa3744501c1ab6ea60722e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.0.tgz", + "fileCount": 45, + "unpackedSize": 933494, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemCMOCRA9TVsSAnZWagAAPEsQAKSXXNMf5Rfps6gBmb53\n0xOrryg8edAdntoIUPp0aWOHklWFGYK6WvjoXra2cvTYyzE74eJfSwZQstm+\nK59N6pasjAeC/Otd15vaphHYP/d7YGtVgk+5xJ196hYlcqmacB5lCEVHnhq1\nC1OecUCxqU/OgHNcZZVUIXMvlX7slWll019K5xaINPi9QLm7k2/Y7WCu1WNh\nC00sEvs9uBkob5vdq5Xw1Mbz8TEkNaGroh6kZdfc0/Lp72It6SHz3+up4Ucq\ne0xLArP6k5iMYexXdew8L48DioXLD94Ord3dlS+dipcT4mkXyczTd7rhB+cM\nLBXKw+87BSnCBC8w76PNvahFejsJDOF60BqL8iRhKsCkPSdCy68LYc14LN/7\nsBJB2ivPFA65M9O+J5Feds2ZlSIJ/vmkJqJucIDAx45kKDgIXtibwMt8hnJE\nWsXBm/UYfhxES9shuoyzMrPLKGHyeurxjPDr8TsOoY3ZoRwFWHQtHsiwxPts\nmBLQeWEFNlDsR8Acxg7qAzbxIzMTOKkOkmPJXqQ3Zqcyw3CRuStpGZdoGmi/\nZDe09PyJ2Dry4mD7DiJGrdVtFW4TzX1vTw51QXo941w/8QTlrHzdpsyI0k/c\nxDlY2uAgKfuztJP0I2utRSVxgxs10yfeXAbm30NWuCMHa6qLOBhLLl6ZZCw4\nCkCh\r\n=vNxf\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCpg47NgY9KoZR68KGpqEsU98pR11W5ZRghLKAaFTMfIQIhAOc+npVOrNIZnNz6vFenxnFU62c+FyUzKUvd7AjgZU97" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.0.0_1587028749431_0.43071279325067136" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.0.1": { + "name": "puppeteer", + "version": "3.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "737027", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "coverage": "cross-env COVERAGE=1 npm run unit", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/ && cp src/externs.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "bundle": "npm run tsc && npx browserify -r ./index.js:puppeteer -o utils/browser/puppeteer-web.js", + "test-types": "node utils/doclint/generate_types && tsc --version && tsc -p utils/doclint/generate_types/test/", + "unit-bundle": "mocha --config mocha-config/browser-bundle-tests.js", + "update-protocol-d-ts": "node utils/protocol-types-generator", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-plugin-mocha": "^6.3.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.4", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^3.3.3", + "text-diff": "^1.0.1", + "typescript": "3.8.3" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "feec588f951d8833e3b9758cde9f34c325837407", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.0.1", + "_nodeVersion": "10.19.0", + "_npmVersion": "6.13.4", + "dist": { + "integrity": "sha512-DxNnI9n4grVHC+9irUfNK2T6YFuRECJnvG7VzdVolxpVwWC5DQqI5ho9Z0af48K5MQW4sJY5cq3qQ5g6NkAjvw==", + "shasum": "dce04a0b742fbf29f81ff423b2164e84647b4379", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.1.tgz", + "fileCount": 41, + "unpackedSize": 918348, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoFYgCRA9TVsSAnZWagAAne8P/jFlEjkiAb8NupWVPodm\nUPXb7+RTihP7sodGJRZuv9aPNEl0UKLmkwYr9kbQa6Vd70VrvmdM5fr+M8uI\nTWBqKYFGCWZCUAngudaq82WSnh5+AU75emNOEX2iyEqYoFHzzkE8fwwCAbUT\ngiWmpK0M8U6Aeig0rwG5/hE0HF4n4pQKIiLfOYsG7ZDAvEYjOvVBeTR+aXF0\n01alekOUVqMPBRuV1CVTNSFCd6q1NjR0tFZMzpK/1zHcdh4imRCnLz8eceA0\n9X5LAE3zDipmEqkjy5qHlgNbEGGxnrM1Ht5an59bHzvDgD1w7g31Fe9ulzhP\nNFbcbXZFzgQKWW9M21gqakd2V01PHeW2dcEUh2MNKZxU+xQvxiUsh8Y80+RA\nsRl3By30DA22sOeDzzcL3ZuNY1U7ssMWyxMyuBOL9+N3hePrqrB+sUKHaoef\np+9SZytP4ZZ0x3fJKtXTXVSu6k5Pbb1Ws+HznHlAIHpxdUBw73naAhB4OZFS\nr2Slnf6z6trMCbik8ava5YrRHPCtY6ESE4s/585JtYlMnVDn3Lz4RJvofFu4\noYevlapRw2ojMI3ELdw2oBcra7qNjzAlluy13WOZyHkf2qm0B8r0wxjo2dG+\nmhlGI33wJU/iduWV97+Wwt0hgCvujyuuWnRhalsGcO4hAheJ0G6zVCXB7gjj\nupY9\r\n=5NFh\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFlMp0zHH7Hj51l5vp8g8Bau1Z5rygfYBPYrlkMvSkOhAiEAwfosHyjwwPvEUMPlGHjoFGaiTBPRsBaQvhcmb0TZNBI=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.0.1_1587566111770_0.3952180687340894" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.0.2": { + "name": "puppeteer", + "version": "3.0.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "737027", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "coverage": "cross-env COVERAGE=1 npm run unit", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/ && cp src/externs.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "test-types": "node utils/doclint/generate_types && tsc --version && tsc -p utils/doclint/generate_types/test/", + "update-protocol-d-ts": "node utils/protocol-types-generator", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-plugin-mocha": "^6.3.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "text-diff": "^1.0.1", + "typescript": "3.8.3" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "646f42e98cb7a48116f8f8e64f3f3ad7783b15c6", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.0.2", + "_nodeVersion": "10.19.0", + "_npmVersion": "6.13.4", + "dist": { + "integrity": "sha512-5jS/POFVDW9fqb76O8o0IBpXOnq+Na8ocGMggYtnjCRBRqmAFvX0csmwgLOHkYnQ/vCBcBPYlOq0Pp60z1850Q==", + "shasum": "1d08cdb7c0c2666f5e743221b1cb1946fea493f0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.2.tgz", + "fileCount": 41, + "unpackedSize": 914312, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJep/ZkCRA9TVsSAnZWagAABFAP/j69VPhZP0XLrw9+1Qx9\n/Y/1d1qbCWscoQoykFkekr+AMQRDyxGpWbxm5jsu0kECbcNqX6KD5xr2dhcS\n03raLtm+O6iTTFpeatpAhSlPs0c1bpAcrhf6a403q9P0za0Wn/gm5IXKcbnU\n+bzgW9egeIV7ZYwdb1bnmlv3uvKJ0JpVzA65XgU91jfxjUypnreTr4mjgJBn\nFaN90cLk9ySwXZzcRtIEWjhIWPM8ASLgxzWjzSr83DGqQNQOwdPUKmY8hdeN\ne/bqbfuKZkDR9jnnY7RjSqJq1mLuO3NPD7lnr0cHYTSrl1oAx7XEJLP3KzGl\n1uKWFYG9+ryPSZ5+QUKmixj69y0DQFoAV7yHMd+HiuG8KKIwyRPNRORq9zTt\n3YJP0rbHmb1LbxAbzXAnntXg2k+/OEL+5UhwImHc+1xeNK/Eoe1OuF6b9lKn\njvksCwGMib3TWirptjTrLHsotg+mz7X6f/WYK4uVlajefEmoLq9GVZnH4Vij\nlEn0Y2WFgzQ5BIcSzNNR0nwTY2Hm+zkkG37a9Z5DgQHRRnlm7Ay1onYcdYMN\nmQfPuv11CcJPXTUGRJLEfYERXUlismSjvP+3wUxp9sI6A45QnfoWeLTYMXG5\nlOgcssBipTkQbNH3Lz+o7iXpaAeyHyTVDLRPC4D2+JLCrB4j3OMENBkbV2A/\ngv3H\r\n=I7kn\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCyU8bvVbyyaTDJfTzlNnnhWqPOS8+9nv/dAZBXUnzalQIgdVv3AiK3/iXy8vcf7jN0LNHne+qF57wALAl6wFS0fjU=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.0.2_1588065891499_0.26500208248379953" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.0.3": { + "name": "puppeteer", + "version": "3.0.3", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "737027", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "test-types": "node utils/doclint/generate_types && tsc --version && tsc -p utils/doclint/generate_types/test/", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "text-diff": "^1.0.1", + "typescript": "3.8.3" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "dd5bdf16168aae5861367411521e4474dda82b5e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.0.3", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.13.4", + "dist": { + "integrity": "sha512-sWtx9XezIwXdXHNelvnyPEmMjXXiCAuUulEONZFqRO3l+w0vP7dNcGDUIf2HLr4HLLi6r9hcUuO62s/W6rkD/w==", + "shasum": "91c4ce46b3822b849e096413457fe8ced7d5aeca", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.3.tgz", + "fileCount": 43, + "unpackedSize": 888473, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJestCeCRA9TVsSAnZWagAAWQEP/jZw18rkICwAR7IgPR68\n5GcJlOG9FJ9vma1BRBaFbLyjF+np4ikIR7XI7eIh8yRxJ0QeV5ThjWnc0wym\nOP85LjBkyh870pHeTneXBtOH85Nkzxhm0HiOvBpyY+siTeK+3zZ9TqGT+vqQ\nmcGdmCaPPdlzrxDryx+q0vY4A0yN90ocoFrY65aKQf6YpPK9hNSTFWW9y3Lz\n0uBKRx0M9ggUYY7PUXzwj249KUgE6BKaXLT8lUah2teI3Hy9DQqyDido5XbX\nb61vG8oRyAWrsxFZc3LG2KF5x7M/BYXNklU8vzu+2xmxPVmCLEy3WHcqtPf5\nfTMgIgUsCI0scGoTTd9nxGMrONA/FrLOLyXyMuL/3jt58e4VeSdM4yrhcTur\n4/eyXFqUd9PpqbDSIRhOoOgkJCDcS1zG92/jytQtUB9q9mIgCmCUM+8/uvRi\ntNcw8iODRJSR7lh+UA8AeAoD3K0tzpPa5hlpEP2shmy2SLPN5c8JWt6Qo/1K\nRrFTH1S+31n3MhL7BrQwb3YPrRzcwT/dTIiREM8/hQOHVFYFZCEQHqdpUANF\nSGywJCWp9DMC0w6L8QOM0MGqSEaMdItvXkOk47UmWQ4+9nhCc3PZX6HABFIz\n5KWg921DWWH+Ltk3u6QBbhC1upKdBCJNgC5tRrHijLQ+dSuremMI0KmDo3iS\n6sAx\r\n=2r6E\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDAcLSrTxHjqhMIHGJPSmXLEXq47PAZm8O+Oo3FbvzbEAIgWddlZGjgsx0f/7cNzcDEoL+yyHWIunTmtoIZ2usvDRQ=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.0.3_1588777117463_0.2582421564116655" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.0.4": { + "name": "puppeteer", + "version": "3.0.4", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "737027", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "test-types": "node utils/doclint/generate_types && tsc --version && tsc -p utils/doclint/generate_types/test/", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "text-diff": "^1.0.1", + "typescript": "3.8.3" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c214d20d54a795bcd2a38530f6399ccfdf9c6282", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.0.4", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.13.4", + "dist": { + "integrity": "sha512-1QEb4tJXXbNId7WSHlcDkS3B4GklTIebKn8Y9D6B7tAdUjQncb+8QlTjbQsAgGX5dhRG32Qycuk5XKzJgLs0sg==", + "shasum": "f445aae0a6732c65bbb90e963dcd6fd8fde0d780", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.4.tgz", + "fileCount": 43, + "unpackedSize": 886876, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJes9w/CRA9TVsSAnZWagAAIhsP/1rBhRuUKwt6taADPQm+\n47Bm4nkxNdFS2/8GFNetpBXzfWh1PDenLjnDmyaINR5E5ZYCxCs3ZdVbWrxz\noPi4iidFAL9oOsWneIa+O+qRMI2V/hfQqTIRJvFMBfmPVhGKSkGqyGzD3zKv\nNVRtAZsCQU6TDk8V7VqW4Lh56s1GP4k2Bn35hsI/QF/9GtlBCnkTUNTQfOiW\nxWFklfEJ/yg2dexJ/ycD94DHYhQCYmYBVUD4S0Y8oT6IQJhtcFygWflbkXeE\n+Tc4991HpXC8KncOcp5yOGBubFM7UozhFhd61dqCsiDo8X8ZzDZiHGNnFhSK\n/Yv3d/jl12Cyi5jotUffheAWi+5GQ5HP2NIX9p+ObE7bGZ/AsKfTbykqg7FA\nXWZtCwtVZWfCixQUuaaHoAS78o5qRyzfOfzMDtM/NwApNbbCKZYdGqqZd0ho\npWfp2FlTnhu8o4w9rDW/PLzy3pJsNdekr3s6gKyTaXbSRdsd+w1eRONmawcF\nmRt3NvZHUZ3X1csQbft0VGI58lCTGogy1xbO8ZeWqNDzfXxC+qmVgJ2g6aiV\nDP08UpSFa9ptgeZY2MJosTcnfrEvB/bPFMZRR2uMlbqz73BQOc/NCb3NEJxM\ny7CatFVmpqEAF/ngzXncUWGQBFeITZkZuTxwh7AdUVo/oURad745GJWuJjX4\n6XKs\r\n=+ElA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGGM5CisMkGlBJAXgLDDb4gfmS2+STVPU4mDjYOSQ6eEAiA5oATVd5aU6JBavjhKEVQgZBSuPlWO5MJgpKJ6rSeAew==" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.0.4_1588845630684_0.6541047855061106" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.1.0": { + "name": "puppeteer", + "version": "3.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "756035", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "test-types": "node utils/doclint/generate_types && tsc --version && tsc -p utils/doclint/generate_types/test/", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "typescript": "3.9.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8ba36752e735b245baf4915cff341d2b85a83161", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.1.0", + "_nodeVersion": "13.12.0", + "_npmVersion": "6.14.4", + "dist": { + "integrity": "sha512-jLa9sqdVx0tPnr2FcwAq+8DSjGhSM4YpkwOf3JE22Ycyqm71SW7B5uGfTyMGFoLCmbCozbLZclCjasPb0flTRw==", + "shasum": "d44efdc5410809025f38bca2de106c3ae5c85a52", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.1.0.tgz", + "fileCount": 48, + "unpackedSize": 903836, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewndQCRA9TVsSAnZWagAA/UkQAIEMGqAzgN1/o2mxHbyv\nKxsd6yPdkSJvmzJYsf4WUSVhtdngOZ8bNEFLVjQcJWLTF8xoRgn4u/XCm2W/\nQgKgbs7qwK3NDdykulzrIT1DM4udERBWv1lMCAnNU7NfpnQrYcQrQVTstu+d\nRjrBBjrS1KoU28+7yjnKZd5r15yo8tiCOBoC7qlUcUaMDppa3vPbFeIqYjfg\nKmMpTmX+626D04KjbIKvWppXZeKh3uypD7nNaGoQkrbwI3uT5RYscNBWgEfW\nTtTbjBBaUu2LHXVo4sknki8juqBznCYwP5mYRekUOOuT7vhF6qerC85d4jiA\nPM1zzsc8zhyexG6tQSSyCUpRu3QR0YYDJSTkOUkwGEIiGDSaccaFM0MrA6pN\nqaY8wY07R4ARThQYa13J5Tj5VGwhqvws+BZPtGcLLg74G0dfO6PpfIXuvrYm\nhb8UVcd/y5fgObWQmBU7u8K/zWAY5smp4emcbtZBNIVIr+c3gIiHr/j3xl+n\n/nEc4AC7OQpwFWsTRCtCHMywxIMFbf1Z4/qneTKCenzOrTzR3pA4v2PEXmdN\noT7x9GbiI6k1mKH9DEMJZ/LafiVsglaE1O7uNnJNslhN1nd0ShPB0J9B2z3a\nSAtDMa9WPZfSHWIH2Ww8jfKcgnDKaUvxEROI3+dp1YJgIUvSMaV+JXuezy6L\nlv26\r\n=ThTy\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDrSRZfNxahacTjV/HMLzpZCrE+kFJi3D7uQAyG2nGC8wIhANbZT3pRlRL3zxzm7hz3Cf7VKDbTHq6MrXcw5sKD6B0d" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "orkon", + "email": "alexei.rudenko@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.1.0_1589802832166_0.3863298804077182" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.2.0": { + "name": "puppeteer", + "version": "3.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "756035", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mitt": "^2.0.1", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "typescript": "3.9.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "88b5265be156459f65e65f4600051586b45d1637", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.2.0", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.13.4", + "dist": { + "integrity": "sha512-wkVid0V1p3Gw0u8Jyq0JxBaenx6H+/lmQIYDfHZS20IrhAobP70LSrWI6bF75olAKlrdR50w7IZxjaB09M6tDQ==", + "shasum": "e775519dd99c5f15dc8972b2c44abed00fe81c9e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.2.0.tgz", + "fileCount": 49, + "unpackedSize": 913631, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0NTqCRA9TVsSAnZWagAAkwQP/08R/FyCrxLfq0hwr2R/\nPRyAEr0cm1qcVTTB75sCObO4VXpuYPIvtzciw88ZcTHV/S2+9WZAhAdA40k7\nObtd5Io55nz0411Y/JjwsL7zXZdLn8zps1qx1t8xq/7K1LZ3LUll7uowgQsK\nY/WUC5CWBCkolaUaIT8krZWnoAcQnVjW/xGaPrsdbi/Kh7IMwMHDQ4fP7/37\nivxOWlissZ/IkQQG70PR5WMfv06Gsv9Hj3x3pUvsb8PT8gJBM9GLNrgAvd1K\nfSx4T4iARDO9ZDLuUJPOHoVIXAHcq2RCGXzfAmRaGPABdFYXMEmmpnetMTjB\nQy1uhOoMIZXmGvkwk8hgwvx1oUaQm09MRFiMplpK5NROsmYGO08SN5FNt1U1\ndI509RHSRPERyzwlDA0xmsVcs0yGEV2hZ+8+hYp1ZJxjqffdDmxIRdmveyw/\ntmdF/6VGrU1BVrgg+4bGsxAJOHHEu5ee/H1bX06KEJvsIVbf3eGaIM+bY/2k\nxI8cjmeVMF72RONBSCWg2wixDAXPOFAtkVhUXEidEATLhpi88HR4Z3rPP9np\nKy/5YvopbeyVHJD8gsDTV23f7zBk7ipar0ZLxt1uas3YdNJYr91ZOXDU2Wpi\nGpBoztXpBFoggV4rpJL9tnun/tTIVQTtFpEN5tcEaRf1MoVjOYu+MJyKLcjH\n6d6+\r\n=AKa0\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDVo5Z5XNyxNWpADmqQCfkGVJEd+HOq/6dGrYLZ8dwwLQIgQlZzkStiqVYt07w3qf39UfNeUJPLbTeFtAqCNDKlFMA=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.2.0_1590744298357_0.7359802820174122" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "3.3.0": { + "name": "puppeteer", + "version": "3.3.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "756035", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "tsc": "tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "typescript": "3.9.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "e84e579c3c8b8b443139ff07ca242af20dd4776e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@3.3.0", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.13.4", + "dist": { + "integrity": "sha512-23zNqRltZ1PPoK28uRefWJ/zKb5Jhnzbbwbpcna2o5+QMn17F0khq5s1bdH3vPlyj+J36pubccR8wiNA/VE0Vw==", + "shasum": "95839af9fdc0aa4de7e5ee073a4c0adeb9e2d3d7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.3.0.tgz", + "fileCount": 48, + "unpackedSize": 904860, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1hSMCRA9TVsSAnZWagAAGZcP/jfqT2V6XxjYviV2QbCM\ngYc+OZj8YPMQWaf2ezfAZq2utQ4W+coXzaMgsL9nDWJE3fLqaGFMMwwfsH9+\nN5Ltqr4dcutTOnxErydpkcIrCoM4ahZs8Hs65O1wKMwldeoJ/cjJpoviHVuK\n43vfNohkqyYrNgsbrAU5lqZyXrylbPGt38S/7gtD5fuplHnasxk7r5+3BYLc\nLFPIrL1vNrvY6GdwQhQHfDHdsoG5YLuvdEycZFFnfx9H5dwjBNht/AaU0gOr\nIUzRlIwUTVxysxcXa8nsK+cnLthu6OF2Yr9O2TtECBl+CraCFp3LXNuCite+\ncSrs++FlwpZNenJjZKd+KlQTl/r2H9FHIL3k4K0DyfOvPBVdsKIkkNkfQH+f\nzaSjv7gStcbYUln+DX091+kl/OIXPWePcLDjoliKaiAEfcFClW5lnvdhXGoG\nb8UcXsPjngxOscYSMZ0mlFszEVF3H4u2WtysJRMZFulk+FVSItDZtQoHpER9\nye+HKIFNuZ5/D5gzENR2Z5T16V/CdKTBFyE9osojv/As/BR5M3nFXJaiQqaB\n9H2mnFZRZNK/Y9QKLscbOABFnfdIeoqLFwDFjl3GVHvceTWHwQIXLfys7n4m\nA5e9Lke+Rr4wR9FLdZcmy5ZEbMMvHnM2hdBaj3MtuYdPVtlzKor9RlADGWJP\ndbHA\r\n=nfrC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDLqUdoU9VFqJ6mJey9ZjpSPnTzJm8PdLrdxAdZojydFAiBAaAqlMv6iSN1Lv/w5pnxZtSJISFi01Tx2JZvX4glMKA==" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_3.3.0_1591088268156_0.10149258763982849" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "4.0.0": { + "name": "puppeteer", + "version": "4.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "756035", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && exit `git status --porcelain | head -255 | wc -l`" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mitt": "^2.0.1", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "^7.8.8", + "@microsoft/api-extractor": "^7.8.8", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "typescript": "3.9.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "2ffe71017751ef6415c714e2d401331635f8e36f", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@4.0.0", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.14.5", + "dist": { + "integrity": "sha512-yNshT0M5DWfZ8DQoduZuGYpcwqXxKOZdgt5G0IF5VEKbydaDbWP/f5pQRfzQ4e+a4w0Rge3uzcogHeUPQM8nCA==", + "shasum": "96d647c3546119f8e670493bcebf9ddb044a2367", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-4.0.0.tgz", + "fileCount": 135, + "unpackedSize": 1082809, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe53yoCRA9TVsSAnZWagAAaiIP/3ygjZNBVdAbMW2tfhZ+\n8WjHTKsG+qlo80AKXqOGL1oCJktQ8Kbz2X80b4jj4MKnsk4gf15yaGp3N4qi\nMYKva4/iXJsGtz7lNMwX7lDlUe1D474CQMBrJai9Yrfb+vhL+LhDcGe/zr9T\nHG+p4jOMavYMhgL1PL2PYDCErsWo89Q1CsPtQqCZiwvS6Y1ifzdIIr+w9Tp1\n678vnhf9pwsmT68uXaUmZogl826AgcyhYbr8C+hwI2xJ2oYiyMx9wtLag+pG\nTIFCGq1rHf+6kwIvOKckfMCX1uEojop2eOkJy9xBAPE4mc/o1u7F3tFmQe5J\nE4ozxKAJD14Y9fCFroyR5laO7c1CucLhxpW1eobQNTAJw8rRHl7uaoE5tPt2\n7Nu+uClt36m3PkHf0EPnSzE1Svd4OFtUNNLSvza8B/3WEoypKeoG6603GuAz\n8wN1z7zGQY4bIm4fgS34Q4Tz5vCXztwttnUTXkV2ppYo1kEjXqWanGzqRKh1\nTJRXgagFrZsMWq9UFiQGlOoiX1R8oDH6w4+liyXWRKs2VJdypgiHB5wLLrzN\nl09EWvKmcfgoDfYmkpojek7RjOzo8ce4EBaRH40R00Xp6+40Mj8NLwpjJ5+B\nPLpB9M/VJXNuxOvaxCykhsjSSFiMHWs2Wfu2Ol07NsH3hm6moDTSvvij6koC\nMWq2\r\n=6a+K\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDJS3pQ7XVZD7v4E8x8j1PuH0qswteyakDoXtdE9Q2H/AIgY/7y0xAbzoELz+p3T9hyogZ1W3PKlusgE9/0EomXywY=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_4.0.0_1592229031996_0.5063136611277517" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "4.0.1": { + "name": "puppeteer", + "version": "4.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "puppeteer": { + "chromium_revision": "756035", + "firefox_revision": "latest" + }, + "scripts": { + "unit": "mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && tsc -p . && cp src/protocol.d.ts lib/", + "apply-next-version": "node utils/apply_next_version.js", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && exit `git status --porcelain | head -255 | wc -l`" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mitt": "^2.0.1", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "^7.8.8", + "@microsoft/api-extractor": "^7.8.8", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/node": "^10.17.14", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^7.1.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "typescript": "3.9.2" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "16972ca6f3461a1079df9998d17ba4a58caec262", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@4.0.1", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.14.5", + "dist": { + "integrity": "sha512-LIiSWTRqpTnnm3R2yAoMBx1inSeKwVZy66RFSkgSTDINzheJZPd5z5mMbPM0FkvwWAZ27a+69j5nZf+Fpyhn3Q==", + "shasum": "ebc2ee61157ed1aa25be3843fda97807df1d51f5", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-4.0.1.tgz", + "fileCount": 135, + "unpackedSize": 1082787, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe81ObCRA9TVsSAnZWagAAx0QP/RiehCPnXG5t309gX8bY\nWhfYLS9JZBaXw/1FriMU1buGKAVYxPR30LVMG/PdHyQU449j37I7ZM0jolbF\nC8RxbFSGHPGlVfGXEu4Kqs5b5g5M0unYuITwZmWGoKiKuvWRpb3wUxiGTDTV\ndb/AEeyIbXkCgbcBbcbqtr5FYvzcny74aZIrR6IifYutZA5m1bqwwPLRgp/z\nKZ1xqu8StF93FVBwRIFs5j8eZ3zcUMXt4VOn5ggjRjmomI+UaYFhcZuL0O8K\nPCh0vCYPSljR6YC5N5XD1x6pIn+8pwRl+B34vO5ogXLk8DlSyiXdr7krzrUM\nc/S8M200wOEXaOIwFUtL3IrEgSg6RSw4E7hnbKfODjHRh1Q1278F5vx5meZx\nyypIdLlXzB50zpEKG6AOVWirZFn3yCUAKhHJh9ywdgBU+lvx92XsHPm2v+24\nkXcVpe7RBV/gO4LlEnN55MzTfbi0Gp5lXAX0tjmmw8u1fsWVtmNeJgbbcnTF\ng4FkqdxZ1wpU5+KC4RrIm1f0NVNm2+JrudIWMLCOVGFjDaPkL6IMk9Utq8CX\nQCyDG0YzYpOdPmD+uhkmXkdxqxgDW+NdW26hW/rWeY4KyclxHLmWe7G3bzpo\nC/n9nl+rP+n5IkSjoPFrjI7IaVble5meG516KohrcFJ7oAOEzykIpyk6ODCI\ns0tg\r\n=aLUE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFy5K8of/7iqsQ0EMeNQie416WQdPWIUrHwQYtrVASY0AiEAzPlYtrx1Ydyjp+q6zsDR/6IIke+40QTrojAusIjZ/7Q=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_4.0.1_1593004955353_0.792410929028738" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.0.0": { + "name": "puppeteer", + "version": "5.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "unit": "tsc --version && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test-doclint": "mocha --config mocha-config/doclint-tests.js", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-doclint && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -p . && cp src/protocol.d.ts lib/cjs", + "tsc-esm": "tsc --build tsconfig-esm.json && cp src/protocol.d.ts lib/esm", + "typecheck": "tsc -p . --noEmit", + "apply-next-version": "node utils/apply_next_version.js", + "update-protocol-d-ts": "node utils/protocol-types-generator update", + "compare-protocol-d-ts": "node utils/protocol-types-generator compare", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && exit `git status --porcelain | head -255 | wc -l`", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mitt": "^2.0.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "7.8.14", + "@microsoft/api-extractor": "7.8.12", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "dependency-cruiser": "^9.7.0", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^8.0.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^8.10.2", + "typescript": "3.9.5" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "6d06adea10572d2667a9d1c5a48193903860341b", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.0.0", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.14.5", + "dist": { + "integrity": "sha512-JnZcgRQnfowRSJoSHteKU7G9fP/YYGB/juPn8m4jNqtzvR0h8GOoFmdjTBesJFfzhYkPU1FosHXnBVUB++xgaA==", + "shasum": "7cf1b1a5c5b6ce5d7abe4d9c9f206d4c52e214ff", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.0.0.tgz", + "fileCount": 309, + "unpackedSize": 2399776, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/eKfCRA9TVsSAnZWagAAtgMP/3RBjZ/LC5cAFs/S6Iq+\nIJoyyy6TXYIWn2JTC92N0u3LU031dkiseN385LPWhxzLWSrRPeWaQ2QfsJan\nJXFWFoRhlQk5jyr5F30FAKSdPn2OO1w7bwXcBBOUkBUp7ogjQ4XqTJ26GUxZ\n99yZYtD4hUJaAOMgkjuQsSo/gUHMg4ToYgvvVMx+sqBNJZHRkCwEjXLkNMkq\nTDpGCz3J71a5eQV7mspAkK89Gw6WrTjN7zr/vxW8DK3kkzupXxfMTpyS9uxq\nziP7iXzclhOL26ihHQpeDZtlmJVUXkSeyJUeJ+Wes8Gu8taqQRIrS23c2uDP\nBnadpPtTX8VUWpWUCZvrkN9PVj/9S0RzMW+bGHEme4aWDZnV9cVZRrQMFCUV\nUpUMDeq0h5H2i5n2/T4SBvGuV3KHMn3dFGeKKAnV+YSEiaErG18Crfv2cuXw\nvQZQm5I/0fZszNobrKWvzdgfW/XCU8XfGaJYGxk2tB4yvhsI9BySy6EpQC/m\nug4aSbjMTCOWYOh21S4iQVwnajVwp+dxouRbpidHdfQ/MuEI6SLvvO1TOw2b\n5rpFKaps1qKG2mg7yQYRpX3Y6iIwYCT335hQWUbNmXj/SW3INwswHz2iW/88\nAXPNsg+xALdDpBU3L2KP+iiDrk+pftMSYK942WnPejuahwymhfsghSa2aUcS\nwruJ\r\n=D7ZK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD0C0BUGlGeekYPbJS3hHCBYHfx2dRZmH/fiAUQKcNh/wIhAP79gWjErT3HLEXf7cDoufT8ligjyOQ78GkMtxMYD4Jz" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.0.0_1593696926396_0.04001275709574914" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.1.0": { + "name": "puppeteer", + "version": "5.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "unit": "tsc --version && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -p .", + "tsc-esm": "tsc --build tsconfig-esm.json", + "typecheck": "tsc -p . --noEmit", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && exit `git status --porcelain | head -255 | wc -l`", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.767361", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mitt": "^2.0.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "7.8.14", + "@microsoft/api-extractor": "7.8.12", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "dependency-cruiser": "^9.7.0", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^8.0.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^8.10.2", + "typescript": "3.9.5" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "8fa18aef9933e3673a6b2c509c8bb7d06472477e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.1.0", + "_nodeVersion": "13.2.0", + "_npmVersion": "6.13.1", + "dist": { + "integrity": "sha512-IZBFG8XcA+oHxYo5rEpJI/HQignUis2XPijPoFpNxla2O+WufonGsUsSqrhRXgBKOME5zNfhRdUY2LvxAiKlhw==", + "shasum": "e7bae2caa6e3a13a622755e4c27689d9812c38ca", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.1.0.tgz", + "fileCount": 301, + "unpackedSize": 1460380, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDBycCRA9TVsSAnZWagAABykP/0liAmS/PWfcEvGIXb+x\n+GZC8X01nlRwvst7dFm9oQ+s6/1TPJmsQs1wht38ZupkLHKEplNB4aSaCDhO\nUAh32AVQW7ANdfe0Rb6++vOpF59cHStZPlrp9C4WHN8ef+wTtv/y1mpugIA/\nIyBcCLktKD/nGrEovy2/xSmQTnr8c7Iv1bPl+kXMiTsF0Tm2988os8JH463n\nxtUvCYRdX/1WQbSgZp8OlX6fi8KYgxvrcjNkalzwKRPYbND+5Yn+VRV77map\nAFVq5TzRmOdUpSIde7RDQORIkfkZEJCBBUApQRkKZyZ54BR8KzyfI7MTQgxY\naiv6IVjSNd50BvGa7mnJVuJFs+YqtkDE0PZVXIqnA0yIJcN3RvfxC9rWYNBV\nvNM+Brz29l57E2LqTRmSgML5oxUNbrU6z9Hbs5SV/hEI5Pj/VqKMkEaxjvrf\n97qal3kv8bPz539DwAYpQzHyYsEhETqygEPmDb9hns/uOQ2hzPLb1HG5/Cle\nVZgKStj/tinWbMYEX1UZxUU48mnQjYThmH1VCJGnMnQGyktwxj7gj55C542Z\n3dv0iNIPLZ6ZGO8yQRMeMzMFcanaGwE2mTqvPBQBc1/2y7LAQGnqnfl+Pf07\nI3BedgRwLrESL75RVkea4m5p+ac2RqOrjXp0se4agiK97KpEm31m6RHmKk2p\nk4R0\r\n=Fz3m\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICwElOOtZ0ZGjgWofPHo/BaVCdZnawzzjAsMH46JnyT7AiB96Br05X6ArzQLgymqyuL75ITWBdPK0r1LSDJRSoPj+w==" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "hanselfmu", + "email": "changhaohan@google.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.1.0_1594629275824_0.49767930038407227" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.2.0": { + "name": "puppeteer", + "version": "5.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && git status && exit `git status --porcelain | head -255 | wc -l`", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.767361", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "7.8.14", + "@microsoft/api-extractor": "7.8.12", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "dependency-cruiser": "^9.7.0", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^8.0.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^8.10.2", + "typescript": "3.9.5" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "028f144256b581e5f07c5f731ce95107cf9c690e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.2.0", + "_nodeVersion": "12.14.1", + "_npmVersion": "6.14.5", + "dist": { + "integrity": "sha512-Hru70mFT+dts5W3l1MVg46EfJiWE63qjmXlDvC2kkCeEzLgt6KrwEkDJcJKKzERTvy9xXhOvjyGNx36fd78mVQ==", + "shasum": "c37bf605e6ec103428c872d820f30f2617bf38ad", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.2.0.tgz", + "fileCount": 311, + "unpackedSize": 2095986, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEZrICRA9TVsSAnZWagAAkFQP/1/CmIGNnQYZIbHxM+C+\nIErov6X0zffxxe1irGG9i1+JTtqUxNHn+zJALbextCSECSmJKZW3ZS0fJxXc\njFr8VCsQzu3DILBEut+0VU/hHhxGGefBYzk6p/2Q/TC6H09OnBYmSd9I8ECD\nNGGszQFw5nhZL3T64IsHmoNl/qHswFMBVLWEoSygQs0Ss0O5jT+/2fMB7PUf\ndchI6XKAspYMmwqmdgE/HFCYFQw5XxXIPccsWX3VVmG/2Uw5BVemEayM6e+P\nK+EMOBqTcmWbgjnDFLiczhTiSMzL2udZTBOYPojNWnZfwLm9XEvHz2QIBRwb\nLPLbRoUNff2vksNJYYxOuubELdgViUvQEspxFmUh+PMbzJIK6yotnJ51auUe\nwREUDnA7VU8v0mWXu/lxaBHU0roGff5fwoPTBC4vGr556d0dQ0tyRY+dEdy2\n2TQRhcGi6vK7pxFTOI1M5+0c12Uu7CREtw/+XoPUetF6BTnLtbVl2rV0LuYd\nQlUAlHBaf9Sb2yM66RRT3h/PRJ2LIIykwSqMf4rgeddJrQ27mlFRqczKstbA\n0U3njs/Ni0S3rVTVVXGr5irtDB9DCeAv+LKKN53D9AedJCFKdpN4moHrabCH\nMrba9KDWw4IDgMjkx9MttTjRQmboWff3jq6FhSm7rZFz7HbFgmp8TUcvt8bE\nRtsH\r\n=j9cA\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBN775mNZRVsZtKmqhcpJGoDyJRuNCUJDprKaFxyBKceAiB0ngUuC2LHmew3UENW3J/anmEaaPXyDTRk9D9n/HNw5w==" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.2.0_1594989256045_0.6458557274726668" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.2.1": { + "name": "puppeteer", + "version": "5.2.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "debug-unit": "node --inspect-brk test/test.js", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && git status && exit `git status --porcelain | head -255 | wc -l`", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.781568", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "7.8.14", + "@microsoft/api-extractor": "7.8.12", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "dependency-cruiser": "^9.7.0", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^8.0.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^8.10.2", + "typescript": "3.9.5" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "4ee4649de67859a69501397f9a52d7a1eab79fba", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.2.1", + "_nodeVersion": "10.21.0", + "_npmVersion": "6.14.4", + "dist": { + "integrity": "sha512-PZoZG7u+T6N1GFWBQmGVG162Ak5MAy8nYSVpeeQrwJK2oYUlDWpHEJPcd/zopyuEMTv7DiztS1blgny1txR2qw==", + "shasum": "7f0564f0a5384f352a38c8cc42af875cd87f4ea6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.2.1.tgz", + "fileCount": 317, + "unpackedSize": 2248463, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFwMMCRA9TVsSAnZWagAAJKAQAIAPPKgjwvnyqbMLvCKW\nKKeCbC/5hczlvvV4z8cEtCqmYwPBBNMdzdcmhjUPU8G2h0MKfHOoBk93C5Fh\nPWtkBC22mgFkhy2LqJXBu/RkBpMhOm+IQUJuMd3Mn5pRXOeSZ65b/FhPFMCU\nYDn3Aa1j2Os7k/QNlX+GwRMfS27fWV9zbbdy3Z9vF6z3cNbxdep/Vxr3eGTO\n/1vvkrezkznNQEEURxiJ/6N0RbRbhySdKd5vezfROT9iXEZ+thTTER6O8GwL\nzdLjcoHX+8U5xtQyk1GSMhoNbHkUgP3S3mGU5ITFLogP/mDqnepQ26qVlgvV\nmEE8iV8/KwsXSRx/h140q0X4rVwP9Gjqtg6bshScJbkS7v6zS3yHxlfGJzo6\netJPYlM+JXyHczgnWOaDrlkLP2SoX3oStqgNRiq6eMxGf2dGwH9j6CWIC7kL\nrEgPTbxxPOcbbjb5hapKMbauAlm9qp9RfcX4DQqsX0xOsidoph89WVjezuNn\nDgSvbEwlZ/GaPdWRVfPDrGgRlm5L1c7/WJjFY4tXmu+UfUldRAh7MrIKMW5L\n/CZ6uIEQWWP7oIKlOdHQHyysoQ+wgJMOUeHnV2qwl79JuYXOkg9d5hKi5mzg\nN3xBs4kwDaGHBqUJ0XC2YPfE+5ZkeFZavOaS4RKWcHmQjwkXNmc0Xq+LAg/+\nxIt0\r\n=sZrG\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICpZLsi07hieedwIkQCbBRKPorWV2zubgvLCKvue/MCFAiEAmFFm/tkC0OO11fY2hYJ9Ph24V1Sq6cotpRozdN2sD/Q=" + } + ] + }, + "maintainers": [ + { + "email": "aslushnikov@gmail.com", + "name": "aslushnikov" + }, + { + "email": "ebidel@gmail.com", + "name": "ebidel" + }, + { + "email": "changhaohan@google.com", + "name": "hanselfmu" + }, + { + "email": "jack@jackfranklin.net", + "name": "jackfranklin" + }, + { + "email": "johanbay@gmail.com", + "name": "jobay" + }, + { + "email": "mathias@qiwi.be", + "name": "mathias" + }, + { + "email": "alexei.rudenko@gmail.com", + "name": "orkon" + }, + { + "email": "paul.irish@gmail.com", + "name": "paulirish" + } + ], + "_npmUser": { + "name": "jobay", + "email": "johanbay@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.2.1_1595343627596_0.6365982495572997" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.3.0": { + "name": "puppeteer", + "version": "5.3.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && git status && exit `git status --porcelain | head -255 | wc -l`", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.799653", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "7.8.14", + "@microsoft/api-extractor": "7.8.12", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "@web/test-runner": "^0.6.40", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "dependency-cruiser": "^9.7.0", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^8.0.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^8.10.2", + "typescript": "3.9.5" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "030fcaa0756cfe1762ce08f51815c3237b324e8f", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.3.0", + "_nodeVersion": "10.21.0", + "_npmVersion": "6.14.6", + "dist": { + "integrity": "sha512-GjqMk5GRro3TO0sw3QMsF1H7n+/jaK2OW45qMvqjYUyJ7y4oA//9auy969HHhTG3HZXaMxY/NWXF/NXlAFIvtw==", + "shasum": "0abf83d0f2d1273baf2b56885a813f8052903e33", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.3.0.tgz", + "fileCount": 317, + "unpackedSize": 2343919, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfW2lnCRA9TVsSAnZWagAAfe4P/25SboWPWhtgKscrqXf3\n4IuaTsHI6EofHGwlk7a4/G5AQVT+tp/v015ObPMfRL7yzsgqRo9zCCeVeUwq\n6aB9fCrXGplRkRSPYBFaLiTTZ9i2xPl2ViFDd6x8h9jJ59VeI8O43Tost5HL\neo9AuTTkvyOoHIyK9Meh97WpgIkjLnpvgTTynpmM4eShOfnPo/7lST+tCVhi\noSaptS1pCFyouzXWaBG6laGP8VP+H8DPJ5kfYBVHOryPBLN7xoxQADkf9v7y\nDsPoe7d0a5tin0dEeq4XlfajMox3e7lqvksqBPXleZUmPtxZJ1yyHhDO7kDk\nAdCAg9ulTM4jH16VEABtgrtz4wfvd79Xdhx5GAYegPFs82NmbXaOgXAO40c3\nXrC/QsTqFaXmPxb0W+HbIfarB6HzPhHVNnX1u1hX968cHfiYEkCVHQh4c/hO\nVPsOxlbvrKPT+QgRvZ+OjW7CtrmnWkt4gblvYPdZBg6ZFArzV+250tmhdh8k\naSXjgJOUw5icH4XBSKiQ+NycN2BMIj7Vd0B6O7OiA94502B91yK+6aF3PP4x\n22TI87zjzmje+oWTmN8wWu2qG6tOjO6VAx9MS5Dh2S9JjhwmPxzTaMM2ODVu\nhP2XkktJjBn+8YxVJizb3lv7fa7ND1fQ7C8ptT2r4pITu/cMlVawlceV8JtQ\nG+Fx\r\n=QgCt\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDsSHPlW5jU9WnFaljMy5zL3shm3mOskgZabzgBRK6z7AIhAMW4Mti9/t9ntYVDaB8K334Wszhbru3eWKFQhxwplKaF" + } + ] + }, + "maintainers": [ + { + "name": "paulirish", + "email": "npm@paul.irish" + }, + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + { + "name": "orkon", + "email": "alexei.rudenko@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "hanselfmu", + "email": "changhaohan@google.com" + }, + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "jobay", + "email": "johanbay@gmail.com" + } + ], + "_npmUser": { + "name": "jobay", + "email": "johanbay@gmail.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.3.0_1599826278366_0.027888558224125948" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.3.1": { + "name": "puppeteer", + "version": "5.3.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser && npm run test-types", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "lint": "npm run eslint && npm run tsc && npm run doc", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-new-docs-up-to-date": "npm run generate-docs && git status && exit `git status --porcelain | head -255 | wc -l`", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.799653", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@microsoft/api-documenter": "7.8.14", + "@microsoft/api-extractor": "7.8.12", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^2.28.0", + "@typescript-eslint/parser": "^2.28.0", + "@web/test-runner": "^0.6.40", + "commonmark": "^0.28.1", + "cross-env": "^5.0.5", + "dependency-cruiser": "^9.7.0", + "eslint": "^6.8.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-unicorn": "^19.0.1", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "jpeg-js": "^0.3.7", + "minimist": "^1.2.0", + "mocha": "^8.0.1", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.0.5", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^8.10.2", + "typescript": "3.9.5" + }, + "browser": { + "./lib/BrowserFetcher.js": false, + "ws": "./utils/browser/WebSocket", + "fs": false, + "child_process": false, + "rimraf": false, + "readline": false + }, + "gitHead": "c7d32cb92f7e3556a3dba51832ab9d6a07ddbf35", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.3.1", + "_nodeVersion": "14.9.0", + "_npmVersion": "6.14.8", + "dist": { + "integrity": "sha512-YTM1RaBeYrj6n7IlRXRYLqJHF+GM7tasbvrNFx6w1S16G76NrPq7oYFKLDO+BQsXNtS8kW2GxWCXjIMPvfDyaQ==", + "shasum": "324e190d89f25ac33dba539f57b82a18553f8646", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.3.1.tgz", + "fileCount": 317, + "unpackedSize": 1864846, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfadrNCRA9TVsSAnZWagAAky8P/0PgQhWle+bOonMB801I\n9vCn1J+iqegxDj8zqBSQruad1taQZ0wxrvkWSMBR5U6K6/WPmkbQ6+0v3u1B\nOEzvnRBsKDp+IipSPq2sh7u2pGUaPD7h4bgSisrSwjtflcs1wTRR9CfkEfjv\nYi1si9HMXC9A07x3c2bQ8T+Dcfc24iS6XgYi+14je7MtCwpfO04A+yuU7pAy\nusbyJqXTwa4ODgcIzeNXR8hQdZrkoCMEIQc3e2KpEtp0SzEZ5XyzGNIiP/s/\nRC1a2dQGGheY5KwRFcSJy9V+qBKCsMz7YoBkRLGgTymkRI7TNryph4jaE6fy\n5i4Cv9B885RLXKmjwazWZ4+x4+ep6/N1FX/zi5EqdzKbeGGHdTS+7lnLwWHb\ng6UQsf6Ro7G/JShs9xCqtfKOPlOm4ar69ULaI9hX5t6dK/XpYoYVg5d94dya\nyuGqoxYso39AqEln9xr1kLjHmxk40GUOPR2GPgODtlMZRn+wFIyukU5a8WXW\nzuRSaLsIwlXI8vd9fpRMcGUKHlF+2wr59EOuX3vCBdq8g5vLnf+BRTWp9DLI\np2U7SQuY/yhe4mi6jTSz4CENAoyQTbAJr/cJ4E2V75evZplp5CcVHfKgk1n3\npTn3143r+BvJCvGX8iCAIpAP0y7F1jwYuqTNVl3ickJUXXiC3R3R2v+zVjcY\nsLUM\r\n=vtsh\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGQl9M5fFDe0R1IHm5qjFeQ1dlGacP2aUkwex/nF3BjAAiBR1jZ+RQALpL0Lt58hS4QmZf4y1LS5PyI9Y//QflL4/g==" + } + ] + }, + "maintainers": [ + { + "name": "paulirish", + "email": "npm@paul.irish" + }, + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + { + "name": "orkon", + "email": "alexei.rudenko@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "hanselfmu", + "email": "changhaohan@google.com" + }, + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "jobay", + "email": "johanbay@gmail.com" + }, + { + "name": "sadym", + "email": "sadym@chromium.org" + } + ], + "_npmUser": { + "name": "sadym", + "email": "sadym@chromium.org" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.3.1_1600772807756_0.05598702678341816" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.4.0": { + "name": "puppeteer", + "version": "5.4.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.809251", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "dependency-cruiser": "^9.7.0", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "729cdfe98a254622cc3e6aa96b509b7882717357", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.4.0", + "_nodeVersion": "12.19.0", + "_npmVersion": "6.14.8", + "dist": { + "integrity": "sha512-LgTqVW2ClEP4XGAT64FLQ0QWVhdNSRwJp9HfMFVfoJlZHGQu3HUbuBhR1hBow3DXZH1K3b/WfHxt1n8hr2uayw==", + "shasum": "b83893476e96ea103c9516bb958d17a71a9768ea", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.4.0.tgz", + "fileCount": 365, + "unpackedSize": 1962657, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkvgNCRA9TVsSAnZWagAAzGMP/1LG52j7JMl+1Pr2T9So\ncq7ttQG6W6vzG18e5uwaOCIe2WdHS0FnwjDYtfQjY9gJs3lrK3gHxNA90b2J\nHBhVhpZmgy6154STBx7+5jp5loL0zl/p70Mr38epm4UoXL+zjGSGglhLfMjj\nCGkFffbGc1ahMi6gn1Mg0uYJp4YcR1rXnwVzOfh/8cY/HE6CRNE2n4MixMuP\nnhC2nuiAhSeyrTAzMBK/cNfKX0TgELRHgyccLtjPmL5hd6OUafWC5xYCokMz\nnnW87qBC6Zf9B6yD8TlAbBdY5/Sn41jo/4zve94kwdNLjTlKAXt4sGHDdGH3\neX66jUgqz9x+0DduqIP2a9WzuraA+ZepnS30pcWGKuFuweG74QMqUr5jS+WG\nkM9Rx/EXLHoEXOVeR+k2eRK4g/I96w5WLdig0dp5OWLo7qmBgGA7amEg9hSg\nNHE3+4MCg4YCicRXEwzrtaOI0WmC/iNLAZNik/lBK2Z9UWKbwVNIP3+zmwy6\n6TXOuWUJmYBDKQjRwf3wWk3GnR82H/24K2a1RGrmwQgUlJfXIS5sA4DsvsP6\nnn8VEQtxiFUfZ9UM5Cz3rj9tuQjTUu8cOUCsOMTFZGZrb18yl+7zHWXg9jtb\nv3PChvvesHcVfaRxzhRTWUDssCpIbuMqhzr/Cw5FjHgjzabmO0exL6G+O+Hx\nM7Ti\r\n=vvzv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC5oojpAiE/b/MzJpyGYAQsYAtSI6+tLNNSZ+JrsRw1EwIgEtR8bFJx1S8pb8Ts8fqIwDo8uHbwQ9jZuBPj/gryQVs=" + } + ] + }, + "maintainers": [ + { + "name": "paulirish", + "email": "npm@paul.irish" + }, + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + { + "name": "orkon", + "email": "alexei.rudenko@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "hanselfmu", + "email": "changhaohan@google.com" + }, + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + { + "name": "jobay", + "email": "johanbay@gmail.com" + }, + { + "name": "sadym", + "email": "sadym@chromium.org" + } + ], + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.4.0_1603467276040_0.4112076590080944" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.4.1": { + "name": "puppeteer", + "version": "5.4.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "generate-dependency-graph": "echo 'Requires graphviz installed locally!' && depcruise --exclude 'api.ts' --do-not-follow '^node_modules' --output-type dot src/index.ts | dot -T png > dependency-chart.png", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.809251", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "dependency-cruiser": "^9.7.0", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "562c9c2723f285959a97e456cabd5a6481d3efcc", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.4.1", + "_nodeVersion": "12.19.0", + "_npmVersion": "6.14.8", + "dist": { + "integrity": "sha512-8u6r9tFm3gtMylU4uCry1W/CeAA8uczKMONvGvivkTsGqKA7iB7DWO2CBFYlB9GY6/IEoq9vkI5slJWzUBkwNw==", + "shasum": "f2038eb23a0f593ed2cce0d6e7cd5c43aecd6756", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.4.1.tgz", + "fileCount": 365, + "unpackedSize": 1963754, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmDfwCRA9TVsSAnZWagAAkbYP/2tJrFk/aM1Otsx1YzW6\nbLY4RmqHie9nxVgHenWBVWI7XG6Od4tA29JwyXfQNyNfANPwMl4IzxdLvsrF\nNS3EjyMKfcCQP8HQiad5hY2TPfO3Z56YrA7u5eJUnBj0u0Jp+MGeecQ0Dxzl\nx/qBbWPg8cKKF9P0c8uAm1nCkevUlG8i4t+Y/c2gEWdeXn8KQTO4dN6VdWFQ\njOZ7SdgQauPJZCUTTTiP1uprilzBJq1fRZlvEK9FU09t1myrPWAraXRBPWnv\n70j7KPLQjafCmlcs1JdXcrywkUXl++uFdWqRAN/DMGFZ9vROoAg81enEYWW9\nAX2oMXvV7daAbqOVF84xEcBz40C9NJTTIewAI14c6qWyYU5sb/DOOQFT9Ee/\nTOeNOa9sulBlJAEzVAkKbOIjdESWHMrlatc5whuUm1jQYUtuPTEsmlJJFOfH\nFZWkoUhW8SbfWI3KzARrGaY5dCNK2N7U/HMkzhLtL8nkIIdqRrUwwYriFXMS\nsOLTbbN+fp91cTuBHdgnw1dVHjX0niewaPUGcKgHliIfL9TeY1kp4+Ig5oVL\njCuaDsP6Upy3xfhioME0qheBysr6f/Tl0l91raGq8BuCAUVbHDv2yhgTB5cT\nRQP+W8MNJuvEjp8E/3H/tlUH/19mTEdAdGOJNFwkAxvQM4+5mJe+1fG9wslF\npPL2\r\n=SSV4\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFnmfs12/RxtOGTlYeE6nGFh8o0NkZi5tXj6OBCRQtdbAiAScd4y0w68sEB0YFiukkpu7CS0hERNbp9gEyktR94ytQ==" + } + ] + }, + "maintainers": [ + { + "name": "paulirish", + "email": "npm@paul.irish" + }, + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "jackfranklin", + "email": "jack@jackfranklin.net" + }, + { + "name": "orkon", + "email": "alexei.rudenko@gmail.com" + }, + { + "name": "ebidel", + "email": "ebidel@gmail.com" + }, + { + "name": "hanselfmu", + "email": "changhaohan@google.com" + }, + { + "name": "aslushnikov", + "email": "aslushnikov@gmail.com" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + { + "name": "jobay", + "email": "johanbay@gmail.com" + }, + { + "name": "sadym", + "email": "sadym@chromium.org" + } + ], + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.4.1_1603811312052_0.5395431745473951" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "5.5.0": { + "name": "puppeteer", + "version": "5.5.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "standard-version" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.818844", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^4.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "standard-version": { + "skip": { + "commit": true, + "tag": true + } + }, + "gitHead": "18143b3573e3e9e637ae43c3f757bed8b752634f", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@5.5.0", + "_nodeVersion": "14.15.0", + "_npmVersion": "6.14.8", + "dist": { + "integrity": "sha512-OM8ZvTXAhfgFA7wBIIGlPQzvyEETzDjeRa4mZRCRHxYL+GNH5WAuYUQdja3rpWZvkX/JKqmuVgbsxDNsDFjMEg==", + "shasum": "331a7edd212ca06b4a556156435f58cbae08af00", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.5.0.tgz", + "fileCount": 366, + "unpackedSize": 2007647, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsoLNCRA9TVsSAnZWagAAOCEP/AvDdw0jUnuXXehzvGW+\n66+mAfVE+JmRhy5Ti95bmAUPGSW8kGuLFCkHHrT6CdZzURDg/U012SJW6Yo7\n1xbprTW17oULxp9Tu/yfOF2J/es3FY8XaTPWH/dSaKmJEihVEwVloCd2WYL5\nsm3qvLuo3ZXCrDfwye6t9hFa9K6bw5kGw+LPsTj997WsrkIdT8WFJNUPWjYn\nSmBTq/jmSqAp0qD8uukc/tz4mdKMonlSWUae4+CGfclAxCJ2vK12bze16RTw\nacAS+cWI/pu0FIe6hY6ii3oqpYmgD26XD524APXEzCrMGrdVWxztMExEsBWc\nlfnP7iPBMh3LzY78n1F/fy4EpbcSg/PBpQvV6Ijr7Vqii0pVLpFvmvSkVHRa\nrx7XTl9BiTo/09EU1gLHxOCJXGSgw/GJ/KP2vVSZrzAlp0oE0d2u3HEdXy26\n1kIhKbv5b74Tgl/HmyEPiQif3Z/7wh2PhAPoNFJS0NkcB2WBy+quy59yxDHy\n5P5Wl4lTPie0GKorQv4ukFToHKGpxchnaLArvZ+UpnSpcEimmCBHgLaYAn30\n4SapZX2+iss4maXKavEngZXZckFpTNMvRrY7Hr8a06PkJMhJKpeu3DUs84qL\nFIidBN0bKEdTLua3AvQ+J69TYj8oDVGPQlRRyhq0ODrWVyYbMY70GHHMHqPA\nAHpD\r\n=8LDd\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIArgf/QNZdukGPqdBbltRwN8zQMWdODV/1dP+j0WDEtSAiBZ4LIn9/L5CX+gBKE1a1stpHQLdiCm/jw/aKytFor0dw==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_5.5.0_1605534412495_0.4779947498102588" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "6.0.0": { + "name": "puppeteer", + "version": "6.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.842839", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "ef4767080a0af8a3e68833e49a75042914a23906", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@6.0.0", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-LqDbNC7rp0JNH7BRTPjE3lCzGYD2tFqWBvRNukW4PjRP2YotWZWeLfFMTGrDHDFY5xjOceKBEbf8h45Xn6DFdw==", + "shasum": "6b73d7ba63c12abbb5080c2ffc14b55857cc62e2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-6.0.0.tgz", + "fileCount": 492, + "unpackedSize": 2602402, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGTJtCRA9TVsSAnZWagAANwMP/1UzdwZ6NJOIgUYJiR0W\n62WdkIP8xu9AexVuCDY+ad+J2RRqOVIGImqqAx3tFBVg7dxop6nOHTi57BJE\n6Y5oVo2nfNjZq5nlrXrh/ngVwfGl33EMgN257OqNK8s6zsP9mjwKvBb6YYD3\nou2INvibydqjt0fVcE+8Igkx4ePgmWnAxcD05l9YEnKbRATZ3r/xj5GQDL5C\nr3zBDsVAgjUvyCLDWYw1yW7hjcJOsr8NODuA25sD9SqelUkEPmgWMmnq+Vyc\nQszi+Uh1DrhjHIA0Ixc8/8vn+Kbd9oIqGCthiVuIQqiXEPODkU4fUZVhjDUH\nColxGNigyDfuZ48HMk6vIBm1Rtbkxb4bRgwE6zuxjydDWstoHVGP7veL0rCr\nRQTM6wbgzJJXtXN8whamOw5rve6yZwzjlXuI7vYiIgDMs1+eHiA/UhZyrwn4\nNVT86KglcSQi7wIunp1k4CdIBj2n5bDySYOY0OZOpU403FhZWUaY7uH6p/Qm\nOqvWZkXy9JG8yk3+1JpPlExXHVu4e3ESzkcnxhkPFJQBMYEQJngsbH2tVAp4\nIX8iCeELKDI+HxF5cwmcjjJYMqcBxTpLo+ukMxASFRm1xKSUZVkepuErwT5+\nJI88Hq3UdotWA8s23qvE8CdKUMaiGX+OjjbUE53yiWflz/qUW4JgvFKAayLW\nv/vr\r\n=bl04\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDRpDjCIUEhpOAXSc9gtgrdHeRn6YAGxDj+zSIQxXx20AIhAK9fRyNntZM+tHpKf7ayGKO7vDHjI/MZE1c7iAHTtlp4" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_6.0.0_1612264045027_0.9983552971105556" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "7.0.0": { + "name": "puppeteer", + "version": "7.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.847576", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "edd8bcc61997ebaba4ac2cdbd502551c881ec7a3", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@7.0.0", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-YNzucQMH7rKJAeISy9RB1nI72EMShlbT9vGT3E6UqElzOC4OuhFdIa3oirV4/57d/YIK5KO6qLM6UroCcyOVhw==", + "shasum": "be25ebf53edc1ecc09cb40af4a15f21fd1d38637", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.0.tgz", + "fileCount": 492, + "unpackedSize": 2601406, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGsTcCRA9TVsSAnZWagAAwr8P/3mnBhZpYvKeyaA//fNs\nha6b29YBWwbY/ldC1csN0G6ZOinRakn7Ooztu4dxrwT3dpO8NBDLQT1nmV8M\n3xYDee0DEK21N1cjgIr36Bb2stfdYniQ4pvTNt22QcGaO+6Z22zMFhESi0yF\nqWyeHsBX5D9lb3qu0Df+OWSeK14TojKF60xIpvB2ey3CpGMExleS9LXN6rPz\nN5vuV5F137GtQKu9ohJ7vPsgUyUpMrvTQunIHJkNysvJaWVMVO5jykhRbL5G\nSRBpF9PUE2fk+sEkinK2TXQl3csvu1RcvV6SdVL1u0ZtLTJXoBXukdBMzS8N\n0AW6A7y7p2eFl+w+2wjMx2WEFHjjuGUtRtYcd4yL+B8ZRp/hiJzwV5k5jI8y\n8eLQT1+01kp0FYqXFSz4N9erUsWLB8RfKyJnBNJI09i78MJm88L2EwPjkfIo\nJ4TA1hd9/2dpeLepOybYTevYhH8uqWMgmDjWiUVBXvaIQSR1zV6JAQmN7Qet\njrHHLDUDgVoEc0368CcPfvTgzop2ECNvxRok5YeBwZvNAPCY2yulVzAXcY+H\nHib1E4o8jDg/9jSCjByVkkt/kAi/66+r+KFlWV+gbGlV3wKN5oVG0+03Dtey\n0ACjSQc7LOa7jPMWClFqgaVsnAI6r/+6j/obb8r+wsxdd2TWTRYAW5+MGkJr\nWxnZ\r\n=7Fx9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEhNfloyWpxoTZzn+09GJ6YRHdf6wEXLscPMnRKbKDfRAiEA5jV7Czi42mIKYAXEY9GguxFFFdvGc4uCUmafrvhYh9Y=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_7.0.0_1612367067468_0.044619396463017935" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "7.0.1": { + "name": "puppeteer", + "version": "7.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.847576", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "eb0d604bf373afd8268ec28e7bb8df6232851dc9", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@7.0.1", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-04V05BKQdloUCOa7JyQBaNXPIiVByz1eAFAElcrpMHIQkfu22J0RKFhRWkXZGXdl03yoHuaZwqyB/qG7YJu5Ew==", + "shasum": "de0c2602e27bf9b12d7540aae52d6ed121a81884", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.1.tgz", + "fileCount": 493, + "unpackedSize": 2601847, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgG8ozCRA9TVsSAnZWagAA0BMQAJc1HgVgnIXUipqL1buG\nhB1SWOd/BTDibf6jO36PH3E/ZmZHH87fBOj6B3Ckeu4eG5A/C2WvQl09Q6bQ\nAauLeLaG6m+CQgxerX2K8VWA0wug7YF2UsCpa0fokO01cFyePTxHaRsK4FsQ\nKQa2DZG0oU3dqWQ55/kyDZk2pFFN4BzobOutlFbvsJJK64LtB4VdKTGJHcDl\nzeOo/BEEqEGZ+YrvyYQEHvDK+VOP7NPAvWnrAi4WyTtpKXjxMWUwUCxglvHQ\ny7To3RE4fzzDulqdIfK50wNX+0wj0PJWhifFy7jD+a0IANdiT/Y6oQxBaW+W\nHri1jO8WD/ML+wygJ95sVxW1+blG9Hbw6Qi5tOinG1V9z4iOB1TNn2a6KgjD\nKO4YQTCw0P+4+PJTIlrBo78mU+q5lFmjFIv1fvqc389nmGjqI/zKa034pGXI\nR/StpOmFNMUl37/ORUj+U+yDt21l/sgs7FLZ+9E+r8x4yimCeDQ8j1UPWQsL\nVqxltnnKQ6vGKabrV45e8Cyi0555deys9jmQ3lclgWi1g/MPtrxz4ojo8QZB\n0mdDgLPxLcJBLWEEElw/QZRQwaz/ZmbbKWvz771H5nszighGHfRXbzd+vX2c\n1R8s/D2JH6ClzfeTGjIJXf0yKv92TmkpjOejc3N+MSAVXfPwN7DNiG1zSbVm\nkjcy\r\n=a5GC\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCpA/XbgnJV43t48f/tirsiiNJhB2T0KuN/EmMadzoEzQIgR+ezxtHDhykyndKDOohbCtu2bytXVwnTszYpqjsmiBY=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_7.0.1_1612433970809_0.5123480508595941" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "7.0.2": { + "name": "puppeteer", + "version": "7.0.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "npm run tsc && api-extractor run --local --verbose && ts-node -s scripts/add-default-export-to-types.ts", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.847576", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "ff50c863328d9f7189d5f5d374402e0527df9466", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@7.0.2", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-frqxewXgRKrz5uOHh9+OXefecuaSV3SXCFk9jwfBBZWymCH8a8NdWuqD+yvdkrJVfjjX8vp6/zZDtpK6nS8PDg==", + "shasum": "0a9c225cfccbd2977fd6ad4d5b3ec169bfdf2e66", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.2.tgz", + "fileCount": 488, + "unpackedSize": 2189060, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIkhmCRA9TVsSAnZWagAAcMUQAKS5i6KaOiXc7Dazaw7t\nIkauhgyUm5jf/HXd3uA7WvOPYRpofyf1VPZMDfqt+QaHC9AayJ+oQJ/SlRyv\nfFz9WgprDjASliU/FKztd9IeX6jz4uxxeqsVhRsIY4nWe6cNphCluCCYW3to\nJCydBlqHYR5l8engKdxP3CFJzgEodWq1JGioePLRQ8Uxf9GZeNkO+D/pSn6U\n0WDGkeysjj3C3OUvi7hKiyq9K862PiH/fUfxgdOpxUinoCKjwOkgyN+bsrtE\nX5CvniZYdGorGIfHOicF85aWXZOw+ZEvzXMeaY37D0dZTdsxXime4zT7M7RC\n47i+aNhBRf7kezh1+87hOp1eZ+n3rgiOFivMWsDztrN4wTPI9p+EyhO9tx4s\nNU0uyXzx+URNF+mjQk31m7/5rzuYltrmpuOjcTVOV+A1Gio22YJghlEiXqV4\nrPTQ6L3JrNBkKcwhB0gEO/4GX+Dq3VoweVLfMk+PYl0riAzSX5lpRQzfdKI5\nvW1RpNiNTFtm/rnGOcnduV3/qzOnyg2166KwyNCGmE9MbTLCJX5W6zs7e4/A\nIcFRcpUAFtAhV/l/hsL5zDWOK4XnnOeTjoezCTUuNTvD3VCxTpwk9ITVe8QH\nQ1TAIB8r2SKW90TepvdhBj/s2eKcWoan003fOfVUNnLBB9pXBHhHBtK53qfi\nxm/q\r\n=bfbT\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC3rq+irv4BN1uzMvi4hygjFr5moUhK6SNSqvbiYnt6yAIgUzFmGsA6GZ20PACXGT5HLNbyufTewcS3iqmfbI7hbYw=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_7.0.2_1612859493711_0.9854057971618086" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "7.0.3": { + "name": "puppeteer", + "version": "7.0.3", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run tsc", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "npm run tsc && api-extractor run --local --verbose && ts-node -s scripts/add-default-export-to-types.ts", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.847576", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "27eaf607ce91666b10ccc50986adcd6d10c83e93", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@7.0.3", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-fm3hANYhcDB9JTfOb6eNCYOv0qIypIC857Bk6zd3Xr1uXlqvg53SOeDAlLG9ne9DsUGb5qDs+hDrlB+3Zjw6ag==", + "shasum": "07375e80de6bb0703ab5461672ba99f386661d1c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.3.tgz", + "fileCount": 488, + "unpackedSize": 2189390, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIk3hCRA9TVsSAnZWagAA1WAP/1oyGYfavRFt6JyRiZpj\nbh54tMjVmHKaGzTNgVdrEu2Zap3psyyUVVm4Cno+wSUzZs4ITO0WlyNsAIZb\n+zM+2xaMT7Ex25DKHomtP00EWV7uwbhY8C1g28BdDoXHHuqltfDvF6Elz1uP\ndiZY8snGm7AWpUzfHlfdjwlqprx294eFmW4nrsj+VM4YaRTnL+rc1mZNEtG+\nhN2N43K0SDi4lwGiqQAnKVSsGe5+HesWTiYFUiu/bGZHXtBuDi5tzmBsIJQ+\nIEIQzf/m1bEzqyIwb1Wa6/gMduBerySnxMoSa2DZxUYAJX+4uelF8o4u0MG4\n62Fqqv26TEKiR7O4+BlK6FHbgMab+m4M2ZnbFseCDkhql38oQU2CkmpqL5J4\n5X7Sk+szCX3OYmCXxS1Cam0il2JAc6W04BHgsOU0R9RQLqMzO3qzcBr2fJ5v\nXIgesXw8lfxNmjozcN1hngj2bik7xFaCHbYbR9+5ye5hPOnc/oY1EVjuRYbz\nnWkRSalIYkPp1Ccz7crGBxyyLXR9Rzo3NJKJkCimO+nUHg72qdoL4iXEsfwf\nE+b/Et42JCubvA3vWF8Qr8+c+6bvyHWQaoNfewGPd3fwwR6Ey2psXaPU03NE\nnOtjimMbr2+AwJvDm4v64iNzCsBbZksqGwbaUFUuxstXm9mgMI5FQfMJXGHk\n6LL2\r\n=azQF\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDvkLK/u/pOvn19XdCnkQpp1v8JhsEMxTUkpoR/8WbOdwIhALekgevQOULXizKhidqEo64x40XpQlvpPYSdri+jwnBB" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_7.0.3_1612860896720_0.008953379977770126" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "7.0.4": { + "name": "puppeteer", + "version": "7.0.4", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "npm run tsc && api-extractor run --local --verbose && ts-node -s scripts/add-default-export-to-types.ts", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.847576", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.9.2", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "db2b4898e1e67154d78d7c87dc441e956da17b1d", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@7.0.4", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-uHG4wXuJ3MuIAvvWJ5cycg+FgbSQEcCPTIKc7Y/nSGKN4UlT+9uFptgV/WgEAES2Dq71k1VwWSjj4pkXYI4tFg==", + "shasum": "f4b91b8a30eef29c53ff9a334123f23f87d42821", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.4.tgz", + "fileCount": 489, + "unpackedSize": 3012744, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIoJ8CRA9TVsSAnZWagAA+4oP/igmWpgzHVGqLyEUqjhW\ntAYDFgvhGwoC9rsbSb8XqC5+uoRu+UncChYnCZupc83KwENjwKkE5VhnxIx/\n7/vOiCd02LhDxPC72CrSX0C8F0YkWVEMc67usDKbvUXlBa7UPucUn5KbYkTT\nHy46GgzZmiSu9f2Cc4h4ysgf7UAUJpQxkDyYn3fhmCxG5Uxcy4o//wA4Z2G+\n3ezRFLUvUCqDAIBioP2DXRgMwK72UvkkxU4610U8A8mvhkubZrnlvhLeUCTC\nzWgQ7Ddb3dfgVS8xAvc91SX5az5xkSsH2lSbBHtbAF5LFiUrfuEIu6iX91Oa\nznCYh9O1h8WymbwvWyFO7vNto2MNjDq3L4ZmgMIDO7yFBKgmT7uW8E5qic3R\n1oN4M7prm7fukyQK9TKCcXFWGIy1bHe2QKyf/rhSxPWhdsWylZmebSQoYDjY\nzkXS0zb00UkX8JycHdLe81HZWOMT4Z4JASVC612JsIoYOA49cKGp5+tj7UUA\nevq4L/sCNCo3XajWX7L8brEmVLP4FGfrQADnmXjAJ9v322/uk5YpJBoJl3lK\nQidvsKQVIuSiyJnn2EcIus3dX5sPWCR7vH7yCYths6JDj5KGdSOAQy9fS0ux\nMK9BECvMdfm2too2UYP1tVCib96XwrfAmYRkhxb1zc19bQLNGC5D7kSlDeZq\ngi1C\r\n=JzXE\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDmxqJj/imXYOhx+fBL/ijqifJ+0DIKqShSShlhjQFaVQIgT8z/1cZovApj4htzXcWzT2SqP9BDmwF0ejirKwNoY3Y=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_7.0.4_1612874363651_0.8841763507872906" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "7.1.0": { + "name": "puppeteer", + "version": "7.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.847576", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "7.9.7", + "@microsoft/api-extractor": "7.10.4", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.12.15", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "3.9.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "a681aac7e3b7326dc41ecfc895068c30549d8b4d", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@7.1.0", + "_nodeVersion": "14.15.4", + "_npmVersion": "6.14.10", + "dist": { + "integrity": "sha512-lqOLzqCKdh7yUAHvK6LxgOpQrL8Bv1/jvS8MLDXxcNms2rlM3E8p/Wlwc7efbRZ0twxTzUeqjN5EqrTwxOwc9g==", + "shasum": "ae37f48ee13f157c5b9255d580ffe4c5c1298679", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.1.0.tgz", + "fileCount": 489, + "unpackedSize": 3025786, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJl9hCRA9TVsSAnZWagAAGmsQAIClQELSNfohYtR1JPey\np9KiGVf3ZaSwRxqi4BTWuIRqPOES5SCRy1lnK7hKXAi9coAI7c/Erij/hX8E\nKJJLN0wT4qmcwg1yfH9Tp38JTPDyyrPV33lRA7LaVsTAemT5WrZ8uPkhdN1a\n16cbseMe4rQy8mab+lxTWbZ3kbjbszpV6kEJ71BXmEeEcMm0fGnFhC3Hf5+I\nKOfZ3pT6++5/A67WwSesv9iAIWt/iUTUGmV/foFSq4KMYpnJj1Wu1Aj2OHQk\ncWQZmq6BheRjyZp/WjEMs5kSkbRr2ZEZ2KMwaXWd9SJPkmmfuqR2rklbe3x3\n1LakJThRZfMYUopSdE0zgUiNdik6NTq1mZOW34pd5RbfBQWc5MYWf1hEl1mM\nZKqQu4O0qdWVzNO2NgaFuRhqb6N85Tck3zhPUbV4g+GQYIVlaQu9bYq9Z88u\n8t5BwYu76ooBjVp3gA68uN11ZlJnbZT997FQY6Rcdp6OsFyUP+XoPhW2AAVd\noNie4g6aCiv4bRGB6svyO3K0aSTlpe16AcR77PODThOPGNvLoZy7XU5xnDTL\nFUTsErQ16Cqv613Rvbz77u8RtNhBfTYu0k8F02X7gFS1VCWrkXwhInLpYg+I\nksn6eap7B1v6X5C8RcNVWv+dup3u7LitvtG5dmpAsex1gP3ui5Z30sxZXqVO\nKjjd\r\n=Hz3o\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCm+KY90WCw9lR/F69E39wWvLSNaWQ58bo7DPTaa7xk1wIhAKBUjx9bX3Y3kquU+t0UxxZuW7MPokHnVdPpIrjTNugL" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_7.1.0_1613127520580_0.12276955761237529" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "8.0.0": { + "name": "puppeteer", + "version": "8.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.854822", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "^7.12.7", + "@microsoft/api-extractor": "^7.13.1", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.12.15", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "^4.1.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "0b5969dea9048dc34a4d2e109e96c42e8928182c", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@8.0.0", + "_nodeVersion": "14.15.5", + "_npmVersion": "6.14.11", + "dist": { + "integrity": "sha512-D0RzSWlepeWkxPPdK3xhTcefj8rjah1791GE82Pdjsri49sy11ci/JQsAO8K2NRukqvwEtcI+ImP5F4ZiMvtIQ==", + "shasum": "a236669118aa795331c2d0ca19877159e7664705", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-8.0.0.tgz", + "fileCount": 489, + "unpackedSize": 3047181, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOLMiCRA9TVsSAnZWagAABbUP/j8gy5WAb7P/IEcU1wUg\ntW58AMsAChw9kLrW8k7sm+PDH+ugucoCROqNo4S0SD64kkYcuAS91EtZvveh\nFNvjv1rDS2p+b3G553K4CQAlrkuIXNziyRWHNkFZr/Bqtb4xBGIXfzIjbz5G\nXGzCoL33Z0GnbksxKN68LX8is9pNh2jWf0MUO8zeKYwRsmG2l/Zb4DYUCZ7e\nCjDPLBJkqemrcuWagfTzyuZaD9cnfm9lwMyvWbmyByS8E89uKxtJ9iPoeNhs\nkS/s0gjLTzGC0i0XMiaei/S+T7s1NHBIaEe+TP/OpoWJ4eWziofR8jDNmkhy\nrz3NjmnlLEHQy7vIelwy4iBPTV+UVo2tQvCtFhH2ZkvZWt5dU8Prdj/+9BBF\n/wjfj5jq3TgjOOQTu3g6q8swFDXVjl34k5i1ajj0DTxIk1iGTY1moMxve/Fq\ntx2Dr+lNf8bvGZPvvjnclCYAWkiCAjLj5wSohUqdWK+cKkgy8FsVtm4PYvbb\nRMJIp+j4gf9IkvWGKmapTyHkyDlBwfcVSWoe+tWprSv6aEm4rBtsAwN+jnVv\nLX+GMUHXB1Z5bqqnp93lGPBRwmDbHogXoRS4yqNwQSl+tyykdbzsImTviMJ7\nBeT200EtmQZW9bSqdJPNwb71FMHsUVSC1lxRuORaaDslFu8JQqLYeXPuRvAx\nuVrs\r\n=R7dH\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDtI2nxcZBrtPEdNYVi6TdkU5ceooEr49/QOw3YSjFM3gIhAO4wL7LFAHK2EQoP3qm0FG6ZFf4rkQBPkC9DjwmagCLL" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_8.0.0_1614328609918_0.32590497836412347" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "9.0.0": { + "name": "puppeteer", + "version": "9.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/api.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/api.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rm -rf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.869402", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "^7.12.7", + "@microsoft/api-extractor": "^7.13.1", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.12.15", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "^4.1.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "5872e7178a7fa4492dcc819a528c9308cd478639", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@9.0.0", + "_nodeVersion": "14.16.1", + "_npmVersion": "6.14.12", + "dist": { + "integrity": "sha512-Avu8SKWQRC1JKNMgfpH7d4KzzHOL/A65jRYrjNU46hxnOYGwqe4zZp/JW8qulaH0Pnbm5qyO3EbSKvqBUlfvkg==", + "shasum": "b476e17ceb3e33a6667bf682d66dde9898f9c031", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.0.0.tgz", + "fileCount": 489, + "unpackedSize": 3086921, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggAwkCRA9TVsSAnZWagAAqIwP/3wrZEycpcKXi8nl40ms\nFVAX2wzKqBVx3QnaANkQ1E5B+Ycq6UJwxs9172j/bc66grsmnCD+liOVC3rO\n1Ujmm0CV9dmnsJpKCjNoWxdtzCebGzFSSt+F+6bk10wMXhK0HNnYuBxQYNne\nhqREt1QfXa6IIDxec73wuVoBx/CkiU4DQfTnh7i4z7Nbs2RPgeMTEfSAOM+2\nxSARFmIASlD7aKm2OChVWVahNqtYbwJE7qnFGisXy10t1VQkhGO/GNROT5vY\nf66NDLqI7u/w7BhrDqMWydGUfivYXVAFKyQb6VycdVZRLFKKbKAJKeO31Du5\nLA0VQ4kmRRX9YI59q1yWpvlN2HCoBpOuZAEOWTDFlHaTxDjUzjcxxIQfc2Ex\nCFZV5ybDFQr6ib5YW4s0I/IgZeUJC4usr3Mqgdv71SzDYD3uYBiO0C2OHcu2\nYGN4Bl2vKidAZRJFl45PVKLwDqTH1qKT41+63kSeUGDD02w+MwsQv2dOdNeI\nPEoL+wgPLGoaFVHKMJ1Nc0mdmQ6Jb5lLAo2ukGHpMsr/OLdiK/NMgoH+vQv6\n3D6YocIDFYAyNvTv/5JOiiJSpUgVL1PAbXdb7ap7Ey4Ur5gwN/s4QgMKNzQ9\noF6TH0qfWOJJpRPjBjcknwHdazKIBojIGSesK+7x645GMlnRrRo/m2DcWdnQ\nmB0n\r\n=eDtv\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDiIIdRJNFZIMjPWDOgfLRCM/N0bxLyp/r204fSxK97WAIhANxI8B7herS5esmLHspd60IqVzhfCpuJfPDyVYoszrn0" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_9.0.0_1619004452289_0.6441316091748441" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "9.1.0": { + "name": "puppeteer", + "version": "9.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/api.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/api.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.869402", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "^7.12.7", + "@microsoft/api-extractor": "^7.13.1", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.12.15", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "^4.1.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "1d473bc79ff3e8c95016308cfb3a6086a1449354", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@9.1.0", + "_nodeVersion": "14.16.1", + "_npmVersion": "6.14.12", + "dist": { + "integrity": "sha512-+BWwEKYQ9oBTUcDYwfgnVPlHSEYqD4sXsMqQf70vSlTE6YIuXujc7zKgO3FyZNJYVrdrUppy/LLwGF1IRacQMQ==", + "shasum": "0530ed1f595088eefd078c8f1f7618d00f216a56", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.0.tgz", + "fileCount": 489, + "unpackedSize": 3090482, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgj+jhCRA9TVsSAnZWagAANZQP/A0Woc6yIMcCzfIxVDNg\nN4x/BdZ/srnVB/Z2FelhX2oYL73IHqltsV2YciIo7oeVuIQIMoSvt8yQeXn0\nGQXiwS0R6K9A9jSAvzD6NOBI8fn3V+HDQIy/OTIO2C44htDHaIcjREhy9Gsk\nDoDI53j7NJrw/6RBY+PpvTSRlCiwwrD47DMi1IH96m8BDWylG7SN26o/mQjw\ndG39Mi/P9Bxk/zLGqAiBvFLEARQSwAeRwPK6nVMitc/waJflDOZVutBF2cku\n6damJArWU752LdyWZTD8onuaFttn5FYtmc2w/ExaDZtke0+mo0OZdCOhEM/e\ny02aSzh+sWfxRG//kuu7iEX8QzUxUa2ytFf2Z0DWYdZdPf1HfdbdJuENmZU9\nFQ+AHgp+NZ1rNcdKVZ+vXWuSxQ1tfMCa0oTnSx6/qfR/MO3Ul/j2gfYacvjm\nnu+c0n46MlKye3uaEZ5ph7fRh2q5SbLOHscdODHeUyHJo1zNPAN+uVYBG1rr\nd6MN/rlOesbZOj7f97RT9zA6r5Gwof0Fc0g4qYMCzF/kWwOEqxG/EJHFpTqk\nqrl6+KHq0p86q1F5Jl/rFPvYCnVye4dgx5H4xpyidLnMlnmCJCG9GDbDXnm9\n9b/0QkJm7hVi9pDRPsYV5vwWYpyG3jCiG368d4bZMwHYqim17OEKJ3Z2PtR+\nC8mb\r\n=3Agi\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDqTfz0k6xWjw8CeoUuC7fjyXUrAhEPDWKSjUtDys6KJQIhAJfmMqBdv6g9TXPDbcDvibllmj6ZVJzt8axBl53nzfah" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_9.1.0_1620044000333_0.1107201660951489" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "9.1.1": { + "name": "puppeteer", + "version": "9.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/api.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/api.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0", + "devtools-protocol": "0.0.869402", + "extract-zip": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "node-fetch": "^2.6.1", + "pkg-dir": "^4.2.0", + "progress": "^2.0.1", + "proxy-from-env": "^1.1.0", + "rimraf": "^3.0.2", + "tar-fs": "^2.0.0", + "unbzip2-stream": "^1.3.3", + "ws": "^7.2.3" + }, + "devDependencies": { + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@microsoft/api-documenter": "^7.12.7", + "@microsoft/api-extractor": "^7.13.1", + "@types/debug": "0.0.31", + "@types/mime": "^2.0.0", + "@types/mocha": "^7.0.2", + "@types/node": "^14.0.13", + "@types/proxy-from-env": "^1.0.1", + "@types/rimraf": "^2.0.2", + "@types/sinon": "^9.0.4", + "@types/tar-fs": "^1.16.2", + "@types/ws": "^7.2.4", + "@typescript-eslint/eslint-plugin": "^4.4.0", + "@typescript-eslint/parser": "^4.4.0", + "@web/test-runner": "^0.12.15", + "commonmark": "^0.28.1", + "cross-env": "^7.0.2", + "eslint": "^7.10.0", + "eslint-config-prettier": "^6.12.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-mocha": "^8.0.0", + "eslint-plugin-prettier": "^3.1.4", + "eslint-plugin-unicorn": "^22.0.0", + "esprima": "^4.0.0", + "expect": "^25.2.7", + "husky": "^4.3.0", + "jpeg-js": "^0.3.7", + "mime": "^2.0.3", + "minimist": "^1.2.0", + "mocha": "^8.2.0", + "ncp": "^2.0.0", + "pixelmatch": "^4.0.2", + "pngjs": "^5.0.0", + "prettier": "^2.1.2", + "sinon": "^9.0.2", + "source-map-support": "^0.5.19", + "standard-version": "^9.0.0", + "text-diff": "^1.0.1", + "ts-node": "^9.0.0", + "typescript": "^4.1.5" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS" + } + }, + "gitHead": "d615dd3d2c79f12fad81445dd14a4943141bda04", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@9.1.1", + "_nodeVersion": "14.16.1", + "_npmVersion": "6.14.12", + "dist": { + "integrity": "sha512-W+nOulP2tYd/ZG99WuZC/I5ljjQQ7EUw/jQGcIb9eu8mDlZxNY2SgcJXTLG9h5gRvqA3uJOe4hZXYsd3EqioMw==", + "shasum": "f74b7facf86887efd6c6b9fabb7baae6fdce012c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz", + "fileCount": 489, + "unpackedSize": 3090652, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgklpqCRA9TVsSAnZWagAAJWkP/0bZmZQIQv46bdCDaeyN\npSD5ciLQA9bVHF4JdIZV1O35p94McGG20Nb51APtPaWTjoFNB5UWY2bLYN3u\nSGosY6NmvoGoFByVRSqqTL2O304KXUDqTvWs3BS0Sn/v96weLJR73yFvza2r\nfghXWoHAhL5URhfXql+xh+/7R8ASu27aELLtPQu1gZuOskLcPoox6frfhjZc\nkLfklAmCVCPRiDBI9bwcWYRRtbYr+Rh1fjU1iOU2z1mS+1+q/siTW6m6O/oX\nIureCTlp6lV8CkbfDR1xN949w9+iBoWeNeAmSEOwLCpEB38nTsCtjZxzIGq4\nrD79rTIgjWYpOJg5LcFl5AqMhKheE+WZ1D8c/pn7giAoJJQpU6fpC79Lbq3X\nGQkTbY5D6zKcnGxhqqsCJxciS9IChwfRmCIcTh9+6fsNAV0/CZO4JIW+YeoD\njvq5n2qUzUw3kMui2SNUO2qUQRWDth1eu9sA+F+RuvTpLqIiqTGrexvNJL7a\n3R/JHwqS9INPbzPbM5sYPNRvaRzjW6kgDgiX0xcWepmzmSPcgYIo7zQJSRKW\nH9hXRqVJI99eZX9eD/C/L7H5MlQsd5ych/H7/5mIICepDwsDjFX2GC9rocUO\nWJpMmamRj10mF70+UIO/HUCtG6XIEsNwgH0lGDDhil3HiKhkVS37iOCMnDEa\nZKi4\r\n=l2/g\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHnHdQpVvrJiOK/xpGmNzYC6fvexhFV2JgFgZvPscR26AiAuc59KNYNzBEU7QNmYMYSNNLN4Vfi0aH44xguEV7cVvQ==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_9.1.1_1620204137727_0.04903143836132218" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "10.0.0": { + "name": "puppeteer", + "version": "10.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "generate-d-ts": "api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i temp -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.1", + "devtools-protocol": "0.0.883894", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.1", + "pkg-dir": "4.2.0", + "progress": "2.0.1", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.0.0", + "unbzip2-stream": "1.3.3", + "ws": "7.4.6" + }, + "devDependencies": { + "@commitlint/cli": "11.0.0", + "@commitlint/config-conventional": "11.0.0", + "@microsoft/api-documenter": "7.13.8", + "@microsoft/api-extractor": "7.15.1", + "@types/debug": "0.0.31", + "@types/mime": "2.0.3", + "@types/mocha": "7.0.2", + "@types/node": "14.14.45", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "2.0.2", + "@types/sinon": "9.0.11", + "@types/tar-fs": "1.16.2", + "@types/ws": "7.4.4", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.23.0", + "@web/test-runner": "0.12.20", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.26.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "8.1.0", + "eslint-plugin-prettier": "3.4.0", + "eslint-plugin-unicorn": "22.0.0", + "esprima": "4.0.0", + "expect": "25.2.7", + "husky": "4.3.8", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "8.4.0", + "ncp": "2.0.0", + "pixelmatch": "4.0.2", + "pngjs": "5.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.0", + "text-diff": "1.0.1", + "ts-node": "9.1.1", + "typescript": "4.2.4" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS", + "pre-push": "npm run ensure-pinned-deps" + } + }, + "gitHead": "9df7b71e3bc9b239b8d732bbe99583c7816e0d7e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@10.0.0", + "_nodeVersion": "14.17.0", + "_npmVersion": "6.14.13", + "dist": { + "integrity": "sha512-AxHvCb9IWmmP3gMW+epxdj92Gglii+6Z4sb+W+zc2hTTu10HF0yg6hGXot5O74uYkVqG3lfDRLfnRpi6WOwi5A==", + "shasum": "1b597c956103e2d989ca17f41ba4693b20a3640c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.0.0.tgz", + "fileCount": 489, + "unpackedSize": 3115386, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtNmzCRA9TVsSAnZWagAAnEAP/3A3ilw76Aa6DVUtLYfl\napYKS9DVF/ixeVpP3RGHFK+FXmj+XhgPljioysI2nvRXXx4RcD1gu6vz6KEw\n8CnAhcnE+SvD+SiG4DhTZlvxn1mPPWV8KPS8p498+JXU2+zY+5XRI7ATJZ0G\nW1GsKjLGfKyRi9fAbG09fk1TQ4AtH9Q4yJ2cjYr8DIAr5H8axsarvC2o5KEL\n6amLe6zhYUDMqN4f2/0YH1ic0tHicOVLX3mZPwL1zTEjS77l4qCAG415lsll\nYXTcu7knGaRoVvZ1xU8AhqYdwHqdlhOVrHnKpGb6e9wmv9PSM3AH6uNhGf5q\nRiBXTASKdfWZcDHImolOP4ugLtFr9O3A3yDaRjxmPg5cTfLTb8Tt4dFanz27\nhF7njU3xmKI/obg/ACRhNGsNFQJ3tv5uei36orYPb+LZKKly5x5p+F4AwfsY\nwk6taOsrRQd6x4Y10ICMn7tCHFv+04YPZlyHPBcJQ7UK9rxuUpfstbq8F2yC\nwXg1wrVIqlUbtoKPg4iYfm9wrITb880+dMgdfgfAr7lFhFhEJ4Dxmf24UEnO\n8L01EcTUB30Xu9ps7m+IL7MYIux+3lFxZk/7BxTSK4DMj/4teZR5Dv+WFLMr\nYxC5DRLBulp2ZSLw3WY7gCfYKTtLopzXOVZZUNVXslleSJU/ojbENdeGTrOE\n1KoX\r\n=oUhr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEEICilpqSgfkjBcxQyq3kWrCUo7QWq2FKBQO1F2gLAIAiBGG/r9NOa0/5ssj1Llv1DfEkokDXroXHltWYXqBy/+cA==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_10.0.0_1622464947204_0.04405741404684349" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "10.1.0": { + "name": "puppeteer", + "version": "10.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf new-docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o new-docs", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.1", + "devtools-protocol": "0.0.883894", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.1", + "pkg-dir": "4.2.0", + "progress": "2.0.1", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.0.0", + "unbzip2-stream": "1.3.3", + "ws": "7.4.6" + }, + "devDependencies": { + "@commitlint/cli": "11.0.0", + "@commitlint/config-conventional": "11.0.0", + "@microsoft/api-documenter": "7.13.8", + "@microsoft/api-extractor": "7.15.1", + "@types/debug": "0.0.31", + "@types/mime": "2.0.3", + "@types/mocha": "7.0.2", + "@types/node": "14.14.45", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "2.0.2", + "@types/sinon": "9.0.11", + "@types/tar-fs": "1.16.2", + "@types/ws": "7.4.4", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.23.0", + "@web/test-runner": "0.12.20", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.26.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "8.1.0", + "eslint-plugin-prettier": "3.4.0", + "eslint-plugin-unicorn": "22.0.0", + "esprima": "4.0.0", + "expect": "25.2.7", + "husky": "4.3.8", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "8.4.0", + "ncp": "2.0.0", + "pixelmatch": "4.0.2", + "pngjs": "5.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.0", + "text-diff": "1.0.1", + "ts-node": "9.1.1", + "typescript": "4.2.4" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS", + "pre-push": "npm run ensure-pinned-deps" + } + }, + "gitHead": "6b13a17ed9bd7bfc51236e85e67decc127fefbd3", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@10.1.0", + "_nodeVersion": "14.17.0", + "_npmVersion": "6.14.13", + "dist": { + "integrity": "sha512-bsyDHbFBvbofZ63xqF7hMhuKBX1h4WsqFIAoh1GuHr/Y9cewh+EFNAOdqWSkQRHLiBU/MY6M+8PUnXXjAPtuSg==", + "shasum": "6ee1d7e30401a967f4403bd42ace9e51e399504f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.1.0.tgz", + "fileCount": 489, + "unpackedSize": 3372011, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2swNCRA9TVsSAnZWagAAHq0P/RCvPHMR+a/pmotPSmCA\n7bVY0KXrd5T6DAGTDg7TIvh8tYugMoWdtTpkcJMpeTaQjL5GZXCLzLzvnzXO\n4FolQ5v7yET70QxBj4jlNkhy1NIlnNAgzfBzJRl/c6wH2oVznshq5Z7AO4dA\nPhCOZl0+F3Ro2n4Nonp4T468tINc0NkKgcOXIy3ZyMDOAzDbNearmSn8FrC/\nq0meaydfR+NKUGoyj5nnTUrUZGHmaJB5AvhW0rQ55p+92Ggk0Q0jpFszlj+i\nA1IADqgf8fo32qHV/CsM0hK6CPvPywRAkrSW4K4SfU888f3/3X6m6S61sx7t\nkDHr68yCtJMKBiGrhSouhkjux56YwK1d11OXyYS3+2eWXWQgcfXrBGOVVDW/\n+CoD3X/PQLlsl7pS5zYWPuta4KJBDaN6Yx8QT6bpCx7bzC9Tz6PnkR+ofPeG\nTVlkFzgBbuKMAlliKicDomP+VoPXuZsWF4LSOdHgWl5EQF1obulu21hUebJv\nk182Hl6Ujyd4nCTQQy2EIffO3Nxvqb8zLyqyaFGqcOO54+i58zyNuLoiwpJL\nf37in8URcepr59GpdEtHXMmf9dpmil6s8yz9iX+Ky66RVob7dScXcVM9WW+r\n76uDmre4eZODmxRwWAed4QX2C/oNNjLwkwQYgJxEN3cKLXQs3P8a34GM5aRI\nMErt\r\n=yHza\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDV67xvDJHCVI5/eZ4rz7pUm+g0l5S7K03Z1nWagVkNeAiAgj5fhG5Ad4PkKzfXFVxhHmSA2LDf04pdFtkr79DN+4A==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_10.1.0_1624951820328_0.3110640625820249" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "10.2.0": { + "name": "puppeteer", + "version": "10.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf new-docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.1", + "devtools-protocol": "0.0.901419", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.1", + "pkg-dir": "4.2.0", + "progress": "2.0.1", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.0.0", + "unbzip2-stream": "1.3.3", + "ws": "7.4.6" + }, + "devDependencies": { + "@commitlint/cli": "11.0.0", + "@commitlint/config-conventional": "11.0.0", + "@microsoft/api-documenter": "7.13.8", + "@microsoft/api-extractor": "7.15.1", + "@types/debug": "0.0.31", + "@types/mime": "2.0.3", + "@types/mocha": "7.0.2", + "@types/node": "14.14.45", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "2.0.2", + "@types/sinon": "9.0.11", + "@types/tar-fs": "1.16.2", + "@types/ws": "7.4.4", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.23.0", + "@web/test-runner": "0.12.20", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.26.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "8.1.0", + "eslint-plugin-prettier": "3.4.0", + "eslint-plugin-unicorn": "22.0.0", + "esprima": "4.0.0", + "expect": "25.2.7", + "husky": "4.3.8", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "8.4.0", + "ncp": "2.0.0", + "pixelmatch": "4.0.2", + "pngjs": "5.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.0", + "text-diff": "1.0.1", + "ts-node": "9.1.1", + "typescript": "4.2.4" + }, + "husky": { + "hooks": { + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS", + "pre-push": "npm run ensure-pinned-deps" + } + }, + "gitHead": "c510df8d8e52fa361c26f6db011aaa9410c8996a", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@10.2.0", + "_nodeVersion": "14.17.4", + "_npmVersion": "6.14.14", + "dist": { + "integrity": "sha512-OR2CCHRashF+f30+LBOtAjK6sNtz2HEyTr5FqAvhf8lR/qB3uBRoIZOwQKgwoyZnMBsxX7ZdazlyBgGjpnkiMw==", + "shasum": "7d8d7fda91e19a7cfd56986e0275448e6351849e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.2.0.tgz", + "fileCount": 489, + "unpackedSize": 2747244, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCo3CCRA9TVsSAnZWagAATn8P/3QDYF1Y3iVdtCLQTg9m\nH+DhBU+ZO7s+N8PflLqZNT2kMXLUbF+KbMO7FfftSrbhG8ORokBKYrN74mBl\naeJVmR7s1V1q5Jc1UVd2PpfrAzu1qP/vzHPa1mYa25fz4hbJOlVnQVBO1ET/\nDiKQVgs8cgle2RtGXYHaP+jFvICGbOf0/tLYnF3Eylwnlk8D5GKKWe0i1b9q\nV3dc+YE/mOreZDSP39Hl1uAHDN7nfl8GP4k6KanOgt6C0BSEZCDb9GOUaO84\n/hmBJkgzYp7dHVSUtfc/L4xfNoPL3AVtSzzm3pkRjfSZkSiOMCb4uYWbrsC2\n/3kVeEqZHvfCpuHf3ve8IAugUJn9RoHrSj6uVegs2JX79DD7Aeaus1Af2Z7R\nK8HGQ4Vczb+V0LA3FYm+I4ulxhRubch9fWUe4hpjf21zWXLm7INKRd5Wzl6M\nw7qe9pNXpFSV8m/UkgqK/2DgmBO+X9qZugb6t5WDPzKwx5CS8Vsp+chMsquH\nQ3HQRUoIX32i9ZSEQ8z8E6OUBO11gzZfa4VYJkTRecoOGRgMcQKbQGYM9I/S\nTeOfcL0gWn1Oqw7IAUv6dXDhRrNYYM74RfyqVVSYEARO7e06/tQCUHHDuNLD\nMPDXBBwCbXmk/VvnAAdHsIc3AZyXmVclda2fqIUMJ1KGXJXjLz/RdM36VvuO\n9xbk\r\n=0rXe\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDxNCYoSX6JmZxlaRQstL3z9qoLnltTs1ctZ+M0LIFpGwIhAKccj0ZnFty52PF1kVbbp+bTr16z9sjjuYhkh01fAB/J" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_10.2.0_1628081602578_0.9108735689067111" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "10.4.0": { + "name": "puppeteer", + "version": "10.4.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose && node inject-global-type-stubs.js", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.1", + "devtools-protocol": "0.0.901419", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.1", + "pkg-dir": "4.2.0", + "progress": "2.0.1", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.0.0", + "unbzip2-stream": "1.3.3", + "ws": "7.4.6" + }, + "devDependencies": { + "@commitlint/cli": "11.0.0", + "@commitlint/config-conventional": "11.0.0", + "@microsoft/api-documenter": "7.13.8", + "@microsoft/api-extractor": "7.15.1", + "@types/debug": "0.0.31", + "@types/mime": "2.0.3", + "@types/mocha": "7.0.2", + "@types/node": "14.14.45", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "2.0.2", + "@types/sinon": "9.0.11", + "@types/tar-fs": "1.16.2", + "@types/ws": "7.4.4", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.23.0", + "@web/test-runner": "0.12.20", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.26.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "8.1.0", + "eslint-plugin-prettier": "3.4.0", + "eslint-plugin-unicorn": "22.0.0", + "esprima": "4.0.0", + "expect": "25.2.7", + "husky": "4.3.8", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "8.4.0", + "ncp": "2.0.0", + "pixelmatch": "4.0.2", + "pngjs": "5.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.0", + "text-diff": "1.0.1", + "ts-node": "9.1.1", + "typescript": "4.2.4" + }, + "husky": { + "hooks": { + "pre-commit": "npm run eslint", + "commit-msg": "commitlint --env HUSKY_GIT_PARAMS", + "pre-push": "npm run tsc && npm run eslint && npm run doc && npm run ensure-pinned-deps" + } + }, + "gitHead": "5631d3aebc73cc418824a569fe71781eec83f00a", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@10.4.0", + "_nodeVersion": "14.17.6", + "_npmVersion": "6.14.15", + "dist": { + "integrity": "sha512-2cP8mBoqnu5gzAVpbZ0fRaobBWZM8GEUF4I1F6WbgHrKV/rz7SX8PG2wMymZgD0wo0UBlg2FBPNxlF/xlqW6+w==", + "shasum": "a6465ff97fda0576c4ac29601406f67e6fea3dc7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.4.0.tgz", + "fileCount": 497, + "unpackedSize": 2794525, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCaxjjWPKWmXleNumoi2VOkEkS9LOaiZX5rmSbhbdwvMgIgUfe/laPd8PB77hUXQ6ixoUvL8k5p7iynoMhPWwkWBwM=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_10.4.0_1632238452068_0.5611826493638117" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "11.0.0": { + "name": "puppeteer", + "version": "11.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose && node inject-global-type-stubs.js", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.901419", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "e2e98376b9a3fa9a2501ddc86ff6407f3b59887d", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@11.0.0", + "_nodeVersion": "14.18.1", + "_npmVersion": "6.14.15", + "dist": { + "integrity": "sha512-6rPFqN1ABjn4shgOICGDBITTRV09EjXVqhDERBDKwCLz0UyBxeeBH6Ay0vQUJ84VACmlxwzOIzVEJXThcF3aNg==", + "shasum": "0808719c38e15315ecc1b1c28911f1c9054d201f", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-11.0.0.tgz", + "fileCount": 505, + "unpackedSize": 2858094, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIBAVDDbms3tBh4RPpaOudewoMIesZmdlPTdSQN1PykA3AiEA6KjHaWBeH3zTnlVEltKB0vjWWCj0CiDc/r8xw4SBpoI=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_11.0.0_1635931752575_0.2715093321958415" + }, + "_hasShrinkwrap": false, + "deprecated": "Version no longer supported. Upgrade to @latest", + "contributors": [] + }, + "12.0.0": { + "name": "puppeteer", + "version": "12.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose && node inject-global-type-stubs.js", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.937139", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "641588a7837c33b13e0426707c85407b870ba39a", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@12.0.0", + "_nodeVersion": "14.18.1", + "_npmVersion": "6.14.15", + "dist": { + "integrity": "sha512-a+vLxtwuDLUIq8Vz8X5bX+YMhcQrgyfq0Jo5Wcm49EfUawgCxeCN9/rUAS3VdAAiQZ1PKiv9pGyQN8jj1ypecQ==", + "shasum": "38544c9a608c79ded84bb4225af26d2d42c988cf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-12.0.0.tgz", + "fileCount": 505, + "unpackedSize": 2907076, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJholi1CRA9TVsSAnZWagAAuWEP/0bqoM6BYJm9b7MbAx5p\nJ/b0J5JTvBkTFF+5WyAA/XIElAigpqrAkure8t9ZLuswxr3ZotHzvcS3Rz+c\nqtLSu5ZokVunyc1ClgieY6SBCZGKFW/qrEEUs5ljic/xaycJ5uveAfYLDVIx\nxoD+Ff/CBJoM+9FJ3yGUppHSESg5TqsuU71D01LjaR2NAwWU0CmksbUpOF6g\nGjA3EL6GSjax0mGW3dbZneOkF/0Wltq9iN4cGqav3YTyLf8mOT7My7r8klfY\nNHu7Z32IsfrRdYvQlxHKfUF/MolNWf+e9ud1HFLXXTQy/N7zGvThusImGIeM\n91swJ+CaZr9qccdzYSP1czNw4za+L8aeGCjztCSzKiXrkJsyuiY8sSb2fV7X\n0H43uL0FJfS+cs0itcdAeyqDnFlpC8dM2io7R97QZwHR5dO57VR2ELdZMR+v\n6bd2Aj/yQXjNSPceER6zvW5SC+R6S83MGCPiVrANPUawhthbDOETaBak7xQU\n2v14T6KX+zifufXbpPgximbLq6xigtArKBmNsVBPhuCKU8k+WVuINi4y48F/\nPCS+ycCGJvlQ2p/NFU2MORrQIOgWzIHuJD2I3XZ+w3j/IoxHlrJuzU7lc4jl\nEJPlioVq2mv3Pgxxja6HBtt0nOG1y1xRTF6/QdT/KSnBFNRZRzb677ZpfJjn\nZ3kO\r\n=4YMe\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIGsVDcBmBWY2AT2Q8bIQNSz3ZyBNbHzV6rZjZKvmvrvkAiAZxEVvDEPn2/UUdetR1PMjzhahwpC1t2r2cCdcpoGOGA==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_12.0.0_1638029493493_0.9862309395429325" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "12.0.1": { + "name": "puppeteer", + "version": "12.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose && node inject-global-type-stubs.js", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.937139", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "913ff123ec0b8f6dab1919ff2352a5a2c762ed93", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@12.0.1", + "_nodeVersion": "14.18.1", + "_npmVersion": "6.14.15", + "dist": { + "integrity": "sha512-YQ3GRiyZW0ddxTW+iiQcv2/8TT5c3+FcRUCg7F8q2gHqxd5akZN400VRXr9cHQKLWGukmJLDiE72MrcLK9tFHQ==", + "shasum": "ae79d0e174a07563e0bf2e05c94ccafce3e70033", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-12.0.1.tgz", + "fileCount": 505, + "unpackedSize": 2907611, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpTPjCRA9TVsSAnZWagAA+vcP/0HVZGcSMsPRhv26hde3\nHR+H9T4Hn+x10ZSCV4sZXxLi1awzNzrT2fquoFmbD0S+mpWJGdwU//WRhcue\nmiykVtTnJnlnsn1MRptI8teFdqHWXo8Q1RWETxpBQcigxD6lrXbTd+IML9X/\nO6vLj48fXM5DuLZqJGQgbG7jCwyHQJ0J4CA2P3GBwL6cWFKaZgfIy6Ukvh6K\nrfV+tJny0r19eEgq16BJjytfuxfLdwG6LMHiicGxQRuJFnrqnieKru0Ez37B\n1ZO3iL9QznpeyDDB71mZJUKSvwFjQvfpu69BxUqP8P4jVnpelmzIFuIrNigQ\npyFwUdkWVwfGyfsLR6prS6H58LGnb14+ISYs2IxjJHeSy4JxX3J50tVKcl+0\nBSAUoru5+GDJ91RAHfmDQ5cA3gM0kqrRut7BtWDEndbiaT4RtljYq9ukg9Em\ntOPhsi5FVUrNfl0R5rL1Zx0+Aj4t/MEhBbadXSX7wZ3+LrbuxnqAih0d++4r\nn0me2Qdx7ix1rm8qmCFh4PUi7JfWxlThumUg2Abs24djfnuQCZ+/MPZgYWVh\nn0x8RNPOU2Z8OS1pWyW7Aj/mOyUlGIhaz3Tf46IGdtVA+M7br9op5ePFQbQ7\neLr4Po+6VnAajQfpJSeOSZcFMreNfXTF8RmruztS5n4KuuSNfFXSojRbClUY\n7ebD\r\n=KQ4B\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIE0nZxlmoUYFtpBWJ8rxAMliH5Bg7/wbIe5efvCtT4ITAiADCo3YkSd1UCajv6ZkYkvwV2P0G/Ih7SB33DX5GtSmgQ==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_12.0.1_1638216675361_0.6011045346605524" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.0.0": { + "name": "puppeteer", + "version": "13.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.937139", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "d0cb9e2573af2091565733bf0e975bf97d950fc2", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.0.0", + "_nodeVersion": "16.13.0", + "_npmVersion": "8.1.0", + "dist": { + "integrity": "sha512-kZfGAieIVSo4bFqYuvY2KvhgP9txzmPbbnpZIzLlfdt8nEu9evXEwsbBt1BHocVQM4fJmCiS+FRyw7c8aWadNg==", + "shasum": "f241d9bbbe5c8388da922f4f6ea3f84866e17f81", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.0.tgz", + "fileCount": 504, + "unpackedSize": 2908638, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsxo7CRA9TVsSAnZWagAA7NUP/1di9SblB8DDBg+oxPRE\nFfswnx9GcpeckddFaYhSkDOfJEfMRlwvck4zoTSjrZYrGt3g2wRlF93hJe18\ntEt+SKyarZeoraA5VJJVHYojextXkxauSZVeFVzE2fT3x4+BXHfG8sbpKJU9\nzpDNy3vr5RI/mcbw7KdUSo1iBrA39ccZm5sqZCBYCrtnnW55VpSHV8/oCUFQ\ncIgLkUaXc2Fpfzzk5VPqXI2+YFzjK66nFR+eMJz4h/a8PM41zuMA7qruO6Vb\n5WHFCKkhmYRjlovcOXaZiSzi9y56ZV8QjJ4M/bEFcFp0a7HnP6e1pUNpmCDD\nzIUEHMevHf3V5H/UIeKv74DZ/XaE6V739x19PgiXUYPaezdqG9fuCEY1H+Ft\nq9RRf8DDGCtiN3lQu0l6L4Y75Gy6kCdQX+BvU7P7HYYyYkrxashtNZqoegyP\n9lSNgAhdoFBgTG4X+z4tpA6zznJijTxP15BtuFQt06Oemb8l83EvvP0vvp3Q\nLYR5db+9HiN44LGEWLd7IWHdNLEO/QUNFPaxY3ZMrHGUK1V64hGHjshTq5Iz\npJBLu4YII9Op8VTxARfCVE175C2QTuYR/BsPDSy05bj5+o59xZzz8q12uO1o\nUONGr2QZSqiRLEy0/k3nCwR0Gq9ziI4fDFzFgP7sWqvhfq/1wz9Nm6wuG8yn\nk8wD\r\n=p/i9\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDBvrVI1/Cjfm//gWiHHZ0Bxvol3DpDThzTtL7h9YSC6AiAuLwJxGcFWRh9gELMGksvzStpDTV+yO4eCKd58jYQLtQ==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.0.0_1639127611629_0.45909640670417495" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.0.1": { + "name": "puppeteer", + "version": "13.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.937139", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "71cef32f6d0420883baef87c1639dbc2def819a0", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.0.1", + "_nodeVersion": "16.13.1", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-wqGIx59LzYqWhYcJQphMT+ux0sgatEUbjKG0lbjJxNVqVIT3ZC5m4Bvmq2gHE3qhb63EwS+rNkql08bm4BvO0A==", + "shasum": "9cd9bb8ec090bade183ca186bf342396bdffa135", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.1.tgz", + "fileCount": 504, + "unpackedSize": 2912661, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwt1vCRA9TVsSAnZWagAAMW0P+waFulPhpJbJmVD4ID2B\nggIaW6TtsiXXq/ShYiijP9JVQ6aTj9AW/KAnABQ1o8ptA7gZoRlAiVa/AX6M\n5dmxcCzJ92j+6T50T5g6GGjPv4eflj4njH+m5k966OHeBPevkvpx8bxhqq1E\n1Hy8noIg0VcJ9Lk10yD3kXQKzydqZKFZnvGHW1d1/SaIy6cOm91S22HEjDr9\nVP72nWcKvth/RbshZZTGbla4KNQFr8dUzgjgXoToddH/Z6/L0liXcNlN+5Ri\nA2OXAn26Ooa8g/Iaeh0cmkX+FawGcbo4pzAxxM3cEiSIk7pmxOBUTTLL5Nbv\nPyAklIXRsTggL54IeXjCZE3HaacOspEDfBPjpibQrKirFpb32IXvFdr+88xI\nAzkHTDuRnXJUj8so8r7pSW85YA8HRkJCZaob/xxMt8osXdeLrqPcS9tLxYT6\n5cidThLZ7BTyTnBXQOlaMLTI3g+WFrxpL6wPriZjdWEdwshoWDeACIF7nr92\n1SPQlCI2yjs8JasxuiuGv4MKaPV0M4aIFnCLmCP7sztNz1r/krUOjK+g5NPc\nT/eeg1hyC+DyZOqn4TnwOBruC/9j9v8oz65Gi0tysBhedJ+DYH1CJ2Xy7Ezk\nWEVxqQLSl7rfThsVO2pDkOZmNU/qImicH8lsml8QRjbgVhSR7I8Ic3KFO2pT\nYRFB\r\n=aIf/\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbJO8/s4hA+5ruq++CEty68KRQSGoNn9+8xUrY4EtA4gIhAMBirR/l4gyZBiug2WPQkm9qI93tlMtN9zmlQvGjp4TI" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.0.1_1640160622852_0.16486187517013295" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.1.0": { + "name": "puppeteer", + "version": "13.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.948846", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "80d6b84ded083f2a49f932fa68d357a49d0b9242", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.1.0", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-6rf16giGGLFMh1VrB89zwaTeA90E+tbpq5o1R1Z+a1z9Hrhrj1MlT8Pe0kaecUV3kjpLRaukCRVXw1dp/gbYEw==", + "shasum": "f3a997866c05f28854274dda7752d76afe1bfc5a", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.0.tgz", + "fileCount": 504, + "unpackedSize": 2919575, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5YDXCRA9TVsSAnZWagAAM6oP/1/auOb62MWhj8oIN2un\nXVGXFFWZz9M3rx3XSKJipZm/Mr55zD1gRlDKsrMpNNXPyGwqXKHQN0p6ecom\nDLzSoRtcT9fSOKbzOZWxzCsA8lJvIST4zFim4mBlMMPQ556FbGqzyvNv1m9V\nwMmo1cwckUo98t7jQs3GHaB6v3RrNPGDbnPVmZlbKd5Jua8nYXo99v4dkBPV\n/JaG6JrSyioHT7rWkk8sdjn3ieLffKCGsXtMXObdtwQY4Sa+KaGbbuyEYLWe\nUmX9GZ/4pk2H0ME9lBNKqFxymAdTkrnFaEGds72KKvXSQYjFHSoTKTUaRlSi\nZ5+IPt0E7CyUPer+A6TnyggtCNcC4EwJUEVQ3sVUiSkz8tZCx1XunVwKOTIg\nRADoxLcPPKGPUekFLUqtoHFoJF+yIBKWIWWIW094/lytEjIIaHgGVM8MRD+j\ndqOmLcDf3jLzYZLJT6Urb729rGYQL7zhbt0CSp90m51eayNTypWa/c1wRwya\nZeys+CZGo69c9oIkZ8KY47V0xmisqPj8jAogRsyHZF1asGQPayYe/J3i2q8T\nmpKzkfJUbtWMv0ZJ8EO4g0SmRKWKdJs1WjxCkM897lVJUKbD3lUZ0zBzkO1B\n7xnrsNYgcgvSGliS0XVotkmN9c4FBEXTofZxBciSUwUESXnYGmUwirwenekj\nQxmF\r\n=y6Fn\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCwy1iNbOHs2URu3VnQdTMROOyfQzvuS0aJuA9XT6RsaAIhAIgcuUnzcg6k/Ag0koHIlJdC3DDmeU494oKrV98pYvWx" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.1.0_1642430679014_0.5419839255770311" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.1.1": { + "name": "puppeteer", + "version": "13.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.948846", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.5", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "f108560be8069dbc9e55e218c6deda0180c04bdd", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.1.1", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-GwdFy1JQ43Hhxj6MraXme+XfCX2CKe18MuwToXTMEAk0txg6vUEgwqBnzErTTqDVZ7sWYrDtDaRCfD2y7ZwgGw==", + "shasum": "63771eb744202aa91918c49123f846e1747da121", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.1.tgz", + "fileCount": 504, + "unpackedSize": 2919355, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5oFVCRA9TVsSAnZWagAAyJUP/RBQ3zRQ/Ci5nFiOAZFu\nwgEbIaSTGjYhxqflq1DbjR7hNdpnFqYtQHyC8hEtMEZB9ZRLZ4xsWHirlWSt\nNzRvatpO10NhmAe49O9rnGKN6dG9yD7sTv1Zirj1FQaITGp9ZU6DoiwpcquN\n+PPlOcdMtUCqkU3OSELSwq1FPKTbAkL8xptHQ1DAFw0w1LdMwBsWD5kgvKdQ\nVZoOmgoBWwPn/G8vLDIX8Og1G5PAmw0RXIX/+zPsurtumNfPrqVIlibTRYpR\n/oKC2cs5n+eDbS0fWErnsW0SpyE9FxDIO55v2odmP1Tt45FY2Lt3XFZwIj1o\nxqfZZUGVgDQiSEULMtOwtGIEnbQcpnUq1AKs6RfBQi5THzLuFu63LiXk8htA\n63Q+UYOpWcc3TEaSnzhaK3+Rpeyf7i/ICNUVqLOhMM5APVzvcijZ/ZDE4vx4\nr2PiIKS8VhcfVxm1NL5KC0jLlbrdxazoV5tO3Pm2J+8PwGGYz2q/y+1IBetU\nkMrI2dGKtW94RzmR9nT//72MuH+5BltrGMJbbFJs2L7xbJ6qOYJTBOpU3Kok\nCP/72njZatxNG+beOINpp9nmtKcfSVYeffI1P2mF1nvy5yMHWcng/2EoEzNz\npb8+GkO10Frfu4AdG8x7C1ccUupJP39HjX/3EGdAqU0x4wbjPEYyK6oZJxfK\nXaDL\r\n=coOX\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDNnCKXqnCNumswGeAuEPZZvFq0owmvYdHujc+nku8ggAiEAic6M21oEmste6Z5L9rlbjg4MasBdzTNpb5X3hBUg+N0=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.1.1_1642496340804_0.5156937020518575" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.1.2": { + "name": "puppeteer", + "version": "13.1.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.948846", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.7", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.3.7", + "mime": "2.5.2", + "minimist": "1.2.0", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "0a9eb3c9a57e8a44cf5b3ab9ca34288eb9a0c943", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.1.2", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-ozVM8Tdg0patMtm/xAr3Uh7rQ28vBpbTHLP+ECmoAxG/s4PKrVLN764H/poLux7Ln77jHThOd8OBJj5mTuA6Iw==", + "shasum": "d6ef3295d7551200b7e52076a3cc1b731eff4294", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.2.tgz", + "fileCount": 504, + "unpackedSize": 2923314, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh763gCRA9TVsSAnZWagAAGKQP/jM5ufyTwKIA7RUaIlVb\nqm5R4KU3FJDuzvwk32bpD8rdeBbYIYLnDcYorKM4dsLnZBapQtdnYO2ClLrd\ncjWP+RsTi1OcAWn0/bQrsqa03MOfLyf7mkFEG0ajuRmOtYBxLiKxHJjgfW29\niJ4yomO3ISywcRRVVBogZvlzrp7Gh+mQ5QLVhljMsjUSd3eO9t+h5keRatIW\nYTM+1pn4Y78z6wpdC6z1TVnyEqIuC+VMJBboOfi2krEnyaDSVaw6Di0sUAyz\nmTFmbYWMnIDh0D30SB49/VUviP0/NFLMSHvdw1aHA4RBhKlRRDIV3t0c5O8y\nb4ysYvpnJkxmdbPAxfOQ3kk2kIIDqwCSQ/1C57eLAYBs1pdo40vSzudhFsMc\n3qCGzK7TeqbJVxkX2J+dLxIylj+0UsofLNJJAgbeQWw5SUEgLCvzQNJ3W2Yr\n1hsfvsyrHrWWplHWYfNQgKalnRtgX5WfmoSDl5+tyPf2RQKUawARQJ/uA4UX\nGiAuGST6cpXT7uzExnH8BbQCEA4KK2/AYCZs+2jgR0iWL62J6Jr0q164J/ak\nRYYUYytHXiHYtJjAvzI2ck559dSoG13gLYhUjcHpGbdExNoBy5AAuyW6QN1i\n2rHJfXA8zd23ccEYAEBJqbjF9MzMTd1Olr9D7In2zaxfPHpjWlBIPpNxzIss\nBqK1\r\n=2zHK\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCub7ZkbnaysqDLmPzkVJ1pFR71Pthip5/mlxkgjz0yDAIgTTOM8goQADUqJbxokdo081ET8SinFbw5wVqoffCK4UU=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.1.2_1643097568375_0.8112333476715841" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.1.3": { + "name": "puppeteer", + "version": "13.1.3", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run commitlint && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.2", + "devtools-protocol": "0.0.948846", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.7", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "13.2.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.4.3", + "mime": "2.5.2", + "minimist": "1.2.5", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "7b768838023bcb79051f5d34c96949ef253ad9a2", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.1.3", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-nqcJNThLUG0Dgo++2mMtGR2FCyg7olJJhj/rm0A65muyN3nrH6lGvnNRzEaNmSnHWvjaDIG9ox5kxQB+nXTg5A==", + "shasum": "46b1e3f7577e59c08088b449c6fa161dbc78c680", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.3.tgz", + "fileCount": 504, + "unpackedSize": 2926365, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh96mlCRA9TVsSAnZWagAAaHkP/3uMfaaZJZOcYTpmfE6a\n732YpniWQa+Bqzceqy1O6LACJEV32YonPScVx3WXPzcUJZ1xQYaBAD5hT0zM\nNqYFgsas5WKXcdhbECQ0K7XmeBueCPUSk1kJC/Rs3YGLdPpqMw2wpfthSTzI\naZafmJyHZyi00daZDC0NxcM5eRDx208uPGCwQluYogl9Kz4odp+CwqQqDa98\n4gkl51764UF8omc6y/Dgonw2fm7Q/qifvP1lFe98vde0VRmC4X3BTKBeXlcT\nkoRtzQDSIuRTWvaapQR1t3KKyMaMXTKeMgiQ3+phmFYYyrLIsjsmL69OUoYL\nR5No5IYAul2hychIgs5DbJANcwtu9kgRVlFPXE+StxiVXqK8ZZ49hBAX6cEj\neAMpnthRLtYIImRa+d4IpPsRp971HeTCrVlJ12bj6rpVa8yUE+ZzeQn1/Mis\n19VidL77/cahhfz6rs9dzeNsTarXQj/rFz+1J64PMXvyk456oL0bybbfSXR6\nKt29UjNVYeyGeQg007XSDE1kMLztnaUHSNqCqXu7f7gXjc1Ks1fPD20+mN+p\ni6eWDDorjmETam2f0lsv5SunSElLSjz4+ARiMCUza9Br7/cdx1/BeuehW+Mf\nBdzwmSPUdDN719MGAbNF1+X9VJ1tF9EpeyozOqTHyiILRy7hYvf86tds8OKA\nbaV0\r\n=7/gp\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAtLnXqnPi4vCvMleDevYrx04OKiIfC3xahaX31paGUgAiB48/jV9eg4OXO2ouRX59N3LcsLfReNU1geIJA/Mo0Bcg==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.1.3_1643620772859_0.38292842323745924" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.2.0": { + "name": "puppeteer", + "version": "13.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "debug": "4.3.3", + "devtools-protocol": "0.0.960912", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "node-fetch": "2.6.7", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.2.3" + }, + "devDependencies": { + "@commitlint/cli": "13.2.0", + "@commitlint/config-conventional": "16.0.0", + "@microsoft/api-documenter": "7.13.65", + "@microsoft/api-extractor": "7.18.15", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.0.0", + "@types/node": "16.10.9", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.4", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.0", + "@typescript-eslint/eslint-plugin": "4.23.0", + "@typescript-eslint/parser": "4.33.0", + "@web/test-runner": "0.13.18", + "commonmark": "0.29.3", + "cross-env": "7.0.3", + "eslint": "7.32.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-mocha": "9.0.0", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "37.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.2", + "jpeg-js": "0.4.3", + "mime": "2.5.2", + "minimist": "1.2.5", + "mocha": "9.1.3", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.3.0", + "sinon": "9.2.4", + "source-map-support": "0.5.19", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.4.0", + "typescript": "4.4.4" + }, + "gitHead": "b531f498e94394419602e4097e14e8618e67acea", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.2.0", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-OSRcIgPq78Cjysm4AOvGgGN464qugfYZ1bJRpPZ7d6c2P/zVQmACblIiB56frVoSuHpvqo+ZphFJo7kF9V5iEg==", + "shasum": "0ae3bd9ace55272223bd1905a4d661846231b1dc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.2.0.tgz", + "fileCount": 504, + "unpackedSize": 2961594, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAS8mCRA9TVsSAnZWagAAVRIP/2VrgvXiyMoGXwPjLn8A\nlBfhtm3jhWxb9renLVJksdzTSclp8f0ht2RqFc3NaF4DUsC9TNymnbxDC86F\naw8ja0kfUdeRfkS+db/KXPTbRgdRe38xXZ15KqXW63jIlxrTpLsUDU1u7Am2\nMkJpYvWqu2QZC7xl3563/PJ11a+8Dz2I0SZivbbAeSxz/TmU9rdCh32yMaOJ\ndgf1nrTLwRUIka/ni9k4gnWrrBmOn7f+j4U79ZGMjUf5F+1XIGloHRHiwT4W\nADdwqzoIoocOj3BVK91NOOgIhQ7JWhRxvBfCIFQRl46nGENKKbKDCGT9tKIp\nVeUG4U9KhLf7v9xvrd9UNsm39pHtuwT8Ah/G8umjZ8m6CtcNjA/U0Xw5UpoR\nHLaNrs44Y2YhSCLg9TrWPOnlOIRCJvUgw8spIsQPa9fyvhcAA3bBisaAzfB2\nS8P8qyK4bdBgU8gJKbogrA+oRnbQ2ZkmiG4mlq6fFij5kb1j1u5/Mk1enHoA\nzx3Vuul7w0HePqWoAxIvkkCJP8x9qpKM+99zNrne/+MgnqwlKbka4Qopfhqs\nfdwMjmA9dQDHUQr8h9YAcf7LixpSSbzig2LcJnSUX2+OYH0gnX+ty4xe5SMb\nS9Y1OWKH23za1SS9T5VZk5FUlaHIqi5GCvRac60BpgXIYY7HhnrjSTa9jR0W\nV2yi\r\n=eZxk\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDbyJFSRhaqTuAqJTZJgOt9zxcmkzxpIO4wkLYIXBsdCQIhALqSBsY+u2S+IdcC5B4TknEjPt4+jQbJ+j7dQ3xbixd8" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.2.0_1644244774313_0.3305840303307521" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.3.0": { + "name": "puppeteer", + "version": "13.3.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-pkg-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs & npm run tsc-esm) && (npm run tsc-compat-cjs & npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-pkg-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.960912", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.1.0", + "@commitlint/config-conventional": "16.0.0", + "@microsoft/api-documenter": "7.15.1", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.16", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.2", + "@typescript-eslint/eslint-plugin": "5.11.0", + "@typescript-eslint/parser": "5.11.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.8.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "40.1.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.0", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.5.0", + "typescript": "4.4.4" + }, + "gitHead": "6879f9cfe1b7676c09f227b610e88720c0e763ff", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.3.0", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-qEsXUQhF4mcF++0O5N7mW7jcVXqztC9fWYj14s2xNrd16SD1U/rCfV0BYE6/MBK7sHXi400qJlxWv7INYytZtQ==", + "shasum": "610efb11c7ca4a5c28d7efa84c91f5187b10564b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.3.0.tgz", + "fileCount": 513, + "unpackedSize": 2967555, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiA/wLCRA9TVsSAnZWagAA7Z8P+QBhQ7IteWbvo5ASGvsV\nBxK3Aic62mjvKh327+oIp8u+eGhvZmOq4s6Q4TKU3RqtDzV4cQYcOoCn6fzv\npoW+F6OAi89NV0kQcJL1ijZDd4+l7/QUR+TQm4J7L0lN9OFdYKDvhClqPZVS\nEh5pr+X1m2zP3kK+0bXYhT3z2bHLX2iy2As/v/Bo98sPZDQCAXPJ0agwPz3C\n8G6Ez7+H+7nUgtrCeUKuOTzHgv5GXw4ug3qAj5PQCqn1mnIDZrGV2/A4GGdm\n5Eu7h89aRwZR0zH1TUVs0PImg1NjODuf7DwNw29xmYIA9V1dAf29QVOHQgfh\n5L/g1m8cokQFEG/d94eKD/tAPsob+dn1D6vr62sF/SMs513wHfWTzyFafr2s\nmfb+VN/Upy0mwcEpl4iJuw6/vB6NoSmg8KDbEjSuZlH5VLfobxD7QZJk5yMq\n58enHIf3ixqeknzqWUC4yZ/J8zxsYvW2ZK8UKisH6Zx6UQlJWa7rdj578ClC\nkCVJWq9hZF6YUK5JnNFhSQpNDfaw651VwVLWv4VV00HvfbkS1fb36YMLeh+J\nL7gbFjiy3wQBE8noBtlrlZv6rXb+E6uFZS1I3DvDdBR4nBm1xG1m+vQl4qvo\nBhYCheFU7rcReMPWRnw5y8QSBGMbp0i6gr2pZKi4Jrf5PfiEMO9nXWZ/hSeh\nnUJZ\r\n=LfAQ\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID0vIf4XR8O2UPmtZcXmEkWSYChfxMySqDtUesqS83i1AiEA3JgbBMeyEKXyoXBvxnn4d+y9+kJnmpiQ9whhMgwUf14=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.3.0_1644428299302_0.11966224525179303" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.3.1": { + "name": "puppeteer", + "version": "13.3.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "markdownlint": "prettier --check **/README.md docs/troubleshooting.md", + "markdownlint-fix": "prettier --write **/README.md docs/troubleshooting.md", + "lint": "npm run eslint && npm run build && npm run doc && npm run markdownlint", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.960912", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.1.0", + "@commitlint/config-conventional": "16.0.0", + "@microsoft/api-documenter": "7.15.2", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.17", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.2", + "@typescript-eslint/eslint-plugin": "5.11.0", + "@typescript-eslint/parser": "5.11.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.8.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "40.1.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.0", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.5.0", + "typescript": "4.4.4" + }, + "gitHead": "90505a77beabae583e562357b2ff587cffd13cac", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.3.1", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-nYTR+LP1amGs5BALSoGLbw+QxQZS//7HsKKSrxaMAIic0AE3iIr10E7gcZEsP/4JcxBfgNyT3SPUyEOS6Wb0fQ==", + "shasum": "4ec91eaa8a08653bfcdc9d607c6189b3804b29de", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.3.1.tgz", + "fileCount": 504, + "unpackedSize": 2961290, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBSnXCRA9TVsSAnZWagAA1i0P/Rma7HFhfInhX1/aHdjJ\nHcDRKrbhbsFo4ERPYbom0Tbns1I1Fmsm2cn++ncNzBTjRUT2Qw1E61ST2kQE\nDpAYIm5skaDVyVe599MHA6O7/yGqTVhQT2Gelt6Abk/v/cZDPkF7a4KwY7Sv\n+eI/yN5BXQmze/IHwJLn6sUc36LsjMc790kf/KJiGCZbTqCxMncTeBdgo58s\nsAO4DCeORe6867ugh1T07Xl+9snmcOb0eI3wT4DIqllxIoVn1TVGYTyMZtXr\nOGj6LFgG+xIR4xJjinQOPh45JLRqNTFEnXlFnQYSuegUByWBHH3hs3NkRdt4\nkJC2ok0bZ3zX0KcadEWMuU0R0ykO16WRZi3gCRlJmGB0DXt3nxj9GMkEPGN/\nUeTaNuDb3Bjjr1Pyn5BvbKyajgiGHSvvFQb49d5K7JhqEK1YJOoSf2eDIHfS\nT1StdFWmj11OkoyJNpdSaANhJgX5mHJrW6x/Y0FKSqjNLK50MX2juBPE+Vyt\nKwB0MnzVyPpzOASYGHlzY5f/q8vC46aBuwBcoGb2wJaBF5wQRwfHyhPzqess\n+Fm8MMU52IjC5PhKwb4R7D2nFYo8Tz9nrN1DJuXiP41L29qv2tfoJLYvmhIu\n0lKr4ArraApggUabBGvia8E7qrjwUwkby7IMSiOYMFGyrLAWugPfIslLJmkY\nn5yR\r\n=BrGn\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDhKJeUrHYJUlUNYYXnjDGm22DclNulUzzBwOLvCVCgWgIgM+ehabtsXAw4xUjwTex0DQSEdsYdRPUuYUYvDdHqn2I=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.3.1_1644505559126_0.5518835188523072" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.3.2": { + "name": "puppeteer", + "version": "13.3.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.960912", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.1", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.15.3", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.17", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.2", + "@typescript-eslint/eslint-plugin": "5.11.0", + "@typescript-eslint/parser": "5.11.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.9.0", + "eslint-config-prettier": "8.3.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "40.1.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.0", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.5.0", + "typescript": "4.4.4" + }, + "gitHead": "1c2566bae52e1fb7d250f2c32588c09d1583cdc2", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.3.2", + "_nodeVersion": "16.13.2", + "_npmVersion": "8.1.2", + "dist": { + "integrity": "sha512-TIt8/R0eaUwY1c0/O0sCJpSglvGEWVoWFfGZ2dNtxX3eHuBo1ln9abaWfxTjZfsrkYATLSs8oqEdRZpMNnCsvg==", + "shasum": "4ff1cf6e2009df29fd80038bc702dc067776f79d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.3.2.tgz", + "fileCount": 504, + "unpackedSize": 2961663, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCj8+CRA9TVsSAnZWagAA0tQP/jqXX7xREr0SPx7S7x3C\nlLXHqSx0fCDz49LWA15PnLEuWBUAYNwpuWZmhSAjiqZmHhjHJ0liTZbYmxd0\nmUdV1+NBZslY+RSnJSug9qhJHX9lPr0mNH7E4DkLb1IrWn/KqcOOpXQwUKO1\nh75QYHV7ZrEp1mV8CSEVrH/3QFvXJEq6MssAiy5GM53DEvzyutjur8sFTimm\nO0aXnuhYt32epKLNbX4CaloFzBjmQilmvPrnT9oG82rzYcVtmIBlKXmXcTbR\neb6VxdpO0zSW2h3nXYbPPD5+63b3IqUiq3czauXeviUhUgBgFws/x2/Mgcnu\n5qyCdabJ/j0ET4lcmnpnKC21b9oPIijFSEy8cpAfBjwxPBz+QgEI7cswHeUz\nHyK/OI//gv/zdPNn2FzyJCd53lg0/arfWLk15BOp4mwCGkFvdyPxgVHpoX/R\n8PcGft1UI6hDEQDUJcdsypy4/exxVvAsOmqaeSQ0D+8TebWqlNZEhapCCny6\n6DOCl+jDsczBJpN+bNzcvfxpxp8+JFe+w8XeJkAaJ7QNxqgHEvsw+1x6LorM\nugUC2iHsl9lp8HO8T+pWFpzzk6V7PxQpDU31gSjql0XBZ9SnhSegEzQ41cbJ\nq21L7k8qXczwk595GQYgKEtM0WgUUd8CF6aLhy5k22jK7Qxz1D7hz+dDe65I\nG4M2\r\n=Xv3T\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEMCH3wtQ47Ei4XpyFe6EsK2NStACRYRVMLaIUjcoRzoalgCIAV/uSj/ZszFDNG294cvxmxaZ1BT/PGb44RfwO+tQwYU" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.3.2_1644838718538_0.11061494006398531" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.4.0": { + "name": "puppeteer", + "version": "13.4.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.960912", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.1", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.15.3", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.19", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.3", + "@typescript-eslint/eslint-plugin": "5.12.1", + "@typescript-eslint/parser": "5.12.1", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.9.0", + "eslint-config-prettier": "8.4.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "41.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.1", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.5.0", + "typescript": "4.5.5" + }, + "gitHead": "7f47c8133a85ef80d8008d4e9463a3fa674e5a1a", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.4.0", + "_nodeVersion": "16.14.0", + "_npmVersion": "8.3.1", + "dist": { + "integrity": "sha512-WrHtFF2WpYC6KWFP4OCPOHWCjW4f8tFk+FkYZeNQ8/lHn+asjXBEXiIWauune8CY2xIHBVExGas+WI6Ay8/MgQ==", + "shasum": "d2366542fb0fc7af0cc68719c048a68363a0a940", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.4.0.tgz", + "fileCount": 504, + "unpackedSize": 2969361, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFNkYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrGRRAAoNKwms6pMpcf8Ru9G5TWDvOloRJ/3sNQ6pV/y3ynk0DU99Ww\r\nUa9Gije6uAszB6SsTPnmXPpiNq1WKZaAxG22rD5uqCB19OepLRP2r4C2GrYX\r\n8pmdsV9BfK27NvfOesp7snXPDuex2KSm9Guo17HMsNqUbZsiki/UyICyRjVa\r\nm0xZr7XryBfYYVYE/3yDLrGKOeSo7K1+prxWygMKwNGPvGkG3NRTTS7yaOGN\r\nXtfxK7bkRWXQASqaIZ3uYAWm8h/n7WoSXt/1lDrIYqpcp+tWCT3AOnZkSSLg\r\nLal/p81FssbT12EAXQ3/gJzAMZfbztJjlnVeaXB8FMWVwYU6sZ0J5s+Kra3d\r\n7qaDv+F2KEe29JTkE6w7PTIl5zMCJuNjQSFH1XBXshcrQ/VlxC4ZN3FDnn9F\r\nZIy6VXvxk7uv1zYiMHx1V7OxbhD2vhc4Ui5RXCTxT7nSi0X4QDgo4Kj/r6jF\r\nzepLljqdm8qrsm8y3+Ilhns5au043wL8MIoQZx9vZSVU4y9rUiq0zi+Q4BDr\r\nifXiIaZXjA2GbxSzdTjjBphWnVAQeOYNj1TCQpR5LBiqwnCLGeWbMcqW/SuF\r\nJmX7WtCYlDNpnfPabNaiCDSFDP7iG+PzOc/FP6hFa1ueSjgDJbQdQpxqF3DL\r\n2KPUprTOKr1M4BIVD0ySTfe6XxkTNZZhTmA=\r\n=wx8J\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICW0rSVIJ9NvWCXfLENp2ReQZpW5xBvmc32xSuj0QOUCAiEAun5ko1j6OsI5ztf6USpY4SQ6nNDRIIy+RxHmWvzb4oo=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.4.0_1645533464477_0.23143672450962427" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.4.1": { + "name": "puppeteer", + "version": "13.4.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.960912", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.1", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.15.3", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.19", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.2.3", + "@typescript-eslint/eslint-plugin": "5.12.1", + "@typescript-eslint/parser": "5.12.1", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.9.0", + "eslint-config-prettier": "8.4.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "41.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.1", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.5.0", + "typescript": "4.5.5" + }, + "gitHead": "69d5ef59ee190aa0f8ca29d989c5ceb123ef249b", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.4.1", + "_nodeVersion": "16.14.0", + "_npmVersion": "8.3.1", + "dist": { + "integrity": "sha512-2arcYPEGvLV9HvOw01Zv1b1IAXrMWHqsFJn0Hn00qe9HtCmaF0b8FlrbdLjCIbkaFc6icH5+GqcG8R5KxlJSRg==", + "shasum": "495b91d2fae3e9761a31bab1820ad179caac0fd9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.4.1.tgz", + "fileCount": 504, + "unpackedSize": 2968924, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHdGDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrisA/+Jb94JsbHikiPAjM2fUXw3L28MTv6LEHnOf/ZlrBKGGjBNOJt\r\nX37EXIMbVyVQ4o5b1OWpWqjHhY/4z9EeSjXl7X0AUmtQH1NynarjfUU9qhxE\r\nWzj4xsVLUCZrdGQ91VYcdwMhWAH5I7zH7ljRdshCfD6brZMIonCzL3KEioy8\r\nVn/4u6wH/vS87JWLNjBYn121BzmHuawt6ZNwQ8+hyAa/ahd5rqKFZXDZ02G+\r\niuGVV3wRcNnb2JEeSZO6nQrlFrWK7JhaUVcum8HR36NE3hGpB2wTt3EH+fTK\r\nSJYVUlsg54B/IsdatAED8lurEBJOa8m9A2S8bQ//Y0Ljm1V9WMrM8G5p4UkL\r\n5JalJ5fpfK7+al0AzaWlHYnCoXwjrTM/7CJFe6VzxnHKUNi/EHit+yuU6V2L\r\n50klumramrS0Obz4q8aO5K1OOGsx+cpIwEHAiaxeFuobre/VZNdDlU0WFg/x\r\nZ3pYtwM59TtunwVgwjbGfmrV3dnbcKNIVtAQZG9Lh/pvtvF5MthwLwKVWddu\r\nGEzz/ULg7qaPjaqJCrDp8raHwj9BH2BG0c2hSGCZA9IAfVpA4gYo7MfF+nIO\r\ncDPnNHPW7jAsNc94y2qrMJefK4bgOZppwIInWDcMJk4MaDEnvSuEDLKRXRbq\r\nhIIwh+NhtwHYq34BVT/tEWjd9SuHiJN6SDY=\r\n=l2tS\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCI8LkPHzEJ2imbzzlFfZp4KV5JTB1IDZ+CNWftkLF/yQIgQcOU2PatXdAxm82b56HNOUoxleeojEnWYFl0B57vPa4=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.4.1_1646121346796_0.6925681552280742" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.5.0": { + "name": "puppeteer", + "version": "13.5.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.969999", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.1", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.15.3", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.19", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.2", + "@typescript-eslint/eslint-plugin": "5.12.1", + "@typescript-eslint/parser": "5.12.1", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.9.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "41.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.1", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.5.5" + }, + "gitHead": "7b38b458c91f4180a29cee10698a909bea911f67", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.5.0", + "_nodeVersion": "16.14.0", + "_npmVersion": "8.3.1", + "dist": { + "integrity": "sha512-raPr2YZ3RZLboGwt7jJgusJTBRDaVEUiPOSOWWFLV1oj07xqT5UqqbjmNXFXlMlkhF/NwmcEInW64VhvyllVdw==", + "shasum": "fd30692fbed18bd4964dce3517cc952af9b45d7d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.0.tgz", + "fileCount": 504, + "unpackedSize": 2969039, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJgguACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAvA/7BXCxGMFl0Zr5u3TiiaiCO8y7huunfSvSrAwlmEoRNy5jS4ka\r\nAR20WsI89H0qErXbgXLbIckePFp66TpiIQHt/9o/WTdZyCAqnIddl16XKuAu\r\nqFkN11POZKargSy7RFXOLvGfTKrmFvjjOrVp00/bjeObJOQfPdhXUE1+Pr+b\r\ntsH00zBrkQGYyxQw1w7Bz9PhiAunDJIo+vRQEIzhTt9jVFyVC4P9paImXfXt\r\nMSkHjvyN0l2fd9Ws9kBbZ2bxDH6Oo0+Qi7sTNysar6Xj+Wxv9mPST0MPog89\r\nlplEhYuk4sCPg+O5AKocF2uNXQ8uhXTfX6cVNcqUstAG5OGX5byG8IWBdkoY\r\nG4jwPBYXa4ojCl0iQKg/ffM9V8zgQ1xPhsbQ9DpB03j+3kqrOqYAoFG9u0sA\r\n6JLcjSE+r2dnXkKBCr7QdwCPmciI50Tj3DrADjLgmZQbjyJghl2Oh3ljMLGL\r\nTB8SyeTCWOHm/ACoaTYZAfZWflZ8GYO5P4Is1KjF8ty00M+8lAqLGWQBOHHz\r\nLVtE+pIu952takeYEw/64gw8kT+2nkLHdVGbx+lnykQPJABIq3ZX3HQyo5Pr\r\nftnOXDfbTTTjj7QFK3ue+U+ed0lnrGgO6MeCNtFbtf5LDWtcPCDw6W3l4eF9\r\n9cvO5+muUFsBVVA3GNpC+e+GlX8UXlj6e30=\r\n=YQ0E\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQC4sBCuPn0tML/1qfOP4RjqT5DZ+NdCZ9P5np0ogCPZRwIgI61nGe4wDiVeMlabCfAzF7KW2a8VDsgB2mY9YrVVi/o=" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.5.0_1646659630335_0.10737452904709976" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.5.1": { + "name": "puppeteer", + "version": "13.5.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.3", + "devtools-protocol": "0.0.969999", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.1", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.15.3", + "@microsoft/api-extractor": "7.19.4", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.19", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.2", + "@typescript-eslint/eslint-plugin": "5.14.0", + "@typescript-eslint/parser": "5.14.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.9.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "41.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.5", + "mocha": "9.2.1", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.5.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.5.5" + }, + "gitHead": "e28462c3db99b2a59553be6d91a5eb7d79924931", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.5.1", + "_nodeVersion": "16.14.0", + "_npmVersion": "8.3.1", + "dist": { + "integrity": "sha512-wWxO//vMiqxlvuzHMAJ0pRJeDHvDtM7DQpW1GKdStz2nZo2G42kOXBDgkmQ+zqjwMCFofKGesBeeKxIkX9BO+w==", + "shasum": "d0f751bf36120efc2ebf74c7562a204a84e500e9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.1.tgz", + "fileCount": 504, + "unpackedSize": 2971863, + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKKtTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJoQ/9GsO9hQ54w2Z+p5erpV9hQi+qHcNVoUVrfWrOPXF48a9v2v/A\r\ngkVXk3fnY5RXtNuDg+YlXcWEM41b56PR0rM48T9MRkl71S4cdBP+h4vZpYLU\r\nFHsVmTHBBF6IpbVofzbveGIoxsqaEMhH+KsPG/LHkmPBlASyUQ8CxgOVS9di\r\nPzl5As56RhJMiKwl5mN/rEU9LD4iChCihUqz54bwgTNSVQpyt60/qOK47TSt\r\niXri21H1WDgA+ph7B9k3E3pTshX8valUba5bYBU9gLgIk03c0hgO3sT7CGuY\r\nNFXdTQ7JfPXg6M6k+s2ttjxVo09lFch+DLFnNKHPiDFgrJSvLzWyOufQdqsx\r\nhqII6QlpoY0Kyx2ka8Uyfac5ngGh3kigpxTwQ0WbBHDsvBC6sP9B7iU59Ztx\r\nZaIwCuI8p1q09/Ep+F28Ao8Nj6sbLwBsxqAgUFj2nlQGeeCBQ2sHCLBp0WJD\r\nZtXW2ssjx2wfmXHGIKRBUrgngO9IZM3ac09VGOxbh8iIAp4SoIXKj0wd1ZZe\r\n3FK09sgzS2s5kLTQ8yfZOjguELOGhE9rymjQWYLL5crmjH2E59Hz6KZaZjMO\r\nbV4o2T4oJ+bcnGDHJikj8VyAX0FpZQzv5yMfguR5fh6j2fBKNvR4Odtj7ZG9\r\nN6yOctzXzffc5xEUZcG9vvGlAMBS1VUP/u8=\r\n=h/qr\r\n-----END PGP SIGNATURE-----\r\n", + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIFs55Ug0SOE58CDgJCKAdl3d+V9ItiMOwcrJeFq3xLbJAiB/mnLAoFWSwErlOvTiD+kcxlKe3IeoT0y62pdF20XKSg==" + } + ] + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.5.1_1646832467763_0.743075163236566" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.5.2": { + "name": "puppeteer", + "version": "13.5.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.969999", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.3", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.16.0", + "@microsoft/api-extractor": "7.19.5", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.23", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.17.0", + "@typescript-eslint/parser": "5.17.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.12.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "41.0.1", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "9.2.2", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.6.1", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.3" + }, + "gitHead": "0d9699be370c885a5b79e1d9d25f195278eacaad", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.5.2", + "_nodeVersion": "16.14.0", + "_npmVersion": "8.3.1", + "dist": { + "integrity": "sha512-DJAyXODBikZ3xPs8C35CtExEw78LZR9RyelGDAs0tX1dERv3OfW7qpQ9VPBgsfz+hG2HiMTO/Tyf7BuMVWsrxg==", + "shasum": "73ae84969cbf514aeee871a05ec4549d67f6abee", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.2.tgz", + "fileCount": 504, + "unpackedSize": 2975260, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEYkbrsi/9WuVZBeee0zrnVlOs/ozr7OfP1lCw8TcC6ZAiAu/k296p3w1e7C3EvdW+fh4X3HHaxSQM/ADRvKWwZtMQ==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRXDSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoApg/9FKsTjck/qlYJwMO4R4+iDb/TTYiFHLN4IT2lH71W+xaLykPc\r\nKTr9tuFfgZyYgBLIG2VAI4W4sKFzQIVNCENbD3vknRslvzlW3XovEh0C4sRv\r\nA5nInzAgRXgBB/BZ3Ip3WytxGST65gP5kRenDQO1z0qsY77sZWZP2CNhSzi/\r\nlQYDPdzqUWmArPQFyPUWCKv+bR54bCVhhY4iYWVWHr2hYJI3hlQkvfaz3WZy\r\nJTdvI1gCanG9u5Xd0lBk1tdK4di2hzI3GOKYFSPZ136pXJp609icwJTms+in\r\nI7LRlBi8DMIwfisrhEAK5Qm/CweQHc68uqkYtg8SYF6hGVn7/EzAo5VxOKNN\r\nUnBoukkwjwtzTtTeRspS0poFyp/htALYhKZ71Khk6egpOjaccYE7teNSw45F\r\nkdPhS0RGx1v8dv7bHfnYLkPesqgNzPj+R9Y/Dg7ugSpXh+BWatsO8//SME7E\r\nCIVljCEabxebTJTyisd/2yho+qE15Jh0RAFwnDbE6oqJsXWZOXtA/wDrnYRq\r\nnIjU5GbfGN0IvBL9lmYzLIWbEnJHqGlaWi63DGfNyu8VCnxvRBVhnY+Zdp6n\r\nfCkDFbf6gR6Ozly8HUzE0xGxHleFCHPDJqtvEwMFKtTWsfw1c+O62JL/pBPK\r\nEexMSFETi0KiEcxJuhJOoEhsOlBkdE4ju58=\r\n=7JwA\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.5.2_1648718034693_0.380589274106117" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.6.0": { + "name": "puppeteer", + "version": "13.6.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.981744", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.0", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.3", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.17.2", + "@microsoft/api-extractor": "7.20.1", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.0", + "@types/node": "17.0.23", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.18.0", + "@typescript-eslint/parser": "5.18.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.13.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.3", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "9.2.2", + "ncp": "2.0.0", + "pixelmatch": "5.2.1", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "13.0.1", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.3" + }, + "gitHead": "29a309915d70fe486cf3e30abe40b3d1be25012f", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.6.0", + "_nodeVersion": "16.14.2", + "_npmVersion": "8.5.0", + "dist": { + "integrity": "sha512-EJXhTyY5bXNPLFXPGcY9JaF6EKJIX8ll8cGG3WUK+553Jx96oDf1cB+lkFOro9p0X16tY+9xx7zYWl+vnWgW2g==", + "shasum": "3583fc60c1af59af838d65a09680f2d07f3608f9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.6.0.tgz", + "fileCount": 504, + "unpackedSize": 2979310, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIClLqsdzkZmLz2azJwnxlooU/yboTC2MLOno1vLkv7RXAiEA0C2lFgvY0KrWi0mTO4+HeZBBZgRAt3CMRrNWo+bxaaE=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiX8BWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7rQ/8CmzYoIs303otY6yt/DHMZIvyS/ORTggyx20kY738dGJAznUa\r\n4kRaYqnsmboifgVuXe3Zfn97QbHHGeLdiSqrnt2aaytcHltZhEoUOQhb5p6S\r\njN6WBRmGlmJdxBMboyWo02NQttM4uleMWZG0KK7X6u5pzd197sQ0YiB6Y1Ha\r\nAZ1BqnXKQmWQtQYRXInhnric6g77KEbsCksif1VjzPDHCBx3nf0v/OuLxpdW\r\nDJC1DOsd1rmZfBChvtSxS1sA/3qIDtaIzTxuYIbNRn2eMWUfOKmIBInO1ZwF\r\nM98YACRQ2KHQVgf3e+6IsjzVNV3E8zg5XZpGjYNPpAj4cvuUR+IOqw88fiK+\r\n2UcJpB/F4ftY+qDKqibYWfjAJUa8r3kfwSytzgFSxOwjbJNAH98myKUDUb5d\r\nG8fCVGQAsWYUvH+1zjGV3+JS2cfnKt9qQZpgNUbCSf6Ya8CSyszwlU0Kvmko\r\nfvKnod/rSP1t4Nd+bM49op0f/NXyEI68KA5uhoGbPtCjOO0e/d5/afWcHR2s\r\nQSZ7Lmz8sb9//tDP5k8NCPAXvIxSq5rPxdHGBncPTbo30lk/aAacLkuUix8P\r\n7oDflauhHN7bu0sxEvv3muFGtejDSBm6tliI39lCmvb1mLRQ3kN38I+sPYrk\r\nmPvdzgFTV0GqKOPDwLswH0jDK2acgwhlFFQ=\r\n=JYhm\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.6.0_1650442325986_0.0006251016273746135" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "13.7.0": { + "name": "puppeteer", + "version": "13.7.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "main": "./cjs-entry.js", + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=10.18.1" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && husky install", + "prepublishOnly": "npm run build", + "dev-install": "npm run tsc && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts", + "tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.981744", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.5.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.3", + "@commitlint/config-conventional": "16.2.1", + "@microsoft/api-documenter": "7.17.11", + "@microsoft/api-extractor": "7.22.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.26", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.21.0", + "@typescript-eslint/parser": "5.21.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.14.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.4", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "9.2.2", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "13.0.2", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.3" + }, + "gitHead": "ae97ccab68161f4b61813ec2b6574c87bfed2583", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@13.7.0", + "_nodeVersion": "16.14.2", + "_npmVersion": "8.5.0", + "dist": { + "integrity": "sha512-U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA==", + "shasum": "18e16f83e397cf02f7a0804c67c1603d381cfb0b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.7.0.tgz", + "fileCount": 504, + "unpackedSize": 2979815, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGzaiuKDkjrrlaKhkcZEHslP5yJkK5+pHp2E0reLX+DlAiEAwFLO8LrVo9W2nIM9DRZwuAulkXH0+Y7JJGQJfVao4Vc=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiantGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmriFA/+KmeS9MvfvE1vmEEJCYCdEwM/q0k0fUUwWHWDfroTE6U8zPg+\r\nL1SdlfW3cW+D3tq5XbEYF54p+QGgcwZxLkdXuAUYLdBxqCzwnh9dgo+JrKGE\r\nS6WSPjzSNe/lDQebGMvyjtmhhJTUEcSqll6lHj0dVA/vxE8jlwXWL69Ov7NT\r\nqPsyMnsu7EswvtCSbLHI2fond411/Eg7Ewuvt+Jw+NyiuwtgwZQwNP4wgKBc\r\ntLKbZkwrDy41CDp5QEVyX/o8mEhdq51RfQW9a2fYKq7zRKsNKbCmI9YLO+vz\r\nW+DIlzfhvGQ2cVuuQFijat1cm9JbNfyu9qOartFfOSKua3zwo/AsiNQobABR\r\n6Cc5sfBl4pjKIw4Zgqh5Z5mwbZQgRfVdSWlEL6OIRbYEwYpFBeZGahfYzA6d\r\ndvi8fghS3WeMHPand2sSyLVOvuPRsM2azkEvCp4uOHhejmY7hYwLRGNcnPZ3\r\nDx8PfU7T/8MBE2l3YVwtTmaT7PE01WF1hsZgN1vFBw4+2qegYdNTpNsgEF29\r\nKcNs5ZK//Vufumou4IfdjxQcHGG4BwvyF1fnosvKd7uR5y1a20AGBxSN10Cw\r\n8h5pUpzW0dxH/tMUxIcAiDobzrQrLIvG9h1u+hxdLo+NiTtcuZ6Y85mKs4tj\r\nkvuEX8NEiaA6oCmNcJlqFF19+ZgjpiOX4Jw=\r\n=5uVD\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_13.7.0_1651145542251_0.2389593735571085" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.0.0": { + "name": "puppeteer", + "version": "14.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs & npm run tsc-esm) && (npm run tsc-compat-cjs & npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.982423", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.6.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.4", + "@commitlint/config-conventional": "16.2.4", + "@microsoft/api-documenter": "7.17.12", + "@microsoft/api-extractor": "7.23.1", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.31", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.22.0", + "@typescript-eslint/parser": "5.22.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.14.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.4", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "13.0.2", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.4" + }, + "gitHead": "06f7390eabd8bfe7641e0157a91e5152e9c0c987", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.0.0", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-Aj/cySGBMWpUYEWV0YOcwyhq5lOxuuiGScgdj/OvslAm/ydoywiI8OzAIXT4HzKmNTmzm/fKKHHtcsQa/fFgdw==", + "shasum": "829e97b70fa81746bb88ec2d72f11a7429cc84ab", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.0.0.tgz", + "fileCount": 529, + "unpackedSize": 2990239, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQD5D4V1dvIsXcbYkJtqI1ctrTwVIWYDGlumrq7k+61dOAIhAPDRJSdGNKoej4NafaBCqyoRORY7xrbCjhdq6WnitmWk" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieRhHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVExAAkh3kLfv4H+7aJc4UhAoJL5FxSajJH0oSW+t+Pk2mueIT4u6l\r\nQ1Ez78tCAscojt4qfy1tDint+zovz7bgT7FJb/1r2SQTzj1dAqpV7LiRhoCX\r\nP3pss6O1bJor5jZdVBT4xkHhUO+wrlUhjo7xoM2KMrxf0Yi3cx5rstfiwko8\r\n1gar1JSXEMA2TOI/5MSD6uMlecisl2vTUwIPeTMFNAsaOwpn2RmptCjMC5VY\r\nE/HoxB7mLvVwus/hOaS8HjPl0Z6+iaz4UtVrCqY4LKw/8ExSUrbXLV8++16r\r\njI5MQ1sk09RCsvUAMrX2ZZqh7hg0y/TnCoKwD+fmpmFCfOuXLpkYLwJjpW7v\r\nDFCUd6tDT+W+QoRL9lgnV0QiDkVw526AJZTN2PGDCgxAxbM1BEL9bTVNYuLz\r\nDwucxQdyO+tVZSfZ++k1Ns7UwELs1YG3ik42eqp3oVYFnsg0hQmwzg1DeoV4\r\np3z2MjkiEndsqkfdyBEkOR4PuSKMFWzOPAGLxGetXW86ste1kq4ztjd2MmiO\r\n+QEgx7IwZS+mTL5fYpUVZUMYA1L5D5ka6g2QzRUVLgJoCA4r89B5XoIzy0fQ\r\n+UPJ+j+u8QikdwuWRcUGThcBajPUKJd8i+kJxGNqn7Js1hm3i2kKXfdNXa4n\r\n/8V0W1U7/GQwZWSqtRAc9KELuLT2T4Bv5A8=\r\n=yy70\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.0.0_1652103239156_0.608016208593116" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.1.0": { + "name": "puppeteer", + "version": "14.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs & npm run tsc-esm) && (npm run tsc-compat-cjs & npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.982423", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.6.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.4", + "@commitlint/config-conventional": "16.2.4", + "@microsoft/api-documenter": "7.17.12", + "@microsoft/api-extractor": "7.23.1", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.31", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.23.0", + "@typescript-eslint/parser": "5.22.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.15.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.4", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "13.0.2", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.4" + }, + "gitHead": "1441fb84d8643b735837d9d9a986318ed8174e1e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.1.0", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-T3eB4f6k9HVttYvyy8drGIKb04M+vxhepqM7qqcVCBTNT3T6M9cUaJT4k7P+a6wSonObJSJUP98JkPDQG+3fJw==", + "shasum": "319560e20ff451890158d7146c79ab589c6e7031", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.1.0.tgz", + "fileCount": 529, + "unpackedSize": 3010378, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDcACb5Jhy6YH+4AuGnXLGAq+vp4lg4bOXmHf1i964u6AIgPMpvk3qfzXGhOSD+nCX/Kna5fkwnUMftMStwIYNe5ms=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifgsAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqcWg//ZL0/okQxUueUuplL1tcfr9j25PxymMH7GcF0JFCj7DmsYvyW\r\n+U4N67N8eim1fXKURphQMMG5citDDBfntKTVDCi2RqwGHftFNxWhAvGy1Yo9\r\nGUhjxQrs/AfsJ1jZuYvPKU5cKSAEPpKPte69AQS3i3kKtHpHSuU50wnuLZTh\r\nyq8+bUXaQsG9NwNPYPjIskqPmakfRksHfAdW0Pdrfe4jLZvK0ZC7mRFUqiTd\r\nhA1Syqgu0Txpks7XKCwY4Wob6n4Fa73sJZ7T5MoOCy25n3hxpD5ZsHQY17ak\r\n9661JbL2YNFtbfF5wdFykpQHTbqo/g8pQoBMr2B+AMSDYwD851x2wqwuw5aJ\r\ng1VPwQc9XkDPFntYYyURO3V0hyc9vWj9iUJCJ7fOjpkslb+CG8T4+xLw8fbt\r\n0iAtiIhxJmGcDph12Mpz4mehZqFnN+Dx5xFirTPHSJj58mMiwWP8pm4XRP/+\r\ny3bupGrk1MV3WP3SrLIRQEM+lEOlvttdTHgKwZqlrWWpMlftbpjHppL7sqa0\r\nnLvnvMOYJtjAeYVD7rXkvnlaioKiJBVZPR6n9EQ/hJ/K03er/WQkPuCq4HdJ\r\nW+oEtWqxJDPMlAyA7My345SNt8L4Ha4e0J9ELY3XbHrsz8KunsG4fYta4Vnr\r\nYWO5R2w6xmO7iVv6YeVQbN1ZwnAEqZJNoaw=\r\n=Y3bm\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.1.0_1652427520266_0.43265449526869393" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.1.1": { + "name": "puppeteer", + "version": "14.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs & npm run tsc-esm) && (npm run tsc-compat-cjs & npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "release": "node utils/remove_version_suffix.js && standard-version --commit-all", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.982423", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.6.0" + }, + "devDependencies": { + "@commitlint/cli": "16.2.4", + "@commitlint/config-conventional": "16.2.4", + "@microsoft/api-documenter": "7.17.12", + "@microsoft/api-extractor": "7.23.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.31", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.23.0", + "@typescript-eslint/parser": "5.22.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.15.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.4", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "13.0.2", + "source-map-support": "0.5.21", + "standard-version": "9.3.2", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.4" + }, + "gitHead": "0ca60a7ff0d9fdbf397dad39f3ebc9c71c631755", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.1.1", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-4dC6GYR5YlXTmNO3TbYEHTdVSdml1cVD2Ok/h/f/xSTp4ITVdbRWkMjiOaEKRAhtIl6GqaP7B89zx+hfhcNGMQ==", + "shasum": "9a2b4042f9644d0d5fb63dbb6d75042af6a67656", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.1.1.tgz", + "fileCount": 529, + "unpackedSize": 3014596, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIAFTk1WFbWd/qMePwP6aUQpe34EqPbKZhxKRukFO/mDCAiAu4Re8uTnxJbmuEtdUbb5nNOHxHBkiWXu1ahc5QY5L6w==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihlyNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoW3BAAghkbJOhjqlaeBjvkpg62Hiwy0K2xiy9AElPzQtk4WpYFjlEX\r\n7ehPf5Rrag5g3Cfo6hN0HEH4EKCmTcUx3SN203Eo3lcv9ooEsUPsZAU3kG9Y\r\nJEbkOvmDljPWVnKLfGza2rs45rnf2GGISiqKict+MdQTjU+cVQZkJr6et6nK\r\nTiAHRCsz3O6I4Vuz2BCUpeuRm/N0rslTXQRMn1YvE0xxmzJgdhgSaGyFLJML\r\nr6xBxHEwSvpXbRKdlMDbFqayeJ+8mliPZd0MD75N0TYtmeHvP6p8ItojU5Ci\r\nD4OAxVDO5ukfLbxlT2glDac5hdZ5yP3u5+QrfYUd6QTRqA6ZZvvv1l3/oTMp\r\ngaT69IFs6+Pac5Gser0qmAlZGbq3azuLlQJ3PCHYPSJ1B8R38NVsBvAj6bb2\r\nswW7VsWXFggf4Gq7ACJEVPi4navCmvsuneQJ0ehA34XA4Yj5YeFizOaSYoXU\r\npqFTRDdBcaadOHnJx+U2Y/1I1fIZtM/Ns+AyUxGB/iTqIaUpxFl904btl0zP\r\n/lcLH2vD6fTjbCwBcvEHGqdk2jraEOsKfgHVXgNy5iaO9wrFfsQrpKcW7Hzw\r\n7g6n/28bED9t6hjtRTMU9P2FilPQIlSpEor+RjLdozhcMevQOfjSf3eqUmcj\r\n5S3Ln2vgR5h50Evtv7mBV1zqkmqGdeLvFXQ=\r\n=17hw\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.1.1_1652972685440_0.16173356861300392" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.1.2": { + "name": "puppeteer", + "version": "14.1.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run eslint && npm run build && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs & npm run tsc-esm) && (npm run tsc-compat-cjs & npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.982423", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.6.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.0", + "@commitlint/config-conventional": "16.2.4", + "@microsoft/api-documenter": "7.17.12", + "@microsoft/api-extractor": "7.23.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.31", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.23.0", + "@typescript-eslint/parser": "5.22.0", + "@web/test-runner": "0.13.27", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.15.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.4", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "7.0.4", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "ts-node": "10.7.0", + "typescript": "4.6.4" + }, + "gitHead": "7b13e3001e59ccbb203ede713f18ee6bc00773de", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.1.2", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-Nsyy1f7pT2KyBb15u8DHi4q3FfrIqOptAV0r4Bd1lAp2pHz8T0o4DO+On1yWZ7jFbcx1w3AqZ/e7nKqnc3Vwyg==", + "shasum": "bde2ca5585fb56ed906bccced898d551778f5c5d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.1.2.tgz", + "fileCount": 529, + "unpackedSize": 3025568, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCvYEox2Go2XnjM/V7dqGvIZ2pIdNGYD2C2MZK/5Ha0tgIgQGghbfr1UX2kBMYpHiXpbCL9JKXnsfl0KshSSN2V++I=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilNVjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmob/A/9HYXEGH12D9YLL5YJauI8LjTnp+YyfAKO13njF54LMJ5PLjhV\r\nL45rWHQzVyuq4e1ROsrAlWIhRh15lKvyYkW7Na3QIubPahe63EU6aV2ZmYW7\r\nkCdxsWedX+2EHVvSdf56E2EQAsPkXRfW46OiXD/JhIqPU2BOXEzr0ynY4WZF\r\nBO9UNtUvKQRd1m/YRGeyOOtuWbx5//2LcjePCRc9Yozo3rDOfRa+a0hYKXJy\r\nJhGV1pOWCz/xAbgZqzHhbx7w59YXXJHBMvsl66XnvyDbhFM2SY+b/5RTjDFu\r\n9Lh4kGeDjy6FEVubugREDULDX03jRWhKmTxntEcwjGO406nNy8Z26qOTgIV1\r\nTfs7yVMPrstA9NcCCHDpAlDClLuxG/hs5AfpHN98qzhlciJw3y48YE062fkG\r\nVS/d113TPKZwFxtE2pgOfqKS2Rlvv28oeAW+XM9Z8SxohSd9Pz0N5lcLE/vw\r\nEwolt1gcjY3JCrVhPkdgUNU/TpQ4bvaUkWhhyIv8QHt7ko6uYjqGPZ4LaMfY\r\nuJ+iyAoy0YoksIOVsotTiKYl4M+An59kvwh9BzUFTbqUcN/3iap+dC7TxCOl\r\nm1v2dxWppDRQqWpbdk0Lq7YtvVUEPynpuLq3zcF+duPSxwFjUfUHvd+hVEi8\r\n7YuxcXTz+zQ6h8XB52dBALwXquqwsekAhe0=\r\n=6aaR\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.1.2_1653921123167_0.2814007999443875" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.2.0": { + "name": "puppeteer", + "version": "14.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run build && npm run eslint && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs && npm run tsc-esm) && (npm run tsc-compat-cjs && npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.7.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.0", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.36", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "@web/test-runner": "0.13.28", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "8.0.1", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "ts-node": "10.8.0", + "typescript": "4.7.2" + }, + "gitHead": "b3b62b35f33f386d3140f007e619af1f5878dbfd", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.2.0", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-JLHGePg1W3V+CShk6veNug+Ip2BoeZmbIbJFJqS/L5YK/DCWRkJZpJ+4OzNY5Mf+lYR9srKp5pXV84bcBWnX7w==", + "shasum": "edcb37b2e83c1892e630a830dd3daea040b1cd50", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.2.0.tgz", + "fileCount": 525, + "unpackedSize": 3035685, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCID1HqeImsZnTVdOfNgT67dJQ/CVnCQ+aWRWBhoxt0ABfAiEAmT6jfs5oboDRbU6qiK2VAJ32zOy+sGjsvL9/2nayJr4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJil8jIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqItg/7BDQ/4FleEVB6zyqZjb80D/Y9FKQwg8dY8fuMrXmh4ZspngMJ\r\nj3TJc+SuJz8f/W8KMn8/rRBx6vQ2H8gk1ek5fkpZRQqT5uHUlY4v8EXYDXtX\r\nLfvkgXDaTIDIyQpDXxmTZVShYsQfZJnmForc98X60PgQYMCH7hGp4X6lkH9e\r\nUcXwdnZisL9x4EOND1U1+TjR19Nd1EQTIux4DmUDszxoy0W5Sr0w7wPhTBKX\r\n3oUCB91Q1TS6TrD13/VGtl0reD7jY9zLL07GFIrvpgCFbvo+/1ZRsjV8k+7t\r\n/oIq4wN+Ue6fNepQm7jXmgRKcp5QpNrx9ZQMMvX0N2oSuFtVcUqmKTHAxl18\r\nJB7c5HPSioeR+4+PxHpvso5jl9arNjTB0Xm0WJ3IAndsEfOOfjd1Ebj18Z+/\r\nUbxlL6U5fNUXkua4KS4LfytqogtwvI3+vtjexZed3h6uWwVvSIUbmy6+esVk\r\nx6X5nndDIMnaXUOwsC0dqfpkgXIi/eSt4QQAaD6W6B+VKuRXqzujS6zeLEdr\r\nlnCS08q7IGnYutOvNUNcxLWpSzeotVRWGyUdgQ6RlQFJ4/vo1NF04P5VmrKK\r\nn4u6/CQjx6xQGhskrEK/1C5J7vhbtdVPQEXPIaPXahH8KJHWeIDa7CG0RCFj\r\nB6qwD8gOA6W03asuxLcRO0hQpyHME+N7Me4=\r\n=ePJl\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.2.0_1654114504728_0.7368410735169557" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.2.1": { + "name": "puppeteer", + "version": "14.2.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run build && npm run eslint && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs && npm run tsc-esm) && (npm run tsc-compat-cjs && npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.7.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "@web/test-runner": "0.13.28", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "8.0.1", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "ts-node": "10.8.0", + "typescript": "4.7.2" + }, + "gitHead": "d5cd41686c913199658b76aee7935e9e339ca1bc", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.2.1", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-cIEsAbEbNYqHbkvdZY4+YSdxVwh4YFqOHSezuLpu46XAYlKkQeAMdJQ+mDAxg9v77gIn8PHJ6PlftIVsWKRACA==", + "shasum": "e343379061e0211b4c02d0c535883c26a39f825e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.2.1.tgz", + "fileCount": 525, + "unpackedSize": 3038100, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIDMbjrIMeVF5dYvYhJgfgCI+nmj4vnbc3qt+Cq5RECjCAiEAuSfMTs3tmktUGjIhfwUP/t0aZMXDCX4QetgPRUUH/hA=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimMBDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSng//cMjxEiBso/k/UWhABKebuH71Q8Vozx5BYcN1l0n1kB4g7bxM\r\nMQykVvVHXFb6SVOz7eSGcUMKsa2lgt6JyjEdyZjjwk52rM/9WlojLsrfu0ru\r\nPuF9LYrfsI3U3/Q4XCPxLPGh9i0yzRktbtdywRRJ3Qy5IwZFMrxq/B62f6M8\r\np4wi+SZ4WBkmzN38/v19AWEsxh4H0E9Ck9AWiadOUQT4Cbit+YHWKTnlO2vS\r\nlcdrlq6vfYgCjyH5DSVRA1BQHD0leO/cGY99lONC24dLJQ9CggtEofsIlWju\r\nRtw2Slr6tSIkvXsMyPfQt6SAxum+u9CatsS0H+S/A8G5gK9F+5Wo/M0V057a\r\nMnujajyS7DaQzCeEYmOv8d0xwd1j+fv5pSylxRcWz0dmcyReKvuKZGQ8hCr+\r\ng93v0uIStunkj2CL1BCGm4Ns8qV1oRozZje3t/rdWXzEy1w6TcpO01Kj5dqZ\r\nTz8qcf0KN0IfSpQafc5bzo7Mcu9tcykozeYGIfwIpl43P5QX8dtW+ymQAxz6\r\ner9JuEjFlrrg6j6qNvQo2yHOkLWbH3/hHzGwD/YMGGMJRpSUDNGnqzN5R6xo\r\nKcUdSzMPlRz+slduf6LzhNO/8zhAieUj/9/QucsEIUoAU8uLW0DWAKXRWcgh\r\nA9eUv+6d5mmu0oDHQe/sZG3W/Cn/qkdS7TY=\r\n=iP1Q\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.2.1_1654177859315_0.8842660491714884" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.3.0": { + "name": "puppeteer", + "version": "14.3.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./cjs-entry.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/node.js", + "require": "./cjs-entry.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test-browser": "wtr", + "test-browser-watch": "wtr --watch", + "unit": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --config mocha-config/puppeteer-unit-tests.js", + "chrome-headless-unit": "cross-env HEADLESS=chrome npm run unit", + "unit-debug": "npm run tsc-cjs && npm run tsc-compat-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", + "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", + "funit": "cross-env PUPPETEER_PRODUCT=firefox npm run unit", + "test": "npm run build && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "prepublishOnly": "npm run build", + "dev-install": "npm run build && node install.js", + "install": "node install.js", + "eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "eslint-fix": "eslint --ext js --ext ts --fix .", + "commitlint": "commitlint --from=HEAD~1", + "prettier": "prettier --check .", + "prettier-fix": "prettier --write .", + "lint": "npm run build && npm run eslint && npm run doc && npm run prettier", + "doc": "node utils/doclint/cli.js", + "generate-api-docs-for-testing": "commonmark docs/api.md > docs/api.html", + "clean-lib": "rimraf lib", + "build": "npm run tsc && npm run generate-d-ts && npm run generate-esm-package-json", + "tsc": "npm run clean-lib && tsc --version && (npm run tsc-cjs && npm run tsc-esm) && (npm run tsc-compat-cjs && npm run tsc-compat-esm)", + "tsc-cjs": "tsc -b src/tsconfig.cjs.json", + "tsc-esm": "tsc -b src/tsconfig.esm.json", + "tsc-compat-cjs": "tsc -b compat/cjs/tsconfig.json", + "tsc-compat-esm": "tsc -b compat/esm/tsconfig.json", + "apply-next-version": "node utils/apply_next_version.js", + "test-install": "scripts/test-install.sh", + "clean-docs": "rimraf website/docs && rimraf docs-api-json", + "generate-d-ts": "npm run clean-docs && api-extractor run --local --verbose", + "generate-docs": "npm run generate-d-ts && api-documenter markdown -i docs-api-json -o website/docs && node utils/remove-tag.js", + "generate-esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "ensure-pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test-types-file": "ts-node -s scripts/test-ts-definition-files.ts", + "build-docs-production": "cd website && npm install && npm run build" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.7.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "@web/test-runner": "0.13.28", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "8.0.1", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "ts-node": "10.8.0", + "typescript": "4.7.2" + }, + "gitHead": "4b05a8454e6bd61b8125b622f540df868ac650a7", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.3.0", + "_nodeVersion": "16.15.0", + "_npmVersion": "8.5.5", + "dist": { + "integrity": "sha512-pDtg1+vyw1UPIhUjh2/VW1HUdQnaZJHfMacrJciR3AVm+PBiqdCEcFeFb3UJ/CDEQlHOClm3/WFa7IjY25zIGg==", + "shasum": "0099cabf97767461aca02486313e84fcfc776af6", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.3.0.tgz", + "fileCount": 525, + "unpackedSize": 3038392, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIEayRo6+KuGYyR4U+AjKM8y0dUCKRwtkqMYDPu8awbbSAiA2aF7S+Z+1ojBGY7MrPMfeyjpn64MP/Ji7RKhWaGuGFQ==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJin1/eACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqooxAAl1IzltB1IRvRYz7/9urOy6Oa4VoHz3jzYCl1MyWHc4JHrWQl\r\n2ODeOTOog8lw8+4UFRhe6gjaQaZwEZsReBXtmqOrHZD5WAcSq032zfFE2OD2\r\nDPyQ8D4ZrEctsZFWboPU7ZHtMeGOlguiCcqDgT5gLY4drz2QRhUXDFMWeZ9i\r\nGvPCckbQoFvKnYqmf5g3TGhcq49F/MngpWK+3I+UFR6PVFKC5g3kYeBabMJA\r\nZ3j9ijEWqWzJJ/Gh99YRbO6KrylGS6BwyXyOXtob72pCvb9dxj5ZRbkvF01E\r\nyePXKotTr/2nztdGkG37ttat831AObR7I0MOIiU+JdEXPc5HsqQDnJb3CxUm\r\nJl6/XY8PuUY0DUT7sqMT6YLSSGKR2f++jEk8PsF60zKiwWrPsti0o8puVYW4\r\nBHT7oHUd83X0lmB/tnMiQzw001rfEDkeR6/zxrt+pngLpq3b6M/+4w3V+uRh\r\nW0QCnfzWuBY6FxKp66ZbAU4IA+YvzJ1FkVlj2CgyYRI9Wwr4NXm7++11lfxY\r\nToBle+2c0h/y7tZSYfKDLl8CQzwLom3jLREwk4yAT016s8KhJrLKjoTDKdAV\r\nytBrRVlLCYnd5VimgxrzeHjAyHNxgwWdZq1o70MplXxHYs2XfcfLXnzLAtlI\r\n9TOZYe493eevVomReHVDGGdbZ85Xzbfqje4=\r\n=LnQk\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.3.0_1654611933681_0.3071732189251397" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.4.0": { + "name": "puppeteer", + "version": "14.4.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run build && npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:tsc:cjs && npm run build:tsc:cjs:compat && mocha --config mocha-config/puppeteer-unit-tests.js", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:tsc:cjs && npm run build:tsc:cjs:compat && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm) && (npm run build:tsc:cjs:compat && npm run build:tsc:esm:compat)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:esm:compat": "tsc -b compat/esm/tsconfig.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:cjs:compat": "tsc -b compat/cjs/tsconfig.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.7.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unicorn": "42.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "8.0.1", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "ts-node": "10.8.0", + "typescript": "4.7.2" + }, + "gitHead": "ba67518f6b4117986b117a65c554aa454f3e37e6", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.4.0", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-hAXoJX7IAmnRBwf4VrowoRdrS8hqWZsGuQ1Dg5R0AwDK5juaxnNO/obySo9+ytyF7pp9/VsmIA9yFE1GLSouCQ==", + "shasum": "e711789814f785484ff5906d464a32a8146a1304", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.0.tgz", + "fileCount": 513, + "unpackedSize": 3392516, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDzZ5nsjqdvAvpY6ok+PAMyXqFdDybmyuI94W0AcuPbWgIgDonqLOp+4akWYcYjdVhuHNM5Edgv6zeYlFNuVOTdX2o=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip6nDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqgqRAAkNcfO9vc2TqM4ZMbOC9pe3afB50L/L52fepQWa/HMf6OtYDX\r\nLtMxHFvyeVqYcMtxoK2/Y1+nuDA/CCxUpwOsDkm0E2JRQ7jwKNKHTAwxihIc\r\nA1M9TKRS7+VUL/ZAUA6vUFP13X9rE1a+uWEyXqaOrfr23uJlOFaa1KX2bVZb\r\na/s0bArOqGY62iQP+Diix1vf878DhiavR+zNrU9bPiImtGe941wmCnT158El\r\nd4g9oZ39m9PyxsUN6faJJ8V/TpUIg/tSOOWJcqdsE9izPRH/LXeHq2FRF4Sj\r\n5PyDViWDzcAOhNDEIKwUcgIGLVvT3RdUWdPuZderwBg3x71rSxShlD1x5I0y\r\nDAYirzOQGMw1iNiIbzyoFYkBFJ+2bRvpFaLa+wkHP5Xa8Jjyo+eMuncB76/m\r\nc0C31ftidjeoN7z8YzjBiLKtKgrgsFusn8ePep8UJoI8imxNv6m/nNVttwFI\r\nrjpDcPHwnaISFgCyqyLZlCSRoJJyO0nS+LaaHVmkSIulcx0WEdffoLfc8uIP\r\neVr0WFyUk2LpZY9HpGxsVmcNcUTVefYyHWfbRO5VRbhhpFkTx3C0vsHXCAUh\r\n7dMzSyJWt/W/xLohbxeh+pwxAYIkHjX6ok5J85vEbaZPXnp0oazht84dygab\r\n9f7BvlFNwt+EB6Gs3UO+r37QV8Qf0rHMfeY=\r\n=NGoO\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.4.0_1655155139276_0.19615398009207752" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "14.4.1": { + "name": "puppeteer", + "version": "14.4.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.7.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "husky": "8.0.1", + "jpeg-js": "0.4.3", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "typescript": "4.7.2" + }, + "gitHead": "3d1ec573fb0329553949d4a16182efcefc373b81", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@14.4.1", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-+H0Gm84aXUvSLdSiDROtLlOofftClgw2TdceMvvCU9UvMryappoeS3+eOLfKvoy4sm8B8MWnYmPhWxVFudAOFQ==", + "shasum": "6c7437a65f7ba98ef8ad7c2b0f1cf808e91617bb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.1.tgz", + "fileCount": 513, + "unpackedSize": 3423048, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDkTL7kNmXf6mRGHXt6obP84QmDeklxkQqtIdM7F8viGgIgW0ZXHH8tU0cufy7ZcY4aT6jXYOk9a3OmX044iwhYZgQ=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirIUaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfuA/+PDKgi14PDAvTcFJ8iFpEr4gpw8dbER1IekDKwwQUUjbguo+l\r\nXRbZJpizZRa2NPEkAc6yH/VY9h/h1YNK2AVCUqb22KIOGp3BF6mQvbPkJVb4\r\nCzNYUWv0jGYgkltd9pmyTk2DVSYJZa6YySyDH5lFFoewy/ewGo4R1Qn3Evwg\r\nSP1OQfGijbwnl3bWl/dZA5OPG4KjN2s9ib6WBblbLJ7zI8+D/VzkNnA1b+Im\r\nQ9fm1BJ9r1Uhku7XJ3Vo5Cwuj4XK1aimIeR3jQGXVTo7lZ2ahKgLBEfdXPlx\r\nMV5tLqwu2MRw7KeS+szpT0taCH4ZgRB0OkgphsdHGXcbRHCPlrILF1+jryPs\r\nDufSJ6/ycNSgL7H8MCu7pHSd9MD7z5+Vnct13NZDgBWvaJD/0bEI6LI4GPrG\r\ny84rUasG0/BYc7DKJQG9Ig4ZnT0ynCaCjRXT8kxvqt7xqHw+fT1UDB6Uhzj8\r\nW5+ZeaQtFdTcb2eO4KilLXQg+/cq70UAkgOu5y6Mo3nwequ1w/d/Ef0200Yy\r\n5bjbKlYtzsLgwfklAzKW0Cs3vUlH4pEmFkIUufgY+nuGrWSV6TCOS+463y2s\r\nxCadeVZvwrG/xOIfuAoO3ubphdNZsZ6L+PPVzQE92+8J95BMMUobU6ETBGhj\r\nrZJtRTosIqIxrxIfP1nTtWxtBpR5qPOTPkA=\r\n=DM3+\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_14.4.1_1655473434371_0.7607742748629485" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.0.0": { + "name": "puppeteer", + "version": "15.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.7.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "typescript": "4.7.2" + }, + "gitHead": "9705797a02c6110f81e7c186b7a6aa5780a6b64a", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.0.0", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-pMtswCW0/V4OkkzDmmb2FJKrUPh2uaB4pTVQEHT7833GfewVdKdbnSviVdfvRt3XhrsJkTmzh7FAUckW9Y5lZA==", + "shasum": "0c4f373625baab14fdbfe7d41b4fad3ec9306fea", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.0.0.tgz", + "fileCount": 545, + "unpackedSize": 3425407, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHUiSLRDQnAFjmFyjWWFq14XsXuPs3GNAzGbpRCqO1D9AiAyVApVaLhstKmxBmADwZ6uSNh29DH56f388DCHAXbo1Q==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitFGoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrW5Q//eJcg9f8BBCrLcLOwj43e4pdiSUgooEvWs4C6FxXINRhJsDtx\r\naE5eKoN6voadulgSki9xns/6079Ag7rNaOmbZWOE0+B+pwB+3/kU25CEJS3j\r\nJ3qGUnYqgWstCHZ8DTpYWiDofrlnIITfu/b7zqo3nVBLdvsG6cidevD9siJN\r\noXTYz4LIlep2NsQS/BNOG8eiz2eCrWknAbfMxtJMZAA+wOefmH08TbmysKOL\r\nE8tHuE+d4g9mJrrWOo/HeOg19SMUpVzGsQ9HAZpSZ/QGMYRH4TkkxyTgLQsz\r\nvVu+1ywLdRVyxZ7RvuIaiXeefg81jhgwKbI5AjyjHQn6RuGAydCyzNjDxUHf\r\nrAwLDd8WtOCR9Fw4qzYDetY2JSM5PFSsyrvetzfZYYkjNpCMB+FBpTaeZzPM\r\nOzkF5aZHvHHJgRMyJw4j7VyUIjxFAz/sfb7GAkLiPmNg7g+XDlZvjAN0dDFL\r\np5upxpuMo08jZBN3ohysekX0/1F/NnufIGxfY6PYCLHKfycI4r6EkiK5YF1x\r\n2m8D9l6nPbu8m0UG8nrXIpjUDRJe8LyrzNOEQjKNOhYKPwdVaTsB2e8l0fLN\r\nkOR+CJYB5oJrkK+y05YHNMxzPfy23AyA0lZkzHpEMgg+fjjhjQWf6XwjCiYF\r\nO4e2ktN3b1/Ffsitp7ROGL18BibSVFaX5hI=\r\n=3eoB\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.0.0_1655984552549_0.7859436168536378" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.0.1": { + "name": "puppeteer", + "version": "15.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "typescript": "4.7.2" + }, + "gitHead": "d15f2239b9767eebb554c519fd994044f73e89d8", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.0.1", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-t6+L0Vcc/03OO5izVXL+P5+9uvH1Ix9jK65JwYAQhI9UVtkzuikbJqz+BAsftkhOH0r9F4YiOTtMBPUbBnfn9A==", + "shasum": "50dbed2c0c6ea70b22289442b96d3a3c116347a2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.0.1.tgz", + "fileCount": 545, + "unpackedSize": 3422211, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDNHRfrgPttcnAhZqmNzTTIZ8jj4VPmlyTvDPVin7ZuBAiBAYHsR4rlP6zb2y8S6koJM6EC1voc0jY3+AaSWqecAQg==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitWt/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpgUg/+OaVHP+ULDJRZfCClrBpsuaO0eGykqA2t6yCEBba9fszvlzfl\r\nLi2W3k2UN7F0hFzMwiEkJxH+7cw1X+JtU40op/G42mZTFWqeV98rIJbAr/kA\r\n2ZK7DLs1s6cabI3WH7wtrOTa21rtohdQ6HtfcRJo8JNptWQ/8HxoQlrg5JnI\r\nV9Or9Yyy3dKRq8rZdtWy7eaWry8MmjBZKnCtVAtnaXMn5ZYyeWob/OFYACzq\r\nm9MQftnf5FZL2zJWFPnJsILpF2wToulQd8BxZNj2lO+2MHaELIcJhH/oE7bd\r\ncvc4uJZEo2+Hdc2sF9AaSUT5mXgmc9jvoL6Yo5/eSaoNurwIktNp3x+ZIw2m\r\nh6bUlxCzqOSus0eAxepIMc2YsUeg1a+zLTJvtOdl+Opzgn0kgdm4/0wk1thI\r\nqf6E2hCkhEs31vvaaPaAbr9SVikgkGxXGV+pUgEhCeS+VSrvIO1u/b+uhphJ\r\nwqcWgE/DtqNRkPuqSdS03dVwCzG293dIhiOFGN580VFFqWFPG50ajMruSVE6\r\nr8YgnauLX0PX1il2CVeCEU9vkfQYuz0ftn4UXggO+iVgPkzL0Jlyg2dDtAgh\r\nN+D1bZpQJDTNGQ5/RF+wXOnW74kYv9P1sEHVlWZAyVbEms5fR4YBRPTvKcOV\r\n7nOs+g9i6xLc+MIE1Xoe2mD2hTdjtGzFzF4=\r\n=s4Rh\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.0.1_1656056702707_0.9571087594800827" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.0.2": { + "name": "puppeteer", + "version": "15.0.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1001819", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "typescript": "4.7.2" + }, + "gitHead": "a23cac77f5e82a0088dd15c010cb449232f54a67", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.0.2", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-7gJkr2skctdyRn9hACFw8olqtbnUXxT7LZ2dQT5krUgB30TsAUZ5c/NDQ/4H3514IrDB9DmKqZGHT0I369SvAQ==", + "shasum": "59ec1f256547651dec1444941513a323211951b2", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.0.2.tgz", + "fileCount": 545, + "unpackedSize": 3422693, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCztsC7AHJAJRoqGFa5u+XVTjnRTXXIHOXBkGaFcJnQLgIgbHn1MEC3m3fgs05DDKSdoUS3m9E6r3zvh8HIsdZ3FCA=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitb0eACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqktxAAjC71HPDnfKvBXCqZE/AjYRq5qciefhOJ4EvLzboo3dXnr93k\r\nyU+uElza/LUGYyBZLCgFqlwGY6wdel7PT4//B7y2K0bk9JoTBktUIfP9m5cX\r\n+aiEaEZU4DpoCWNBKD4L9mwtkFpw4cDEwnuoLbu4j2Q1Pnvke44FPptENFOw\r\n5Gb9u03X1uExsXBKMCwZ83NrdUPdVzYTX8FZvEuyZHTRmvdw/k3a4cNP2Sbu\r\n0olpO3LLQ0TXinhJkGomH5HJ1mP1UOlPfAfCv7rEfU4yRi5ukHJLTp59ENY5\r\niT4euxQ+Ysn5qTbFQ4nYmSvyA/W2GYXiOp5btBPhfIRKwXDbb8LF8LFPR/K1\r\nZJ89ov7yymE3sM4JOeV1+R4o2ipdttac//G0wA8lzpx7v3E9fHyXE8xIdVN5\r\nKxdSagBDBjAY6m0opSWuA+OYwc9i38d7NYAReGBuQzqBvB8T3k/y42Q5F5PU\r\numDus8K86G1H0jn1r9Mep3HRLuJc7opg3GQVUdadY5JAhH2SxG48k5ISlsuY\r\n5LNCqCwVuJCFX7GqOMavNGNajodU6HMs0l4EaCVLfi+b4WSVabOR6CVCMnYm\r\n2fjDkRV9TWRTEP25o9rwqT/cyL0GxC4H4T+jUIcIyrao4612OYLEuOc3jHAf\r\nZl2Fc85MIIXZAYsBxk854bFAFopZEGwPSes=\r\n=9Md0\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.0.2_1656077597804_0.28395882104482584" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.1.0": { + "name": "puppeteer", + "version": "15.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "typescript": "4.7.2" + }, + "gitHead": "5fda494543361466e5d493e8469f39a068c78cdc", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.1.0", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-AZLQs6QB7tcYV4r7SRh8tN1OyTGI1hUBy5FDyd9Ry5wyfo1h2Tgl1uhT49sG2T8jI6JFuBXr+ratj9+zvNlx2g==", + "shasum": "5f225d7662f0f23ca49979797fc0853d23ec47a0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.1.0.tgz", + "fileCount": 545, + "unpackedSize": 3422693, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCRCDdhm5vbt9M3PsAYACx8It1OnBa9E2Nz5xxoxhDQjwIgcMKQO4aPUThVyLuZ+prCeg5kwKP+H2L2hnabum2Kl2Q=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiteofACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBqQ/+NYApYEQ757TCwMyC55lsXRqgpx9qBLWzP/ZWBqesVND7T/kK\r\nQ3o5KNjYmNFlWlnD97EV0cgtG5XcGQMFXAjBUC02af50BxwmQbTkSUM75I0R\r\nPvdzqXJCPqkGO7gINKQ+Gs/OGNvun9DWGIIh4YrsUtGLCRhw3fN+yP+9+GnN\r\nf+0DHNoVpzJdxV9R4tEyupIlS35dNKxkk7c0Y2Nm6mk6ebwh+1rt3bAsUji/\r\nxyS9SvSRM0ZiQMXAwqJb2jBdrbNPaYhF3BRsxOLJDHe/9arbbzEziM0Pqneq\r\nSJKoWXMvMpY7PzONO+VQUsL/vHJ9y3VQg4UNEBcvWvUJxYrorSWtj7ojw4CU\r\nUiM/8EshuvjxxlG7JXEIEs+Cu5V+7ME+WLsRzYkdiKEh5MprwToxaoCmdJBw\r\nIDI3Q3Z2YDxteRCrSMId0cjtbtHhpO+IHWhfldAPdaqdcPbY1pcDC8XcBhvt\r\n5edJsmsS7S+iPURP0VLFgFc3N6g1r+9zdtsN+cjgu9LFn/r5IWjkHSKqfIA7\r\ng3fM+t8uO1B0HNWdBpMigODKg/z8kANF0u/SHMnojioQy2Own2uCEPQPYwhH\r\nGuiCPXm7Np3M2f9X7Cg3acOHW3t5FkEG8FbIurfmaOeibGf7H7Aaoy/dCrpA\r\n1cPtCnO/msEcTU2oHNarE+NxJmFbtO8d6Xc=\r\n=PMhb\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.1.0_1656089119558_0.5986583048634468" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.1.1": { + "name": "puppeteer", + "version": "15.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "ts-node -s scripts/test-ts-definition-files.ts", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "npm run clean:docs && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "clean:docs": "rimraf docs-api-json", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "typescript": "4.7.2" + }, + "gitHead": "5849c9beb44d20546d5f8577d80915a6f2a7e3f1", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.1.1", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-XMysu48uIcaYad/IelRTX3yxpHkcNdhdzPegnBEz9h1uEQfLhFcMJnjyvus51Sm+OPwr2gaKQhtyuIVaVKqd0Q==", + "shasum": "f995fc3e5794649c4689b87ad29bd083065e53c7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.1.1.tgz", + "fileCount": 545, + "unpackedSize": 3422984, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC+w+6VRvWR9++GghKDELuALKETkVSl+JXSNzRfkr2XWgIhAJ6gl+M5+lMbYWqEGhSm47hhiQfufekuqYKMtC2aFQsO" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitvX1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpmkw/9FUWTZR73RdriJcBYTkJiFcpTQ5KoZ65u6718Fq7xDiR6gBwN\r\nTVXPpPUcdGOAbcYRWXmMEyKDQHvU+UHMexJVpt3S3D52xB2qRGQ/taDEu1fB\r\nxXO4uX9eDUndLSY/vFYvlRan6eGR4sBdZCXx99etNludmQworoJBAem07Cgc\r\nxPGB6XKYX/5LUYj2TnDXYBBew3/CIOPP2MRsxrJV4BC2vD5gKa7X/VAEeQai\r\nZ3G2rMXFy3y7kzpyp59f/m0+jOQACKR1z3SuyidMOD7aDtml9El3Czkcefbv\r\n3hw7Tre+BoD2Fi/82bi538VM/Dd9B+43X0Mis/jyzK7Ip/0hPhdQQd3w4eK6\r\nCkeUTVFv5FvIMMb+uhMqLd5U+gnEz1nlAXWH+r9xuwRxvAp0fdrrbC/Qw4bp\r\nCRxHqI57w1UfcrNY9L8HU3NpBfdHqJAVhNUupGMdSxWN7NwZtjjYs3nyQrSW\r\nsiOlgxGmkp042oUcnMiDXLlN7tx553aOw2zdCb7rD8jLRvG4bzywgCeu6pFG\r\nxMIhnnVX/eHL8/WxRg8AsfDq8+DcZWqEbm7G1XXgdcMEvmMAGFtgc7s8ogXm\r\nBgvEfjFz4fMN9nBlQdMMZFNvcUsv7vDMvrl8HS/jSv/9zVUqXeWLMZtF+1yX\r\nywc22Dwe5oRzu0/5ZxcLxL0FLb04DV+zAPI=\r\n=S5Jw\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.1.1_1656157685066_0.5636344593257754" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.2.0": { + "name": "puppeteer", + "version": "15.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "npm run lint --silent && npm run test:unit:coverage", + "test:unit": "npm run build:test && mocha", + "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit", + "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit", + "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit", + "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "test:install": "scripts/test-install.sh", + "test:debug": "npm run build:test && mocha --inspect-brk", + "test:types": "tsc -b test-d", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)", + "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "lint:eslint:fix": "eslint --ext js --ext ts --fix .", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "generate:docs": "npm run generate:types && node utils/remove-tag.js", + "generate:docs:testing": "commonmark docs/api.md > docs/api.html", + "format": "prettier --write .", + "doc": "node utils/doclint/cli.js", + "commitlint": "commitlint --from=HEAD~1", + "clean:lib": "rimraf lib", + "build": "npm run build:tsc && npm run generate:types && npm run generate:esm-package-json", + "build:test": "tsc -b test", + "build:tsc": "npm run clean:lib && tsc --version && (npm run build:tsc:cjs && npm run build:tsc:esm)", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.17.16", + "@microsoft/api-extractor": "7.24.2", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "51ae338acd3e30b5cd12eb43464d34dd8b244997", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.2.0", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-6Mzj5pbq4J4DxJE5o6V+arrOB9Gma0CxOLP1zKYMrMR7AYuNaPzsK7pBrpDwI64W6Mxk5G7NqiLSFTrgSzR1zg==", + "shasum": "9cd81334f9c6a2e1c972b5a7ecf3f18ab3bfb978", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.2.0.tgz", + "fileCount": 537, + "unpackedSize": 3401981, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCy7asiPLxU+qTGseEgJLRSmAq9/7FNkY7MoBA4Z9URhgIhANDG4QB7RqfR6BzeUa6R+ZZkaEZrIeU79gWYJWridaqF" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivEVvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8XA/+NK5Y702hy8FxD7zeIS7M+aL0Brk47OMq0/PQnGTmL5irPKDm\r\n+p11+hvrf8ddNNQJekFCm7+ESCGoZYBkb3746AA6Y0Po94TP/bAfMnezDqDO\r\nU45dS5H1r3YeSThVp0BDvN/o4jXmCGhe9Hy0vi83q17WiKDIDtxC3RBUduNe\r\nM3F3goOmmSTsj7jHQ4vWc1kchVcB7+2SCeTMBbJXKWFST1S69n00g8ZjAmAo\r\nD9LVj4+0DzIkOtGBxLCvtbO22TS+ff//HfABSmiMcp+QdxH+b70DYEBQJWYF\r\n0FBlCrAkpmrVcSIt1FRwQDqSgdRS42BgAI3RW6ZjF8uqxjPTEduEXmusNtAR\r\n5StFHePOypRNNHegQZZ7io9vkSx8+b4D+w2HtgGW15N5Q5zK7wZC0POYgHIy\r\nrVUL0tZjqtg+rMzJ/nRXGaHX1ciZco5qDoV7/Pecf4jDcy+c4rlpOuP/SfG1\r\ntMZSNjoSlw8qqr+DqDqgfwBGpnRiAoiVQzkt7TGAO+BP9Iv8Gqp1f7I2ux6x\r\nPESMdDCHgGG5T1QhBUms8oTei3n24Rm7b3KEA9D80QPJJiqx2QMo3sOtOD42\r\nzGB/9a7w6m6Q+kGqaUJ42THpBZ/TDdTNKqh4CsgvavgcWtTk06xHGpUf3eCJ\r\n5f758lq6eiJEAzONs4zka24mFDNgDXmtMlg=\r\n=mJdb\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.2.0_1656505711678_0.7641398481421318" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.3.0": { + "name": "puppeteer", + "version": "15.3.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsc -b test-d", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "01c76b7eb1f62c9467695c6825fe32da757848d3", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.3.0", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-PYZwL0DjGeUOauSie6n9Pf+vDUod+vFnC1uHa1Uj3ex1PhRI6DOheau6oJxxj9oyEPWy8SS19KfZDwln4v4LTg==", + "shasum": "2d79200cb72d938dfc7af4fdedaa03c04e7ace14", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.3.0.tgz", + "fileCount": 537, + "unpackedSize": 3429408, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDr+Bnrd2F6kr1VquC9FPAn8v7CzZtFPdrQz5CiUgpyWgIgCGBNjaPhxOFh4x8lp7/7rSloBcOlNeCTalcHT92E4QU=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivw0hACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYfw//dzWWlItEcicsV7MPog0QRGRZpSA5PTNTBAF7PRPfb/XOtooe\r\nkVhPOw+hSg5ebL5rl8QL5IzMrcdFqpwX1Cf3Lfckd2qw0njWTgIFfLenL53+\r\nGO/tLyH5bSfWat3GDiZ6GWvQ9nAQmBb30eutLYz69Ybv0cr26DSl8FrbJHrb\r\nfaLQmlIkqKuUubfZk7VvuZk2nEdzvXZx4idv7eVZiAFnBreoSKumgQBRtXnA\r\npVv23wCRxmCV8aCXDfZ0BJ69ZPB7izcjOKH8+9aAvjDgfh27mkOvLg5ep4NC\r\ne/4yEsJLl0JSdqsQjLc7o1TntQt3MsQo1zTnJD5hJ4Sn8On9mjBx2t364dy+\r\n7snfD98xhfWovOX8bgsjvAFSqhQH6/cKYYqtYjEn8Q+H9JUsVKspDZ8RE9PX\r\n/YR/T9NWk+9u6PkJxqFeO+sFekpvpLRs6wc72ZJcUjkltViW5VFwoBto7qdZ\r\n9ocdp5bP5Tbl3lq/XTRTFSMf5uwEIRx6EzqvI+cKdcPpObEUf7RiTXNjWZVU\r\naAXssCxzopYhO87q5BkrmNomfLf2ZD9rBYxTyrzEuR6HHLKvu/X1PjIYUKW6\r\n2dUg2Mt7ijB4u56wQ8Xb8truYCw/VXwkEsJet+BJrmlzCJrhxQQSuUwXtsvp\r\nUIOXrottyUUHrZ/+zuxf0QAol4kfBX9f0AU=\r\n=dcU7\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.3.0_1656687904932_0.31260107615549937" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.3.1": { + "name": "puppeteer", + "version": "15.3.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "ec8c750383cc0e5a64eed698d8324ba999719c9c", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.3.1", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-Z+SpYBiS1zUzMXV7Wnhe2pyuVCFAFRTq1UrUWHB2CkLos5v7bXvXYuZ3Fn5pSN5IObxijyx4opNYKTCRnGni6Q==", + "shasum": "0ff9b433a8fc3798f5ec82ea4b31ec47857219cf", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.3.1.tgz", + "fileCount": 537, + "unpackedSize": 3444320, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD3AjYFVKXJAnYB3YVcdZQveLIdtNLbBIVtR1Lb19iMSAIgb1okAyA0RKWiRogkYTGC7P7ps/4ZaI4182PF3GJTcA4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixTmUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTWBAAh5eKXSNsHSZBUUHwvZOODlE3p8dcAhoVzb/mZc5sMlOEUhGW\r\n5VtD1twNpiCn1/7lzYJeYLau+jQQ0FSjcoMmZMvvBaGnCOjN9vHMc7CCz+E6\r\nPvahggHLn9tBv7VKvoiid7vldAsWNvHCP6lYSrbkPbGfFQugEtfdgpOAKBoB\r\nFzL4MHJnu13Sw7A9R0EPp53v9YZgTsCP0NbU3A84Wlio4lB5HPhfWelAqnr3\r\nvKlwACN5+UwfYwT/kIZ+1rN4tWUF/vQgLdrhYdVFTxAH42wk+FcFHj7SqHvc\r\nHbuO07x4iHeQ3/fHXmzWPvmjNS6vdCzgW7JOt6HdZ98KWp7LTNFcO+Jcrc0p\r\nBrkD053dGPvM64pU4N/4GAeA+W70cxyD9M8+tTvJ5yerllWYkh2MlQZtopRf\r\nIMsHgPRWQ5Ft2M174pfjn8CSP/OnfPntkMNkCiqQ0bdT9FKh9uof4OFuLTgC\r\n40IYPWoCuYkJmJfbF4AkcctqSVP5PPwxvatLsSpPvHoizYzZKaOOWkJr+sbX\r\nMQpr5+9bVTCB1GQkWIyj978oARzNwJXyoIgTG7Mc+r/mkxW/tYBhEThOjdWo\r\nO4dU0+IHbedA7BTw7Vosi10kgw344lXF6SntTCfPODdRCD3Z6DqMDLAHPC5n\r\npN29VIRSXVdIHvfe0QfwbUPFImb1egusZaM=\r\n=NIUr\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.3.1_1657092500206_0.003592521619262712" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.3.2": { + "name": "puppeteer", + "version": "15.3.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "dd275590903368aab107912752b975f3b0a16489", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.3.2", + "_nodeVersion": "16.15.1", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-6z4fTHCHTpG3Yu7zqP0mLfCmkNkgw5KSUfLAwuBabz9Pkqoe0Z08hqUx5GNxhhMgEo4YVOSPBshePA6zliznWQ==", + "shasum": "62162739044d570ab9907f85b1e1bbcf52adc79e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.3.2.tgz", + "fileCount": 537, + "unpackedSize": 3447555, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDET/98i1pLag1lqL1JToGNEUtpfMn3K6+m0+onwbdmGQIhANWHZblX1bRVtZ1tbk5eSjDcXRfkSCfzV1oeAtuOJkNi" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJix+QuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFqA/+MT44KhtbI7ht26dJyOkHNROnfQIHRlV+is4Z/5FgiDBWq7qU\r\nPMAoK2CqkPTlnZLcn2NqTvn1vMd6LJnZ+Uoj+FDgK5ymHh0okV4aPw9YJz/v\r\naKW6Y3v25QhpJIJ4fJ4X0M/w6p+sqWwYibOKTV1Hix9mryYDvd3lo39fdqzo\r\n3RKqDbPVG7oiBnELs1wkAttfGS3iXq6PzyEZZzC/fy+Q1KeVVJsBE1UIbfa4\r\nqI+ZEVW3N9d9/AnpB7TkXAb+yDACa17ODTs8jTy63H9fg8QjwOu0V8OoPxZW\r\nkEy3zT5fGnaOD+m1wJbDPP74zNjMcvXRBUYafbhfU6EG9qgwHv/w9PTndcxP\r\nuTRbUX3w4Yf+IyDbwmnD5HfyzWTmbJOs0UH49leeG8ALTojfLph+RV8Xa3RL\r\npYAMdDTywk0bstMwnmYBRDEVRB+iTCjnI5HzVL0Yw9GvLp2jFduTeIsCJw4/\r\n/9IgL4T+OhoGSzTxOVQwi1bxCaSmG1n8ioe2mkaOmwr+9KQruhDhMKcDNnZC\r\nIzEXfRAl+qLFYRpN8fMg3TejnnqwysIgaqOLDNphPsV+lJdX0LYlEJsmOUzI\r\nS++6oyWifqPp84w8AdrDFRlg+7OFjayq3IzXhJ6skk9YFR4X4PAnO4P7LYG5\r\nx7ogsusKPPryacQE4sGdtWl1wAyLPXR7Egk=\r\n=eHtE\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.3.2_1657267246378_0.9734824941784224" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.4.0": { + "name": "puppeteer", + "version": "15.4.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "f0c28085c04e260b005d3b1fd4722ce0217fead9", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.4.0", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-wxJRbofjaycCaQ9fhABlToJobrjxlABiFi6NvdkOPVJMYFblxDlDTjkg+b6bZYi7xN+lEXn84GBZsA5DYb3wfw==", + "shasum": "31f043ee64cc4e1b5cbe99ad900653aab4afb186", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.4.0.tgz", + "fileCount": 531, + "unpackedSize": 3240009, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCmi9CL89PEtAnWXnBt3O25KVpWoBQCB5TjV/CBcFRWHQIhALS6KopbA6Oio2GymVHRdtVIFbzp7sQdnuoAy+HsAoNd" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizs6vACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmovaQ//fIGkjjgEAJZfppMVxB1eO2LBampZ4mQ3Ws2hLMnc6+Qxovr0\r\nLZ2gRn2u1cKfAYWYXLZat+SVdTCyM58XbvZR4YFwxOHqdbdXrqvlgKvx/lwZ\r\ndF9iAt8HLII2ZeaM8XK1EtoV1SwEAauPeXjkjUqYXBYPBYYz/2FyQV3MGySW\r\nPTNv8YcTlVRZsbF9B+m1VVsR6Mt6qMhthWEoPadiAIMgRpCwuyoW8IXWu7mp\r\nrAGwf9Ji1A495GOCg0RcgGPFCXJTvprQ+yaf3zSUSax5jYfew5xDEtQF8AF+\r\nNmUhcQtNA6uUakBhl9xhaKGzLwhdfAem7NcBbj1MpGrcsYpwfXRdNyGknT5k\r\n48FjWwibEzW9VCGUw4yBtiTqK19iepz1xYCke/GsX2Zb2K5pPUTh0TYIWpu6\r\n6jGQ9aHl+mZgv5a7CHg8+AHEJjKCBEhsmndGfSP8R83s3DYgMm5cLpTG2M5/\r\nAgdAqZzA/ySQD3Q7BKzCn+9BAHKh7hyHqaH2U4fd8//EUIAx/2ypzxMe8Z7g\r\nZxNHUo5TlRIrwdaZDA//d7lTnfXuwc8CmG8bTp8L8I3dVFY4dRzz53Yq8sMe\r\npytLFU/vr9tRq5Ddgdku6siONrxVsPUkv+aNDhVF50PHfHATYevWvPVZcVQ1\r\nuUB6uJxNFIHoNg6rDaQh/hYjkWoZ8db09KA=\r\n=mzhq\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.4.0_1657720494794_0.26695150943670165" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.4.1": { + "name": "puppeteer", + "version": "15.4.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "d734c14813f1b40b28136501c2088d342a3b62ef", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.4.1", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-sHzjG4HDK3bMoh+0V3innBJBAnJDkpep2Ul783KRgDcDzLvzmQYjq+KFTFdau0AeadoVXjIm7bAXxIdqKlqLiw==", + "shasum": "4729e7dbb920b6fdb73c72133b4e9a3d9d4b7c86", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.4.1.tgz", + "fileCount": 531, + "unpackedSize": 3240126, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIFXUXTWScF5PmjRpewSqm93E7M43AuyuPq3TWXxDEqZcAiEAsZZPYm68AYFMByuJR8oZoKdDMIgsD9BZ95EoAkQI/NM=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2QJvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJdA//S5yO/DZ99CDz4hkMZSg7LSZaMXrD1pCmjKtfYhyTwvvYl6yO\r\nct3OzJdUvs2yqbD7AL4kQFiiNGKJp2zwMuZODtmX/tCMZS8+HlhWea6UlU3S\r\ngQUCcjGQ2mTXAQ8LHNrXZdD9BqR6Bd26okW4HBF7tnprpPkfb45mYWNRV3Qh\r\nzYsOYCBKi4BRYzGUzIdeMfTmqGV1taW3N9ThUShGy+RxoLsvwDc146fXEIcI\r\nTBtHQxvvrCMppfXONiFtUYvltnKk04wmc3oPr6GVfPuYx39fTdaYWJsL+N8a\r\nblbfGBUWt9Ov4WHCvklLRf+bN7wJWY80M8jQERiiZqLIYc9GKsZuSH/xZwK1\r\npZuFUo2Q6jIiKQBSPhoYU25B6yuzaUY/DtzxIyAAYNhE6P6QUT8Pz+nt1j7B\r\nNRIoPUdjZvvgL2Ykwi19K2cCOKDhsU8jS/fABMCLnugV3R+gIgsyuEcJkmgr\r\n+aNibZcc0tzOJ4Aorgpoa3aoUlWRofm7GM+nM9REjg526A5Cr+YCfRgk3/cf\r\nkMawEznZwOm/5oSTdyjphv4NLi3CB6XSqkyQG37+fvpsHw7kcHtM6ZP5Ddf8\r\nmZLlTo75Gen15/y7lheaD3fULhTX3y/ig7IqUXHb7am1OOnJrlji9Okxel9T\r\nEdEwVX8KJBC6G6IrArLxXFvEyuiW1Kp6z6o=\r\n=Z7WC\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.4.1_1658389103477_0.3983720524728791" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.4.2": { + "name": "puppeteer", + "version": "15.4.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1011705", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "a43965a4b6870e6d12d5b9c4ebaa13ca7afb98e4", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.4.2", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-RIxzCIU8aJWh3ruc63xcByRYHPYJsXn4VbrrPtVQfMFcfYOnBqUeJ0CstDVv/NEZGpwozIPZBNU6zqY4zIn7vg==", + "shasum": "d61756844a9eea91e672ea6d9994aa939a23bdcb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.4.2.tgz", + "fileCount": 531, + "unpackedSize": 3240135, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDRoToddYetPSvkFAjCukrWOVwJAjdVytLYvpKCUpq+MAIgVVa06ffyTYRc0IrIHGcG3LV+lc7J97GLeKDj8k0sV7k=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2UXRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5CQ/8DPm77EYSGocssyYJ4LR3g9bBiNgqGqEEDo/ngR0yNiycA6D8\r\nKHfc4QMH90W7fcKWOma855PSiv9IAyeTwYAg2u9qz6md65kCXrDlOaC3DK0w\r\nqCbE+WRVsrVVbB3puubpbmB4ZVEAAHFmK89YIU+W4d6LC8TfI7IKtlKBhl3Y\r\nwC75FPWeS1bZgWoeJ3g/jSpjglmnaDBRqv/Ba2xwH/xUy0QEeBAk3f6lGA7f\r\nSwPCTGvNKIubS0RTSlcUGwNOk83Rft+BYLW2H3hq5qZA55evy6rrEICLfUXK\r\nZDNkHid+2fieLGnfyJ0yESGL2GI6HKV+5myISRzyb3WQaCuXGVrzfxCaU46s\r\nOOqVhUBG/hlgJ/9GwoMG/ltUgTMfmNbVr5QGukZ87oI62TqZvOfn4t486gVX\r\ngxo4t4uvMte6iPJ0gFQ6sWxAaBxIwPEeiqZEr7wIkHMih1ITy3UJ7fPwke3I\r\nYAxisDIZF4Sv1N1CvepaZMOGzEC4SlKyURt0hyK+sXw1O2Gr0xb78a5RvWuJ\r\nqmgLxpkPZziCCrWF5yP9LJeyTA5k36M7WnWD0/5s5tcbcQ9Iuvc+U/rUzKPZ\r\nxq+TtHTzkjCGoQD6xzjdiEhvw2W9255ti2hL/jhS0soaWzRIjMA1Taphiy0E\r\nn66m3cRS7Y5y19e4txGonw5Gkrxfg/BYszw=\r\n=PPEx\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.4.2_1658406353603_0.6112386745280731" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "15.5.0": { + "name": "puppeteer", + "version": "15.5.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 94 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1019158", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.0" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "a654607c747dac0f0adc95d94a3ff585a5321d58", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@15.5.0", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-+vZPU8iBSdCx1Kn5hHas80fyo0TiVyMeqLGv/1dygX2HKhAZjO9YThadbRTCoTYq0yWw+w/CysldPsEekDtjDQ==", + "shasum": "446e01547ba0f47c37ac2148e5333433b4ecb371", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.5.0.tgz", + "fileCount": 531, + "unpackedSize": 3240135, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDaPMKtswgx2Qw6H9xDeilDAETHxDc+rT3hFR8EfC3T2AIgPVmlaMDVl4Izy4kdtJKY76YIwHv7z5jgZLd7qmU6f/U=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2WJ3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpgsg/6A1aRwj3Rvng34KCTmdAHVGtZxsUHRQPtOmM+7DyRQc9WkhkB\r\nIIt1C8JSQA+VJ7BgXvYg8N1c/7IQzk9Hx4HMr14IuoWPSfvKVEcSem43Ma+j\r\nCIHjgPtE5s9b61FylY6+8aspZN6lM1d/HsR/sGv38FK/yhhJ0+gqkwCGbXWz\r\naVzOaX4zYAmiNUJW9b1gf85HAfEWzA2u7mR2yvfHNhE8m6UhpRHdIGP3hGrp\r\nGsK/Wl4O0snVVX8xkw3H4a6LZAAyOz5xnUUJ0FqAiQ3RvsAhXKCEPj2RP1fo\r\nOFsljTNrMIFNw8M6AZlJyE0ZrZr3peZ2Ry1J0cyGoscBd45Hn5co/UmZ9eSF\r\ndPB5a5F+1uZmT62MgUjFdI/vebzZmDZQhjrsx/R1hGeXDvgxtlQCg43E2Fl2\r\ndpp8qu2fXA8+97aHEX56Svh18rJc3ZsKV2x2a5PVsrDQpnL5ZNBApEw6fvqX\r\nrk+fQn/iPQljATPMpp6fh7oAIzWvAXMNaSSV1W3OX+LNanq3CtJBR2i8y1TH\r\n6KZ8zL8ZEj3G+Opoo7f1Xyni8BcjQNW6NDJfIRbAKnjRjWvvuE1G2FTkzc9M\r\nqA4VEvfq/VbMsYuyDUpHe2iUDigkJSrQC2c6qHb/O+coQUj8HZ9hsE1VVQ64\r\nHCZk17IlzPk0N5ZHqiibIlC6k8pYPE8xRsg=\r\n=kAs/\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_15.5.0_1658413687175_0.0008678823076313513" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "16.0.0": { + "name": "puppeteer", + "version": "16.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1019158", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "0c8bce13a2abdd38cf7dc02a9ecf4cc8489ecc67", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@16.0.0", + "_nodeVersion": "18.4.0", + "_npmVersion": "8.12.1", + "dist": { + "integrity": "sha512-FgSe21IHNHkqv1SiJiob4ANsxVujcINa4p3MaDEMyoZsocbgSgwYE0c9lnF8eoinw4id3vx4DOXwhFdOOwVlDg==", + "shasum": "9efb6cdb57e3e51cf060a33f6289e88200dd4672", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.0.0.tgz", + "fileCount": 555, + "unpackedSize": 3396461, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIDzHr7S8FHTaJd3uzVai4uXgEhQT92sX7E9o/xR7Ew3HAiB4bPDOpjwnCgKkOpsm0+mZZTLP7PQ+f4qbUgr79JiBhQ==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6h1yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFqw/8D6yYQ0HANmXQOidwl10pPDyXE4DLEz9DMDqX9FGUVG1sNVzT\r\nAtUYtFXY5Wny6AWFOClxv/rm5OWgY0pZ71+DgmVmXmXGgWsd7WutN7FhgXJw\r\nVINlCUouWqgKygOCb3EhoClGkpmC7hh3uUu3j/ztfL45ZWeEvq76wVEFIxM2\r\nd7XRcmKN0GT+FshPAMuva9etCWKRxUPNCcEusC7Sz6tU950zAIeAbotS0QXA\r\n9obV9oaWHPGGIr5q/2yDKjN7FNKChUR1VxOoeYqKG3BsAvs3OT4r040Ikk3r\r\nN69WBgD3NDp8XYDo2YowcFh1IVqNYGTN3m1HcplhcO2Sp8UNZZd9EAzG3BCj\r\nJXiGen9/7IZ/vMJ/asn5p091eE03TzrsyII4gVrk+4JqG2DMCP/sPmj+4en/\r\n2SH6xxlGBwgRfPvBdCn8P6iuhmyvBupl8mzKykXc7TEkSUufbqmNZcmycGPv\r\noJJZ6Yeu/L8sut9lKmkEmni3JiMbPQS1VcPJ2FL9OA18bsQFS8tqp3rtU43f\r\ntOSNDOCN/PMdjBu0Cn4qWAYg2gTIZmQ6WeiDVoXccBo0xPq0POkQF41ErQ1u\r\nHVhM/wZf5U2kyyYSSN5yft+YSdEmvFN5zs3xYS+khjfnRpWZJVhdoOcPMRac\r\n/P1OF2syhVyV3nMZarVLv722xx36rD1SwFI=\r\n=to8o\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_16.0.0_1659510130060_0.8702817193703554" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "16.1.0": { + "name": "puppeteer", + "version": "16.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "mocha", + "test:chrome:headless": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1019158", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.1", + "@commitlint/config-conventional": "17.0.2", + "@microsoft/api-documenter": "7.18.0", + "@microsoft/api-extractor": "7.24.2", + "@microsoft/api-extractor-model": "7.21.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "2.0.3", + "@types/mocha": "9.1.1", + "@types/node": "17.0.38", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.10", + "@types/sinon": "10.0.11", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.27.0", + "@typescript-eslint/parser": "5.27.0", + "c8": "7.11.3", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.16.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-mocha": "10.0.5", + "eslint-plugin-prettier": "4.0.0", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "3.1.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.6.2", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.21.0", + "typescript": "4.7.2" + }, + "gitHead": "2d5f216621b22da5becab4312dc7c82b88cf23db", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@16.1.0", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-lhykJLbH2bbBaP3NfYI2Vj0T4ctrdfVdEVf8glZITPnLfqrJ0nfUzAYuIz5YcA79k5lmFKANIhEXex+jQChU3g==", + "shasum": "06a32dc347c94642601017fbf83e1d37379b9651", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.1.0.tgz", + "fileCount": 555, + "unpackedSize": 3392947, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCO7q/YWWi9uZTb2bdXRbpsSFQ9Tw42V/A9qi3mNkEZngIhAK98vsGueEd76X8Hi1asdQiipgnJrqpWifL4MfdMt7Lo" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7oAAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqe6Q//Q4LX9BsnrA7uAhhBkhMfEkXuexbdYYTpg0EXFc2cE79BbSJB\r\nGHiU8UilZ9Zoc7C5b2q526UnBw6rDFNu7dSe7ufFEzFd4LJFCxpS3ghShEOt\r\nfwh496HpLgSXRfqNk4eS6rocAMGZlRFDsI7ZtsP7dtAa9BwYUmSYSzpZkRh0\r\nLsHxnb3dRWe//n0Qp+1VSzyXYNRUMxpUak1hrPS0mKKTdpsBkQRCK1GmznZ0\r\nuyt4mFrdFKdX6ONLnb5AUNgAtKtOzLajgbGVKcNaB/1tRK6LPHZN+A7xC8o9\r\nhqFh0uaZg3XWw/h2zcbAc3OBYVBsp7RAqgvjR5fI9wtbJdzCw1f9peU0HeT5\r\neDxHClOvWM/D7zCStbg1gKwR0HBWCF6Imljs2X5j7vDWo6pMkFBQ38IOJHMZ\r\nbCbKW//LyQrKNUUaqwvg/bgBc3hg49kCR/vOD7KSwZxOm/2om91CmsBjRCVk\r\nSy4S6xoobhvOEtGI5GkZY9eUjHHVOusEDYHwKJfGZuT+zfo1UvDLBv4DktVb\r\n2OmpU9209ItKgoBdZp2B1dPMxOEwnnm0MxmfCZ1OzWSBa5IjjLtc6/y0T8pf\r\nNydPYSaNAwirkr5pAVNuKWBEDDrw/QaLW5hwMTYE045MFsLkOwCSFSJPjuLa\r\ntYAiucVy8kTogCpwOoVL1Afy915Oy/zrtOc=\r\n=pTvb\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_16.1.0_1659797504124_0.008258013041073875" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "16.1.1": { + "name": "puppeteer", + "version": "16.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "cross-env HEADLESS=true mocha", + "test:chrome:headless-chrome": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "ts-node -O '{\"module\":\"commonjs\"}' utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "ts-node -s scripts/ensure-pinned-deps", + "build": "run-s build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1019158", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "pkg-dir": "4.2.0", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "typescript": "4.7.4" + }, + "gitHead": "a5f1078feb4930e3204279acaad18a2d8e64a326", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@16.1.1", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-lBneizsNF0zi1/iog9c0ogVnvDHJG4IWpkdIAgE2oiDKhr0MJRV8JeM2xbhUwCwhDJXjjVS2TNCZdLsMp9Ojdg==", + "shasum": "1bb8ec3b86f755c34b913421b81e9cd2cfad3588", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.1.1.tgz", + "fileCount": 555, + "unpackedSize": 3400686, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIBVIRFCE7Qy7Dat1VAblPBPcjKKyRKNsz961lSzdDQxqAiAnmCVv+LORrsuXkAEPO3RLrEuFSIbgwPoEwgBSlk3L6g==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+4cHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4rhAAikmFxScQJE6YVhTvDrs5AFDXGlpDjGbHd0VmYVJ9RFutkFgy\r\nzVzyzac8uoGLA/Rw9RgWX3nlP5CTkdoB08N1jD+9pgtWUeVPm1nyytSjF7YS\r\nWV9OIw1qyk3s8+Nn9Fl8enrq9YCRo8NFiAhvuT2bMra+L3bLz0lSSjJg0SIp\r\nM8X9Shs8R6yUbJbsKdxLZhNv9hXcemYxDE3jbNw5uHlyXwJqA1RoBQGn7/iS\r\n+ePejqgV6wmhSgpJdC19Sq1KltVpSHIJ2Scztu4X7hy/6LrM5AvrkYmdZBDo\r\n6vMG1BUTgcR5D/wVwav1R8rst5gYhJaHLof95N9qwL4V0Xi0BxS52+uwHhoy\r\nYjs4kXFuybdP+iWK9178QgY45YPGdXSWOw9gDaoBLjUzkwHQqHD2RCxmMMZe\r\nSxo3iL1tSPfXPmJhpDlnNeIwDdWHAT2rIRRApmdDvU3sacS3YvrQtWOkUjNG\r\ndBy4LbrT4MOM0rnPrwPS/BHiYW6D1l64/Jiai6RrnR0iUePj4RwxpCQkiv7r\r\nztWDrwUbJFR4ACBm948a74s1dVkWjzEsLEs3uJS0I6Mf/TH2OiDFz8nJ3Cx5\r\n1Tk9efc5ogxaE6J5btKmBeIAdl0ib26qd7AMEhoWBIrsxfvoiIP3KURt4fjc\r\nVZFKUz2R8ltI1WZN5ExHRTrfq/hcpPeN4TU=\r\n=KV17\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_16.1.1_1660651271261_0.8454760422786196" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "16.2.0": { + "name": "puppeteer", + "version": "16.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 mocha", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "cross-env HEADLESS=true mocha", + "test:chrome:headless-chrome": "cross-env HEADLESS=chrome mocha", + "test:chrome:headful": "cross-env HEADLESS=false mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "tsx utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "run-s generate:sources build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1019158", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4" + }, + "gitHead": "21cc961df9bba14a06c07e6c8e60744add4b8ee3", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@16.2.0", + "_nodeVersion": "16.16.0", + "_npmVersion": "8.11.0", + "dist": { + "integrity": "sha512-7Au6iC98rS6WEAD110V4Bxd0iIbqoFtzz9XzkG1BSofidS1VAJ881E1+GFR7Xn2Yea0hbj8n0ErzRyseMp1Ctg==", + "shasum": "3fc9cc0c461d3166a98562a7dcd0bf3424a0523c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.2.0.tgz", + "fileCount": 611, + "unpackedSize": 3469611, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC/A9SCYTPr384OA1UCXY5bcTiZFuKmSKyQQbGSRNudQwIhAP34+PZLl+QfxTgeRFYJd0mHukz4jwfQQQwLVXGtJS7O" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/0dsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTxg//fTTAUtHfNmdJdVV8RL9DmrnQQrFeh6uyq0Y896wwWN3LeGW0\r\nVJOWqNIg4HVJhG+koOiDBX0KV/BR67yBrWs9wNn+Bx7BPAwESXLzKqeki/KM\r\n/f4wlTjpSfrHXGFqfyxqryzjkaPsYM7ZP49J4u3jdE0xvrwbynihc5NXxn2P\r\neMacytnWINm8Ym2ig5ODXHrl3RkEc0bHEgdYyZrcxA/1jQPcBwUU72ROMPrr\r\nOeDkwJ53adrO0DY8E7iJB3m+e5COu+wdsTZ4ue/dJeXYH+aXV5xmvYjEqWOa\r\nYhDBnN//9hTKjvT2TdY6PtGKWMB3790qBI2vJmjKt+ZuHFGRZizYoomp3PCv\r\n5xdDdrDqxlIHA4WQNekg3xeQgaDCroIiWzxieQGO5FE8xWAEPcAgQ835m2E+\r\nYWkEwLQHDFtbMITDPr7WF/+RlGwzM1Px7eeaFEpxa6WfR4NSdz+hmnf0LCog\r\n1ps+uAuXf7qpZQ4FuMG5/o3wKEggkIGDE+w+2sfXYjr5AIZDuOeT8mu3IGx5\r\nVb2LXLQL9zY6hNj0B3P9nxcOL6gaCcZHIyVvXEbXUDqjoRRlmP9pDV2ZWkNG\r\narFt0S6nXi/PfcizItcCpb1jaASBb84whp80/Mmo7T4fJ/xV39hBs0oLOfFG\r\nWloZ5rsN00eefkR4hileGk0gsGdRgwC1QoI=\r\n=s51y\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_16.2.0_1660897132077_0.4730282143422335" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "17.0.0": { + "name": "puppeteer", + "version": "17.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "cross-env HEADLESS=true PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headless-chrome": "cross-env HEADLESS=chrome PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headful": "cross-env HEADLESS=false PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:types": "node utils/export_all.js && api-extractor run --local --verbose && eslint --ext ts --no-ignore --no-eslintrc -c .eslintrc.types.cjs --fix lib/types.d.ts", + "generate:markdown": "tsx utils/generate_docs.ts && prettier --ignore-path none --write docs", + "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "run-s generate:sources build:tsc generate:types generate:esm-package-json", + "build:tsc": "tsc --version && run-p build:tsc:*", + "build:tsc:esm": "tsc -b src/tsconfig.esm.json", + "build:tsc:cjs": "tsc -b src/tsconfig.cjs.json", + "build:tsc:test": "tsc -b test" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1019158", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4" + }, + "gitHead": "e2d9858b38f375aa44660e7aa05271f904aaedbc", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@17.0.0", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-T2rdzlPxnPezF218kywFP3O+0YI5/8Kl8riNUicGb+KuMyDTrqRjhSOSDp6coQ1T4QYPBARTFp4EMBepMOzAQA==", + "shasum": "85fea801a7b8b8c9e2913b1491e98c867be49a6b", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.0.0.tgz", + "fileCount": 611, + "unpackedSize": 3455684, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDI8KzQpW8ycE2497+Bf7vieU5UHgQfm6JGTAyKIdmwzgIgb/5aMoXuWkwoElpABVvRESPPkkN8Y9vuk2Zf8KN2odI=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDINAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpT1hAAjLQXWOomRwG5KAzPC9oOnLYkMVCKzEAovEAdkaNPpLC8vhtS\r\ng1E8mnfH8wXD28AuzVcZqj+Z46N7Z5BiSrvMLc1FcIrdAaysnxl2k5kfPJZv\r\ntUzAdAqOGPJl1ChJaatXBFVJ6hViVaRivvbMvN10/RQj81UJgBrW5FT6Kmqp\r\nYKrdW+jkE08gk1ZSeGQIx6Xr8DH3JCwHbl5Uo0OGAJSPJg7EZItd+VcFnrBJ\r\n33Dk3SsIplBJ7nTn6p4PNplBQx69aA8R5SgsP72EzwvNG04NvSBgwOa/Ikfd\r\nfwRIQL5SrP36u6YtUlZyP9rqIcSO/Coubt73P7wtsBwe5mFvb3PQDrAY+gBO\r\nmWV4JG17eZNhS3q2v/l1zCxg8NVY/9tPPCVZxjh9szrFDIIrkliJmAi4Gu1g\r\n9bULCz3frm6JZG20BrsC/lVq7GoBR8cxGrMhTSLwPQfJ9GZZZ8rS3AEOBrgJ\r\noHIHV6vCyb0+csMwnPvhiG+eCvW4Sy1arhHwnaPN033ekXdUjy3IY7nH2s/S\r\n/1o3+k2JNZ9B8AbE7zuoi9T+Z9llygoDeFE6DqR7zyFJ4hs6gI2ygKTAmpES\r\n84PTxzraCTCby4+ofn0kYOZG/jFlbeFbPA7khJFvBqA9omUSKB6M+4qXoUFX\r\nMBTVvie5Xmf5YXiazw7YMC/mU8CM8zDLVb0=\r\n=Lrh7\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_17.0.0_1661764416107_0.8880580959328033" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "17.1.0": { + "name": "puppeteer", + "version": "17.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "cross-env HEADLESS=true PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headless-chrome": "cross-env HEADLESS=chrome PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headful": "cross-env HEADLESS=false PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4" + }, + "gitHead": "f9e758e31d71c75458d2b60ce692b290c4c3a841", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@17.1.0", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-cPBHruFaUGNTekw0I8P6vBY4sV9gFyh3WjDDv0UzlwSSRQVSl+igcuPVqa7NKDjKccki9X1nVn6HalIqBoJz6g==", + "shasum": "27dfc629092a5ac1b6f6c30ec200c4147af2847c", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.0.tgz", + "fileCount": 611, + "unpackedSize": 3447680, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCnXUQ3Zf29F0UL/xeyNztNWAodmTW83rYUAvDgH6OZIAIhAPet91eisostx+WSTE6jIBZbfWtcjYT7lxA0X4KC5xg8" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEelOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqGjg/+LXT52Hrvc9dQsC4C6CEYlJ/RLzVXiUgDTo9qnkb+uo6RVPgR\r\ntS9MAkrnS/vXTRBwPTGeqtnn7b+XXDUdQnfLPQiFrKjL14En7Xrty/buXfLC\r\nCd5Jc0AwsyGNApvYhx9bd1hffpe3Tbh1te69iJIs2m/VEgsHx/N7NNtGbzOl\r\n+gf0VStw7xU5hUe/flC5CAJbggQJMRUdSsVuk17Tiksy7oR7Q6vykcxcszTt\r\n8qV+YEiKlLK/2HnNw2gFyrUlhuXYJWVB/lqX25HnDq0sPNXi4dgOet209wuy\r\nleMxPVTs3udSFt5yeJ3nn1b2WfKp88fE05ecYg2pv0NYPf02wKXahaqBNbQD\r\nCCfIMuAaxL4Et2j10/nu96RGwmYYY8QdLxqCK1wXfq4rn8jMCfQ2/WpJbQW7\r\n93Vb2N3TWuhB58goOO6Sdaz/jYBAAIWQY3huVAhs14VFUsf7jRX17B8BqTrX\r\n60uMinJwn89LekDatXGJ2pf/f/zrx19fsYZZwg1bPptR/ka/h7zFlLzelaHN\r\nDcQvqD3Fj0vccNDeWkuIgF94Iw8z6ZJM9vYIoFEcSuA8+MBi1i6JNCjxTg/v\r\nPDXoE3o4Ykd/MIbQwoT74aq8p0Be9pUDRmMOjZV3UEeF8gL6f3RB7BzoQR4C\r\nU/0j5lF/JfHdChcBUdQQ/isZmsIwo9N2UOg=\r\n=MYz3\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_17.1.0_1662118222317_0.9649153713837015" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "17.1.1": { + "name": "puppeteer", + "version": "17.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "cross-env HEADLESS=true PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headless-chrome": "cross-env HEADLESS=chrome PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headful": "cross-env HEADLESS=false PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4" + }, + "gitHead": "8e1c8b9be6be81b53e632d8143a6131d2ad0be5d", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@17.1.1", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-sOq3+q4UpKmAl/LxGvraMVe9GnhDkmQLZrRkFswpWp46Vz3dv79LylMwebo047/xIc9dlOi9VMrNN5yLafCpGg==", + "shasum": "e981b17e8edee72a7c7b676878040ce2ff1cc3d0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.1.tgz", + "fileCount": 619, + "unpackedSize": 3449240, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDYno+9dxkFe20+vtRoXkI0xHWlbS9m4OosIVIsDoDNtAIhAPnmne7AWAsC9tAnIvsu5udl5AdxDiT5CfQSQ/4Yy+un" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjFfDOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqIfg//cJ3o7AcIVgNTERjUHafGqWh+PUrjlZbm2tL06NxRWrgDcM/H\r\nabz9eVCtk6U+wvlM2s8phQnATdH7+CACk5vp9GUxzUB5HZq/BdKuxNxVgwfL\r\nsEsBQwYsNHHN675pLybTqgjIPe2HZedf2qeJ1ccW77USh5cSjUeRHS3ZpYfa\r\nCE6UYFFZneUn3dNJ4e0qC6/DxtP8VjfnKEPdPKUrVhtzae/B+lBNRBFoT7ub\r\nIt0/oCqX7PCFLD/uQkGhpH8+/QuiSIa1TuIIQppjsuW7vEY04tyQTo1CDIZ/\r\n3BBQTkO4sv9rOlDR66aWLjK5YGSeIVm6+/MX7GfLD970kjLLnF+Ehloedsyq\r\n5m9arrjRDKu10k2OAY7Qq6RQS4b/1fwTKagw8Uq3T+aDr0IaFmacHGg+WMsU\r\nYb65WWkP9ngkMTmVAiOajfxva2K0ddBT1XH8v5uNrYoZz4AuXxVcbuo3PCsT\r\nWtCeDgx2rawsKEl9U8CBRaLIOVvgniPJhUT04bzCfYz3lx5MBbV3TSFGiKAZ\r\nhHPCZUUOS6qrN+Wl4/txfzs4wqX0mENiF06zNO581AA6+68gArNoPc+PlPne\r\nx97ugenrFvdVvxI+jyyCOaITFFGVmVBLKbo53GF7ZqNBAn1DqrU9gmWv7kA/\r\nBc4Yv1s0usJ/1ZYC2tr/AjbYggAHCB1W0/0=\r\n=4n8q\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_17.1.1_1662382285969_0.03561858153471675" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "17.1.2": { + "name": "puppeteer", + "version": "17.1.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "c8 --check-coverage --lines 93 run-s test:chrome:* test:firefox", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "cross-env PUPPETEER_PRODUCT=firefox MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "cross-env HEADLESS=true PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headless-chrome": "cross-env HEADLESS=chrome PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "test:chrome:headful": "cross-env HEADLESS=false PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 mocha", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4" + }, + "gitHead": "0d2d99efeca73fba255fb10b28b5d3f50c2e20e4", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@17.1.2", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-xgFOxUl4hRjwQpODZSeJlE/rUzi8OmHtc3T4ir4CRYGzVmaTVHAl8VGpI0ooy752u2DFeMxvQdHmxNnLqPImIg==", + "shasum": "1e8ea8b0eee0e6afc5d95e2db6ae828a51ad63c9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.2.tgz", + "fileCount": 619, + "unpackedSize": 3451812, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIGTwT70VRvspYRG08h/Nue0RlzfEGKX9EJYRYHhQWKGBAiEAi1ACG/fZUfhQryRytqsZ7h2gUiOnF6q2ajrPhf+VbFQ=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGJqSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBVxAAiIblyg8QIj4BOEJeb604JHy6byvH58uIMfK2WsCDM5XfuVI6\r\nnrRm/nm/LJv6nVSqbiTbAWMWz1NbFfyqUTnyHvPS1ZqpxNkIss1A47vpzMCC\r\nLMF0gCDPMOlIcX0gvySEOHMAGeGf+LZ1RTiWYxNfOqtQyDZD4Q69XRXf0P9w\r\n7QhHl/w0j9+mlujrFcPgdOXc6yCZ4qPBEUPkvabfec0/of/cVXqfl5FSBVos\r\nkhouMb5rdJsB8RJrSM+D2Ws/ojt5/svq/xBz9Guc/8w3rC4DMqm/+MVE6KGS\r\nRReeHJBLHpfuRu4UrM2zMDdviHHhn0ShcYBe5SFpFZ3jZu2IBKSBU20l24Ln\r\ntTohv/tkli9kI9oRZ3qN/qvDTMMIfCUsrjOYCtRX1YHo4zEH3CGf8UGuw4lG\r\nJ+EYJlId2C9EYi+gDOPVhxqhJSbNGb9+0pdoR/nC47SIWoR1AVYmCGFnCXGJ\r\np/Azzp7JohrihSGCQiscjrGBgr+xL/CyWtvDjj+1mUmzR/vXSpVLiTEerBtk\r\nwWdIjLtkzONLP7Ho5wE+RcLk/TssXeycZiKcIPPPHro0EHP4HkWiVRM5uQ84\r\n/7oqSH7aY3H6exWS5dmtBUntG7XGAH6UzLfxir9rPjx/bZ7IkgE8WVDkdwj/\r\ntxrJ2L1cmLDY9ED2zV+ZL4pX3+8YTBD8JKc=\r\n=r4dg\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_17.1.2_1662556817840_0.6889091938008998" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "17.1.3": { + "name": "puppeteer", + "version": "17.1.3", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 c8 --check-coverage --lines 93 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "9b120f6c7be6f0001f0d2695cffae43b707cb29c", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@17.1.3", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-tVtvNSOOqlq75rUgwLeDAEQoLIiBqmRg0/zedpI6fuqIocIkuxG23A7FIl1oVSkuSMMLgcOP5kVhNETmsmjvPw==", + "shasum": "2814cf221925e19c681c69aa97401a68b30240c9", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.3.tgz", + "fileCount": 619, + "unpackedSize": 3452271, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEtZVdebWqr8Tmr51lBYHJZR0pHOqbq1D9zECvYBzVWOAiEA/+CVk8f3AGwnuUwvBNerrNSfswSt2IP4jt5xrhGOgVo=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGevZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqoOA/+Ic/tRjNecqIFdcErs57PhPWU3B612vwoE3WZgeQwedaPMY8W\r\nxt1eFBjkkqg+eXKEy2/X0VZ2emKGfUL6xZ+X5/ODIqDD+0tx8ck5JZ2acdON\r\nr3Tirux09ioRlCAQbmWZkh2fJfMlr+aMSGbnO+hPGAj0jXcA7ji0meU9Hul9\r\n4b7emO7eQbKwcNvro12lwKaN8vjSDGPu9/tMJshg+8yko4cd7d2oM1Tpy9rI\r\n6d0uLbe5W2dqleXqjx//dktiKmMdqCyJMnGDKEN9WyoS8tfQEdByW+nEsVxG\r\nwwvgg0OKKCN7KvPVK+vwVgraD/k/KYV4nOW+8eXe1LDIGT08FlFN4ZpV8nNP\r\ne562KbwgKcpL2IBrkygcTUfC7vddW6nAge2mqTJ2ly9S11jkwkOKh9ky+vK6\r\neRobCAmITM8LR3IkMt4gQ9sPodPcsizXtsCKHzWdnf8dXSjbGfGZExEmtPuA\r\n/X4oewi+J8AFecN2ToHPx95V7sVZg1zpTXpCdA664NVIwrHTzj3cYMkKFad2\r\nzjI71gojIOf/ALopGEuCjgrO0bg7isOSQw3hJ+zwEvjVcV+uIq1lRWsuuX4H\r\nWQkNjacs7DGpSxz8/0iKqZgyMaHoHrxxDPb2latkTkH0WRGFDt3xiw6/llyB\r\n4N0EKLRGCUcC1oi4623Y83sZJDVsjLdM5I4=\r\n=vpmT\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_17.1.3_1662643161143_0.76247511676676" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.0.0": { + "name": "puppeteer", + "version": "18.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "7d6927209e5d557891bd618ddb01d54bc3566307", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.0.0", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-g87rnbVwRbIJF3J2399jq7bic2TSJXxv6ysaPRi61pnwHf7eVm97YO3fEIldgVKWO/nxND192YWfhaeKjkcfOg==", + "shasum": "31cbd6b63ece4ca309da9698ae75755d300ffa44", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.0.tgz", + "fileCount": 707, + "unpackedSize": 3654221, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQD6f5VSneMwDqDDVP5u1V8/ZEnxnYvJFyfBErjYk3/kZAIgA9BgyPXimW6c74XqCR5MJkXTZb0ZURmAESgj5T0ICO4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKF+CACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCVRAAgyzVlli1Xkh5TXQ6P4PEGdkVca93sUagbYl+ItwZXhspOEoM\r\n4xWuuNmvbPGeeyS3zGmao33gxWzLegiPU4HfhZ0ts8k8MU6KP7fwpdPg7TaS\r\nS9gV5k31rv23R0q9miG2t4wakzHHoLLK1xXcbt1Wv603kbyaZWK/fdNNmJ8K\r\n4xxCEm6t9Fl1cQTsUgV2qUeVcIp+jQo7/1joj8Y7yXssm5IZE03lp5IyxZjW\r\nCiMDC1R5M5wf6jRXL5/IJq/bMAV42ey9ntgtOPIDjUiARMURigNxHkVu3qz9\r\nyhnNDHm8tENeF5qi5eEw2MitS2k7R8q6LuyWmNcz2Jbfb7OqmAFaFKlPoCMH\r\nDLEiyUag/IlProqHRMjEdS8uuK/NJw+GCCObg2y58XKFZUdZOzalnCO9wGYC\r\nOBzTjIksWA8EtOL67j83mZlTrdDhpHw5dcJkXUOSkoi2L/Ge7xSP9j6mnv6b\r\nBAoS8kxVysP1CdrYIObHT0GOH1CV15y7luoD3NyErXNkMpqqZFtmf4eFqZcN\r\ntVbadwSUBdz+A+FnCZVtZLS5zKr8Hg+c1KYj+FbyoHrEsqaSQEHpfV1UM7Su\r\n5qmuAlR1MzPj/oXX9fD2F0QAuN3l4i0Tq7swIy+0iupl+rdkWq69dmAbO2LI\r\nzl0I5qWrSZ8JHz32cZAMglO9H3JBbA1BrzM=\r\n=ymWR\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.0.0_1663590274452_0.9858812248757205" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.0.1": { + "name": "puppeteer", + "version": "18.0.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "882c7ce63e5fbbc44cfd32b18797ce493c27a6da", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.0.1", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-eMzQ50Jzz1Kj4W0eY+NE6VzJoqar6v3YZzqXp+xZQDqMvUxL2stXbf7pBQ0X0xpZ4iuwU83eqwExWXq8OOypHw==", + "shasum": "344b2c194e5d094496dfd92e3796abfc2fc1ecfb", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.1.tgz", + "fileCount": 707, + "unpackedSize": 3654836, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDL0QbvlYBJ6fxbvpHXzM7L6iAKP981tjTqz3zOeLMMAAIhAJ5md9WD8Vnpz2XiIL4ESm/Dz6iPbYvQE1jXmHYIkPpm" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKG/kACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWTBAAoA5iALDuLtARIkw1ipGShNz+dRLW5tP3sAnn7xkn+9SCSLNh\r\ntztl+aUX6qhIHikcXzILTWIbmJ7NmByOV+SDVEwOSVtv//yKsAJI2nPxhVGc\r\nkd2ceS53fUCJlK7AoRUohJqCx038ZuxragesK4HtlewhZAn6v5HexABu9vHa\r\nLImsu8a8FCDIv7bOmryWfBjmRWGH2to8U7ZM7PKSdRoBBJdQ1L7zByBUZNyR\r\n3cRRu49cX7A2Bc7ENSbyo//lXT2JaYgMcR4UgO1bEHbe9s1Id+11y3xsnU02\r\nQhS1MV4PUpEcVb4b7rKGnaw/xTcRkgFsP/v3YK0UCPR1WjuTc0h8Kj/RXkQ0\r\neTkl7gB0g0RNdijbb9aug1KOu2JHdWVQ/ngR/WcJ/0eo8oq9/B5+Eb4g58+R\r\nG0nWHkezR92jZDP5w8hKbr0Q3S3zEHOLXVJumYNs1B3n1yMxc2yZqzMzqNWt\r\nZWrDXDCzJJ+5M0QStSOsV0KGTGFqgYqO15Qt3NZhzAGF0NkZyf+cJGhGjv64\r\n7hKIkGTfjSovQOcLghCLqDA5nk97r2R0rtRfdvGqbYQla3dopoQmTF1vj6s7\r\nc2YQKQlshmQs5SUzOZsHJqjzgSoP44ZIgiZRVw7vOh/R6PpVkiBueMz693fH\r\n1001LM9uDz4f5asOsmBScE+lIH2AbGUB9Fc=\r\n=fFgV\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.0.1_1663594468511_0.6166554443349959" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.0.2": { + "name": "puppeteer", + "version": "18.0.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "c6912f3ecdc3b6cdc32d615a4d47b79120b77370", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.0.2", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-EdquaZg1n5IgZJzUc/EXDmtghJU6aCZJ/pl2onwL2g+cfG5HkxwSRVNKkDf76qTk3fMh1OUtqvAJMUJ+6HvYEg==", + "shasum": "caa908d58aefdbf4308f843c486d9925f9f77bd7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.2.tgz", + "fileCount": 707, + "unpackedSize": 3655418, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICJgwXA3ZgwBmoFdIt7CbAhw2xxw2qVCBDj5ANsC/DlHAiEAt+bK/yfMdn17aJ4Rn3eZoDLvkJjSQBrACDm/UHsdLGg=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKIYyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr66hAAjxWG/QmOvoQkzjgZYlQ6ifmSYVrQ03H+psPM/cBhSqo4i503\r\nXQTdMWRks6qw/0M58Z2eWB43Og2eJYq7BReaOjnGpjX6WWbOAFWmDRNVfVBU\r\nsEDRvGE5JmH5HX2qUcjCL9jfQ+SJdTufA9+6SdUhF5Em0kDsvDnFZRjIRw4m\r\n1lwuSfO8PPQtORVkqhdFSikXDmZnMV4F2+eImEHkf6NWc60RbyFpo10Q0kZp\r\nEDnIIFD2li4Hd8ZsJN6sj8Uwl9Pe0NBtQuvC20PuvF9+hSMbUtL7lZFRcUPT\r\nFak6lN0iFpJbg1Od/l7LP+LckNjBzybDjqGMqn73/6b5g1m/Q8rkNaq8yobe\r\n3F+lSturtzGDFOsmpvlOcvnvFTZ7Nt7eyUvmQQi6mCXMQBu1ZuZ/bRV5q+CC\r\ncR3ACyIVHsy1TGh0xE3OE4JcxqylRojJZH0lpg/J5D5cWLGJr2MJOZZXDleF\r\nIRr2LmWiPE4Otq6LlbY6Ff7Ggn4LgiLvzy9k5BqXJOO4zdWqHEdsnJRmNHmj\r\nHnqIzFW4BofDSRI4Vilasi9wuz95ty/YKKcXMlKuUf/+kzorKCHw7w1hUU7V\r\n7Uj0pqb0hcZGy9J1hEAGQYcsX2AV8zK4Mcs4xfI2ChFpS9WEvajcOSFtLQf3\r\n9W3g+trcCCb89wHumLBZZ1++0NmpZ91RerA=\r\n=6IY6\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.0.2_1663600178055_0.05130165553599264" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.0.3": { + "name": "puppeteer", + "version": "18.0.3", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "692b48ab0e35adf0ae037e9dc7d13bc67489de29", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.0.3", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-IiW4Zz0xbphl1lQEAB7grPucbk/aM+GND4aJ7I8gOzOSp7Ika1bz35maox4FbELpPL8sqXsVQRNrXQnzBMiCzQ==", + "shasum": "3f06b649d3ceef191318b8cb1193c1eaf23eba52", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.3.tgz", + "fileCount": 707, + "unpackedSize": 3653160, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDpMSiph+ELK7kCyPDbjbSyhY+l72SpUh3ZAXovEmwD8QIgaTZWueAnlqS2ypdMTdar+uFDMTaPsFj3IYVE0DUhVQ4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKX+AACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojuQ//eI4Q7nTNibGjMVRKS2v9/9NQkMK8+bIug/cwjGFIUirhsFId\r\nuW6bldmPsjLuuS3Vphyn5qTkfuxcP4G7AskJbpKPJYMpcf+dT3tk/pRuL656\r\nB57qiGS36Egg8o2i/WpQd96hVJbGiXzt27B5XWdR18WQra0uT/o7CzQdeQN5\r\n4tYVqlOZIK2av6aDhQydBrsd3Lw2wEfgpdoz5aW3Xc9A3gVd+UkWsv1xVg6g\r\na4EC3MCz6LmheP1/7VUv74OwK+Aiv6leIlhv2VXhMmDgztgS1P/i9uC53R7Z\r\n4fWdmP8iFrxj6bqeWlpwvHQsMWYb7DbQd4156tdEDbN0eg6qDLd1BHfU1bgc\r\n1Jsg99YSeEylpl7FA1N3RDtRZY9FMEJPziTqexERxufiaPG1VyMaoWVpgoyQ\r\nxrsOWwxijqZQs+JmIkTroVIvvrGvccp2JRhroR/2V8lzzyHsEi99MB2JtpSa\r\nSFgZ45O6/PYVilefpsaKQFAPcAjygPFfwxiN3dWBMDZyYwaBKwJEh5b7vaKb\r\n5Ym6L9klmfNUuNItiMWNolLI5OrKnfBXLTvxndRCCe2Q9/lSIIHACC5zfX6n\r\nBjNWinadbYMOPRyU5uJc7It2EzwWEGqvSjuilB29U0wHOjIG3CP+7de85eDl\r\n6wKgZkDFGexCfgFlUGwnr4F05gvEG8nS3Yc=\r\n=G1UB\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.0.3_1663664000622_0.7480663332649218" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.0.4": { + "name": "puppeteer", + "version": "18.0.4", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "37417b1dce60da8eefed107aa3aaee738a73fe1b", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.0.4", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-42WMdCu2wJdrkWijox/ZWsgNdv3+H+9xhLmiIl7KZIvDwMJWGz28HMgG1Ey5J6xb8wcwzjF9uI1Iw4UNyXXf5A==", + "shasum": "0fd8840840dde9147e7db4b2a796aa27f3ecf0ee", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.4.tgz", + "fileCount": 731, + "unpackedSize": 3874780, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDy4rre+2lfpyroHev0aCrwqmCzA7FhpnFNiMRXWL73SAIgII4yFs6TsqFr2xOigZtMmatZ5P04kFbsOHOtUID9Vk4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKs9oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYSw/+Por1e8VKXRVK+SH/CAlrJ1UVSfXsqSX4DaiwVuhMEZpaQRUP\r\naYTspfRK1w5sxJAGtxw/8mDPF2C8J+IOtpgmKVewswIWXHLyPrvKNuEYGEUB\r\nQOBBuHqFrJ0fSem/UOYZCFJpmRv3WE/bfHf/sV1e9XTcPrNGfUzIrlrdfDj9\r\nzVFeIRaZFrZrQN/pG/JTq05DhrPAd40mC3DwV75fbLHEp6TUe9VyIrVQX028\r\nsiyyr6NWEGFyZTlhHafUMZAmvd+6VV2Tg7+LepmMtvrgzX3bznTSdyGTY0WP\r\n99mb51Izn6Op/ht74BtFBj7SAEBIxuyclkKcVOpkNfNGZiVW+XGktJp1VOQV\r\nfweRG9jro2t9dklEQXo/O3kFfR71F8QFCt5q/rIt9mf//98Z9zE+R6PU/ajz\r\nobsLyGuI5mE4mNK9T+2FGRRTA+YEJiBjSlBgoflPGKjltuLiMtUnw/W7m8Co\r\nI2iZ415uExqPUYB+rZuoG39FXhVbwEmc0S6m5wsSJL8OBGOeWzvOtSLGO9hy\r\nFPLx0gCC0Yj/X9i0b+gd819pZqTwIn2pgbrE/HOGpu4rKL8qZcCFedqekLm+\r\n+UmRomBUbBED1KIkuHUTytGlzWHs3nFGbhzlgJFF/tB/W2xB3Ypt3HpsJZKP\r\nFlFPycj5k1Qsz1IOl4Xr5acmWlRrXb/YVzg=\r\n=1Gax\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.0.4_1663749992049_0.6298042957922942" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.0.5": { + "name": "puppeteer", + "version": "18.0.5", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env MOZ_WEBRENDER=0 PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "npm run test -- --test-suite firefox-headless", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1036444", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.8.1" + }, + "devDependencies": { + "@commitlint/cli": "17.0.3", + "@commitlint/config-conventional": "17.0.3", + "@microsoft/api-documenter": "7.19.4", + "@microsoft/api-extractor": "7.29.2", + "@microsoft/api-extractor-model": "7.23.0", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "7.2.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.1", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.11", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.33.0", + "@typescript-eslint/parser": "5.33.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.5", + "eslint": "8.21.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.16", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "mime": "3.0.0", + "minimist": "1.2.6", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.22.0", + "tsx": "3.8.2", + "typescript": "4.7.4", + "zod": "3.18.0" + }, + "gitHead": "ddc567a4b6b94fb888a01521e5f36a9efc5ebf51", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.0.5", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-s4erjxU0VtKojPvF+KvLKG6OHUPw7gO2YV1dtOsoryyCbhrs444fXb4QZqGWuTv3V/rgSCUzeixxu34g0ZkSMA==", + "shasum": "873223b17b92345182c5b5e8cfbd6f3117f1547d", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.5.tgz", + "fileCount": 731, + "unpackedSize": 3875044, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCICQH+qJn73z0lT+U9R6QhhuRGVsvFipgj3rCg28VjlewAiEA8PmtmScLHSvfzZGI1CY910I5uxEpUeOteUW0jorpttU=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLCGxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpG1Q/7BMGC6/N8AXIpsp968q5QzgHW6pU5MbrHfYBjQDhw1AP82Dw2\r\nZeXnVMqrO9jAIucnXx+AeCzMi1KjjvHzQgEljiQ8wE8EnQO78UulmW9HgNWN\r\ne4bwv9Lq3SN6x3r1wDyiZzSaodttRwyfotiUQ5JWL9wFwc51N4Tu9DZYfrGB\r\nITSJuZW5XkbIFgDX0AGOjMQct9Otj2zKl54aOY5rL7EkbA+ELV9Psp4B1/rh\r\nqt4D4d7gvIGIw8UwC7XyHbNftuhgww0cLWPBYkm9++AnypBmLpvMGnnO6Bfq\r\n6zgdtdjYB3yMZnjh1yBaYP6JViLQt6JM+4qsczETqyCMZQ3kKpM7A09jxrdu\r\nVnqSeudkUwyHTxrb/bIa9TNzWCWICvPWMX+Hqq2cGLLVS4MKbgqTaG3UylD5\r\nS6Z6bOtJOX6b4/T6r28DPTNACqzwhPjqKUvkchsdSIdE6wtNdca8crp1BmIJ\r\nIBRfRiFbj1PFye2XE2DLGojcOCIoFcHP/DvINfE6QkMTJ8JG3vkjJ7gCCYt9\r\n7+UFx4I9EUEEbVmpaYxKuPyiIevZKkd/TTFVg4INVGO8krGtnu6ZL5U3pkCy\r\n1H3nPOLRFSSde7bT1XGAd4LIhlFgNXXcZXF1hZRH2AZpFInqDs+cAL74ZiLt\r\nuM4qobCSTVuK5LAjT3QABilKHZzsKTlS0TU=\r\n=3dJb\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.0.5_1663836592542_0.40203111367083366" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.1.0": { + "name": "puppeteer", + "version": "18.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "types": "lib/types.d.ts", + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "test": "cross-env PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node utils/mochaRunner/lib/main.js", + "test:types": "tsd", + "test:install": "scripts/test-install.sh", + "test:firefox": "run-s test:firefox:*", + "test:firefox:headless": "npm run test -- --test-suite firefox-headless", + "test:firefox:headful": "npm run test -- --test-suite firefox-headful", + "test:chrome": "run-s test:chrome:*", + "test:chrome:headless": "npm run test -- --test-suite chrome-headless", + "test:chrome:headless-chrome": "npm run test -- --test-suite chrome-new-headless", + "test:chrome:headful": "npm run test -- --test-suite chrome-headful", + "prepublishOnly": "npm run build", + "prepare": "node typescript-if-required.js && husky install", + "lint": "run-s lint:prettier lint:eslint", + "lint:prettier": "prettier --check .", + "lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)", + "install": "node install.js", + "generate:sources": "tsx utils/generate_sources.ts", + "generate:artifacts": "tsx utils/generate_artifacts.ts", + "generate:markdown": "tsx utils/generate_docs.ts", + "format": "run-s format:*", + "format:prettier": "prettier --write .", + "format:eslint": "eslint --ext js --ext ts --fix .", + "docs": "run-s build generate:markdown", + "debug": "npm run build:dev && mocha --inspect-brk", + "commitlint": "commitlint --from=HEAD~1", + "clean": "rimraf lib && rimraf test/build", + "check": "run-p check:*", + "check:protocol-revision": "tsx scripts/ensure-correct-devtools-protocol-package", + "check:pinned-deps": "tsx scripts/ensure-pinned-deps", + "build": "npm run build:prod", + "build:dev": "run-s generate:sources build:tsc:dev && run-p bundle:third_party generate:artifacts", + "build:prod": "run-s generate:sources build:tsc:prod && run-p bundle:third_party generate:artifacts", + "build:tsc:dev": "tsc -b test", + "build:tsc:prod": "tsc -b tsconfig.lib.json", + "bundle:third_party": "rollup --config rollup.third_party.config.js" + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cross-fetch": "3.1.5", + "debug": "4.3.4", + "devtools-protocol": "0.0.1045489", + "extract-zip": "2.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "rimraf": "3.0.2", + "tar-fs": "2.1.1", + "unbzip2-stream": "1.4.3", + "ws": "8.9.0" + }, + "devDependencies": { + "@commitlint/cli": "17.1.2", + "@commitlint/config-conventional": "17.1.0", + "@microsoft/api-documenter": "7.19.14", + "@microsoft/api-extractor": "7.31.2", + "@microsoft/api-extractor-model": "7.24.2", + "@pptr/testserver": "*", + "@types/debug": "4.1.7", + "@types/diff": "5.0.2", + "@types/glob": "8.0.0", + "@types/mime": "3.0.1", + "@types/mocha": "9.1.1", + "@types/node": "18.7.21", + "@types/pixelmatch": "5.2.4", + "@types/pngjs": "6.0.1", + "@types/progress": "2.0.5", + "@types/proxy-from-env": "1.0.1", + "@types/rimraf": "3.0.2", + "@types/semver": "7.3.12", + "@types/sinon": "10.0.13", + "@types/tar-fs": "2.0.1", + "@types/unbzip2-stream": "1.4.0", + "@types/ws": "8.5.3", + "@typescript-eslint/eslint-plugin": "5.38.0", + "@typescript-eslint/parser": "5.38.0", + "c8": "7.12.0", + "commonmark": "0.30.0", + "cross-env": "7.0.3", + "diff": "5.1.0", + "esbuild": "0.15.9", + "eslint": "8.24.0", + "eslint-config-prettier": "8.5.0", + "eslint-formatter-codeframe": "7.32.1", + "eslint-plugin-import": "2.26.0", + "eslint-plugin-local": "1.0.0", + "eslint-plugin-mocha": "10.1.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-tsdoc": "0.2.17", + "eslint-plugin-unused-imports": "2.0.0", + "esprima": "4.0.1", + "expect": "25.2.7", + "glob": "8.0.3", + "gts": "4.0.0", + "husky": "8.0.1", + "jpeg-js": "0.4.4", + "lerna": "5.5.2", + "mime": "3.0.0", + "minimist": "1.2.6", + "mitt": "2.1.0", + "mocha": "10.0.0", + "ncp": "2.0.0", + "npm-run-all": "4.1.5", + "pixelmatch": "5.3.0", + "pngjs": "6.0.0", + "prettier": "2.7.1", + "rollup": "2.79.1", + "rollup-plugin-dts": "4.2.2", + "rollup-plugin-node-resolve": "5.2.0", + "semver": "7.3.7", + "sinon": "14.0.0", + "source-map-support": "0.5.21", + "text-diff": "1.0.1", + "tsd": "0.24.1", + "tsx": "3.9.0", + "typescript": "4.8.3", + "zod": "3.19.1" + }, + "workspaces": [ + "packages/*" + ], + "gitHead": "3aee641c3d5a96874990ee1ed28619dc4ed51a30", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer#readme", + "_id": "puppeteer@18.1.0", + "_nodeVersion": "16.17.0", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-2RCVWIF+pZOSfksWlQU0Hh6CeUT5NYt66CDDgRyuReu6EvBAk1y+/Q7DuzYNvGChSecGMb7QPN0hkxAa3guAog==", + "shasum": "7fa53b29f87dfb3192d415f38a46e35b107ec907", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.1.0.tgz", + "fileCount": 731, + "unpackedSize": 3875909, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCGeZSTbP0jzuDZHqjhTu5oR9jiRFWmHl587ChevTE6WgIgZrG3loYXAn+QiEDOyzLMm52kzNmXX4QUGHr0h5YgQYE=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPUHLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOfRAAj446aPiYjYQy22KJw4yrCATcFrpsk66UYgbujLXrfcVEVnxi\r\nj3sJPjV1dxJS8O+aNCyGRb+eGYJVSh7DLrxvE07sbGlwQApHJjSuViPPeuuD\r\nohGebF3QdoHVwQST8yHwBjTN0otDxeE3LN11caYMqfy+zttJ5cgB8xXjE6Ub\r\nWE4cz/V8JjV8YWPzMoR1PXASxnuGDaHoXXlCvCjz7GqHg22F6WowbCCZG/9H\r\nIfytdpGZJBivQIuS/3l4IPhNy7Lwvzl7OOYyHdPPv25mNQLnmnq46Flfjdka\r\n/4cn21hKUywhWz2tGB/lSoq6D7/eQfz2pHNpfsnkuomUTHiqDYXLS+e/2xzC\r\ngFsiQgZ3i380HsNPayw9C7F3vX+bs8K2007YmECD8jl8J5w6AE7b0Faj7SuF\r\nq3LBB+0gh/ZfrRj7TDqbQsXJYX4DgGJraCo4qLw8+TlvhykE1mvUAjMQlxG5\r\nVmb64nEr/TZGa3L3L3HAfOT4ZmiVEjzpvG8SXEtwG51T7/ovaxJ1k/g/D54Q\r\nwt1ESN5jnvf96HhisFGyUAql7MIEMjSyjBW9hgkxsND5sqTURbOVpCNaJ+VO\r\ngikmEI92O/UNbF+z8D2L6hmrtoNlBIIhAs8qgwbjQzZsG7D4JCmMbTTJygL6\r\nIHnoP/tMUf1A7W8u01agQ6uetRzm5r4KUKs=\r\n=4ksf\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.1.0_1664958923423_0.6044502824094535" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.2.0": { + "name": "puppeteer", + "version": "18.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js" + }, + "wireit": { + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "18.2.0" + }, + "gitHead": "a07ff121f0e1b70c4c2febb157d9ca5437f98d4b", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@18.2.0", + "_nodeVersion": "16.17.1", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-auxgcjcM7p7+2t6ga6izrrtks7Z1fl7Qv4Gwb9tvH0U0dnBYgbq8GxOZ5mDgSolWgN6NmfG2bxdfOPzc0yOfDA==", + "shasum": "11804d1ae2c83216089c0aaa5166b7ccef26dd0e", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.2.0.tgz", + "fileCount": 28, + "unpackedSize": 323522, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQCleM7mKEvwzFokIQOF1Szws4He08zRsIAz5ohS4GJMKQIhAO50pp55lPO/Ep/2xPTKEbEoUtNuDV0mi25q5Yg6Pr9M" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPaMMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqkNg/+Ncn8m9YUHeJlw1FsFBGTFQYRzaBvSTMr8V+PCIhpRZOUaLVF\r\nkggahhrTje3P+vWcYewL0qG3VLsZXOiLTwOnCBWUP4tOY+f+RAluw/u1tpuG\r\nywGlmppgl9FBTwG0f+GVIBZVhsKlbHa9tafAMkAo3hw7ttJfSs5Ea+Qkf4br\r\n8tqeA4r1VbQiOPoTRGpPQG4YIgJD8VleEnNxFgg8YRcd9fw/rU5+4chLaZnO\r\nYu7hFBmmBGB60K3qwl41UiEukEyRzhO6I4t3BPP9QXAHXM+3b6bhdohwGBce\r\nyvD7DBUxlpuWS8BC5Y+UdGGc0VMXTp8e6B4Ut+7AJ2A5x5ONyrW8iULau0nc\r\nD11jH1EoWqpkb/wQtglgT82L+EePxCHVKYMYG49CG2SPv0Deu7t3w3evusND\r\nwJzcK+9myTRNBdeTMJxn3yeWtLBu9/8lC/zK+HKwZ9YmnsFHA5SvqeX0JZ8i\r\nFTYFcQ14bKjoSaWNorDrwfFulXnyQd2A99aEni5hCx9iqtb3JqLgRqnCZnuy\r\nMpEdHFpBsZ+jrF2B2tImz/KroImCV+M93oaV2+j8LcdUPPt9wceWkC+l7EXd\r\nwfMv3qQviKwhyPBsF2TybdBU7SLzuXsD2TJR2bUHRX+YlmCExZMZcgTBKYFo\r\n/As2X/tN2LaK0AAsydAXuq13TGFdsfb4tKc=\r\n=UVAE\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.2.0_1664983819889_0.3160253108865083" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "18.2.1": { + "name": "puppeteer", + "version": "18.2.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "cp ../../README.md ./README.md" + }, + "wireit": { + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "18.2.1" + }, + "gitHead": "790afd14a8bde4d66391c77b395868cc426752f2", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@18.2.1", + "_nodeVersion": "16.17.1", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-7+UhmYa7wxPh2oMRwA++k8UGVDxh3YdWFB52r9C3tM81T6BU7cuusUSxImz0GEYSOYUKk/YzIhkQ6+vc0gHbxQ==", + "shasum": "08967cd423efe511ee4c6e3a5c882ffaf2e6bbf3", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.2.1.tgz", + "fileCount": 29, + "unpackedSize": 341237, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCIHBVFDI99F1NoPvosT/nFv9nsqO0b+wIpD00XPJhoVplAiAjySkdsUx6Cdgt/bQczGjzhyRweXTt+mS0UxIPe/rfHA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPrGfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrghA//QjmMTPn5d4fY5jOu4cQUXngQ/Gdy6aqUwLqAD5qzjVQoWrlE\r\nSeNK/5YXTNYfW1hGDLnF4IopuhAkOi/ae844aL1Qvzeo6FVqqEajCdh4x94K\r\nwD6HnuYZ9kMqVabM0UFK9UDfIE34H+/E04wrtCSV4BBfXnIzdLk+XDQSkCg5\r\nWLU4l3KaP3pwIYgQWAhz4++ija6gLZgxWzoOQkD+YJ+nVb8VbawrRwNXx8/3\r\nh1XAwn8x2kGVaWz6A0q9ZvwHxoYJnszrFQwlmjYZz9MTz4evCv6nd6Kj77dU\r\nP7eJEMbgZLAQgImJHtj2Jnh96qlrr/115cr1EayK/38xxpI6D61LamZ/o7wo\r\n2hmXfOsi3/Z3w7lRn77PLlhZKCSQMTH0p6VQMndWFX7YXfDpkxtq9JGdCe2q\r\n3H+8X2bO86ojRa4QumZGo+XBqxV2NAx0RZ0jq+f2S0tUEFyWIFzuDaHyxXqp\r\nHTzjBFE6wqsbps5pSpDWXoAP3g/CD4oTKxu9stHbrflwWhs23iAb7aOr46YX\r\nOM8Ikw3/a6T/Eiv23j6ni4Y18vX+nNMkMA3PWhyEN8avICkGteVLO9Bnk6O/\r\ndi92Xb/zrn0GjCikh6icMkdRgADOh+BC1bNC75uc5Pvm4ZqUWESSKvIwbpNp\r\nT14V5+gvr6FFVoR4DSCygzbvH4b9WuQfH4w=\r\n=w3SP\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_18.2.1_1665053087690_0.6034178209978707" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.0.0": { + "name": "puppeteer", + "version": "19.0.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.0.0" + }, + "gitHead": "dc66207f25eff5712575088ec87eade891ea1404", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.0.0", + "_nodeVersion": "16.17.1", + "_npmVersion": "8.15.0", + "dist": { + "integrity": "sha512-3Ga5IVerQQ2hKU9q7T28RmcUsd8F2kL6cYuPcPCzeclSjmHhGydPBZL/KJKC02sG6J6Wfry85uiWpbkjQ5qBiw==", + "shasum": "848986e6ecec37b19cd5a7327ad2fcf1f1cb83fd", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.0.0.tgz", + "fileCount": 29, + "unpackedSize": 338303, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQDIFFZidHymEs5dK9n5xAWIqXvEu5me+hpRunCkrZWciQIhALJsa3qimFBnO6ybLnGaDGfobR0rrJ2M4KgeVwrm8DoV" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSVzCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrK1A/+PcmLqmGADTO4lTZdS/LL0eODnXx1bmetILSsolkc64h8QSJW\r\nDLehGfNlAYmnczhy3BALQ/A/GRqdEMGwBVXs/lHZ5QwBRwsTJrBGPSMmWb5g\r\n6QnjJch5Yg9sVIILmLEo1KkAeyqrzAZ9bPqemJjSspdDHnJRCJNLITHo81ad\r\n3dHj22P9XAtI8JZkhEaFDFGkxhGabJVT2ASBo9Fl9B4U6TdcLG1Wbqk2AE/t\r\nTY+YUtbMBZvwK0D+bznWSbcIsDpu/76gqyAuCyZBY8xWlvtCmsyeE95J69bw\r\nb5Q2Va9mXNhztMwm4UTZVvWe9VLTs1fB+qWQ01zfaj47X48MYE0mgwJz8nw6\r\nwOcZ/eE0NcEBNUcLKsCxglXE6ZRu20V4ODTvEzWKbeafocU7VO+P57TFDSJT\r\nGUrS8wGNOb8NWhRmoa5WOpX7CBLehnMdtRkjn+qL7799lER0x0eTHPRk6Kzs\r\ndjx7gXR82YPK238zJM9Yp6y9mfQFTytABe/T3ZH48vG5HFISUo7J/KqzEdTb\r\nPxkIDXxLhNDOQ4v6x1PC+MJTrZidjs+j7sm8YNXY6jAZI6yL/Hde2zfPwGS2\r\nEusSl+gR43G7BPfiyCSibvJpw+10svrPnVNg7UOMVHRpbTJ4FM5/TM8Z7rhK\r\nTTJomiPibppRghKjkv6std7vUyZD6oP+g5Q=\r\n=wvqI\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.0.0_1665752257891_0.726950429048266" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.1.0": { + "name": "puppeteer", + "version": "19.1.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cosmiconfig": "7.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.1.0" + }, + "gitHead": "4bf338b26d6cceae2dc718074ed9839e905905f2", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.1.0", + "_nodeVersion": "16.18.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-UyJ5gz5JNjuFo6VJzIf+qDNjbSWGSoAMLuW990eErcrH6sZP85EbpLi6yG50euTMudxO/lsj4w1VNDNogHv6dA==", + "shasum": "96999e2adb3f6435fa01fd563665bd9dff375d49", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.1.0.tgz", + "fileCount": 37, + "unpackedSize": 351387, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIEBhWp9gNnx5v7UnRnIKNEH7bqs+P2PmYdpJfXzPNMQrAiEA63gTZa0WSwXereLcEaoYAK4X7gAaMPyY52ddZS/mTmU=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUqUPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmocAA/5AaFqhH9eF7B6ICYiW9nRkHYfY+0eGiwvH69LB5oPzUFYlKvx\r\ntrq/o0nRkBXtRuKuMF8qTwfJ2eMzzTJgknNY/kre04VaacjBbbtgyUIhpJdH\r\nvO++rU+hV7yv4gZ1qvqsNUpDJ9HRT0GrxbIvV1IhLuo5VIR7N6q9Hhgkh0eC\r\nemydSNsmvOAZdFA4GCtn6ptGoTx65m/CK8DuKWaSqHnoKDVQaRir/4xYlu9t\r\nZbA5epzsiWwKdHTsmuiaAHSDj9DLBdVPhZhInSHBRll19CwejZ8zB/nwLGOM\r\nl8GB6gPIeJAGCG/Dp7h+2vxHU1+3mmunqYjenXuSpOIhPTNNWst5fLzE8MS4\r\n0fSRrYeruIPPpBTKWyck+Cf4d+FKvKRLIgrbiQvk2CIW8+sPnyeHlN9uOAww\r\nAYFXdBSXNHK648JmEH2gHQjptTn4S4Uimp7pDU/919cqMQKHRn62ze2QzdFV\r\n62r5JfFQZajmnyrm4Fh9OT1340yJPcqZwKqiFCSgRemQjrt1hDzNJ4Sdj8Ag\r\nIaKva9nNDLC1oU3f+2LJrxZJB9fAjTya9tzpECvHqtNNULhWw8NNsbnvjEc8\r\n/EqItoy/JuaZ6PWyUtRi4IAl8J12qbg6Zz6lwOW9bJEIs9QwwM/9LBkHE/UC\r\nzxh8YpCSh+pk9XW819PA5idRjLt6NXmZ/hQ=\r\n=stdi\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.1.0_1666360591346_0.5787072363446779" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.1.1": { + "name": "puppeteer", + "version": "19.1.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cosmiconfig": "7.0.1", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.1.1" + }, + "gitHead": "b020c5746d74bc4cb831fa6b556099016a8630f8", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.1.1", + "_nodeVersion": "16.18.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-nyIytOp1mYagiVeKkWODuMAGJoeQkcGNy7utkm2BN2d2r90n1ezO1tM4ld2V3vpP4u2kGk20obqv/Lj0Icd3KA==", + "shasum": "1b1092babb58b484d1d4488cad2b549060fc5af4", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.1.1.tgz", + "fileCount": 37, + "unpackedSize": 356395, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEYCIQC7KXBG+ipXKIABv4JywYBOwCxn0EGos+1U9EcWNzmVWgIhALmbsxgslgQthKcxjILjILdhDxIlz/C6KeYaShaTX7lf" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVqQQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJhg//fcbjDl+MqbL4M/NssFBpLpU3Wi+dtTjuvGQl6527hhOyhRRb\r\nk+Nz4qYko6W6x/L+AslSe/P1YaMSicvu7UTVBu2wDHUKXdgAAeSduAEZNtie\r\nOugz3kgiOsfEv0DYQy/fMVqZhSq3lbuGeH0RaZOSRUKBR+1V51qjFi4s+xOD\r\nMu8qqd4pigTCnn+n3ypUBTkbl+UNF8bPyqKsowzN3x2404SHoBD1T+QzKtuU\r\nYBHrF5hKqtXHtmvgSDwe1pQTe86eJaEm25ySv/q/0TMLADRYmGt4ZC+ONQ2q\r\n40IQDXXoHOrh1p+1JrM8P5FYP94TzrBRRQReIc8b2ITpSUz5YdHsmEBpiXnr\r\nwhezcbKzSogzMP5mAmwOfs/1SfzFZf9CHni71Ogy7Wed6CuUlRBCWTUED0nC\r\ntCkPpgJPDBYfvHjE0eUnpZaUHBMY4y9LF9W79ar1ssyS7B3T8FRncmi9xUWf\r\nRuxadIlJDq7V7G2kAI41NbCqP+alZQYU9j7nJnxSe+SEw9x2AlH08A5hkkbK\r\nCMxfKeTEqgJHn6gjqEdHdzkBW6zRLGlcU5rdxkXSN78ZXN3bmXnnugMFmD0o\r\nvNZKZXl070Stj/Q1jumxyelymxV4EzmcoCuZY6P83Rv4FnIQxeVcQcNeTyc4\r\nNyjRd0D3wV53/mzvbAhA25aLPg2ilsPyXZ8=\r\n=8NyU\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.1.1_1666622480036_0.12415763577933947" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.1.2": { + "name": "puppeteer", + "version": "19.1.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cosmiconfig": "7.0.1", + "devtools-protocol": "0.0.1056733", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.1.1" + }, + "gitHead": "e78a4e89c22bb1180e72d180c16b39673ff9125e", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.1.2", + "_nodeVersion": "16.18.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-paX23NEpQRoJzz6g/q6A8PwSeAoa+WM263IFQL/ArJcyfotF1WvCBiZkzEcGD864Xm2rFvFuopBWYQjSBfeaQw==", + "shasum": "47b5fff531719fec77c20287754e4e897ab9e5c0", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.1.2.tgz", + "fileCount": 37, + "unpackedSize": 356487, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQDqYnHBvXeuuHeJSCvGhDeOKPr8yWBDbUdUciycpT0hiwIgJPi3nq5EB/YR6rDPIJBGm+72jTNJdjnYsoD3WDcROOQ=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjV+NPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmozOw/+NyWAWK3CDYXrGkBMk5HlTOeMmsP8y3gfXSLbPGLC0bqptx2Z\r\nPM1l2q4kpUQxNBTOTk+7MyXKltz4vAc+1Uk3jE8jvHCHX4cvE+bgtd/5XrLc\r\no18nlzG7b536SbjUcrxfnxT8taAwK8KzXVTvWEKdN/sEAYPJRcKNjEqy4xIf\r\nzYTGTpLNwl4T/4WxTz6QEI/U82YJmpZ4PS78EtOHyxsZwcT2O0QZ2oSIJtsm\r\nmlC2FUa/7T0XSUV+S6si7uybDqrfZQS/QDjf2qufqjZCG72iCzLljCY9cVb8\r\njWgjfhWUfUVjrMJzsxoVLYVYcCOr8eZjN1lw8lgFc7W2j5wtzT6WKKqW4tgM\r\ndR4RnsklJeJ7oBQB/l9/PGi3UnnIt7QL4uac+JQQCAVmfC+im3JgQjjBYHE0\r\nO/rKBFOe3BB40m9lfuRyiLs9ImknRqVfw6Fzm4HwDMdZsywxYsTaGtERhzOy\r\nVlCA3c0OPaCs6kMMDrkDKpTF3vBEkNs/Y81tvLWez32qsuxIcbmddHR23aR5\r\nd0sBhUG/y1R2oSfUdilyOpEwbzJsSLgcmcXMsd0ZOgb/5QmlxOT/RpUGacqv\r\n9i6kV9kxFhpzevQP3+LIW7xdyRBfnroH7zckw/mz36Q4F8yxj3QpPS+JMvId\r\nTpje8CiBsk26L75D52Mqx1stwDJivDCPWEM=\r\n=IC03\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.1.2_1666704207444_0.08539854252883727" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.2.0": { + "name": "puppeteer", + "version": "19.2.0", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cosmiconfig": "7.0.1", + "devtools-protocol": "0.0.1056733", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.2.0" + }, + "gitHead": "4ef83e0ee65c770f320ee913458708e17d49ab4a", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.2.0", + "_nodeVersion": "16.18.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-rhr5ery8htpOTikmm/wrDU707wtmJ7ccX2WLkBf0A8eYYpscck5/iz04/fHOiIRWMFfnYOvaO9wNb4jcO3Mjyg==", + "shasum": "6d39c6b6da4a648928d8dc736b864de493f175f7", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.0.tgz", + "fileCount": 37, + "unpackedSize": 356487, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCPAD/Cz9UR7ze5o0Y0r0KYlmEKxk6KI5jZDOqvts5kNQIgH6XxjlaospxXVWhrTDdAoOtFSeNVtMWWa+x7PEOcvm4=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWOfQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQYBAAjRDonrYWJhBF71jluGNR9L35S90KFnfffPQD7LfTMLW4ehBV\r\n0Mkao9jJugTqyaxBkqdtPO8zHV4aKjWC3AJQDEOb5w/WT73aqGgVVM8OiHGp\r\nm5tmBhoOv5GQPpF5mtR3anqsGqOFMZV4Sv1dlpHle5SvV8ZLHobue2yHul+V\r\nZDwequLyq7h3edP/4G+pzYUkN5o6toOJFUs4FLeFJuZrhnZCWaENssw1kda6\r\nCyIsv/Ii+avKXAGaJfmzeVwOGWDl03gpiY8VW/f7yL2Xcfd7DLB0p3uPHlVH\r\nIxYENBhq7DRZrRfH+sfhoQ05IbOSwYYmeQ+yFqb20bZPZI6C+S0nO3JsAXVL\r\n6/bpLy3jjs1ZqEHCTwKlCrxo0dD/zduu29lyiGjWrlC/TyFKqkchYBP4C/8E\r\nL6wS1/CRNsYAMOKEHn3vtNn6u58SQtfNfpAIQla2fc+hW0lJQ437CLa6ylXs\r\nxrA2Ef4XO+QN4HotspReBeYDizO8OX8nNW4qHU0mnP4XXQJO7he8wI7hOWNh\r\natPK/Fuy/m/uXEn1XT970kpKvuT5Lg124v4FHlZ/WZe4mRrLqS3ninkl+vv6\r\nH/OajmTrCcDkpnEYIBWP+OW/Q/xTY9FvaO32cWV1p2L2xLLful5Awtp1h7+D\r\nVUATL3CZ8yIQuO2Ai9SIhmA85DTIStZztvo=\r\n=2WXj\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.2.0_1666770896165_0.6856066649351218" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.2.1": { + "name": "puppeteer", + "version": "19.2.1", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cosmiconfig": "7.0.1", + "devtools-protocol": "0.0.1056733", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.2.1" + }, + "gitHead": "a9bde8e726b02dc54b33718cddfbff1edb6dcd78", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.2.1", + "_nodeVersion": "16.18.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-LwChdWDriDdegEZC36+kZRqq+ApI3zGni5dJrx3LVbt1+2AO4LPeYNI1MDz8MsrxB74IaV8/5eGtKLxOCg/wLw==", + "shasum": "5c836071027767a99639aae2206103589a2b3bfc", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.1.tgz", + "fileCount": 37, + "unpackedSize": 356474, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEQCICzwxasGcl/xCaNQso9AnCSu0xqCE/YJeEh4jeIJlnlQAiANmNAjgUyVsYdKH5lAiwiXknmy3l3ZGZgvBtECqh7gfA==" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYkssACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnNw//RzmONxj7FiuQWcEVqOtgXSXdFhBZ7dMn+rzJ7+0dUOqc9v1V\r\nT2JqdJ27tjbpkRkIdLh+guDLAV9jxDgtEFQrsuk6rRK0qIRdYa5WZudXwfmR\r\nb6rna9DqALhB9bX5juYdS8AwnuHhPdegK9UzZ5ksCelokNiz+FpMbhgksDzr\r\nRcvKuNkCGWi9dhC+Ya7ut2FlFhp4tOkfbXksLvNtHtlMGoCOGiiCX44qlOHC\r\nB0lzS4JQlNxhk/K+4OYd9+KHyE7REe7QX5yUTE1qFQgjbR1cm5Df+nKaZY3e\r\nGZDBpYqDNLymG2nveA6qEdxc4sMHvW0fiZryA7sKl8YosbFIHlvOefaWcZjB\r\n7+x5WR/HogxOCwGKlQHuAZN/488t3kq10yS4ldUfQP8ZkDvnxKVpP3V/81cZ\r\ndeinWN98Qw9m4teDEh2XiyRgYZAZ8NNNzCNBWovPgbvotJmtkSPmaIDY8wQV\r\nMe8BW60OsjVoo0BXSL3rs57kqkiYbYz0xJtcrxFuzTpFLYuSVLhyP5Fp9UPC\r\n8CUUE4DW7YOJp1EAt5H/dSBK09n0YVy/i5hFPn0wswINBFum5aeNGHj4HMPv\r\nwO+daOflOthU38LtmejjHG5Eq5dkJFGzcYTsRrUy/Id+7LBTUpwQH8SmULeG\r\nomn2ZRgAEXVry/BJYWMUqhLgIAMTpkC9ZpI=\r\n=Iu36\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.2.1_1667386156380_0.6722624874630163" + }, + "_hasShrinkwrap": false, + "contributors": [] + }, + "19.2.2": { + "name": "puppeteer", + "version": "19.2.2", + "description": "A high-level API to control headless Chrome over the DevTools Protocol", + "keywords": [ + "puppeteer", + "chrome", + "headless", + "automation" + ], + "type": "commonjs", + "main": "./lib/cjs/puppeteer/puppeteer.js", + "types": "./lib/types.d.ts", + "exports": { + ".": { + "types": "./lib/types.d.ts", + "import": "./lib/esm/puppeteer/puppeteer.js", + "require": "./lib/cjs/puppeteer/puppeteer.js" + }, + "./internal/*": { + "import": "./lib/esm/puppeteer/*", + "require": "./lib/cjs/puppeteer/*" + }, + "./*": { + "import": "./*", + "require": "./*" + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/puppeteer/puppeteer.git#main" + }, + "engines": { + "node": ">=14.1.0" + }, + "scripts": { + "build:tsc": "wireit", + "build:types": "wireit", + "build": "wireit", + "clean": "tsc -b --clean && rimraf lib", + "format:types": "wireit", + "generate:package-json": "wireit", + "generate:sources": "wireit", + "postinstall": "node install.js", + "prepack": "wireit" + }, + "wireit": { + "prepack": { + "command": "cp ../../README.md README.md", + "files": [ + "../../README.md" + ], + "output": [ + "README.md" + ] + }, + "build": { + "dependencies": [ + "format:types", + "generate:package-json" + ] + }, + "generate:sources": { + "command": "tsx tools/generate_sources.ts", + "dependencies": [ + "../puppeteer-core:build" + ], + "files": [ + "tools/generate_sources.ts" + ], + "output": [ + "src/types.ts" + ] + }, + "generate:package-json": { + "command": "echo '{\"type\": \"module\"}' > lib/esm/package.json", + "clean": "if-file-deleted", + "dependencies": [ + "build:tsc" + ], + "output": [ + "lib/esm/package.json" + ] + }, + "build:types": { + "command": "api-extractor run --local", + "dependencies": [ + "build:tsc" + ], + "files": [ + "tsconfig.json", + "api-extractor.json", + "lib/esm/puppeteer/types.d.ts" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "format:types": { + "command": "eslint --cache-location .eslintcache --cache --ext=ts --no-ignore --no-eslintrc -c=../../.eslintrc.types.cjs --fix lib/types.d.ts", + "dependencies": [ + "build:types" + ], + "clean": false, + "files": [ + "lib/types.d.ts", + "../../.eslintrc.types.cjs" + ], + "output": [ + "lib/types.d.ts" + ] + }, + "build:tsc": { + "command": "tsc -b", + "clean": "if-file-deleted", + "dependencies": [ + "../puppeteer-core:build", + "generate:sources" + ], + "files": [ + "src/**", + "compat/**", + "**/tsconfig.*.json" + ], + "output": [ + "lib/**" + ] + } + }, + "author": { + "name": "The Chromium Authors" + }, + "license": "Apache-2.0", + "dependencies": { + "cosmiconfig": "7.0.1", + "devtools-protocol": "0.0.1056733", + "https-proxy-agent": "5.0.1", + "progress": "2.0.3", + "proxy-from-env": "1.1.0", + "puppeteer-core": "19.2.2" + }, + "gitHead": "30e5b1a58edb8b1d94acdff00d64c76e76cf02a3", + "bugs": { + "url": "https://github.com/puppeteer/puppeteer/issues" + }, + "homepage": "https://github.com/puppeteer/puppeteer/tree/main#readme", + "_id": "puppeteer@19.2.2", + "_nodeVersion": "16.18.0", + "_npmVersion": "8.19.2", + "dist": { + "integrity": "sha512-m1T5Mog5qu5+dMBptWYTn6pXRdnFbydbVUCthqwbfd8/kOiMlzZBR9ywjX79LpvI1Sj+/z8+FKeIsjnMul8ZYA==", + "shasum": "e6f7bc089ac9bffea78b2f792bf3affd93e16803", + "tarball": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.2.tgz", + "fileCount": 37, + "unpackedSize": 356474, + "signatures": [ + { + "keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA", + "sig": "MEUCIQCnE4b98r3z7pNbQ5Az6t3Fzzvx4LXFFQAHhGPqb8QCmgIgNkFcbaoJ2BCvOtOWAUFCjGRdq5mjDGBaD8O7umbjVbo=" + } + ], + "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjY5o1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4phAAh8tx6NFZ6kh5YLr5JmrYcehNhvy3GxnU+96C/WXgrhC7szMk\r\nPObatCWEBqr5oZV+KfTfLv9XXQUtIIZ5CBuOaHt4UsY111RYNeDLYmU9D1Lh\r\nL92im0zh8yBoRcnaotS6lFx3rdl9Az+1ZEUU35y+We3ID1V6NhyVBtzCC+kJ\r\nKRq9bQdMJSnS2sdlkxdN7n7W4W4svWP0vLJtjXgVfblY6PC+h8b4H4zskkh0\r\nQlKX7y5jok7lL1Aa04xG7Y0287JZi2SmE4kevcMRJMHwQkkYdmsge3yuHenO\r\nXqVZ65sbCkdsSBJfznvATtCfPyTcg2cceoUpMmWBy519x8NdLa3InnmE8ASH\r\nuhIrFmpbUnvayt1YUVR+edBpGecyj7WrPPNu30+PImF6Fc9blQrm66cqALM/\r\nKYTHAL13tKauJleTmN2Fuj6jSjgDLGXzlGdEKX7YrIfap0M67C/Uvcn4kTtB\r\niuYT1bTo4/jvoPUMBGPRZkpvRbK9h6xTUiKSNQ6WaFuxKj7pPYbVYZa/2ktb\r\nqr23WKKQtyNcfXQpwl9Uixe8++J42JV9h/j6CXZSW6UcHzMzzN7luBHSZcIt\r\nLxIsBUR+wbeGdxlQNduk31sCrH0uu2u1MLvRnI4g1rlQ1qEVppe6tkOensQ9\r\nh/JGf6hIpwjdSA8//g9JIhjM24UbjErQjmY=\r\n=3MrH\r\n-----END PGP SIGNATURE-----\r\n" + }, + "_npmUser": { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + }, + "directories": {}, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + }, + { + "name": "google-wombot", + "email": "node-team-npm+wombot@google.com" + } + ], + "_npmOperationalInternal": { + "host": "s3://npm-registry-packages", + "tmp": "tmp/puppeteer_19.2.2_1667471925667_0.6859932612739823" + }, + "_hasShrinkwrap": false, + "contributors": [] + } + }, + "time": { + "modified": "2022-11-03T10:38:46.005Z", + "created": "2013-03-23T01:44:47.039Z", + "0.0.0": "2013-03-23T01:44:48.111Z", + "0.9.0": "2017-08-16T15:24:41.336Z", + "0.10.0": "2017-08-25T01:17:29.068Z", + "0.10.1": "2017-08-26T02:43:27.787Z", + "0.10.2": "2017-09-02T04:04:52.227Z", + "0.11.0": "2017-09-21T05:47:11.714Z", + "0.12.0": "2017-10-14T16:56:25.974Z", + "0.13.0": "2017-11-11T02:24:56.507Z", + "1.0.0-rc": "2017-12-28T22:31:49.054Z", + "1.0.0-next.1514510476874": "2017-12-29T01:21:26.173Z", + "1.0.0-next.1514951743425": "2018-01-03T03:55:55.857Z", + "1.0.0-next.1515022965203": "2018-01-03T23:42:51.854Z", + "1.0.0-next.1515032607003": "2018-01-04T02:23:37.178Z", + "1.0.0-next.1515061835903": "2018-01-04T10:30:49.360Z", + "1.0.0-next.1515092222354": "2018-01-04T18:57:17.126Z", + "1.0.0-next.1515094434782": "2018-01-04T19:34:07.865Z", + "1.0.0-next.1515095370840": "2018-01-04T19:49:42.411Z", + "1.0.0-next.1515096688553": "2018-01-04T20:11:43.652Z", + "1.0.0-next.1515102886297": "2018-01-04T21:54:59.560Z", + "1.0.0-next.1515107202232": "2018-01-04T23:06:53.551Z", + "1.0.0-next.1515176243781": "2018-01-05T18:17:32.919Z", + "1.0.0-next.1515449879873": "2018-01-08T22:18:14.407Z", + "1.0.0-next.1515453229229": "2018-01-08T23:13:59.085Z", + "1.0.0-next.1515460930569": "2018-01-09T01:22:22.458Z", + "1.0.0-next.1515463858907": "2018-01-09T02:11:10.803Z", + "1.0.0-next.1515463970965": "2018-01-09T02:13:00.852Z", + "1.0.0-next.1515544418139": "2018-01-10T00:33:47.486Z", + "1.0.0-next.1515546200351": "2018-01-10T01:11:28.981Z", + "1.0.0-next.1515552562439": "2018-01-10T02:49:32.136Z", + "1.0.0-next.1515563875372": "2018-01-10T05:58:06.419Z", + "1.0.0-next.1515567769425": "2018-01-10T07:03:01.624Z", + "1.0.0-next.1515568144024": "2018-01-10T07:09:16.279Z", + "1.0.0-next.1515618391320": "2018-01-10T21:06:44.186Z", + "1.0.0-next.1515641713768": "2018-01-11T03:35:24.121Z", + "1.0.0-next.1515659454855": "2018-01-11T08:31:07.822Z", + "1.0.0-next.1515702182453": "2018-01-11T20:23:14.898Z", + "1.0.0-next.1515707096515": "2018-01-11T21:45:10.154Z", + "1.0.0-next.1515712659552": "2018-01-11T23:17:50.316Z", + "1.0.0": "2018-01-12T03:51:29.954Z", + "1.0.0-next.1515733912424": "2018-01-12T05:12:05.628Z", + "1.0.0-next.1515745145135": "2018-01-12T08:19:18.637Z", + "1.0.0-next.1515786200433": "2018-01-12T19:43:31.691Z", + "1.0.0-next.1516189923095": "2018-01-17T11:52:14.904Z", + "1.0.0-next.1516255441715": "2018-01-18T06:04:14.377Z", + "1.0.0-next.1516339380944": "2018-01-19T05:23:12.160Z", + "1.0.0-next.1516339397474": "2018-01-19T05:23:34.236Z", + "1.0.0-next.1516340514293": "2018-01-19T05:42:06.027Z", + "1.0.0-next.1516351540753": "2018-01-19T08:45:53.929Z", + "1.0.0-next.1516663116955": "2018-01-22T23:18:48.144Z", + "1.0.0-next.1516666407998": "2018-01-23T00:13:37.532Z", + "1.0.0-next.1516668517979": "2018-01-23T00:48:50.133Z", + "1.0.0-next.1516669982697": "2018-01-23T01:13:13.946Z", + "1.0.0-next.1516857257758": "2018-01-25T05:14:31.017Z", + "1.0.0-next.1516857487583": "2018-01-25T05:18:19.188Z", + "1.0.0-next.1516920787679": "2018-01-25T22:53:24.388Z", + "1.0.0-next.1517036516784": "2018-01-27T07:02:08.290Z", + "1.0.0-next.1517354775230": "2018-01-30T23:26:31.665Z", + "1.0.0-next.1517441618294": "2018-01-31T23:33:52.138Z", + "1.0.0-next.1517443479601": "2018-02-01T00:04:51.353Z", + "1.0.0-next.1517859708863": "2018-02-05T19:42:00.758Z", + "1.0.0-next.1517864102118": "2018-02-05T20:55:18.543Z", + "1.0.0-next.1517870791213": "2018-02-05T22:46:48.515Z", + "1.0.0-next.1517871038246": "2018-02-05T22:50:52.578Z", + "1.0.0-next.1517871611925": "2018-02-05T23:00:24.304Z", + "1.0.0-next.1517871854711": "2018-02-05T23:04:26.856Z", + "1.0.0-next.1517875514795": "2018-02-06T00:05:26.722Z", + "1.0.0-next.1518024831019": "2018-02-07T17:34:04.717Z", + "1.0.0-next.1518042185396": "2018-02-07T22:23:20.557Z", + "1.0.0-next.1518044651367": "2018-02-07T23:04:26.110Z", + "1.0.0-next.1518069662486": "2018-02-08T06:01:14.321Z", + "1.0.0-next.1518069677340": "2018-02-08T06:01:30.320Z", + "1.0.0-next.1518148905595": "2018-02-09T04:01:57.185Z", + "1.0.0-next.1518485242743": "2018-02-13T01:27:33.951Z", + "1.0.0-next.1518548577113": "2018-02-13T19:03:13.632Z", + "1.0.0-next.1518550112236": "2018-02-13T19:28:45.721Z", + "1.0.0-next.1518558601182": "2018-02-13T21:50:16.482Z", + "1.0.0-next.1518559525177": "2018-02-13T22:05:41.186Z", + "1.0.0-next.1518561730306": "2018-02-13T22:42:26.306Z", + "1.0.0-next.1518570822451": "2018-02-14T01:13:54.153Z", + "1.0.0-next.1518653466440": "2018-02-15T00:11:23.669Z", + "1.0.0-next.1518655197185": "2018-02-15T00:40:11.411Z", + "1.0.0-next.1518659629421": "2018-02-15T01:54:03.303Z", + "1.0.0-next.1518730236759": "2018-02-15T21:30:47.138Z", + "1.1.0": "2018-02-16T17:18:20.238Z", + "1.1.0-next.1518809287189": "2018-02-16T19:28:21.051Z", + "1.1.0-next.1519262100584": "2018-02-22T01:15:13.823Z", + "1.1.0-next.1519266285104": "2018-02-22T02:25:00.858Z", + "1.1.0-next.1519345518390": "2018-02-23T00:25:29.004Z", + "1.1.0-next.1519350670048": "2018-02-23T01:51:20.464Z", + "1.1.0-next.1519355295259": "2018-02-23T03:08:27.882Z", + "1.1.0-next.1519355543971": "2018-02-23T03:12:35.639Z", + "1.1.0-next.1519424108630": "2018-02-23T22:15:20.121Z", + "1.1.0-next.1519430203926": "2018-02-23T23:56:56.851Z", + "1.1.0-next.1519449884398": "2018-02-24T05:24:55.663Z", + "1.1.1-next.1519451217463": "2018-02-24T05:47:08.102Z", + "1.1.1": "2018-02-24T06:09:06.794Z", + "1.1.1-next.1519455879191": "2018-02-24T07:04:52.209Z", + "1.1.1-next.1519675964105": "2018-02-26T20:12:55.651Z", + "1.1.1-next.1520401889860": "2018-03-07T05:51:41.947Z", + "1.1.1-next.1520401938885": "2018-03-07T05:52:30.338Z", + "1.1.1-next.1520415469395": "2018-03-07T09:38:02.098Z", + "1.1.1-next.1520879814994": "2018-03-12T18:37:06.377Z", + "1.1.1-next.1520894418677": "2018-03-12T22:40:30.118Z", + "1.1.1-next.1520952323905": "2018-03-13T14:45:37.009Z", + "1.1.1-next.1520952444105": "2018-03-13T14:47:40.478Z", + "1.1.1-next.1520953767679": "2018-03-13T15:09:46.882Z", + "1.1.1-next.1520958529908": "2018-03-13T16:29:05.869Z", + "1.1.1-next.1521058223243": "2018-03-14T20:10:39.236Z", + "1.1.1-next.1521075426851": "2018-03-15T00:57:19.477Z", + "1.1.1-next.1521139956274": "2018-03-15T18:52:53.940Z", + "1.1.1-next.1521148059100": "2018-03-15T21:07:55.213Z", + "1.1.1-next.1521151010194": "2018-03-15T21:57:04.862Z", + "1.1.1-next.1521163270821": "2018-03-16T01:21:25.385Z", + "1.2.0-next.1521166881791": "2018-03-16T02:21:36.176Z", + "1.2.0": "2018-03-16T02:22:34.466Z", + "1.2.0-next.1521223510564": "2018-03-16T18:05:29.389Z", + "1.2.0-next.1521239766470": "2018-03-16T22:36:25.967Z", + "1.2.0-next.1521514943168": "2018-03-20T03:02:36.239Z", + "1.2.0-next.1522268068681": "2018-03-28T20:14:44.800Z", + "1.2.0-next.1522268477499": "2018-03-28T20:21:29.876Z", + "1.2.0-next.1522280204510": "2018-03-28T23:36:56.866Z", + "1.2.0-next.1522345485546": "2018-03-29T17:44:59.473Z", + "1.2.0-next.1522345707169": "2018-03-29T17:48:39.687Z", + "1.2.0-next.1522346209003": "2018-03-29T17:57:02.455Z", + "1.2.0-next.1522357005652": "2018-03-29T20:56:57.462Z", + "1.2.0-next.1522358202204": "2018-03-29T21:16:54.820Z", + "1.2.0-next.1522369666407": "2018-03-30T00:27:57.411Z", + "1.2.0-next.1522432314513": "2018-03-30T17:52:08.098Z", + "1.2.0-next.1522438832236": "2018-03-30T19:40:46.274Z", + "1.2.0-next.1522776506144": "2018-04-03T17:28:37.908Z", + "1.2.0-next.1522793255797": "2018-04-03T22:07:47.036Z", + "1.2.0-next.1522794237544": "2018-04-03T22:24:10.693Z", + "1.2.0-next.1522875517748": "2018-04-04T20:58:52.816Z", + "1.2.0-next.1522875925576": "2018-04-04T21:05:37.861Z", + "1.2.0-next.1522876116282": "2018-04-04T21:08:48.600Z", + "1.2.0-next.1522959058052": "2018-04-05T20:11:10.777Z", + "1.2.0-next.1522996977258": "2018-04-06T06:43:15.955Z", + "1.2.0-next.1523056452461": "2018-04-06T23:14:26.746Z", + "1.2.0-next.1523057899376": "2018-04-06T23:38:32.964Z", + "1.2.0-next.1523064178622": "2018-04-07T01:23:09.812Z", + "1.2.0-next.1523088162996": "2018-04-07T08:02:57.104Z", + "1.2.0-next.1523149268591": "2018-04-08T01:01:22.101Z", + "1.2.0-next.1523149297195": "2018-04-08T01:01:50.124Z", + "1.2.0-next.1523149483176": "2018-04-08T01:04:59.938Z", + "1.2.0-next.1523309842933": "2018-04-09T21:37:37.040Z", + "1.2.0-next.1523310677066": "2018-04-09T21:51:29.650Z", + "1.2.0-next.1523314104076": "2018-04-09T22:48:36.575Z", + "1.2.0-next.1523317263232": "2018-04-09T23:41:17.368Z", + "1.2.0-next.1523336680826": "2018-04-10T05:04:58.321Z", + "1.2.0-next.1523338363805": "2018-04-10T05:32:56.530Z", + "1.2.0-next.1523342502622": "2018-04-10T06:41:57.850Z", + "1.2.0-next.1523388455344": "2018-04-10T19:27:47.841Z", + "1.2.0-next.1523394876742": "2018-04-10T21:14:48.313Z", + "1.2.0-next.1523401321974": "2018-04-10T23:02:14.567Z", + "1.2.0-next.1523408878908": "2018-04-11T01:08:15.893Z", + "1.2.0-next.1523416053090": "2018-04-11T03:07:46.134Z", + "1.2.0-next.1523417075075": "2018-04-11T03:24:47.344Z", + "1.2.0-next.1523485686787": "2018-04-11T22:28:19.040Z", + "1.2.0-next.1523546977615": "2018-04-12T15:29:52.823Z", + "1.3.0-next.1523592878900": "2018-04-13T04:14:53.599Z", + "1.3.0": "2018-04-13T04:15:11.938Z", + "1.3.0-next.1523642474853": "2018-04-13T18:01:27.710Z", + "1.3.0-next.1523643903145": "2018-04-13T18:25:14.742Z", + "1.3.0-next.1523903632662": "2018-04-16T18:34:07.174Z", + "1.3.0-next.1523922910902": "2018-04-16T23:55:22.563Z", + "1.3.0-next.1523986823398": "2018-04-17T17:40:40.805Z", + "1.3.0-next.1523988011170": "2018-04-17T18:00:22.636Z", + "1.3.0-next.1523991031219": "2018-04-17T18:50:44.515Z", + "1.3.0-next.1523998304267": "2018-04-17T20:52:03.392Z", + "1.3.0-next.1524002007381": "2018-04-17T21:54:42.035Z", + "1.3.0-next.1524077854221": "2018-04-18T18:57:45.934Z", + "1.3.0-next.1524169798128": "2018-04-19T20:30:10.265Z", + "1.3.0-next.1524172726027": "2018-04-19T21:18:59.573Z", + "1.3.0-next.1524503013067": "2018-04-23T17:03:46.207Z", + "1.3.0-next.1524642447975": "2018-04-25T07:47:41.977Z", + "1.3.0-next.1524695478733": "2018-04-25T22:31:30.830Z", + "1.3.0-next.1524701668798": "2018-04-26T00:14:42.550Z", + "1.3.0-next.1524704985101": "2018-04-26T01:09:57.273Z", + "1.3.0-next.1524705708145": "2018-04-26T01:22:00.578Z", + "1.3.0-next.1524712919551": "2018-04-26T03:22:12.349Z", + "1.3.0-next.1524713000921": "2018-04-26T03:23:33.035Z", + "1.3.0-next.1524757175953": "2018-04-26T15:39:56.140Z", + "1.3.0-next.1524766628711": "2018-04-26T18:17:20.626Z", + "1.3.0-next.1524774887046": "2018-04-26T20:35:00.453Z", + "1.3.0-next.1524774920630": "2018-04-26T20:35:34.916Z", + "1.3.0-next.1524865639981": "2018-04-27T21:47:33.168Z", + "1.3.0-next.1524884685958": "2018-04-28T03:04:57.363Z", + "1.3.0-next.1524889059564": "2018-04-28T04:17:50.557Z", + "1.3.0-next.1524890531204": "2018-04-28T04:42:24.054Z", + "1.3.0-next.1525111445523": "2018-04-30T18:04:20.623Z", + "1.3.0-next.1525135284208": "2018-05-01T00:41:36.034Z", + "1.3.0-next.1525301631811": "2018-05-02T22:54:04.443Z", + "1.3.0-next.1525388744646": "2018-05-03T23:05:56.508Z", + "1.3.0-next.1525459650281": "2018-05-04T18:47:43.584Z", + "1.3.0-next.1525828826075": "2018-05-09T01:20:39.797Z", + "1.4.0-next.1525841345569": "2018-05-09T04:49:17.410Z", + "1.4.0": "2018-05-09T05:14:40.052Z", + "1.4.0-next.1525875866798": "2018-05-09T14:24:39.560Z", + "1.4.0-next.1525886024469": "2018-05-09T17:13:56.138Z", + "1.4.0-next.1525984104919": "2018-05-10T20:28:36.638Z", + "1.4.0-next.1526506763480": "2018-05-16T21:39:35.589Z", + "1.4.0-next.1526506897747": "2018-05-16T21:41:52.288Z", + "1.4.0-next.1526507871161": "2018-05-16T21:58:04.691Z", + "1.4.0-next.1526510342960": "2018-05-16T22:39:14.771Z", + "1.4.0-next.1526519544088": "2018-05-17T01:12:35.794Z", + "1.4.0-next.1526593919447": "2018-05-17T21:52:48.200Z", + "1.4.0-next.1526933481310": "2018-05-21T20:11:34.151Z", + "1.4.0-next.1526938425001": "2018-05-21T21:34:01.635Z", + "1.4.0-next.1526938802806": "2018-05-21T21:40:16.549Z", + "1.4.0-next.1527292051776": "2018-05-25T23:47:48.963Z", + "1.4.0-next.1527292060831": "2018-05-25T23:47:57.521Z", + "1.4.0-next.1527292169142": "2018-05-25T23:49:41.733Z", + "1.4.0-next.1527292577308": "2018-05-25T23:56:29.717Z", + "1.4.0-next.1527292742969": "2018-05-25T23:59:17.836Z", + "1.4.0-next.1527294524156": "2018-05-26T00:28:55.860Z", + "1.4.0-next.1527294631387": "2018-05-26T00:30:43.522Z", + "1.4.0-next.1527294674237": "2018-05-26T00:31:26.330Z", + "1.4.0-next.1527632813414": "2018-05-29T22:27:06.605Z", + "1.4.0-next.1527632860155": "2018-05-29T22:27:54.701Z", + "1.4.0-next.1527633150048": "2018-05-29T22:32:41.825Z", + "1.4.0-next.1527634039615": "2018-05-29T22:47:30.071Z", + "1.4.0-next.1527715229660": "2018-05-30T21:20:45.592Z", + "1.4.0-next.1527729038649": "2018-05-31T01:10:50.963Z", + "1.4.0-next.1527793846806": "2018-05-31T19:11:00.923Z", + "1.4.0-next.1527801882058": "2018-05-31T21:24:55.054Z", + "1.4.0-next.1527808033454": "2018-05-31T23:07:28.480Z", + "1.4.0-next.1527810120829": "2018-05-31T23:42:13.442Z", + "1.4.0-next.1527810915859": "2018-05-31T23:55:28.912Z", + "1.4.0-next.1527810967055": "2018-05-31T23:56:21.038Z", + "1.4.0-next.1527811743681": "2018-06-01T00:09:21.259Z", + "1.4.0-next.1527813649005": "2018-06-01T00:41:01.420Z", + "1.4.0-next.1527816016516": "2018-06-01T01:20:29.708Z", + "1.4.0-next.1527877736615": "2018-06-01T18:29:09.842Z", + "1.4.0-next.1527886329222": "2018-06-01T20:52:27.283Z", + "1.4.0-next.1527886799309": "2018-06-01T21:00:12.611Z", + "1.4.0-next.1527887011493": "2018-06-01T21:03:47.564Z", + "1.4.0-next.1527891453248": "2018-06-01T22:17:46.109Z", + "1.4.0-next.1527891760955": "2018-06-01T22:22:52.531Z", + "1.4.0-next.1527958760421": "2018-06-02T16:59:34.058Z", + "1.4.0-next.1527965268824": "2018-06-02T18:48:07.804Z", + "1.4.0-next.1528296840819": "2018-06-06T14:54:13.757Z", + "1.4.0-next.1528334015125": "2018-06-07T01:13:48.501Z", + "1.4.0-next.1528334094813": "2018-06-07T01:15:08.178Z", + "1.4.0-next.1528334327491": "2018-06-07T01:19:02.176Z", + "1.4.0-next.1528389663924": "2018-06-07T16:41:17.318Z", + "1.4.0-next.1528395894335": "2018-06-07T18:25:07.626Z", + "1.5.0-next.1528399382159": "2018-06-07T19:23:26.538Z", + "1.5.0": "2018-06-07T19:26:30.034Z", + "1.5.0-next.1528402191643": "2018-06-07T20:10:03.498Z", + "1.5.0-next.1528919394878": "2018-06-13T19:50:07.401Z", + "1.5.0-next.1528948338383": "2018-06-14T03:52:36.036Z", + "1.5.0-next.1528996935297": "2018-06-14T17:22:29.674Z", + "1.5.0-next.1528997168247": "2018-06-14T17:26:24.847Z", + "1.5.0-next.1528997315916": "2018-06-14T17:28:47.424Z", + "1.5.0-next.1528997827655": "2018-06-14T17:37:22.792Z", + "1.5.0-next.1529001772241": "2018-06-14T18:43:08.299Z", + "1.5.0-next.1529009865250": "2018-06-14T20:57:59.729Z", + "1.5.0-next.1529010081851": "2018-06-14T21:01:32.555Z", + "1.5.0-next.1529012067283": "2018-06-14T21:34:41.529Z", + "1.5.0-next.1529015425897": "2018-06-14T22:30:38.448Z", + "1.5.0-next.1529017025751": "2018-06-14T22:57:17.731Z", + "1.5.0-next.1529019939040": "2018-06-14T23:45:50.600Z", + "1.5.0-next.1529020277784": "2018-06-14T23:51:32.068Z", + "1.5.0-next.1529354619280": "2018-06-18T20:43:53.744Z", + "1.5.0-next.1529393801062": "2018-06-19T07:36:55.878Z", + "1.5.0-next.1529429863153": "2018-06-19T17:37:54.629Z", + "1.5.0-next.1529430695195": "2018-06-19T17:51:45.900Z", + "1.5.0-next.1529438841250": "2018-06-19T20:07:37.258Z", + "1.5.0-next.1529441303045": "2018-06-19T20:48:35.211Z", + "1.5.0-next.1529528205725": "2018-06-20T20:57:12.084Z", + "1.5.0-next.1529601789907": "2018-06-21T17:23:21.750Z", + "1.5.0-next.1529602796106": "2018-06-21T17:40:09.737Z", + "1.5.0-next.1529964776684": "2018-06-25T22:13:07.585Z", + "1.5.0-next.1530045933494": "2018-06-26T20:45:46.522Z", + "1.5.0-next.1530061507172": "2018-06-27T01:05:19.187Z", + "1.5.0-next.1530061501767": "2018-06-27T01:05:21.162Z", + "1.5.0-next.1530217505079": "2018-06-28T20:25:16.368Z", + "1.5.0-next.1530237072145": "2018-06-29T01:51:25.830Z", + "1.5.0-next.1530291793909": "2018-06-29T17:03:26.943Z", + "1.5.0-next.1530299145196": "2018-06-29T19:05:57.546Z", + "1.5.0-next.1530333501924": "2018-06-30T04:38:33.558Z", + "1.5.0-next.1530747584201": "2018-07-04T23:39:55.520Z", + "1.5.0-next.1530747678469": "2018-07-04T23:41:29.375Z", + "1.5.0-next.1530749057441": "2018-07-05T00:04:28.860Z", + "1.5.0-next.1530771453419": "2018-07-05T06:17:43.938Z", + "1.5.0-next.1531162744899": "2018-07-09T18:59:17.548Z", + "1.5.0-next.1531189632656": "2018-07-10T02:27:31.950Z", + "1.5.0-next.1531354198653": "2018-07-12T00:10:12.232Z", + "1.5.0-next.1531356790849": "2018-07-12T00:53:24.387Z", + "1.5.0-next.1531359649065": "2018-07-12T01:41:01.337Z", + "1.5.0-next.1531368423225": "2018-07-12T04:07:15.650Z", + "1.5.0-next.1531368496280": "2018-07-12T04:08:36.107Z", + "1.6.0": "2018-07-13T00:33:12.605Z", + "1.6.0-next.1532381444032": "2018-07-23T21:30:53.228Z", + "1.6.0-next.1532390828888": "2018-07-24T00:07:21.144Z", + "1.6.0-next.1532455573607": "2018-07-24T18:06:28.238Z", + "1.6.1": "2018-07-24T18:21:00.323Z", + "1.6.0-next.1532647628942": "2018-07-26T23:27:22.543Z", + "1.6.0-next.1532974708417": "2018-07-30T18:19:40.388Z", + "1.6.0-next.1532994218655": "2018-07-30T23:43:48.045Z", + "1.6.0-next.1532995736465": "2018-07-31T00:09:06.309Z", + "1.6.1-next.1532999286971": "2018-07-31T01:08:18.463Z", + "1.6.1-next.1532999303060": "2018-07-31T01:08:37.740Z", + "1.6.1-next.1533001132257": "2018-07-31T01:39:01.113Z", + "1.6.1-next.1533002407095": "2018-07-31T02:00:24.190Z", + "1.6.1-next.1533002862716": "2018-07-31T02:07:52.345Z", + "1.6.1-next.1533003082302": "2018-07-31T02:11:31.586Z", + "1.6.1-next.1533061595073": "2018-07-31T18:26:50.867Z", + "1.6.1-next.1533064908595": "2018-07-31T19:22:02.978Z", + "1.6.1-next.1533068895359": "2018-07-31T20:28:25.291Z", + "1.6.1-next.1533075061771": "2018-07-31T22:11:11.702Z", + "1.6.2": "2018-08-01T20:42:21.688Z", + "1.6.2-next.1533156975351": "2018-08-01T20:56:27.980Z", + "1.6.2-next.1533156985664": "2018-08-01T20:56:35.431Z", + "1.6.2-next.1533160767482": "2018-08-01T21:59:37.587Z", + "1.6.2-next.1533163982541": "2018-08-01T22:53:12.113Z", + "1.6.2-next.1533165898296": "2018-08-01T23:25:10.512Z", + "1.6.2-next.1533580499948": "2018-08-06T18:35:11.994Z", + "1.6.2-next.1533673461575": "2018-08-07T20:24:34.220Z", + "1.6.2-next.1533673548000": "2018-08-07T20:25:59.352Z", + "1.6.2-next.1533677196394": "2018-08-07T21:26:46.661Z", + "1.6.2-next.1533677198046": "2018-08-07T21:27:05.026Z", + "1.6.2-next.1533766644133": "2018-08-08T22:17:34.758Z", + "1.6.2-next.1533777762233": "2018-08-09T01:22:51.750Z", + "1.6.2-next.1533801194001": "2018-08-09T07:53:24.073Z", + "1.6.2-next.1533838658133": "2018-08-09T18:17:49.705Z", + "1.6.2-next.1533851342918": "2018-08-09T21:49:15.658Z", + "1.6.2-next.1533852010323": "2018-08-09T22:00:19.696Z", + "1.6.2-next.1533858839474": "2018-08-09T23:54:10.832Z", + "1.6.2-next.1533862299087": "2018-08-10T00:51:48.203Z", + "1.6.2-next.1533863808662": "2018-08-10T01:17:00.054Z", + "1.7.0-next.1533866199198": "2018-08-10T01:56:49.821Z", + "1.7.0": "2018-08-10T01:57:20.653Z", + "1.7.0-next.1533868079660": "2018-08-10T02:28:11.441Z", + "1.7.0-next.1533868439500": "2018-08-10T02:34:09.852Z", + "1.7.0-next.1533890337095": "2018-08-10T08:39:07.586Z", + "1.7.0-next.1534384626788": "2018-08-16T01:57:18.749Z", + "1.7.0-next.1534456245810": "2018-08-16T21:50:59.812Z", + "1.7.0-next.1534456313739": "2018-08-16T21:52:04.818Z", + "1.7.0-next.1534461562178": "2018-08-16T23:19:34.058Z", + "1.7.0-next.1534528433343": "2018-08-17T17:54:04.985Z", + "1.7.0-next.1534528770278": "2018-08-17T17:59:41.638Z", + "1.7.0-next.1535149239491": "2018-08-24T22:20:50.318Z", + "1.7.0-next.1535561219970": "2018-08-29T16:47:12.513Z", + "1.7.0-next.1535587532424": "2018-08-30T00:05:42.894Z", + "1.7.0-next.1535668689898": "2018-08-30T22:38:19.763Z", + "1.7.0-next.1535713393176": "2018-08-31T11:03:24.154Z", + "1.7.0-next.1535735247500": "2018-08-31T17:07:38.453Z", + "1.7.0-next.1536001811008": "2018-09-03T19:10:21.296Z", + "1.7.0-next.1536052077376": "2018-09-04T09:08:12.712Z", + "1.7.0-next.1536075421260": "2018-09-04T15:37:12.516Z", + "1.7.0-next.1536076579608": "2018-09-04T15:56:29.862Z", + "1.7.0-next.1536078965668": "2018-09-04T16:36:17.806Z", + "1.7.0-next.1536084551248": "2018-09-04T18:09:22.862Z", + "1.7.0-next.1536089048222": "2018-09-04T19:24:21.981Z", + "1.7.0-next.1536090149346": "2018-09-04T19:42:39.991Z", + "1.7.0-next.1536097322757": "2018-09-04T21:42:14.090Z", + "1.7.0-next.1536167692060": "2018-09-05T17:15:02.754Z", + "1.7.0-next.1536176172701": "2018-09-05T19:36:22.864Z", + "1.7.0-next.1536177940806": "2018-09-05T20:05:50.104Z", + "1.7.0-next.1536177984039": "2018-09-05T20:06:34.192Z", + "1.7.0-next.1536184951011": "2018-09-05T22:02:41.050Z", + "1.7.0-next.1536184959160": "2018-09-05T22:02:49.151Z", + "1.7.0-next.1536262621679": "2018-09-06T19:37:10.921Z", + "1.7.0-next.1536266490601": "2018-09-06T20:41:41.238Z", + "1.8.0-next.1536267134761": "2018-09-06T20:52:26.643Z", + "1.8.0": "2018-09-06T20:55:26.293Z", + "1.8.0-next.1536267991002": "2018-09-06T21:06:41.670Z", + "1.8.0-next.1536313779891": "2018-09-07T09:49:50.435Z", + "1.8.0-next.1536352705819": "2018-09-07T20:38:35.939Z", + "1.8.0-next.1536404184361": "2018-09-08T10:56:33.586Z", + "1.8.0-next.1536664892181": "2018-09-11T11:21:42.745Z", + "1.8.0-next.1536687830102": "2018-09-11T17:44:01.684Z", + "1.8.0-next.1536689410489": "2018-09-11T18:10:21.076Z", + "1.8.0-next.1536786749184": "2018-09-12T21:12:42.729Z", + "1.8.0-next.1536862670912": "2018-09-13T18:18:04.730Z", + "1.8.0-next.1536863348198": "2018-09-13T18:29:21.945Z", + "1.8.0-next.1536865920560": "2018-09-13T19:12:15.013Z", + "1.8.0-next.1536919640452": "2018-09-14T10:07:32.944Z", + "1.8.0-next.1536946017235": "2018-09-14T17:27:08.736Z", + "1.8.0-next.1536950888728": "2018-09-14T18:48:21.017Z", + "1.8.0-next.1536951103472": "2018-09-14T18:51:56.677Z", + "1.8.0-next.1537204703840": "2018-09-17T17:18:34.035Z", + "1.8.0-next.1537223108573": "2018-09-17T22:25:19.168Z", + "1.8.0-next.1537226285635": "2018-09-17T23:18:16.049Z", + "1.8.0-next.1537362098762": "2018-09-19T13:01:49.780Z", + "1.8.0-next.1537388094387": "2018-09-19T20:15:10.156Z", + "1.8.0-next.1537390700271": "2018-09-19T20:58:32.117Z", + "1.8.0-next.1537455065839": "2018-09-20T14:51:16.752Z", + "1.8.0-next.1537468425440": "2018-09-20T18:34:00.204Z", + "1.8.0-next.1537469893945": "2018-09-20T18:58:27.681Z", + "1.8.0-next.1537566876820": "2018-09-21T21:54:50.593Z", + "1.8.0-next.1537568897412": "2018-09-21T22:28:26.730Z", + "1.8.0-next.1537576245114": "2018-09-22T00:30:57.890Z", + "1.8.0-next.1537588058879": "2018-09-22T03:47:49.885Z", + "1.8.0-next.1537818606608": "2018-09-24T19:50:16.763Z", + "1.8.0-next.1537978905474": "2018-09-26T16:21:56.600Z", + "1.8.0-next.1538070839127": "2018-09-27T17:54:14.767Z", + "1.8.0-next.1538512930517": "2018-10-02T20:42:20.541Z", + "1.8.0-next.1538611414237": "2018-10-04T00:03:43.754Z", + "1.8.0-next.1538612893058": "2018-10-04T00:28:22.680Z", + "1.8.0-next.1538675072506": "2018-10-04T17:44:42.167Z", + "1.8.0-next.1538688354136": "2018-10-04T21:26:04.020Z", + "1.9.0": "2018-10-04T21:39:04.235Z", + "1.9.0-next.1538689231174": "2018-10-04T21:40:40.569Z", + "1.9.0-next.1538690157991": "2018-10-04T21:56:07.987Z", + "1.9.0-next.1538694722140": "2018-10-04T23:12:11.790Z", + "1.9.0-next.1538768278224": "2018-10-05T19:38:07.862Z", + "1.9.0-next.1539120044247": "2018-10-09T21:20:54.025Z", + "1.9.0-next.1539120211700": "2018-10-09T21:23:42.246Z", + "1.9.0-next.1539120534494": "2018-10-09T21:29:04.446Z", + "1.9.0-next.1539377578495": "2018-10-12T20:53:08.645Z", + "1.9.0-next.1539714521728": "2018-10-16T18:28:52.342Z", + "1.9.0-next.1539734295322": "2018-10-16T23:58:25.238Z", + "1.9.0-next.1539736052365": "2018-10-17T00:27:41.989Z", + "1.9.0-next.1540492188882": "2018-10-25T18:29:58.288Z", + "1.9.0-next.1540493070953": "2018-10-25T18:44:41.708Z", + "1.9.0-next.1540604446651": "2018-10-27T01:40:57.124Z", + "1.9.0-next.1541028853238": "2018-10-31T23:34:22.607Z", + "1.9.0-next.1541112234493": "2018-11-01T22:44:04.613Z", + "1.9.0-next.1541112473441": "2018-11-01T22:48:03.318Z", + "1.9.0-next.1541115972867": "2018-11-01T23:46:22.829Z", + "1.9.0-next.1541123853272": "2018-11-02T01:57:43.084Z", + "1.10.0": "2018-11-02T03:11:25.627Z", + "1.10.0-next.1541128319410": "2018-11-02T03:12:09.779Z", + "1.10.0-next.1541182312825": "2018-11-02T18:12:02.959Z", + "1.10.0-next.1541190395602": "2018-11-02T20:26:45.904Z", + "1.10.0-next.1541204340403": "2018-11-03T00:19:10.531Z", + "1.10.0-next.1541361083518": "2018-11-04T19:51:33.111Z", + "1.10.0-next.1541659909504": "2018-11-08T06:51:59.272Z", + "1.10.0-next.1541731034635": "2018-11-09T02:37:24.559Z", + "1.10.0-next.1541733757076": "2018-11-09T03:22:46.829Z", + "1.10.0-next.1541806535405": "2018-11-09T23:35:45.100Z", + "1.10.0-next.1541818067358": "2018-11-10T02:47:57.165Z", + "1.10.0-next.1542056531325": "2018-11-12T21:02:21.440Z", + "1.10.0-next.1542062579254": "2018-11-12T22:43:09.554Z", + "1.10.0-next.1542094148959": "2018-11-13T07:29:18.971Z", + "1.10.0-next.1542152043928": "2018-11-13T23:34:13.747Z", + "1.10.0-next.1542224682151": "2018-11-14T19:44:51.659Z", + "1.10.0-next.1542322461212": "2018-11-15T22:54:31.703Z", + "1.10.0-next.1542322813531": "2018-11-15T23:00:23.618Z", + "1.10.0-next.1542389962978": "2018-11-16T17:39:33.211Z", + "1.10.0-next.1542660024620": "2018-11-19T20:40:34.639Z", + "1.10.0-next.1542752643857": "2018-11-20T22:24:14.312Z", + "1.10.0-next.1542756975192": "2018-11-20T23:36:25.392Z", + "1.10.0-next.1542758792020": "2018-11-21T00:06:42.427Z", + "1.10.0-next.1542767763738": "2018-11-21T02:36:13.373Z", + "1.10.0-next.1542768537315": "2018-11-21T02:49:07.518Z", + "1.10.0-next.1542770480356": "2018-11-21T03:21:30.103Z", + "1.10.0-next.1542771500097": "2018-11-21T03:38:29.931Z", + "1.10.0-next.1542771982956": "2018-11-21T03:46:32.856Z", + "1.10.0-next.1542773003048": "2018-11-21T04:03:33.460Z", + "1.10.0-next.1542773565980": "2018-11-21T04:12:56.313Z", + "1.10.0-next.1542779777413": "2018-11-21T05:56:27.967Z", + "1.11.0": "2018-11-30T06:14:53.813Z", + "1.11.0-next.1543560147647": "2018-11-30T06:42:37.529Z", + "1.11.0-next.1544046420498": "2018-12-05T21:47:10.186Z", + "1.11.0-next.1544128541083": "2018-12-06T20:35:51.658Z", + "1.11.0-next.1544128971170": "2018-12-06T20:43:01.182Z", + "1.11.0-next.1544134189192": "2018-12-06T22:09:59.723Z", + "1.11.0-next.1544168352298": "2018-12-07T07:39:22.367Z", + "1.11.0-next.1544560245556": "2018-12-11T20:30:54.966Z", + "1.11.0-next.1544656354290": "2018-12-12T23:12:44.213Z", + "1.11.0-next.1544663587420": "2018-12-13T01:13:17.331Z", + "1.11.0-next.1544737011631": "2018-12-13T21:37:01.764Z", + "1.11.0-next.1545082503400": "2018-12-17T21:35:13.246Z", + "1.11.0-next.1547047771919": "2019-01-09T15:29:42.588Z", + "1.11.0-next.1547505121510": "2019-01-14T22:39:18.333Z", + "1.11.0-next.1547510042445": "2019-01-14T23:54:13.120Z", + "1.11.0-next.1547515612329": "2019-01-15T01:27:02.850Z", + "1.11.0-next.1547520320509": "2019-01-15T02:45:30.978Z", + "1.11.0-next.1547524807357": "2019-01-15T04:00:17.162Z", + "1.11.0-next.1547527073587": "2019-01-15T04:38:04.709Z", + "1.11.0-next.1547581252732": "2019-01-15T19:41:03.551Z", + "1.11.0-next.1547583689219": "2019-01-15T20:21:39.642Z", + "1.11.0-next.1547591862863": "2019-01-15T22:37:53.253Z", + "1.11.0-next.1547592776490": "2019-01-15T22:53:07.046Z", + "1.11.0-next.1547599456407": "2019-01-16T00:44:27.341Z", + "1.11.0-next.1547601875361": "2019-01-16T01:24:45.517Z", + "1.11.0-next.1547624594064": "2019-01-16T07:43:24.330Z", + "1.11.0-next.1547835637594": "2019-01-18T18:20:48.459Z", + "1.11.0-next.1547861804321": "2019-01-19T01:36:55.553Z", + "1.11.0-next.1547925461836": "2019-01-19T19:17:52.174Z", + "1.11.0-next.1547960730125": "2019-01-20T05:05:40.652Z", + "1.11.0-next.1548181462679": "2019-01-22T18:24:33.435Z", + "1.11.0-next.1548183570779": "2019-01-22T18:59:41.234Z", + "1.11.0-next.1548197935129": "2019-01-22T22:59:05.689Z", + "1.11.0-next.1548198789601": "2019-01-22T23:13:19.401Z", + "1.11.0-next.1548217700084": "2019-01-23T04:28:30.927Z", + "1.11.0-next.1548310151247": "2019-01-24T06:09:22.222Z", + "1.11.0-next.1548448163376": "2019-01-25T20:29:34.012Z", + "1.11.0-next.1548476659504": "2019-01-26T04:24:30.679Z", + "1.11.0-next.1548567610624": "2019-01-27T05:40:21.490Z", + "1.11.0-next.1548703685570": "2019-01-28T19:28:16.107Z", + "1.11.0-next.1548707281525": "2019-01-28T20:28:11.880Z", + "1.11.0-next.1548714258861": "2019-01-28T22:24:29.402Z", + "1.11.0-next.1548717377583": "2019-01-28T23:16:28.837Z", + "1.11.0-next.1548724983083": "2019-01-29T01:23:14.559Z", + "1.11.0-next.1548894144934": "2019-01-31T00:22:36.524Z", + "1.11.0-next.1548985003787": "2019-02-01T01:36:56.184Z", + "1.11.0-next.1548986177131": "2019-02-01T01:56:28.523Z", + "1.12.0-next.1548992224338": "2019-02-01T03:37:16.014Z", + "1.12.0": "2019-02-01T03:41:08.910Z", + "1.12.0-next.1548993028613": "2019-02-01T03:50:40.477Z", + "1.12.0-next.1549043939751": "2019-02-01T17:59:11.622Z", + "1.12.1-next.1549053217365": "2019-02-01T20:33:48.547Z", + "1.12.1": "2019-02-01T20:34:13.532Z", + "1.12.1-next.1549054273876": "2019-02-01T20:51:25.633Z", + "1.12.1-next.1549059171178": "2019-02-01T22:13:02.975Z", + "1.12.1-next.1549061801998": "2019-02-01T22:56:53.629Z", + "1.12.1-next.1549069657889": "2019-02-02T01:07:49.780Z", + "1.12.1-next.1549072734702": "2019-02-02T01:59:06.195Z", + "1.12.1-next.1549075450014": "2019-02-02T02:44:21.584Z", + "1.12.1-next.1549137512702": "2019-02-02T19:58:44.750Z", + "1.12.1-next.1549158745578": "2019-02-03T01:52:37.663Z", + "1.12.1-next.1549394930560": "2019-02-05T19:29:01.803Z", + "1.12.2": "2019-02-05T19:40:32.869Z", + "1.12.2-next.1549395705456": "2019-02-05T19:41:56.805Z", + "1.12.2-next.1549397093328": "2019-02-05T20:05:09.623Z", + "1.12.2-next.1549399902743": "2019-02-05T20:51:55.272Z", + "1.12.2-next.1549401617806": "2019-02-05T21:20:29.653Z", + "1.12.2-next.1549402405484": "2019-02-05T21:33:37.523Z", + "1.12.2-next.1549403066989": "2019-02-05T21:44:39.151Z", + "1.12.2-next.1549409507651": "2019-02-05T23:31:59.504Z", + "1.12.2-next.1549422350612": "2019-02-06T03:06:02.164Z", + "1.12.2-next.1549425183362": "2019-02-06T03:53:14.816Z", + "1.12.2-next.1549434954882": "2019-02-06T06:36:06.272Z", + "1.12.2-next.1549476612045": "2019-02-06T18:10:23.654Z", + "1.12.2-next.1549489957515": "2019-02-06T21:52:49.131Z", + "1.12.2-next.1549492279061": "2019-02-06T22:31:30.794Z", + "1.12.2-next.1549500038211": "2019-02-07T00:40:49.165Z", + "1.12.2-next.1549555526593": "2019-02-07T16:05:40.300Z", + "1.12.2-next.1549556415428": "2019-02-07T16:20:26.710Z", + "1.12.2-next.1549561537920": "2019-02-07T17:45:50.001Z", + "1.12.2-next.1549575152419": "2019-02-07T21:32:44.129Z", + "1.12.2-next.1549581910223": "2019-02-07T23:25:22.206Z", + "1.12.2-next.1549591798679": "2019-02-08T02:10:10.426Z", + "1.12.2-next.1549671895275": "2019-02-09T00:25:07.135Z", + "1.12.2-next.1549675314137": "2019-02-09T01:22:06.181Z", + "1.12.2-next.1549676493651": "2019-02-09T01:41:45.647Z", + "1.12.2-next.1549681486048": "2019-02-09T03:04:57.950Z", + "1.12.2-next.1549683034841": "2019-02-09T03:30:46.634Z", + "1.12.2-next.1549684766090": "2019-02-09T03:59:37.552Z", + "1.12.2-next.1549687399259": "2019-02-09T04:43:31.204Z", + "1.12.2-next.1549688623724": "2019-02-09T05:03:55.608Z", + "1.12.2-next.1549922885721": "2019-02-11T22:08:17.428Z", + "1.12.2-next.1550022326412": "2019-02-13T01:45:38.562Z", + "1.12.2-next.1550027809091": "2019-02-13T03:17:01.697Z", + "1.12.2-next.1550030782241": "2019-02-13T04:06:34.466Z", + "1.12.2-next.1550031427756": "2019-02-13T04:17:19.710Z", + "1.12.2-next.1550048628025": "2019-02-13T09:04:02.309Z", + "1.12.2-next.1550086939093": "2019-02-13T19:42:31.919Z", + "1.12.2-next.1550088214550": "2019-02-13T20:03:48.412Z", + "1.12.2-next.1550092693872": "2019-02-13T21:18:25.638Z", + "1.12.2-next.1550095102698": "2019-02-13T21:58:35.222Z", + "1.12.2-next.1550116409786": "2019-02-14T03:53:42.678Z", + "1.12.2-next.1550116996244": "2019-02-14T04:03:28.318Z", + "1.12.2-next.1550125345875": "2019-02-14T06:22:37.654Z", + "1.12.2-next.1550129406249": "2019-02-14T07:30:18.944Z", + "1.12.2-next.1550130473795": "2019-02-14T07:48:04.987Z", + "1.12.2-next.1550131578606": "2019-02-14T08:06:31.179Z", + "1.12.2-next.1550131956176": "2019-02-14T08:12:47.422Z", + "1.12.2-next.1550282653763": "2019-02-16T02:04:25.369Z", + "1.12.2-next.1550284380471": "2019-02-16T02:33:12.694Z", + "1.12.2-next.1550428217621": "2019-02-17T18:30:31.039Z", + "1.12.2-next.1550611648487": "2019-02-19T21:27:40.970Z", + "1.12.2-next.1550617121272": "2019-02-19T22:58:52.860Z", + "1.12.2-next.1550618944816": "2019-02-19T23:29:16.762Z", + "1.12.2-next.1550643350858": "2019-02-20T06:16:02.770Z", + "1.12.2-next.1550645075490": "2019-02-20T06:44:47.334Z", + "1.12.2-next.1550772889548": "2019-02-21T18:15:01.644Z", + "1.12.2-next.1550783848074": "2019-02-21T21:17:40.068Z", + "1.12.2-next.1550793853898": "2019-02-22T00:04:26.235Z", + "1.12.2-next.1550823147572": "2019-02-22T08:12:40.167Z", + "1.12.2-next.1550873538670": "2019-02-22T22:12:30.406Z", + "1.12.2-next.1550909202855": "2019-02-23T08:06:55.384Z", + "1.12.2-next.1551078874966": "2019-02-25T07:14:46.495Z", + "1.12.2-next.1551124333019": "2019-02-25T19:52:24.565Z", + "1.12.2-next.1551127698921": "2019-02-25T20:48:31.695Z", + "1.12.2-next.1551128306241": "2019-02-25T20:58:37.198Z", + "1.12.2-next.1551138240757": "2019-02-25T23:44:48.318Z", + "1.12.2-next.1551161941289": "2019-02-26T06:19:13.606Z", + "1.12.2-next.1551242657823": "2019-02-27T04:44:29.630Z", + "1.12.2-next.1551309648206": "2019-02-27T23:21:00.459Z", + "1.12.2-next.1551401475539": "2019-03-01T00:51:27.299Z", + "1.13.0": "2019-03-05T02:41:54.514Z", + "1.13.0-next.1551824103486": "2019-03-05T22:15:15.530Z", + "1.13.0-next.1551827100936": "2019-03-05T23:05:13.603Z", + "1.13.0-next.1551927265223": "2019-03-07T02:54:51.152Z", + "1.13.0-next.1552064905462": "2019-03-08T17:08:39.223Z", + "1.13.0-next.1552084427037": "2019-03-08T22:34:00.213Z", + "1.13.0-next.1552352667968": "2019-03-12T01:04:40.553Z", + "1.13.0-next.1552427382660": "2019-03-12T21:49:55.322Z", + "1.13.0-next.1552429408444": "2019-03-12T22:23:40.523Z", + "1.13.0-next.1552508707139": "2019-03-13T20:25:20.739Z", + "1.13.0-next.1552520077410": "2019-03-13T23:34:50.195Z", + "1.13.0-next.1552588842411": "2019-03-14T18:40:53.515Z", + "1.14.0": "2019-03-29T05:40:34.645Z", + "1.14.0-next.1554765238660": "2019-04-08T23:14:10.518Z", + "1.14.0-next.1554788705298": "2019-04-09T05:45:16.731Z", + "1.14.0-next.1554871834316": "2019-04-10T04:50:44.832Z", + "1.14.0-next.1555005273405": "2019-04-11T17:54:44.293Z", + "1.14.0-next.1555008760759": "2019-04-11T18:52:51.284Z", + "1.14.0-next.1555009768788": "2019-04-11T19:09:39.807Z", + "1.14.0-next.1555014860639": "2019-04-11T20:34:31.680Z", + "1.14.0-next.1555031981782": "2019-04-12T01:19:53.119Z", + "1.14.0-next.1555033249139": "2019-04-12T01:40:59.879Z", + "1.14.0-next.1555129131525": "2019-04-13T04:19:03.354Z", + "1.14.0-next.1555141000741": "2019-04-13T07:36:51.688Z", + "1.14.0-next.1555607469881": "2019-04-18T17:11:20.611Z", + "1.14.0-next.1555617635177": "2019-04-18T20:00:45.704Z", + "1.14.0-next.1555699029448": "2019-04-19T18:37:20.268Z", + "1.14.0-next.1555713627875": "2019-04-19T22:40:39.045Z", + "1.14.0-next.1555723800354": "2019-04-20T01:30:10.503Z", + "1.14.0-next.1555949658000": "2019-04-22T16:14:29.543Z", + "1.14.0-next.1555975600504": "2019-04-22T23:26:51.123Z", + "1.14.0-next.1556048038195": "2019-04-23T19:34:09.469Z", + "1.15.0": "2019-04-26T02:29:52.200Z", + "1.15.0-next.1556245956624": "2019-04-26T02:32:46.964Z", + "1.15.0-next.1556265138389": "2019-04-26T07:52:28.608Z", + "1.15.0-next.1556311665501": "2019-04-26T20:47:55.632Z", + "1.15.0-next.1556321762762": "2019-04-26T23:36:16.216Z", + "1.15.0-next.1556508387804": "2019-04-29T03:26:38.726Z", + "1.15.0-next.1556610202561": "2019-04-30T07:43:33.182Z", + "1.15.0-next.1557127789501": "2019-05-06T07:29:59.978Z", + "1.15.0-next.1557445012701": "2019-05-09T23:37:03.765Z", + "1.15.0-next.1557447806775": "2019-05-10T00:23:37.993Z", + "1.15.0-next.1557448609535": "2019-05-10T00:37:00.345Z", + "1.15.0-next.1557449360739": "2019-05-10T00:49:31.790Z", + "1.15.0-next.1557450628002": "2019-05-10T01:10:39.610Z", + "1.15.0-next.1557470832533": "2019-05-10T06:47:24.841Z", + "1.16.0": "2019-05-13T22:20:50.423Z", + "1.16.0-next.1557786223072": "2019-05-13T22:23:53.921Z", + "1.16.0-next.1557788139173": "2019-05-13T22:55:50.829Z", + "1.16.0-next.1558173496842": "2019-05-18T09:58:27.710Z", + "1.16.0-next.1558177963258": "2019-05-18T11:12:53.943Z", + "1.16.0-next.1558189408000": "2019-05-18T14:23:39.456Z", + "1.16.0-next.1558275858428": "2019-05-19T14:24:29.409Z", + "1.16.0-next.1558339988115": "2019-05-20T08:13:19.170Z", + "1.16.0-next.1558449288228": "2019-05-21T14:35:01.115Z", + "1.16.0-next.1558469961321": "2019-05-21T20:19:32.155Z", + "1.16.0-next.1558553082812": "2019-05-22T19:24:54.428Z", + "1.17.0": "2019-05-24T00:15:04.131Z", + "1.17.0-next.1559174221711": "2019-05-29T23:57:12.070Z", + "1.17.0-next.1559348385017": "2019-06-01T00:19:55.731Z", + "1.17.0-next.1559357260458": "2019-06-01T02:47:52.497Z", + "1.17.0-next.1559498343979": "2019-06-02T17:59:15.704Z", + "1.17.0-next.1559599383226": "2019-06-03T22:03:15.022Z", + "1.17.0-next.1559671868980": "2019-06-04T18:11:19.361Z", + "1.17.0-next.1559691340031": "2019-06-04T23:35:50.754Z", + "1.17.0-next.1559787105207": "2019-06-06T02:11:56.942Z", + "1.17.0-next.1559843347793": "2019-06-06T17:49:18.411Z", + "1.17.0-next.1559940912627": "2019-06-07T20:55:23.534Z", + "1.17.0-next.1560040655095": "2019-06-09T00:37:46.350Z", + "1.17.0-next.1560130890336": "2019-06-10T01:41:41.424Z", + "1.17.0-next.1560154754882": "2019-06-10T08:19:25.950Z", + "1.17.0-next.1560156775686": "2019-06-10T08:53:06.608Z", + "1.17.0-next.1560211377753": "2019-06-11T00:03:09.500Z", + "1.17.0-next.1560214083398": "2019-06-11T00:48:14.663Z", + "1.17.0-next.1560215757076": "2019-06-11T01:16:08.042Z", + "1.17.0-next.1560226381096": "2019-06-11T04:13:12.444Z", + "1.17.0-next.1560499996426": "2019-06-14T08:13:27.446Z", + "1.17.0-next.1560576036169": "2019-06-15T05:20:47.618Z", + "1.17.0-next.1560577493102": "2019-06-15T05:45:04.081Z", + "1.17.0-next.1560641867466": "2019-06-15T23:37:58.899Z", + "1.18.0": "2019-06-20T22:20:17.871Z", + "1.18.0-next.1561069341499": "2019-06-20T22:22:33.213Z", + "1.18.0-next.1561071411692": "2019-06-20T22:57:02.517Z", + "1.18.0-next.1561537553179": "2019-06-26T08:26:04.143Z", + "1.18.1": "2019-06-26T17:45:13.677Z", + "1.18.1-next.1561571308956": "2019-06-26T17:48:40.078Z", + "1.18.1-next.1561572384242": "2019-06-26T18:06:36.771Z", + "1.18.1-next.1561809958367": "2019-06-29T12:06:09.252Z", + "1.18.1-next.1561972156009": "2019-07-01T09:09:26.829Z", + "1.18.1-next.1562564221866": "2019-07-08T05:37:12.858Z", + "1.19.0": "2019-07-23T05:06:04.819Z", + "1.20.0": "2019-09-13T07:43:14.649Z", + "2.0.0": "2019-10-24T13:20:05.181Z", + "2.1.0": "2020-01-27T14:58:07.611Z", + "2.1.1": "2020-02-05T14:02:09.648Z", + "3.0.0": "2020-04-16T09:19:09.634Z", + "3.0.1": "2020-04-22T14:35:11.935Z", + "3.0.2": "2020-04-28T09:24:51.770Z", + "3.0.3": "2020-05-06T14:58:37.677Z", + "3.0.4": "2020-05-07T10:00:30.854Z", + "3.1.0": "2020-05-18T11:53:52.335Z", + "3.2.0": "2020-05-29T09:24:58.532Z", + "3.3.0": "2020-06-02T08:57:48.405Z", + "4.0.0": "2020-06-15T13:50:32.233Z", + "4.0.1": "2020-06-24T13:22:35.515Z", + "5.0.0": "2020-07-02T13:35:26.614Z", + "5.1.0": "2020-07-13T08:34:36.009Z", + "5.2.0": "2020-07-17T12:34:16.262Z", + "5.2.1": "2020-07-21T15:00:27.846Z", + "5.3.0": "2020-09-11T12:11:18.563Z", + "5.3.1": "2020-09-22T11:06:52.629Z", + "5.4.0": "2020-10-23T15:34:36.265Z", + "5.4.1": "2020-10-27T15:08:32.270Z", + "5.5.0": "2020-11-16T13:46:52.693Z", + "6.0.0": "2021-02-02T11:07:25.313Z", + "7.0.0": "2021-02-03T15:44:27.626Z", + "7.0.1": "2021-02-04T10:19:31.064Z", + "7.0.2": "2021-02-09T08:31:33.949Z", + "7.0.3": "2021-02-09T08:54:56.978Z", + "7.0.4": "2021-02-09T12:39:23.851Z", + "7.1.0": "2021-02-12T10:58:40.800Z", + "8.0.0": "2021-02-26T08:36:50.107Z", + "9.0.0": "2021-04-21T11:27:32.513Z", + "9.1.0": "2021-05-03T12:13:20.490Z", + "9.1.1": "2021-05-05T08:42:17.901Z", + "10.0.0": "2021-05-31T12:42:27.486Z", + "10.1.0": "2021-06-29T07:30:20.562Z", + "10.2.0": "2021-08-04T12:53:22.844Z", + "10.4.0": "2021-09-21T15:34:12.298Z", + "11.0.0": "2021-11-03T09:29:12.751Z", + "12.0.0": "2021-11-27T16:11:33.751Z", + "12.0.1": "2021-11-29T20:11:15.702Z", + "13.0.0": "2021-12-10T09:13:31.860Z", + "13.0.1": "2021-12-22T08:10:23.097Z", + "13.1.0": "2022-01-17T14:44:39.244Z", + "13.1.1": "2022-01-18T08:59:01.073Z", + "13.1.2": "2022-01-25T07:59:28.663Z", + "13.1.3": "2022-01-31T09:19:33.044Z", + "13.2.0": "2022-02-07T14:39:34.503Z", + "13.3.0": "2022-02-09T17:38:19.557Z", + "13.3.1": "2022-02-10T15:05:59.343Z", + "13.3.2": "2022-02-14T11:38:38.742Z", + "13.4.0": "2022-02-22T12:37:44.667Z", + "13.4.1": "2022-03-01T07:55:47.033Z", + "13.5.0": "2022-03-07T13:27:10.731Z", + "13.5.1": "2022-03-09T13:27:47.995Z", + "13.5.2": "2022-03-31T09:13:54.944Z", + "13.6.0": "2022-04-20T08:12:06.268Z", + "13.7.0": "2022-04-28T11:32:22.467Z", + "14.0.0": "2022-05-09T13:33:59.376Z", + "14.1.0": "2022-05-13T07:38:40.539Z", + "14.1.1": "2022-05-19T15:04:45.699Z", + "14.1.2": "2022-05-30T14:32:03.453Z", + "14.2.0": "2022-06-01T20:15:04.963Z", + "14.2.1": "2022-06-02T13:50:59.544Z", + "14.3.0": "2022-06-07T14:25:33.985Z", + "14.4.0": "2022-06-13T21:18:59.652Z", + "14.4.1": "2022-06-17T13:43:54.572Z", + "15.0.0": "2022-06-23T11:42:32.763Z", + "15.0.1": "2022-06-24T07:45:03.449Z", + "15.0.2": "2022-06-24T13:33:18.068Z", + "15.1.0": "2022-06-24T16:45:19.799Z", + "15.1.1": "2022-06-25T11:48:05.306Z", + "15.2.0": "2022-06-29T12:28:31.959Z", + "15.3.0": "2022-07-01T15:05:05.217Z", + "15.3.1": "2022-07-06T07:28:20.479Z", + "15.3.2": "2022-07-08T08:00:46.640Z", + "15.4.0": "2022-07-13T13:54:55.105Z", + "15.4.1": "2022-07-21T07:38:23.707Z", + "15.4.2": "2022-07-21T12:25:53.952Z", + "15.5.0": "2022-07-21T14:28:07.466Z", + "16.0.0": "2022-08-03T07:02:10.361Z", + "16.1.0": "2022-08-06T14:51:44.385Z", + "16.1.1": "2022-08-16T12:01:11.552Z", + "16.2.0": "2022-08-19T08:18:52.374Z", + "17.0.0": "2022-08-29T09:13:36.363Z", + "17.1.0": "2022-09-02T11:30:22.663Z", + "17.1.1": "2022-09-05T12:51:26.203Z", + "17.1.2": "2022-09-07T13:20:18.114Z", + "17.1.3": "2022-09-08T13:19:21.409Z", + "18.0.0": "2022-09-19T12:24:34.640Z", + "18.0.1": "2022-09-19T13:34:28.702Z", + "18.0.2": "2022-09-19T15:09:38.416Z", + "18.0.3": "2022-09-20T08:53:20.832Z", + "18.0.4": "2022-09-21T08:46:32.368Z", + "18.0.5": "2022-09-22T08:49:53.102Z", + "18.1.0": "2022-10-05T08:35:23.776Z", + "18.2.0": "2022-10-05T15:30:20.142Z", + "18.2.1": "2022-10-06T10:44:47.916Z", + "19.0.0": "2022-10-14T12:57:38.158Z", + "19.1.0": "2022-10-21T13:56:31.537Z", + "19.1.1": "2022-10-24T14:41:20.235Z", + "19.1.2": "2022-10-25T13:23:27.727Z", + "19.2.0": "2022-10-26T07:54:56.387Z", + "19.2.1": "2022-11-02T10:49:16.563Z", + "19.2.2": "2022-11-03T10:38:45.880Z" + }, + "users": {}, + "dist-tags": { + "latest": "19.2.2", + "chrome-67": "1.3.0", + "chrome-68": "1.4.0", + "chrome-69": "1.6.2", + "chrome-70": "1.7.0", + "chrome-71": "1.9.0", + "chrome-72": "1.11.0", + "chrome-73": "1.12.2", + "chrome-74": "1.13.0", + "chrome-66": "1.1.1", + "chrome-65": "1.0.0", + "chrome-75": "1.15.0", + "chrome-76": "1.17.0", + "chrome-77": "1.19.0", + "chrome-78": "1.20.0", + "chrome-79": "2.0.0", + "chrome-81": "3.0.0", + "chrome-80": "2.1.0", + "chrome-83": "3.1.0", + "chrome-85": "5.2.1", + "chrome-84": "5.1.0", + "chrome-86": "5.3.1" + }, + "_uplinks": { + "npmjs": { + "etag": "W/\"10b2e3ff177b137cd0779572218d09c4\"", + "fetched": 1669184417300 + } + }, + "_distfiles": { + "puppeteer-0.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.0.0.tgz", + "sha": "c71ff3ced0cf60fc7d9faa4d66e9c5e8c3a2a12a", + "registry": "npmjs" + }, + "puppeteer-0.9.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.9.0.tgz", + "sha": "d65997ff83e24eb569e5577d2f75695dcbe5be4a", + "registry": "npmjs" + }, + "puppeteer-0.10.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.10.0.tgz", + "sha": "f0a95de4b2660608fa9dbc54f525d013ef6262e7", + "registry": "npmjs" + }, + "puppeteer-0.10.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.10.1.tgz", + "sha": "a26f7012ff0fcc9f21c70ff9e2a8c60cba568a83", + "registry": "npmjs" + }, + "puppeteer-0.10.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.10.2.tgz", + "sha": "b4a959a722bf626ca481f2aeba11fdb810f2c98f", + "registry": "npmjs" + }, + "puppeteer-0.11.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.11.0.tgz", + "sha": "0a2b856f3c2745a5884c6dde9fb44f96663988ed", + "registry": "npmjs" + }, + "puppeteer-0.12.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.12.0.tgz", + "sha": "9c421930851594dfdd479d07646666a74ced7719", + "registry": "npmjs" + }, + "puppeteer-0.13.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-0.13.0.tgz", + "sha": "2e6956205f2c640964c2107f620ae1eef8bde8fd", + "registry": "npmjs" + }, + "puppeteer-1.0.0-rc.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-rc.tgz", + "sha": "79214e18fd21e62b7957da1ddc4195aad6c5f854", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1514510476874.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1514510476874.tgz", + "sha": "2d677cb4437d8031421566751b6dea946638c044", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1514951743425.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1514951743425.tgz", + "sha": "38b4107a90abf28aa8d6e3412c8b48c973b09bfc", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515022965203.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515022965203.tgz", + "sha": "e82a8c707869753ed617e95c4c7ce7babf74fbe0", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515032607003.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515032607003.tgz", + "sha": "93fa3328b29fd761d6aace5c874398e8d501bafd", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515061835903.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515061835903.tgz", + "sha": "ffb3645ab691c07a7f44a9a3c3601950e3190a5c", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515092222354.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515092222354.tgz", + "sha": "968249fe6c2e5b035bdc4f698288b363291aec11", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515094434782.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515094434782.tgz", + "sha": "9c423124078219c572c0e9dc142e6a66c34a60e8", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515095370840.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515095370840.tgz", + "sha": "57050fbc70d711665a78895624deab91d6e42741", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515096688553.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515096688553.tgz", + "sha": "c00be069edfd6497fc24275c6e2d6dc3b4b0ee79", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515102886297.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515102886297.tgz", + "sha": "ccdc72baa5892399bb59c16e932529eeeb6623f0", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515107202232.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515107202232.tgz", + "sha": "c97ca3cf6e965418c367fb75a7ef98d093cece15", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515176243781.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515176243781.tgz", + "sha": "b174a2a3f2aaf2da3aa5e117cd611bae7dae08b8", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515449879873.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515449879873.tgz", + "sha": "9f4b1b1b3e9b4229619d3c1d6e0a92db33f8943a", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515453229229.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515453229229.tgz", + "sha": "91f708ddb34349a183e4a98f9d384a512e7b86e0", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515460930569.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515460930569.tgz", + "sha": "e70efdefb19db8cdca7ccc67ba83c7c3f48652a9", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515463858907.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515463858907.tgz", + "sha": "a13b89365bf861c434a38a23210c4e27573ab36a", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515463970965.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515463970965.tgz", + "sha": "b28b365b1c23af6267f06d41890c90c64d9bdb84", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515544418139.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515544418139.tgz", + "sha": "dc8da4b2b9c1a96cd34c06a96dd4275c424ccbfa", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515546200351.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515546200351.tgz", + "sha": "a2a36b6c28ea8bbc7da6f321875ba2074eb82881", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515552562439.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515552562439.tgz", + "sha": "7fe05bc53e0102c9cb4edb2f2fa5e01a9ae9974d", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515563875372.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515563875372.tgz", + "sha": "28b44991efa79e0b1e4a048219930a692c476379", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515567769425.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515567769425.tgz", + "sha": "760f6d3274fde82908077560c3d27515858de44d", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515568144024.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515568144024.tgz", + "sha": "a3764af4f461d0521480b0c41dd6824d4ebcb607", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515618391320.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515618391320.tgz", + "sha": "2ef0ee2c999de1f0fdb9af74c3b83d650bc0fe1a", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515641713768.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515641713768.tgz", + "sha": "b6f979af3b8a12cb83c715c6347050bee624546a", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515659454855.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515659454855.tgz", + "sha": "3a6225125af2b74fdcc13b400c4e49c16b0b75a2", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515702182453.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515702182453.tgz", + "sha": "96bb32e59742e3a4a22cb5e9c176d4a171a55134", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515707096515.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515707096515.tgz", + "sha": "826c87507d8d622cc4960c9387754474c918fa7b", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515712659552.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515712659552.tgz", + "sha": "50ef02f78428152e66fe6dc51d685c4cc18abd3d", + "registry": "npmjs" + }, + "puppeteer-1.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0.tgz", + "sha": "20f3bb6ad6c6778b4d1fb750e808a29fec0a88a4", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515733912424.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515733912424.tgz", + "sha": "52198b0bd5e39d4447816c1cefbc1277f1758ba5", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515745145135.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515745145135.tgz", + "sha": "18a200349c5d1802e4c4292453ff78b113ef58f3", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1515786200433.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1515786200433.tgz", + "sha": "73fc9a3ff9468e25f74edeb95d4a5d66ff40f407", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516189923095.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516189923095.tgz", + "sha": "a987b4a1d227fddd2e8bfcce4f170164b2a45490", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516255441715.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516255441715.tgz", + "sha": "b2ab14c4fe72d891c6897301b3aafdf921b24b5f", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516339380944.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516339380944.tgz", + "sha": "80ea40bdff589eb4d7b97d3f0ee0732729ff833d", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516339397474.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516339397474.tgz", + "sha": "e843ab7b4209145d8bd742db664753ddeade5e9e", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516340514293.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516340514293.tgz", + "sha": "20754223572a2df913d8d9855ad33258a9bc38c0", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516351540753.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516351540753.tgz", + "sha": "9e9b7a617708c45ebd3398277200f6f4cff4e642", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516663116955.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516663116955.tgz", + "sha": "3a918af4512f96f4374f54e0afc6e695c66dcc57", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516666407998.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516666407998.tgz", + "sha": "94bb3e4adc800ea3888abf00a0329d67e6eaabae", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516668517979.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516668517979.tgz", + "sha": "a5e5a3493c7836dbe355119975cd31a1782bdedf", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516669982697.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516669982697.tgz", + "sha": "76ec7d736d31da129b43f807a2742d78d5c81725", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516857257758.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516857257758.tgz", + "sha": "759ec622fb090497afaae0f422ae0016840c0a57", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516857487583.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516857487583.tgz", + "sha": "50478340a753013e65deb2722af250b86e2a6b49", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1516920787679.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1516920787679.tgz", + "sha": "2df0f343dd1bbcdea0abb8eb6cf66d3eaea87187", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517036516784.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517036516784.tgz", + "sha": "0057b3ce0141e583a84afb67f478f36a3ded485a", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517354775230.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517354775230.tgz", + "sha": "bfa96cec0d3866c37969a0becda2bf5086facff4", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517441618294.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517441618294.tgz", + "sha": "5c7a702163a2f06628aca7050b75e61b7584a4b7", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517443479601.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517443479601.tgz", + "sha": "fc18e2aa8886e48d71fe640b365b8de64af98d70", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517859708863.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517859708863.tgz", + "sha": "62e8299e1b6d150f879e8cbac0d95c5460ac674d", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517864102118.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517864102118.tgz", + "sha": "fbd295b42ab7940e793abbba549f55378924bd54", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517870791213.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517870791213.tgz", + "sha": "45117f043b5ede6230e5e93f6e33bd0d07b0cfff", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517871038246.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517871038246.tgz", + "sha": "84f27b6a39afd1cf4167720f02dc34cd8afc9f86", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517871611925.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517871611925.tgz", + "sha": "c67c5a4e9f021372173ca67789e184617de0d884", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517871854711.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517871854711.tgz", + "sha": "9ffa20cb366c14232a5dfd70cb29e7be82f0ccb6", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1517875514795.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1517875514795.tgz", + "sha": "e176f5b3aeb99d3adde7a558fc2f377b3bb8b4cd", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518024831019.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518024831019.tgz", + "sha": "b35ae977bc51cf5fda246fff772351a05319105e", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518042185396.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518042185396.tgz", + "sha": "6e7b048de6c840fc1460f03363880474c72c063f", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518044651367.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518044651367.tgz", + "sha": "91c88e498822563b51afb2822a43c2f86906ca5b", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518069662486.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518069662486.tgz", + "sha": "f0350da9b9a098abcc0b175f49685cf55524fba0", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518069677340.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518069677340.tgz", + "sha": "23f9b529e09940228d29278151743827dc8a0dad", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518148905595.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518148905595.tgz", + "sha": "b2450fbc2dfc51509fa1a4baaa4bb2af4f6cd6a9", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518485242743.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518485242743.tgz", + "sha": "9976a5112c6557ee2bbbc24872bc05053b07c07b", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518548577113.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518548577113.tgz", + "sha": "73e58193164e1aa9805c71ede0978128c445e6a1", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518550112236.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518550112236.tgz", + "sha": "97afeecaba1e8fc10fdb1476415cacfdc5672ed2", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518558601182.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518558601182.tgz", + "sha": "b2e6b1deecefb508eb368aec469ccb05b01af227", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518559525177.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518559525177.tgz", + "sha": "77fd92f7636baf616753508ea8ec90c3e8b2a3c4", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518561730306.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518561730306.tgz", + "sha": "b52fd183cdb194d86183d033c8bbb079ea2fe1eb", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518570822451.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518570822451.tgz", + "sha": "75c3b23ac666f54518c52071d00f395fc873f361", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518653466440.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518653466440.tgz", + "sha": "fcd8de6255507613e7e3d36101cbee1d0e0b92e9", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518655197185.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518655197185.tgz", + "sha": "9b92924247ab289e85b6db3589f797ed59ae009d", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518659629421.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518659629421.tgz", + "sha": "91ce0a16105f16237153a46738b8e922b22bf33c", + "registry": "npmjs" + }, + "puppeteer-1.0.0-next.1518730236759.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.0.0-next.1518730236759.tgz", + "sha": "27e567df53e10ad68008b10ae925b04f4f22d4a1", + "registry": "npmjs" + }, + "puppeteer-1.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0.tgz", + "sha": "97fbc2fbbf9ab659e7e202a68ac1ba54b8bc0a25", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1518809287189.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1518809287189.tgz", + "sha": "d304f37635bfd9a844377b85f8ed651c05099028", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519262100584.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519262100584.tgz", + "sha": "608aa7ff9c9a0c87b5f0479ac9cfd34a03d3b1d8", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519266285104.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519266285104.tgz", + "sha": "9f05866e833e2dc5593426f185476c51cb24f3b3", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519345518390.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519345518390.tgz", + "sha": "288a641b817b15974aeddbcb1280795b711a3896", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519350670048.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519350670048.tgz", + "sha": "6036f8ce166a42bada8b0c12bdab53bc11f360a4", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519355295259.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519355295259.tgz", + "sha": "85cea7f17365989ad6c9e2330e0e568041a2f45a", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519355543971.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519355543971.tgz", + "sha": "56163b9ae41dc8a34110cb015d1fa88e54646cdb", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519424108630.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519424108630.tgz", + "sha": "e30f35b5abd942e616b91488c43dec47f23c477d", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519430203926.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519430203926.tgz", + "sha": "6bdf102a55ebf45a28a3c45cb956301b3f7a624d", + "registry": "npmjs" + }, + "puppeteer-1.1.0-next.1519449884398.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.0-next.1519449884398.tgz", + "sha": "9b83f59b54b2da2f5477dfc2340e843f91981bf7", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1519451217463.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1519451217463.tgz", + "sha": "631ecc4d6d69a55f1f3b3b6f0669aad3a9d7f707", + "registry": "npmjs" + }, + "puppeteer-1.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1.tgz", + "sha": "adbf25e49f5ef03443c10ab8e09a954ca0c7bfee", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1519455879191.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1519455879191.tgz", + "sha": "159a19b0b262c5b97c75ea853d5e3882d218a4a4", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1519675964105.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1519675964105.tgz", + "sha": "763e22bdcc59c2bb140d64cc6aebd9cfb011217a", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520401889860.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520401889860.tgz", + "sha": "4a9c632a5d6df978856bc1946ceb891ae0bd04d3", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520401938885.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520401938885.tgz", + "sha": "e0b8b503afb21cc8442d1dbc8f86d82dcdcbccce", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520415469395.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520415469395.tgz", + "sha": "8d3f4b6e27b210a9604a89104cabd07d5b23533d", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520879814994.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520879814994.tgz", + "sha": "449b467f8d9e75efabd2f1228f00b95d6d8febd3", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520894418677.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520894418677.tgz", + "sha": "7b53eb6583b5e2ce17d9dd4538ab6f84cd3345fb", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520952323905.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520952323905.tgz", + "sha": "645202e759542afd4f0b2744088e5d8dca192a28", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520952444105.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520952444105.tgz", + "sha": "0fbc96c50b9ef7d521181eef5c8ed176413831d4", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520953767679.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520953767679.tgz", + "sha": "67fabd88cb6ab9af8bb8477cfe740f1ea845deee", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1520958529908.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1520958529908.tgz", + "sha": "ecffc75a76da5841817ae349fca5ce6d738ea108", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1521058223243.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521058223243.tgz", + "sha": "7d2ea337783b9e5e86003e685454195bc3114456", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1521075426851.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521075426851.tgz", + "sha": "e981428b1b97616913b2b92051964bff7c475f66", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1521139956274.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521139956274.tgz", + "sha": "ef9c87d67c13670877cffb54854fb008e04a915b", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1521148059100.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521148059100.tgz", + "sha": "f18bd34e2da2558b98c3adf29ab14e3b84edc39f", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1521151010194.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521151010194.tgz", + "sha": "ac79b4334bd06e234ff47534d09b667c197e65df", + "registry": "npmjs" + }, + "puppeteer-1.1.1-next.1521163270821.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.1.1-next.1521163270821.tgz", + "sha": "1d1da2917b5af395536a5daedfd5d67f8b426401", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1521166881791.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521166881791.tgz", + "sha": "63a2d68b7dd1fce66f799caf23692264d5f9b739", + "registry": "npmjs" + }, + "puppeteer-1.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0.tgz", + "sha": "6a8a1c618af073dfcf6fc7c7e3c12e54129ffa98", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1521223510564.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521223510564.tgz", + "sha": "908a7bac6e1dc80b4b5bb28dc48cf011904ff242", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1521239766470.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521239766470.tgz", + "sha": "49d1cb95c36e306f8028e9e618b48a662bd04cb6", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1521514943168.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1521514943168.tgz", + "sha": "731f73bf021092328b184d5239bc9b3ed15f03e1", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522268068681.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522268068681.tgz", + "sha": "c9648fd38a4807d34701522a598217969a0ad3f4", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522268477499.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522268477499.tgz", + "sha": "b3d15bffa8145714b720ca6dfe534727b2eb2226", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522280204510.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522280204510.tgz", + "sha": "71144a5d39eea37eee96e09bdb75f1ddab003061", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522345485546.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522345485546.tgz", + "sha": "4ca73f3e7be0b62ec5015dcf1695c2eb261c93ac", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522345707169.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522345707169.tgz", + "sha": "77b5c42d7e0ccbf9d0f52fa0c4134b62cfaaa1a6", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522346209003.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522346209003.tgz", + "sha": "7448d1fd926a5293fbf349de56a73e0c21762bb6", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522357005652.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522357005652.tgz", + "sha": "3a9c3020eb55976fad7c9aaf03b4e972be86f82a", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522358202204.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522358202204.tgz", + "sha": "92b2e276560988c39c4e072997f4c7ca3ea9758d", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522369666407.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522369666407.tgz", + "sha": "f3d8b3677f278e012c16d8c78f3ec196ea457fdc", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522432314513.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522432314513.tgz", + "sha": "5f0cdc6a41d4c7ed3fcfa5a24e7184eb6d98f515", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522438832236.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522438832236.tgz", + "sha": "010603227b88be7c269d76fadab7d9052d8422e7", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522776506144.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522776506144.tgz", + "sha": "a178ba501b31fda18ed4b1df9c380316b31d429b", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522793255797.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522793255797.tgz", + "sha": "c80228caba178efe95adcd38c935791f7adbf16b", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522794237544.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522794237544.tgz", + "sha": "0366b46b5e6b5fd7d18108b20721010b7d69508a", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522875517748.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522875517748.tgz", + "sha": "01993a1e73532af9d47d299f41e48db4d752b9ee", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522875925576.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522875925576.tgz", + "sha": "283821a21e470da5a16f179bf0356880fcee52f8", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522876116282.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522876116282.tgz", + "sha": "c1a8b6f722b7e0a8aa391153a39a711dd28ceec4", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522959058052.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522959058052.tgz", + "sha": "9db9429b46a0ec819a834bd69054baacf406bb92", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1522996977258.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1522996977258.tgz", + "sha": "aa658809c421b1e928cd3b5bc83fd557787b28de", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523056452461.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523056452461.tgz", + "sha": "c37b441bad6ea49c374ba4316f2c83cd90d59c93", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523057899376.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523057899376.tgz", + "sha": "5fed03075b987c514f15aeed1e4b34acf0439e24", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523064178622.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523064178622.tgz", + "sha": "b34fb1483c229ca0f94230896c3e6b551d67a48b", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523088162996.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523088162996.tgz", + "sha": "8b8bf528e85982b935f445fddb213089c8888073", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523149268591.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523149268591.tgz", + "sha": "ec86057101d7a5918565f86b4e5f52c337e6dc7d", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523149297195.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523149297195.tgz", + "sha": "518b015fdbe4a8a651f70963f814c78176d2bad8", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523149483176.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523149483176.tgz", + "sha": "5f855b1645ad751218905a6b1eea51fd404467ba", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523309842933.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523309842933.tgz", + "sha": "221f5903eeba24728c34e05d7f8cae4012ba8df4", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523310677066.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523310677066.tgz", + "sha": "7d0590f5a8f8f656fad8823e155db92c51a57326", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523314104076.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523314104076.tgz", + "sha": "d104cf6f1484cb24bf60efba935cbab2f4da9cb3", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523317263232.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523317263232.tgz", + "sha": "c4d6c40fcf075dbef90ccf54773ec7b91e255dee", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523336680826.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523336680826.tgz", + "sha": "61defa878275c0525a7ad8b9e3aef78ac483bb3e", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523338363805.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523338363805.tgz", + "sha": "87fe68edd103389a049816ef56022b814d178eb1", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523342502622.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523342502622.tgz", + "sha": "bdfa63906d5a384eb02e6877c056fbc8082b59eb", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523388455344.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523388455344.tgz", + "sha": "aaee5080fdb09a6ced9cae7f1f13d1fe13faf7e2", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523394876742.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523394876742.tgz", + "sha": "112794cb1b6133ab5a0c4df938e0bf1f17245f66", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523401321974.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523401321974.tgz", + "sha": "1137b4d825a20fcc4e9d143af97e8399f664caff", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523408878908.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523408878908.tgz", + "sha": "a0df9e99db84b817df451af17a055d4da20a64b1", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523416053090.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523416053090.tgz", + "sha": "1ad6eb1202a50578eb41f02197506fbc4242f0d0", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523417075075.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523417075075.tgz", + "sha": "93930d56900d3a9886b2cd5f0e94a5c9c87266a0", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523485686787.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523485686787.tgz", + "sha": "a5b406ff86e489fdebbdf07cdfa55fbbd1cbe80b", + "registry": "npmjs" + }, + "puppeteer-1.2.0-next.1523546977615.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0-next.1523546977615.tgz", + "sha": "7a67aff35f5a324fefb232c50b0cd05577f68f85", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523592878900.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523592878900.tgz", + "sha": "6fd31eb1e9391801f3b564c1182159b3ddece4f5", + "registry": "npmjs" + }, + "puppeteer-1.3.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0.tgz", + "sha": "f571c5f27153ca164a8188e6328ce2e4946878f3", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523642474853.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523642474853.tgz", + "sha": "cf162dd667ad9f70975cfc1e1de4858bf9ccd1b0", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523643903145.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523643903145.tgz", + "sha": "2a38823d5554d018e6ae473fb005d93a2e76773e", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523903632662.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523903632662.tgz", + "sha": "86952a9cffd2f6f24f66d630db190a133aa97c84", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523922910902.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523922910902.tgz", + "sha": "6aa06b3f9edbe71c9145cb0ef791ea912a855e5c", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523986823398.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523986823398.tgz", + "sha": "67f9b03d34d635666d8eaabfb7c0e8ae86f23b23", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523988011170.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523988011170.tgz", + "sha": "c43d42dbd92d5523e454b844eb01fabb6e8b36d1", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523991031219.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523991031219.tgz", + "sha": "aadc3d0a04cfa8dcbde8881bd221b13fccb5b98f", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1523998304267.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1523998304267.tgz", + "sha": "8b5c54d2ca3c572ca9671e6484864319f950389c", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524002007381.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524002007381.tgz", + "sha": "7ee6665982f412c6edae3098d5ba56c74b99592e", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524077854221.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524077854221.tgz", + "sha": "43bbdc9510c06a9deeb327b4a22c2e4692c36ac8", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524169798128.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524169798128.tgz", + "sha": "08e779d162af76fcca51c2105ee0fe17855c0e87", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524172726027.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524172726027.tgz", + "sha": "32aaa8bd247ba443b271367156f0b3d8c5cc6fce", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524503013067.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524503013067.tgz", + "sha": "44cba24f61cac741794a79fe6bca7ac2c8bfd354", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524642447975.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524642447975.tgz", + "sha": "889e61549f02320c9129b7309bf479df912bd214", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524695478733.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524695478733.tgz", + "sha": "92f4b9af8c574cecd8b9a40e1737770b5dde0a06", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524701668798.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524701668798.tgz", + "sha": "bd5ac9c90a97b9e6fad3295555b042fe94dcdda6", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524704985101.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524704985101.tgz", + "sha": "27728710359bffbfdc876f5361268c95348e9a5f", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524705708145.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524705708145.tgz", + "sha": "2e3ab99c2329934c626b9c0b5d67479659643beb", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524712919551.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524712919551.tgz", + "sha": "5fcffa7ef92df07bcc0c15a85367526d2c370898", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524713000921.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524713000921.tgz", + "sha": "75d47c3cb989701be41f1c57838edd7b09e797df", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524757175953.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524757175953.tgz", + "sha": "697c0a57f7a5f569be244233a8da4601d437e5c5", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524766628711.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524766628711.tgz", + "sha": "f066f73dd2148733ce274e6d80278a0fe6b3953c", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524774887046.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524774887046.tgz", + "sha": "f309e85ad7b17b7bf262de74e07b251e5a9c892c", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524774920630.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524774920630.tgz", + "sha": "7dcaf6ea1e18df54e657ac97b48eac9decccf3b6", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524865639981.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524865639981.tgz", + "sha": "eb1254d8c0d71c344a0b853b0b0a600e57c4f7e5", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524884685958.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524884685958.tgz", + "sha": "b84bc70f5507a67fc5d38e103e3cde94cae5d2d6", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524889059564.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524889059564.tgz", + "sha": "9779b909bcf20fa63283afbca12c138192580a45", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1524890531204.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1524890531204.tgz", + "sha": "253d34c24ef9b70f0ea5c1db41bd20a7c948091a", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1525111445523.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525111445523.tgz", + "sha": "69ed39ec47990c616a6cf80c15f701e937eaec3f", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1525135284208.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525135284208.tgz", + "sha": "3a7ed35243103021e52cabe31abe0dbbf89fce4f", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1525301631811.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525301631811.tgz", + "sha": "5a54c579047686dffad98fc61a29997f689ec2da", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1525388744646.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525388744646.tgz", + "sha": "666c85a24ab776db95890d2dc2a7f9a24604f078", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1525459650281.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525459650281.tgz", + "sha": "80fb1e5df734fb6ac4fda7b5c28ed0aaff921414", + "registry": "npmjs" + }, + "puppeteer-1.3.0-next.1525828826075.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.3.0-next.1525828826075.tgz", + "sha": "c500bcd6480c7839d91b6c951b76b1b4273d2795", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1525841345569.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525841345569.tgz", + "sha": "b993f81763194ad6afb96293d7924ab67ce4601d", + "registry": "npmjs" + }, + "puppeteer-1.4.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0.tgz", + "sha": "437f0f3450d76e437185c0bf06f446e80f184692", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1525875866798.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525875866798.tgz", + "sha": "35e2f02710d348238c4ff8aeda8d35c60e52a67f", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1525886024469.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525886024469.tgz", + "sha": "b41cc1e39e04847d586d3c754f38ec3bcdbeb8c1", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1525984104919.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1525984104919.tgz", + "sha": "a62c589b3fa9330096535a575923a87ff32db1a9", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526506763480.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526506763480.tgz", + "sha": "3db94c733c16a5b306dd4bf4823341ec8e2fed21", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526506897747.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526506897747.tgz", + "sha": "f5d69b279ecbd3fc5e65ea419777774114b52204", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526507871161.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526507871161.tgz", + "sha": "0b74620d3fbb3a7d50d0c9290d0e226ca5b7339e", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526510342960.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526510342960.tgz", + "sha": "e6bbd9513b29a0d07ad0d8d89820a1773d7e0e16", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526519544088.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526519544088.tgz", + "sha": "41a391fa50cc53ab8d119c3a27772a58394b7b1a", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526593919447.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526593919447.tgz", + "sha": "5fc24e52e088d6e1bf972b848482f14d70bf0eea", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526933481310.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526933481310.tgz", + "sha": "01436198be1367fbc0b2d95f2197547f82d8490c", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526938425001.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526938425001.tgz", + "sha": "85a447ab4822465ae421fbd412a0ce9fdb5e3242", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1526938802806.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1526938802806.tgz", + "sha": "0f926b36a7a23bf43cb64eadeb55b5cb8206c6ae", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527292051776.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292051776.tgz", + "sha": "7cb5324fe342bb2dcb2f92425520015c5435b2f4", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527292060831.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292060831.tgz", + "sha": "9c634c4b9af4fdf05ef98ad562246e9afe9f0753", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527292169142.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292169142.tgz", + "sha": "26dae090953eb658cbe2d022f16e086cfb5c3f1d", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527292577308.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292577308.tgz", + "sha": "a0c79f862e4402b2f6475ad6490b015ab4fa34c4", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527292742969.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527292742969.tgz", + "sha": "7089da748afd4363040a0787da8f9ee2c386ca44", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527294524156.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527294524156.tgz", + "sha": "efdd1356986ea1d7cdab4fe1a66aecde5183c561", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527294631387.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527294631387.tgz", + "sha": "a682a4aca39f1da0accdc56ff500291b573bcdb1", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527294674237.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527294674237.tgz", + "sha": "59be1e0213e1d1bbcce2458fc8bdb258edadf1bb", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527632813414.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527632813414.tgz", + "sha": "b4e235a372f661ff0560633785d3680cec9fdcfd", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527632860155.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527632860155.tgz", + "sha": "4f8a2ae9e9f8ed9f6201e0cb6f2dd83b4a046669", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527633150048.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527633150048.tgz", + "sha": "df9dd1080b57ef9909b26e4a292b48f75c8eedcf", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527634039615.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527634039615.tgz", + "sha": "08c4cb61284d2176a1dcaf6f845e03ef0fbb5391", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527715229660.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527715229660.tgz", + "sha": "15e99d41219555b85b307d151fb5dedaec120186", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527729038649.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527729038649.tgz", + "sha": "7b8262a76713da650acd47fcd0edeec9d2f4b865", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527793846806.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527793846806.tgz", + "sha": "67822bbab0d2f7ce148abb088ec99cfa99f418c4", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527801882058.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527801882058.tgz", + "sha": "03bdc2371be5cf12de400c9ba44610b0b65a33a1", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527808033454.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527808033454.tgz", + "sha": "33f7ee6ee92aa7bfd8c01714056e440228b4ceb8", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527810120829.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527810120829.tgz", + "sha": "8fdcf9f67f44f7d0a34e7846b69c33cc7fd3231d", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527810915859.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527810915859.tgz", + "sha": "5e59df22bb99715d9e67f26a76d25bcc0625618e", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527810967055.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527810967055.tgz", + "sha": "ebde51af3d480b58d8df93dde5e09f00decc022d", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527811743681.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527811743681.tgz", + "sha": "360b03722760575b8e709e2eef44b7cd2317b952", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527813649005.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527813649005.tgz", + "sha": "e8eaf898ba56caca4bb088e40d1640525e434d8e", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527816016516.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527816016516.tgz", + "sha": "e6a752be7768e27e2f0ef0bc725b6d062e4367bf", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527877736615.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527877736615.tgz", + "sha": "6834dec536fcb1f0fcabb6b558f936d4250d6d35", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527886329222.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527886329222.tgz", + "sha": "d1ecce23df8e935bb96023bfdbe28d73fa8ee49c", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527886799309.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527886799309.tgz", + "sha": "da78fcfc6d2a815032603dde42a734e551939513", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527887011493.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527887011493.tgz", + "sha": "e6b0618fbd94b2d5b75259b9c7d089a3d3fc2eef", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527891453248.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527891453248.tgz", + "sha": "59d3b4dbca6f449bfafc6d47f6aaa13a8d19e71e", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527891760955.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527891760955.tgz", + "sha": "8b7e4d3d15c5f0360d8d2c4f80b9a08f78da4321", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527958760421.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527958760421.tgz", + "sha": "70319ae17099619288da34ff950e85fd2484864d", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1527965268824.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1527965268824.tgz", + "sha": "042b2b8c23422f420900d5768d45ee4906496562", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1528296840819.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528296840819.tgz", + "sha": "6216d117f093f4359f2e06a0db736ec2c7158436", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1528334015125.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528334015125.tgz", + "sha": "1f2eb64f804b40d46d37d0ca12f4ea642560ac4f", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1528334094813.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528334094813.tgz", + "sha": "a14ad0b8e836c0b8cd45838a961dc3a6695f0c56", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1528334327491.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528334327491.tgz", + "sha": "4ae68e2e834f97b51e4b01359e30efe2b68c3ab0", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1528389663924.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528389663924.tgz", + "sha": "27ed0b51389a567eecb3ee2ef36445d496280ee8", + "registry": "npmjs" + }, + "puppeteer-1.4.0-next.1528395894335.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.4.0-next.1528395894335.tgz", + "sha": "6bd61d70cd9ad4fede76f45da0231b126e4598f1", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528399382159.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528399382159.tgz", + "sha": "3778d5edd38f34146b06d75f378679ccff57228f", + "registry": "npmjs" + }, + "puppeteer-1.5.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0.tgz", + "sha": "e35db3f3ba3d41013feb65be02bdaa727ec7b8ec", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528402191643.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528402191643.tgz", + "sha": "5248daeee21a4d4cadaff44945e9e5bee7ca8765", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528919394878.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528919394878.tgz", + "sha": "d4840f8f016a7e2555375a7375ee6876137e6f4c", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528948338383.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528948338383.tgz", + "sha": "549be7644a845d17739ee877ef4efb948ea1af55", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528996935297.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528996935297.tgz", + "sha": "b45997685fbd9e99a95b6968f9f4c121c7f45ad7", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528997168247.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528997168247.tgz", + "sha": "e2647dbd87731c9e857f6ccd2a59d429b9a294ec", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528997315916.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528997315916.tgz", + "sha": "554aec18475b86321ff175ce4fdbbfaacd946f8b", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1528997827655.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1528997827655.tgz", + "sha": "47593d16d8b8a1fd3d500f5279a0423caba7ea58", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529001772241.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529001772241.tgz", + "sha": "9c9976c49b6f2665b714f4702d77fb7c49977d96", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529009865250.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529009865250.tgz", + "sha": "098da606064df102e83fd380ddfba62fd02a635b", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529010081851.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529010081851.tgz", + "sha": "393f6a9ff0818c9c5b7568ee5bde0c98db86aa96", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529012067283.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529012067283.tgz", + "sha": "e8c1d3acd9a8f20304da00c3535beefff81ec4b8", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529015425897.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529015425897.tgz", + "sha": "687cb4bba15f2d784139bcf4f3a634a71d7bb764", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529017025751.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529017025751.tgz", + "sha": "7e6ec989f285efd0dc19d2610ab6520fcce9bcbd", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529019939040.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529019939040.tgz", + "sha": "319e4eb3d4f2d56927e79b88499787d3033b7cd1", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529020277784.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529020277784.tgz", + "sha": "873b0f5033aa8ae475b108b11f01dd623f91029f", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529354619280.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529354619280.tgz", + "sha": "77644cffb716f608eca1312d473e750629cd07f6", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529393801062.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529393801062.tgz", + "sha": "f36a4eb650abc7b545f830c061a0c4d80c175366", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529429863153.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529429863153.tgz", + "sha": "95f37a30b875de156c8a667c17ee34c9f438fbac", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529430695195.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529430695195.tgz", + "sha": "1875e58e0d9d0e75d958db1d14eb68d33cdaea90", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529438841250.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529438841250.tgz", + "sha": "c4959eda00969da833a0c9a8b34e450985252d6c", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529441303045.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529441303045.tgz", + "sha": "3febc94d9688eb4b41196a1ad4cac33f9bfad6b7", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529528205725.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529528205725.tgz", + "sha": "a991133253eb9a36052247fb975911a5a6e69bfb", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529601789907.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529601789907.tgz", + "sha": "4b8e242d711f24c0b6502e5090abe6d8bd2427e9", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529602796106.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529602796106.tgz", + "sha": "ecde5b7576a15054f6d8bac32a078b85dd917566", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1529964776684.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1529964776684.tgz", + "sha": "dfd45cce1fd6f54fb4f8e7bec866566ba9d4e09a", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530045933494.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530045933494.tgz", + "sha": "6f9854496302d11f6c4fc4fef32b14491fe848b9", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530061507172.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530061507172.tgz", + "sha": "6c203d652e6bafcebdb3ea9428a54ee4adac369c", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530061501767.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530061501767.tgz", + "sha": "5b3b58673535216e67f7a37852e0cbc9c09515e1", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530217505079.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530217505079.tgz", + "sha": "e4331ad69d642c3b5e9c0a8b4590efeb0dc6702c", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530237072145.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530237072145.tgz", + "sha": "e9640561adf3db58623ada988c282a5f856f0764", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530291793909.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530291793909.tgz", + "sha": "76c1d649316a6657c393aafa442e841e06389b8d", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530299145196.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530299145196.tgz", + "sha": "74f095ccb134be6ec1031bacf48d3b36d7f4561f", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530333501924.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530333501924.tgz", + "sha": "68c76e973da22b0f99dfe486e2a370723fde45a0", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530747584201.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530747584201.tgz", + "sha": "86085c85671da2841c491761c06e37806991529b", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530747678469.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530747678469.tgz", + "sha": "bb02b86279a92e53dce51c2072cf87a5fffc26ce", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530749057441.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530749057441.tgz", + "sha": "a4ed5c31ddaf48ab41e45561935ec08be65b4ca3", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1530771453419.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1530771453419.tgz", + "sha": "c1e027acd707c1d9f4d61d12701fc0ce0e73d79b", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531162744899.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531162744899.tgz", + "sha": "18c36eee295ff378ac36c2d4a2407977ebdc9fa3", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531189632656.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531189632656.tgz", + "sha": "e6ac5db820aa0bddd86969550b8d39385561ec54", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531354198653.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531354198653.tgz", + "sha": "de2a57dcd26e063d36a94365537f8c5f60168cdb", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531356790849.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531356790849.tgz", + "sha": "130185bc531d810ce47fc5f606c04b725ebba245", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531359649065.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531359649065.tgz", + "sha": "4a290b123c004160bfde20c1b4c6a541b9202298", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531368423225.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531368423225.tgz", + "sha": "2518a8a32128a1de945103814c701a3baf47aa4c", + "registry": "npmjs" + }, + "puppeteer-1.5.0-next.1531368496280.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.5.0-next.1531368496280.tgz", + "sha": "aad0aa2e1b75285ddfed28ec60fb83755c6fd7ac", + "registry": "npmjs" + }, + "puppeteer-1.6.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0.tgz", + "sha": "b6b6bd6a063a0b7591258613ec89a135f2cf8f2e", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532381444032.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532381444032.tgz", + "sha": "c8255be305e76d97ec2f62fbf1ce01688a82e14c", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532390828888.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532390828888.tgz", + "sha": "4e31dc254a2b563bedbfd6ce221619920e08a9ea", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532455573607.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532455573607.tgz", + "sha": "f967426aa0889f8bda7c2eaab6a4bde5bf03362c", + "registry": "npmjs" + }, + "puppeteer-1.6.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1.tgz", + "sha": "ae50021bf8b2172be8f8d79224bec215f1a0c7c7", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532647628942.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532647628942.tgz", + "sha": "319bb2606c5947bffd5c0620ccb13f22a91bc875", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532974708417.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532974708417.tgz", + "sha": "638295c49dd5c7cb6671ebfeb1b114750b493211", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532994218655.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532994218655.tgz", + "sha": "db700df47edfa22300c59532c2bdfd908d0f74a3", + "registry": "npmjs" + }, + "puppeteer-1.6.0-next.1532995736465.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.0-next.1532995736465.tgz", + "sha": "13dae8175f8c2e71236871d01c110770673dbcc7", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1532999286971.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1532999286971.tgz", + "sha": "9beac837c149692cfcfd0b76a827ff800babb4c9", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1532999303060.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1532999303060.tgz", + "sha": "305d591e87c8993375442d799345da7108873fe1", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533001132257.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533001132257.tgz", + "sha": "2bf53aa5ceeb971988a759cd09c5c56629805d1a", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533002407095.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533002407095.tgz", + "sha": "2d90de7ab72ce9fd85a33a9e983da4b74165a56d", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533002862716.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533002862716.tgz", + "sha": "57c35e29d4676fffd445957c0eeeda025ae0b082", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533003082302.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533003082302.tgz", + "sha": "24460ff3ad70c54727ce82994e80dead1a1d0580", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533061595073.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533061595073.tgz", + "sha": "75d857f4cbfe7c0e8e3d994f6d07f3bcaa2dc48e", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533064908595.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533064908595.tgz", + "sha": "23b5cf60d3e3632503fb3deeb4593c09c7efa6db", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533068895359.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533068895359.tgz", + "sha": "51a24a83282b55f373d342d3dad7d9513e6e9b68", + "registry": "npmjs" + }, + "puppeteer-1.6.1-next.1533075061771.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.1-next.1533075061771.tgz", + "sha": "f27d3a5da69026b4ce0b461819eb6838fdcdb6b1", + "registry": "npmjs" + }, + "puppeteer-1.6.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2.tgz", + "sha": "e3c31f8184e8fb8b36e4263921bcaaab7a99b3bf", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533156975351.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533156975351.tgz", + "sha": "b23be34007a23d2441da5cea0333078f4dcf1386", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533156985664.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533156985664.tgz", + "sha": "bc97dcb500906307ed22f8355e22dd383c2893ac", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533160767482.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533160767482.tgz", + "sha": "f61b8f8aaf2b25f4ebc1a6856775024ab695dca0", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533163982541.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533163982541.tgz", + "sha": "170b08aee6704e8b65eaad0f497d7bb4d1f12c8c", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533165898296.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533165898296.tgz", + "sha": "d72e8833cac9314436e056ab1958df631f613aeb", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533580499948.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533580499948.tgz", + "sha": "e2fd1c0941c54063843ffc4e728dedec2571b7fc", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533673461575.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533673461575.tgz", + "sha": "6f8326a90f70513b9bc7b92453678395974f8cb1", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533673548000.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533673548000.tgz", + "sha": "ffc69a2ffb597c4618b75ef2cf4fec70c1341197", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533677196394.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533677196394.tgz", + "sha": "162a17ad57dfdaed1dd7adc26276f3b69c64bfb6", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533677198046.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533677198046.tgz", + "sha": "687145ac296199280df2c565c34cdb704c74106a", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533766644133.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533766644133.tgz", + "sha": "d317971738979ffc5d1e4a0ff4a9942886cc60ec", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533777762233.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533777762233.tgz", + "sha": "b899067564ec28a2893910c6f612c9ae0551207f", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533801194001.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533801194001.tgz", + "sha": "c3b48f5988a2a20275344025fd2255d6c61e36cd", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533838658133.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533838658133.tgz", + "sha": "db7d5127e1668177cd5a8c8d58ce13bbb00177d7", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533851342918.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533851342918.tgz", + "sha": "731b326ecf58e37dc6cbd4dbb820ed52fa096d69", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533852010323.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533852010323.tgz", + "sha": "d2577908255492a06740b915272c6f64c1bcf053", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533858839474.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533858839474.tgz", + "sha": "00358f2ffca231e9bca0d2adeb315e5c00f2f154", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533862299087.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533862299087.tgz", + "sha": "3b9af2beb63122598dd4733623c1233e3ac3bc0d", + "registry": "npmjs" + }, + "puppeteer-1.6.2-next.1533863808662.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.6.2-next.1533863808662.tgz", + "sha": "f04e81fc1f1ae3209314af5aea3f5b5421843fbf", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1533866199198.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533866199198.tgz", + "sha": "6fc6cfc186eb052919105041a773c679799c717a", + "registry": "npmjs" + }, + "puppeteer-1.7.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0.tgz", + "sha": "edcba2300a50847202c0f19fd15e7a96171ff3bd", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1533868079660.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533868079660.tgz", + "sha": "287dae0c91237bfbf53d11ef5aa0a51c2a4330c8", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1533868439500.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533868439500.tgz", + "sha": "d3544a0d72440507902f25704f04a0c09eb7dc01", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1533890337095.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1533890337095.tgz", + "sha": "2e96102423a10c1b4e725b4c2b0d4c1258f33493", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1534384626788.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534384626788.tgz", + "sha": "6a7be18bc22a42b048ccefb83f760fe1346d50cc", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1534456245810.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534456245810.tgz", + "sha": "d49e3af7560b955c73cf7bbfded0ffbbccb436c4", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1534456313739.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534456313739.tgz", + "sha": "04d12dc680c5a70ad1fd6eaafb03ddb0ddf61f85", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1534461562178.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534461562178.tgz", + "sha": "d3af2ec5d4420181d85ceb541be1deb5e5ddb975", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1534528433343.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534528433343.tgz", + "sha": "495cf1476e7f5f8577c8a888b8435a146d04cbd4", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1534528770278.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1534528770278.tgz", + "sha": "3bd20e7e496cad825cccf11000f6166f1813b09b", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1535149239491.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535149239491.tgz", + "sha": "f96f92055befacf57181fc8184518cbd7f7c78ed", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1535561219970.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535561219970.tgz", + "sha": "3648ce6590286bc86451221523cd58fe72e160ea", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1535587532424.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535587532424.tgz", + "sha": "e3a40a0efb5b043c91db266656bcb914c0552676", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1535668689898.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535668689898.tgz", + "sha": "b6ac71a3bc05a4f1a72ff9a2bfd9e8be960edb3e", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1535713393176.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535713393176.tgz", + "sha": "c928aaaf1c6c249c0ba671b5af6bccafa65dec38", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1535735247500.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1535735247500.tgz", + "sha": "2844e3218c2ea15fad9386d2d85b376feef7750a", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536001811008.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536001811008.tgz", + "sha": "762c2f961cb34f68df925e06dd22522180b22135", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536052077376.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536052077376.tgz", + "sha": "6cef83492dcb7814fc1789484e03496aefde9ed3", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536075421260.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536075421260.tgz", + "sha": "5d68cdd35f10c1d997f2eeeaf92269231069523b", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536076579608.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536076579608.tgz", + "sha": "58671fc05ea2aaa04f6e49450096bba7881e2966", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536078965668.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536078965668.tgz", + "sha": "98a21a48545093f371126e8166bc79677b6a13da", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536084551248.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536084551248.tgz", + "sha": "d5faf5bd04ce131cb425b92d4f3e29a5283e8c0f", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536089048222.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536089048222.tgz", + "sha": "faf91b1faa69b1327cab136c419f56e9fa4e9c09", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536090149346.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536090149346.tgz", + "sha": "bc83f8cab790b0b6f3085afefe217e7fd1d891e4", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536097322757.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536097322757.tgz", + "sha": "69609b2eda5c7c8c2dcf512727e0b2949087dbb4", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536167692060.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536167692060.tgz", + "sha": "3012705ba2db4ef0a158605fab5029e97cbd9ff0", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536176172701.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536176172701.tgz", + "sha": "bd17e3056ae3300a42647e077873fd1ceb758434", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536177940806.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536177940806.tgz", + "sha": "751196f5d9a980e7a91f0e602126055f7e1db1fd", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536177984039.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536177984039.tgz", + "sha": "8989cbd953031a885c3fb556daef6b82ffc91c51", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536184951011.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536184951011.tgz", + "sha": "e1c56a04f346e2ca80b8b0e9533a059854d6f3b6", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536184959160.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536184959160.tgz", + "sha": "fcb8c78eab92ca81354688c607ce3b573f28ca6a", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536262621679.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536262621679.tgz", + "sha": "c093bc595c5a1b7714a40086e287552fcc4f3946", + "registry": "npmjs" + }, + "puppeteer-1.7.0-next.1536266490601.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.7.0-next.1536266490601.tgz", + "sha": "5d5407289ca615d80193d4fd1b2898902b13ab3e", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536267134761.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536267134761.tgz", + "sha": "192451ccc8ca2b99c01c6b1a531803d370a2cb82", + "registry": "npmjs" + }, + "puppeteer-1.8.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0.tgz", + "sha": "9e8bbd2f5448cc19cac220efc0512837104877ad", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536267991002.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536267991002.tgz", + "sha": "efc5d30cfc40f4aad5705072fe740d7d25fce342", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536313779891.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536313779891.tgz", + "sha": "798f72ba4fb2bc7eeb4e4be0b6b5b72852275dc0", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536352705819.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536352705819.tgz", + "sha": "438fcb67b00e46e47152c6d476caead884ae68b3", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536404184361.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536404184361.tgz", + "sha": "2c822388e94b6411dcc9f0c669fdc171bb3f5256", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536664892181.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536664892181.tgz", + "sha": "0adb528e4f383ec86389a5d3ee07a524ffebfe8a", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536687830102.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536687830102.tgz", + "sha": "a04d96d04f114e60dec97feb9e6e2b215584850d", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536689410489.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536689410489.tgz", + "sha": "0693d8decbbfdeb4f08178ad2bb7241c918406aa", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536786749184.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536786749184.tgz", + "sha": "60222ec4dd3df3fff2dd1297b187371e35fff020", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536862670912.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536862670912.tgz", + "sha": "83fbb1766623b24bfef1261f7e2c917f14a955ac", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536863348198.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536863348198.tgz", + "sha": "27945f8ac2a848ff2bb9c974ac8383a8c398f931", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536865920560.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536865920560.tgz", + "sha": "e9324cb031b80d7510816948d5c08ab2fccf81eb", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536919640452.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536919640452.tgz", + "sha": "a984ec139009762e1909d008051de88799e328a8", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536946017235.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536946017235.tgz", + "sha": "25021c80c14b76a279ade69ed6bf1b23256584f9", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536950888728.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536950888728.tgz", + "sha": "02d9c47d7dd5b9dac807aac1d4eae679d90f8639", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1536951103472.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1536951103472.tgz", + "sha": "3b010a538b3ea9decb1237d08d965d42fe083a48", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537204703840.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537204703840.tgz", + "sha": "4c6df15503e0d99a708a3cb8da79fbe4e9e93f9c", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537223108573.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537223108573.tgz", + "sha": "3a5eba68e3e8333d540234e97a14f07aec48610c", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537226285635.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537226285635.tgz", + "sha": "47e918f5ec8fe59b0b574220f5e12b1f7e299105", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537362098762.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537362098762.tgz", + "sha": "01a43228dca5eacea84e7e55cb99041ede24a7b8", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537388094387.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537388094387.tgz", + "sha": "aae1f631cb7ab5d020a3b9f26c40501a07a5d53e", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537390700271.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537390700271.tgz", + "sha": "53b636800b2976b580aae585516447beead0d6e0", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537455065839.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537455065839.tgz", + "sha": "25afffaaef94affbb72c5ab6ca5d07c30e01d1df", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537468425440.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537468425440.tgz", + "sha": "e344910e9dcb5bbf3aded6279518f7637e69a660", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537469893945.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537469893945.tgz", + "sha": "d73ba06c5d6fc60c553c2c7f39e09194c2863ef4", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537566876820.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537566876820.tgz", + "sha": "4b2515e4760dd76917acc1f4db8fcb37e95153d3", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537568897412.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537568897412.tgz", + "sha": "6645e51fa3f1447b76cd461215b180d2d6cc89b6", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537576245114.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537576245114.tgz", + "sha": "b87090de19e908e06e637bb8b8ef6c9d2706e02a", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537588058879.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537588058879.tgz", + "sha": "d23fb105df3bdfeaad1033d0fc4961cc5f67e979", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537818606608.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537818606608.tgz", + "sha": "453cbd6bc3c24a77ad43462a617134770c35cdb5", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1537978905474.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1537978905474.tgz", + "sha": "c9c9bac9f851a869f18cc6317bd842e7fecb6be3", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1538070839127.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538070839127.tgz", + "sha": "cef826c679494f30466c7184a730fb3733479b44", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1538512930517.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538512930517.tgz", + "sha": "faa429be354707098754758dfe99d13b2c58c49e", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1538611414237.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538611414237.tgz", + "sha": "a90c2048f011d208b544779e093304732a5a6afd", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1538612893058.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538612893058.tgz", + "sha": "9f1298de1af7b4543348a9c341f2c8fbbe418d39", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1538675072506.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538675072506.tgz", + "sha": "c291cef895e166618824142bd7b54afc8b1c2c63", + "registry": "npmjs" + }, + "puppeteer-1.8.0-next.1538688354136.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.8.0-next.1538688354136.tgz", + "sha": "b75af20ce0375d96af10c736f2fe383e295623db", + "registry": "npmjs" + }, + "puppeteer-1.9.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0.tgz", + "sha": "56dba79e7ea4faac807877bee3b23d63291fc59e", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1538689231174.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538689231174.tgz", + "sha": "1f7849d877a47ae4393ebb6e7c758f7260d7ebfa", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1538690157991.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538690157991.tgz", + "sha": "29e08d976bca7674881990aea060276622c881e2", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1538694722140.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538694722140.tgz", + "sha": "fcba6245db0531423bdebc316bbc9e5a3dfc7810", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1538768278224.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1538768278224.tgz", + "sha": "63cd2c38eeefcfdf64f73483698da9e0555a486e", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539120044247.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539120044247.tgz", + "sha": "729cdbfa6473afd7f04ab886ef847d9beb200e98", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539120211700.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539120211700.tgz", + "sha": "f59471f8511c33ce11c61a23d2e1f4c38d98f6b1", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539120534494.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539120534494.tgz", + "sha": "c2753c686fb02e5b6fec2f13ff4998c81d3f5aba", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539377578495.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539377578495.tgz", + "sha": "eb10d2beea58e93ccdef14146d4fd8d3dd2b310f", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539714521728.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539714521728.tgz", + "sha": "bcb3bcda902adc4bb16b0f3b2190e7ed70366090", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539734295322.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539734295322.tgz", + "sha": "22264fa6d8bc2cc181d8673e4feb00c619514170", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1539736052365.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1539736052365.tgz", + "sha": "ca2233eb12c2d8de189d634ac66cda73fa1cffc5", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1540492188882.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1540492188882.tgz", + "sha": "024f3238c349c37a347f9fe17d1f583a968bc33c", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1540493070953.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1540493070953.tgz", + "sha": "98540b6a3edd69866e0e84c9c268b1311d03d54a", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1540604446651.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1540604446651.tgz", + "sha": "377fba0c5359f7dbac88890ab984c9a0d402863e", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1541028853238.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541028853238.tgz", + "sha": "af1e7e7d9280541bd310d4fc5fa33eaa341dd789", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1541112234493.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541112234493.tgz", + "sha": "970707586b6c55a051f0f783781049b66ba48e0a", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1541112473441.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541112473441.tgz", + "sha": "e7d96c388e6553e2e40b81cab816c70ece238728", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1541115972867.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541115972867.tgz", + "sha": "b3d53ac908ef467e5d4e2268a9b96e6a2ea15be1", + "registry": "npmjs" + }, + "puppeteer-1.9.0-next.1541123853272.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.9.0-next.1541123853272.tgz", + "sha": "01757f50892a01374a2223dbce828d21cdca63f9", + "registry": "npmjs" + }, + "puppeteer-1.10.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0.tgz", + "sha": "e3005f1251c2feae0e10c0f7a35afbcd56589ceb", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541128319410.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541128319410.tgz", + "sha": "68a7b1da8d3fbd4d5bfc4b44ae47283379cc1113", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541182312825.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541182312825.tgz", + "sha": "96ce09879416a0fa1dd1ebbf47ea9fbb2718d57f", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541190395602.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541190395602.tgz", + "sha": "b76b9412aafaa1394fee73ac0e6c3caa46e624b3", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541204340403.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541204340403.tgz", + "sha": "852598bf8996685e5896f01204ed8c8dd5e4e23f", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541361083518.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541361083518.tgz", + "sha": "d46bc8150032e8d56db2fc8bdc424f8724d868cd", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541659909504.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541659909504.tgz", + "sha": "4e44f14b22aa60412e025ed85fc9479d3985ee5c", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541731034635.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541731034635.tgz", + "sha": "d3e562aa2929a414f1f9308021b02dd91456945b", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541733757076.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541733757076.tgz", + "sha": "06f1c2356bf06be32357822a7e7e48bc86a1dcba", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541806535405.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541806535405.tgz", + "sha": "fc2442d3819b5bbb36939f5c23fca0a92377c3c6", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1541818067358.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1541818067358.tgz", + "sha": "28974531211226b0f9644c57a794eca234ecb535", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542056531325.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542056531325.tgz", + "sha": "a2ead9c2ab0de2535507ed0f0300e6e099739abd", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542062579254.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542062579254.tgz", + "sha": "4200917dd82cd9db55999f1d1b7c6063f1e9607c", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542094148959.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542094148959.tgz", + "sha": "1ec333de444dce97472ef432f7cebd4aebffdfdc", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542152043928.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542152043928.tgz", + "sha": "a388537c7ad7d413fb0859be8682ea86a2156d53", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542224682151.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542224682151.tgz", + "sha": "6ed7c10500a7b342da5c98b185e0c9cd7d4b3705", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542322461212.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542322461212.tgz", + "sha": "5dcfd0b37a30b7eb5037c76270f741a86ba95b0b", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542322813531.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542322813531.tgz", + "sha": "efd2d3adb8242065d431bf2163e95a1094ee9a1a", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542389962978.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542389962978.tgz", + "sha": "c2b3181b47062edffae6e05c4ddea4499c055160", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542660024620.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542660024620.tgz", + "sha": "e468946739e77b59d8f1131c933ec1291bf403ac", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542752643857.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542752643857.tgz", + "sha": "da6b1f75e67686a2b4cb90519dd5983b0b5527b7", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542756975192.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542756975192.tgz", + "sha": "48a829f9125e5a6ad1ba76c6e437fcdbb4026252", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542758792020.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542758792020.tgz", + "sha": "e68faee1665be7293b19149d29398f4514c6ee60", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542767763738.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542767763738.tgz", + "sha": "54572c0b2540051b623b16036a218d95f92e047d", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542768537315.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542768537315.tgz", + "sha": "8501b779de3210fc32b771ef03fad507e791b3ed", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542770480356.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542770480356.tgz", + "sha": "49efca20549ad6440052ef8f6a9b16d4f30d40db", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542771500097.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542771500097.tgz", + "sha": "89606e5d98a891f6a6c27a824c26de984bf1dcfc", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542771982956.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542771982956.tgz", + "sha": "49cf4648ce4d4713af54fedf73016e8b533a1976", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542773003048.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542773003048.tgz", + "sha": "0342f509dce6b5fed863c312ecc5429cbfa27e87", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542773565980.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542773565980.tgz", + "sha": "b9a8391b789627c47e217f54172640705a4a1164", + "registry": "npmjs" + }, + "puppeteer-1.10.0-next.1542779777413.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.10.0-next.1542779777413.tgz", + "sha": "57e253cc58f979948e717cc580af03facb6f688f", + "registry": "npmjs" + }, + "puppeteer-1.11.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0.tgz", + "sha": "63cdbe12b07275cd6e0b94bce41f3fcb20305770", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1543560147647.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1543560147647.tgz", + "sha": "fef33e38d90147f9cb97efef5eaa2bbc33603e4f", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544046420498.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544046420498.tgz", + "sha": "f07d2729c6511d6739ad39ecd5cb3aa78cf345b7", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544128541083.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544128541083.tgz", + "sha": "14209ebb02ec498b6f1e79502333ea3bb597942b", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544128971170.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544128971170.tgz", + "sha": "665e6c37b703bbcc712e4fa212825905c90182e4", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544134189192.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544134189192.tgz", + "sha": "e2529f5e3939a15f0e898d6e428fe2fa015b43f8", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544168352298.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544168352298.tgz", + "sha": "3c6e5266538f09a32c11a011fab13cec0ab878ad", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544560245556.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544560245556.tgz", + "sha": "090ea02c2f9775f9b8db7419c59adef1a0df310a", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544656354290.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544656354290.tgz", + "sha": "cc661c1d292accbe76038e6b2dccaabeb2ae14a6", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544663587420.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544663587420.tgz", + "sha": "9d98e0071a432870fe113279f31358655ec92619", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1544737011631.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1544737011631.tgz", + "sha": "3d2f48fcd0a46a2232ae9dd3cd31fa4e99003bc3", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1545082503400.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1545082503400.tgz", + "sha": "6afcbdcd21ee527cfc6081e4d710cdb33b142bae", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547047771919.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547047771919.tgz", + "sha": "770aaacbe38d71837a04f2e518af8b11dbb449cf", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547510042445.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547510042445.tgz", + "sha": "cf10f47c10d4167c785cfa6ced1021e11e9c5d00", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547515612329.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547515612329.tgz", + "sha": "a5c3f27e2aa31ecfe91dbcbbc8430ce7a455b567", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547520320509.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547520320509.tgz", + "sha": "0532a7c66914812117d5ecac21ffe98979d767c2", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547524807357.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547524807357.tgz", + "sha": "a360f025fd90c30d88c9b0c8495157f823059508", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547527073587.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547527073587.tgz", + "sha": "c24b12526154e7b5b016d8e28cf2806bb4b9965a", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547581252732.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547581252732.tgz", + "sha": "cd3f32e447df51b5eba96a833c9f4092d22749d4", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547583689219.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547583689219.tgz", + "sha": "d8551b2514eba019e8aa5890aa4c247426da0e50", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547591862863.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547591862863.tgz", + "sha": "5310a8192258efc196a37d63f49bc2a9e499a9a0", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547592776490.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547592776490.tgz", + "sha": "c9a2dc4e99c48ef87c81440a873495c8838eecbb", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547599456407.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547599456407.tgz", + "sha": "a84525fb55c6b5eb38cec4911c8d31c054215211", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547601875361.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547601875361.tgz", + "sha": "83d1b50798adf89291183d1efa2ab6436183a11d", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547624594064.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547624594064.tgz", + "sha": "7aac0eea070b93453f0f0976a59d54bbeebfcb7d", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547835637594.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547835637594.tgz", + "sha": "52ad2b2d8453541af189a7c74127e600ba71a6d0", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547861804321.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547861804321.tgz", + "sha": "d9c7147ec320f7dfdb7e7af5e144d54569063267", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547925461836.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547925461836.tgz", + "sha": "7f910e020894c6dc9fc67db2e4ab889f32101f11", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1547960730125.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1547960730125.tgz", + "sha": "d8e834181bd3830e05ce46c09686938206bbf364", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548181462679.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548181462679.tgz", + "sha": "f27a204adf11c0f6aeb92d8136643ef1449cdb1f", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548183570779.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548183570779.tgz", + "sha": "34769ef1e6f6495866a08448c71c0b4a6c6ff4cb", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548197935129.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548197935129.tgz", + "sha": "69e655f0d952ccd4eaa370da43ae942b2492719d", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548198789601.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548198789601.tgz", + "sha": "4b6ce2854a0b7f10e4759cd7b6810497ace9e428", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548217700084.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548217700084.tgz", + "sha": "266b3bb3cd06221225608ee31854e11774ee2f0f", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548310151247.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548310151247.tgz", + "sha": "288eb91ea873bc283c7012b3a1705a1b1fa79fec", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548448163376.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548448163376.tgz", + "sha": "8b66d88a5507f69fdf7be1176eda80831e037653", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548476659504.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548476659504.tgz", + "sha": "c10392c869529ece7d5a2c8a710c2142a19be52c", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548567610624.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548567610624.tgz", + "sha": "f30be7901e3470f68b3c3656fd5ee6481b5fec24", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548703685570.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548703685570.tgz", + "sha": "cedfa1135ad9de5bea80d82d190a8d40b130135e", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548707281525.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548707281525.tgz", + "sha": "f30917aca87b882c82cc56a70daea34c0e361812", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548714258861.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548714258861.tgz", + "sha": "4831e0876b8c970d6cef8852cc6e589dab78b5a5", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548717377583.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548717377583.tgz", + "sha": "873cfc1d1ba6c7b29cdfa82f09abca5909b46144", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548724983083.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548724983083.tgz", + "sha": "d8a1124cec2fb911e49a4902f1eb2965bd86ad24", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548894144934.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548894144934.tgz", + "sha": "73363e3767c178d008239a1a0409a197436942d2", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548985003787.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548985003787.tgz", + "sha": "c29674d7eb4ddb36a8571389177ce1846f71faf3", + "registry": "npmjs" + }, + "puppeteer-1.11.0-next.1548986177131.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.11.0-next.1548986177131.tgz", + "sha": "6605fe77a74fe677691a123de6e6c5aa4ba48206", + "registry": "npmjs" + }, + "puppeteer-1.12.0-next.1548992224338.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0-next.1548992224338.tgz", + "sha": "21e2c6f0376c25b78ac7e5fed1f56b5b210d4e30", + "registry": "npmjs" + }, + "puppeteer-1.12.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0.tgz", + "sha": "325b97f42aa6cd66ae4d3d27839278e1f0b8e0e5", + "registry": "npmjs" + }, + "puppeteer-1.12.0-next.1548993028613.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0-next.1548993028613.tgz", + "sha": "aa21bfde099a5c3c315ea62e83b9b6b3d308de93", + "registry": "npmjs" + }, + "puppeteer-1.12.0-next.1549043939751.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.0-next.1549043939751.tgz", + "sha": "0f16d5391f04cc4b2f143d1a0898c1ef9d51e630", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549053217365.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549053217365.tgz", + "sha": "d4e87115a259ce59535a870be6721fde972ec072", + "registry": "npmjs" + }, + "puppeteer-1.12.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1.tgz", + "sha": "440241743f4c909015d0924bdb7f99f670d9c955", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549054273876.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549054273876.tgz", + "sha": "3e9e15eb8ba093a82d8f2417be7602cf65fb20ab", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549059171178.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549059171178.tgz", + "sha": "ed1ba83a66755893b050932a7f85b00e43ec0e98", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549061801998.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549061801998.tgz", + "sha": "6f908904044e1b55f9ecb57230d30572057b7c1f", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549069657889.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549069657889.tgz", + "sha": "f18fbe4df40ee7a6b0f12aa8a55f85b9e2f535d1", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549072734702.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549072734702.tgz", + "sha": "79592e4f9fb7b4e91300ff703d680a4c7b82a543", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549075450014.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549075450014.tgz", + "sha": "a1903d34e373282a0080a189eed848dcbac63e6d", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549137512702.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549137512702.tgz", + "sha": "9b5f7c88e52c25a188ae1cc2b11f3b3e133ab0ad", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549158745578.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549158745578.tgz", + "sha": "50c86cbb855347cad47a5a66a51909364869fa73", + "registry": "npmjs" + }, + "puppeteer-1.12.1-next.1549394930560.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.1-next.1549394930560.tgz", + "sha": "e57837ced1100bca9ccca4c70c5cdf60bf7f546e", + "registry": "npmjs" + }, + "puppeteer-1.12.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2.tgz", + "sha": "dbc36afc3ba2d7182b1a37523c0081a0e8507c9a", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549395705456.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549395705456.tgz", + "sha": "4fa47134537717076b9df2c91dba9f122d67c67f", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549397093328.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549397093328.tgz", + "sha": "4572073116aa7696f3beda2da4d20dca5bb04783", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549399902743.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549399902743.tgz", + "sha": "a764a4c1f9259a211a2d8de18d1710dab2ef2ee7", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549401617806.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549401617806.tgz", + "sha": "d91f533bee94dce463e5ea629676d7e09a02dc5d", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549402405484.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549402405484.tgz", + "sha": "9c38b47a95053eae90fc6ca2eac7630f7dd25537", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549403066989.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549403066989.tgz", + "sha": "06d2c8702955572b9ecba937f4e1ba4ca93e70bd", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549409507651.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549409507651.tgz", + "sha": "b3ddea0f45d453fac3bc47008b44e68c9732f8c3", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549422350612.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549422350612.tgz", + "sha": "7610b542f4009f1fce82209e2df1f36bf322833b", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549425183362.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549425183362.tgz", + "sha": "d5bc4c47e246a3ebf9dfff168a867776db9c929f", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549434954882.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549434954882.tgz", + "sha": "e8ae2b10a1f9fe3be6f8a6a1f10ad3745a16d0c6", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549476612045.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549476612045.tgz", + "sha": "ad1f01f211112556e17fdca20e9f32f719cb48fe", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549489957515.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549489957515.tgz", + "sha": "c3f9bb4411e9f056a158bf0ecec9efa28ab15eef", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549492279061.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549492279061.tgz", + "sha": "109a2715bacef82998424a7f695636377da41e0e", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549500038211.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549500038211.tgz", + "sha": "15847ba7755b2f2ed0b30e023a78e0fa0314118a", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549555526593.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549555526593.tgz", + "sha": "9151ab858786c955ea10f89d5c8b085ae09dbf1b", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549556415428.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549556415428.tgz", + "sha": "717a0869b91f38cc1d61ee1f11024407dc846640", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549561537920.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549561537920.tgz", + "sha": "72101a17309ca4d3c62b0be70b349773691b40a8", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549575152419.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549575152419.tgz", + "sha": "6f767f3cbe4d7f04f0366a66546e4c553ea6df25", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549581910223.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549581910223.tgz", + "sha": "ddaa6599a104c9f9d3c8e3cf884d0704503e3cbe", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549591798679.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549591798679.tgz", + "sha": "0dfe053655b0b200c315cf23b70c3d797133d2d2", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549671895275.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549671895275.tgz", + "sha": "0e238f06d1344613207aeb9922cb11a2ad6943b2", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549675314137.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549675314137.tgz", + "sha": "489b5545690d81c5446a8d017aa361bdcbf0d996", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549676493651.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549676493651.tgz", + "sha": "efd678c381c8d515a8ef6eda34e3aa0d08fde8f4", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549681486048.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549681486048.tgz", + "sha": "525547770a75dcb5ba6d2ad26f44408c56934bdd", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549683034841.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549683034841.tgz", + "sha": "1110beda972a82739e56d3b6c88098e208f69c4a", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549684766090.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549684766090.tgz", + "sha": "7f7ef58de2be4894def1372bfaf257b8783e5995", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549687399259.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549687399259.tgz", + "sha": "6137becca1d3e4b45e8282d55486de6d7b2d0de5", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549688623724.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549688623724.tgz", + "sha": "d7a9a62e1d9cce7f705bab47d0292cdc2ff674ef", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1549922885721.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1549922885721.tgz", + "sha": "b2886226ff46701e2327509145bf8751cadf8753", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550022326412.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550022326412.tgz", + "sha": "7b469817adf02b17ba885c09a1776bb2dfaea301", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550027809091.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550027809091.tgz", + "sha": "d37c9905be92c91305249cd2a678c9ce351a4614", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550030782241.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550030782241.tgz", + "sha": "0ddb348f09962de2c43861baa7ba29c5db0ecaa1", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550031427756.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550031427756.tgz", + "sha": "f54de6a12d5d48f40e4a82e8a9c1114dde8dc2b5", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550048628025.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550048628025.tgz", + "sha": "540b0c13323666c1f0fb0f7bdaf7650b43d2eef2", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550086939093.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550086939093.tgz", + "sha": "97fded92e8148da6a41ad132e37b53b925ca155d", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550088214550.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550088214550.tgz", + "sha": "e3cdf102b6f52b7fb4a3e846714882b53f319634", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550092693872.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550092693872.tgz", + "sha": "2dedd78dc2e1c673a30f7471768fd4b50b8ac5fb", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550095102698.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550095102698.tgz", + "sha": "cb676491ffe9cacd457d5a4e416c37336affdbdb", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550116409786.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550116409786.tgz", + "sha": "0e1b4a0286bead2c15cf94b96886401c871d18b9", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550116996244.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550116996244.tgz", + "sha": "d9b86eada137401f314351dbc16a6c1058dced6f", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550125345875.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550125345875.tgz", + "sha": "8ebf4975adba403b28c03c025630161756544bf1", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550129406249.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550129406249.tgz", + "sha": "9c5b25c0f251a2665a031187582aa5f9d2012d54", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550130473795.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550130473795.tgz", + "sha": "6cfcda9e99968cec6541dace53c715303dd4c156", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550131578606.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550131578606.tgz", + "sha": "0bbbb6714d18576072f553d9abf7c2707542e591", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550131956176.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550131956176.tgz", + "sha": "7b19c73aa601fef41be96a4e1b827bc0b23ed973", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550282653763.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550282653763.tgz", + "sha": "28d7b3344b94ee45dc00896ea7b0b8918a24aa3c", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550284380471.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550284380471.tgz", + "sha": "59ce827f1a772bbb63432ab3615b245f3621ef36", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550428217621.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550428217621.tgz", + "sha": "36ca5a0ed99532ac5d60d30022a6b2cf2ff6b23e", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550611648487.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550611648487.tgz", + "sha": "3231bcf220e2cbcbcb2a14a4063f177d0f595880", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550617121272.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550617121272.tgz", + "sha": "a1f262c08e286f0135c93e22600b94e1f66180bb", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550618944816.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550618944816.tgz", + "sha": "1a9397a75db288a92330abc87bb42fda29f07887", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550643350858.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550643350858.tgz", + "sha": "e2d680100ad7093e052930bfad17b7cd9ba47218", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550645075490.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550645075490.tgz", + "sha": "a154b9d89907288ad1a8c1b081eb44b713a9d9c2", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550772889548.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550772889548.tgz", + "sha": "4dfc118f11ec5607079e0d92df70fe40185494e9", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550783848074.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550783848074.tgz", + "sha": "beda79e83df7ad1202159bdc9e8689c975dd1b55", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550793853898.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550793853898.tgz", + "sha": "64acbae136330d12b722c063ccfcb822e81e826f", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550823147572.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550823147572.tgz", + "sha": "936966bcb30298ccb79e49a74a0fdc20cff27727", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550873538670.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550873538670.tgz", + "sha": "1a912fd20ff36b14c8f946e609e58520e9009b90", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1550909202855.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1550909202855.tgz", + "sha": "45e5f35a4efe4c17fa0dc31254e3153bfa2f1eef", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551078874966.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551078874966.tgz", + "sha": "b6cf1da41c4b86da3ef621e0620690157d905ae6", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551124333019.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551124333019.tgz", + "sha": "3bc916b391f4777091e82fcc1c7bfcc772e52184", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551127698921.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551127698921.tgz", + "sha": "ffd20aafa88f7936fe22dd6758aef5191d5ef718", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551128306241.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551128306241.tgz", + "sha": "83ae55943834ceadd3ae9a361d0f3f110b34d114", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551138240757.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551138240757.tgz", + "sha": "be868f7760ff3298d72392186d657444ce301ec1", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551161941289.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551161941289.tgz", + "sha": "f0ff5e011ba828bac8e3778a785ab76b5313e96e", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551242657823.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551242657823.tgz", + "sha": "bbd47f2dd88326f4e12a9c05eaba6bcada373606", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551309648206.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551309648206.tgz", + "sha": "48aa9c01698d0523dc207e1f48b8ec4f3b39ef5e", + "registry": "npmjs" + }, + "puppeteer-1.12.2-next.1551401475539.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.12.2-next.1551401475539.tgz", + "sha": "a21c2c1fef9185d4f3d268635d396a0dbafe7645", + "registry": "npmjs" + }, + "puppeteer-1.13.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0.tgz", + "sha": "187ccf5ed5caf08ed1291b262d033cc364bf88ab", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1551824103486.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1551824103486.tgz", + "sha": "193e2f5bf5c64ad56cecf056e43d7ff428cd5924", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1551827100936.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1551827100936.tgz", + "sha": "ef631553e97410b3ed8829b69691edddf0650bdd", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1551927265223.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1551927265223.tgz", + "sha": "69a2f867b3ebc4f1c424b96d2803d695526d25ed", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552064905462.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552064905462.tgz", + "sha": "a82eb911ac2d82648ba689f7b14d07a44e474878", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552084427037.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552084427037.tgz", + "sha": "e16f9aeb196a4a3b09bc5b56bc527584877db0f0", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552352667968.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552352667968.tgz", + "sha": "c28b9d19f21dc8df16e2a3c6e433612668d48a55", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552427382660.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552427382660.tgz", + "sha": "ca397447d9439915ee39b54c03c1939b0bcd70a1", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552429408444.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552429408444.tgz", + "sha": "c99c949bab93c0aa961a084a4954ea5feb8d46a2", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552508707139.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552508707139.tgz", + "sha": "494dc92f4c773e51cfe3f8edc362c966ea90d46f", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552520077410.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552520077410.tgz", + "sha": "fb9aee989837d323c63c7d66ec76fcd2ea0c76f7", + "registry": "npmjs" + }, + "puppeteer-1.13.0-next.1552588842411.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.13.0-next.1552588842411.tgz", + "sha": "ae197f15faf579462fbc6f2613239a31da454b5c", + "registry": "npmjs" + }, + "puppeteer-1.14.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0.tgz", + "sha": "828c1926b307200d5fc8289b99df4e13e962d339", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1554765238660.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1554765238660.tgz", + "sha": "b39be6d170c3309ba2dfd82dcad26e1eacd158fd", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1554788705298.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1554788705298.tgz", + "sha": "d91fd25d060152e70407901edd6db0fd5a9f3fb9", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1554871834316.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1554871834316.tgz", + "sha": "6770ab0874ff9cc58168ca91be094122c50c178a", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555005273405.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555005273405.tgz", + "sha": "b9e127ba05f49c64f380aa1e7fc9f4c1bf649907", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555008760759.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555008760759.tgz", + "sha": "030bbce7c570ef659a8bac338969acde6b4fa015", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555009768788.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555009768788.tgz", + "sha": "edb39b033d9028f76518087fab75bad507a05a07", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555014860639.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555014860639.tgz", + "sha": "f093865236f13de089ee1ec6b59ba71da3c04042", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555031981782.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555031981782.tgz", + "sha": "3a260f5bd2ea4dd776b34cdda50c2c254c945948", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555033249139.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555033249139.tgz", + "sha": "86ef064c2cc8e8a522388d8cf53e047a50f0b211", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555129131525.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555129131525.tgz", + "sha": "e81435d68f8ed40cc0b4b8eb20fbab98a10fead7", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555141000741.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555141000741.tgz", + "sha": "d5ccc422dd9fdf618f9138ecb3c979d7a6b3da38", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555607469881.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555607469881.tgz", + "sha": "aca456db8db1f3e7e0cffce6984aa08cb979b351", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555617635177.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555617635177.tgz", + "sha": "5827a560d5e19451892cee0292ddbc0c33b10b43", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555699029448.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555699029448.tgz", + "sha": "b8314a1beca8373f6ffdae311bc9abb82ba66f5c", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555713627875.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555713627875.tgz", + "sha": "b44fbca01726b52d4229f71893c601f500aee9af", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555723800354.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555723800354.tgz", + "sha": "2890115c9ff129945834cc6953004818afffc336", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555949658000.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555949658000.tgz", + "sha": "088b850140e7c3755657a42c3033afb8785a986d", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1555975600504.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1555975600504.tgz", + "sha": "5c2b3717a6d73fcce102ec4fcf2eb2f88109b343", + "registry": "npmjs" + }, + "puppeteer-1.14.0-next.1556048038195.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.14.0-next.1556048038195.tgz", + "sha": "cf4825803031d5abdacf8360adfddec0d4d4bb8b", + "registry": "npmjs" + }, + "puppeteer-1.15.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0.tgz", + "sha": "1680fac13e51f609143149a5b7fa99eec392b34f", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1556245956624.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556245956624.tgz", + "sha": "04656ee6d52610354a2521e7a543633d7e96c672", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1556265138389.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556265138389.tgz", + "sha": "b0bd3e1f0d4b1253b5a1a6d40593a837473f7fcc", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1556311665501.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556311665501.tgz", + "sha": "69128972c58edafbd10150307b0cae42e7605dd2", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1556321762762.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556321762762.tgz", + "sha": "278c48e7a2188664e095f3db47993a195740cdf0", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1556508387804.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556508387804.tgz", + "sha": "9fcf9b9c1a317c7a0546db4ce03a0e34d411d192", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1556610202561.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1556610202561.tgz", + "sha": "9cd11c2f0e5fb5cfb7ce3985913b2d300184f631", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557127789501.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557127789501.tgz", + "sha": "28b2cb755a588746f6903f24bc3e707cd0b4a3a0", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557445012701.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557445012701.tgz", + "sha": "5aeddc85c81b8b2f1a9a282eb6cbce08c097ca9c", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557447806775.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557447806775.tgz", + "sha": "be31c4dc815a912570cafdf37277fd7d1de2ed46", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557448609535.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557448609535.tgz", + "sha": "0924f2e3ca634b7116574a37cb555adbbc2093bc", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557449360739.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557449360739.tgz", + "sha": "1584f54a562848b1cb6d96f6ab082037c4a0cab6", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557450628002.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557450628002.tgz", + "sha": "0e2efe4b8eccb9d816d11ed8875f644b4f1cd12f", + "registry": "npmjs" + }, + "puppeteer-1.15.0-next.1557470832533.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.15.0-next.1557470832533.tgz", + "sha": "4d53be0e1569b1a6ac92d33a47679b803b562f5c", + "registry": "npmjs" + }, + "puppeteer-1.16.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0.tgz", + "sha": "4b763d9ff4e69a4bb7a031c3393534214d54f27e", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1557786223072.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1557786223072.tgz", + "sha": "216dbedf6604a817f195f18ed8634950c2b53447", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1557788139173.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1557788139173.tgz", + "sha": "03865bc4697d94a74595506e870f2fd5573c5c9f", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558173496842.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558173496842.tgz", + "sha": "6d7d04b1c3e2765645af2e3620b34b0ee8dd9786", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558177963258.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558177963258.tgz", + "sha": "cb30ccc336be6a25079178a06d4f61006a105f1f", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558189408000.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558189408000.tgz", + "sha": "b9b274bf0f2c2a53d7b69416adac958beeedc90e", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558275858428.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558275858428.tgz", + "sha": "0c291a447f725f612b79148b1a16386a9d054d87", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558339988115.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558339988115.tgz", + "sha": "bbab5968da7421db21cfb0ba9d966d592c6e661e", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558449288228.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558449288228.tgz", + "sha": "0079958a3a7f03d258356903c2e4517d17344b46", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558469961321.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558469961321.tgz", + "sha": "de11fd147020bc533dc47f4acba8c6ecec6078a8", + "registry": "npmjs" + }, + "puppeteer-1.16.0-next.1558553082812.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.16.0-next.1558553082812.tgz", + "sha": "8bbd9dc7bfc63676150f664f9359a2190a51c91d", + "registry": "npmjs" + }, + "puppeteer-1.17.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0.tgz", + "sha": "371957d227a2f450fa74b78e78a2dadb2be7f14f", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559174221711.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559174221711.tgz", + "sha": "0920dc72acdebeead1b862dc8bf9bc82e284181d", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559348385017.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559348385017.tgz", + "sha": "bba437c990e8a7b89948633e07599b74b5f8f286", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559357260458.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559357260458.tgz", + "sha": "22fa18f86fb5db8f5af5778114941f3784511e01", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559498343979.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559498343979.tgz", + "sha": "4058566dfe922a408605ebb504d19ec3da50b99f", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559599383226.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559599383226.tgz", + "sha": "c91ac8216b50ea41029011c3c8b94bd6365586d9", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559671868980.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559671868980.tgz", + "sha": "2e2d32bbb9b15d678d2fd34d292a149d229bd2aa", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559691340031.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559691340031.tgz", + "sha": "e2ce1c234677c0ab3c4b07850312fa6cbc943dd5", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559787105207.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559787105207.tgz", + "sha": "42288c9ead78327889efa54e8f5a568f87c0b13e", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559843347793.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559843347793.tgz", + "sha": "c88798d3fe526a24056cd98768981f9379c0bf23", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1559940912627.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1559940912627.tgz", + "sha": "136a3f31b4e2da842470b652c569ed097b4d3380", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560040655095.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560040655095.tgz", + "sha": "a9960b5f99edf52f15639a90a9a822f0d2d61a9b", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560130890336.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560130890336.tgz", + "sha": "9b056f3159d57ffd2a1cf5cc7912568d2d7fab48", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560154754882.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560154754882.tgz", + "sha": "e56b1bead9fe2de1eda8e5fa0c21c080d17d41ff", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560156775686.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560156775686.tgz", + "sha": "397f4a44c583848c95a4e1a801dd930d2f720649", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560211377753.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560211377753.tgz", + "sha": "17332c204a8496145905b03a7793c7b6bdf99940", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560214083398.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560214083398.tgz", + "sha": "b480b1302a7f449071874468b4570f5ad73453f3", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560215757076.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560215757076.tgz", + "sha": "151e3d4b1cf4272efb77b0c496b5974d368559ce", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560226381096.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560226381096.tgz", + "sha": "9879e6b4964c36d99c4d293dab3a12dff256e282", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560499996426.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560499996426.tgz", + "sha": "db7adfd7c78d0059301bf01b085a5db13c38a5ba", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560576036169.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560576036169.tgz", + "sha": "b9fa1c6f54970a2f77c756e660e5fceb1ffb28f1", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560577493102.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560577493102.tgz", + "sha": "66cb2466d4e169abfdce600aab3884b976e68654", + "registry": "npmjs" + }, + "puppeteer-1.17.0-next.1560641867466.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0-next.1560641867466.tgz", + "sha": "f38ada2efccb13227543a1bfe76a3ab4d0ba9c09", + "registry": "npmjs" + }, + "puppeteer-1.18.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0.tgz", + "sha": "227bccc52806db37b3ccf762a7d95c06163f296e", + "registry": "npmjs" + }, + "puppeteer-1.18.0-next.1561069341499.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0-next.1561069341499.tgz", + "sha": "180c81f5e9855d4312af10a1f5312ddadf3e3dd6", + "registry": "npmjs" + }, + "puppeteer-1.18.0-next.1561071411692.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0-next.1561071411692.tgz", + "sha": "844ece1e83a9064a29be4d27e2b401480986088b", + "registry": "npmjs" + }, + "puppeteer-1.18.0-next.1561537553179.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.0-next.1561537553179.tgz", + "sha": "104a2d635875590b6c3372a7fdfcf1533147f6fa", + "registry": "npmjs" + }, + "puppeteer-1.18.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1.tgz", + "sha": "4a66f3bdab01115ededf70443ec904c99917a815", + "registry": "npmjs" + }, + "puppeteer-1.18.1-next.1561571308956.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561571308956.tgz", + "sha": "4ded7e14a66ce60f62bdda634a25cd8cf644917f", + "registry": "npmjs" + }, + "puppeteer-1.18.1-next.1561572384242.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561572384242.tgz", + "sha": "32a8df2d3ed7a5b850d0c985746fc72b55f0d05e", + "registry": "npmjs" + }, + "puppeteer-1.18.1-next.1561809958367.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561809958367.tgz", + "sha": "c075d862e6bcf6efb0b6906dea6f8685136947fc", + "registry": "npmjs" + }, + "puppeteer-1.18.1-next.1561972156009.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1561972156009.tgz", + "sha": "f6ad3410713c90a234ffb2c08ab57406d6ce864d", + "registry": "npmjs" + }, + "puppeteer-1.18.1-next.1562564221866.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1-next.1562564221866.tgz", + "sha": "4f717dbe32343fd11172be438ce035288caf08fa", + "registry": "npmjs" + }, + "puppeteer-1.19.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.19.0.tgz", + "sha": "e3b7b448c2c97933517078d7a2c53687361bebea", + "registry": "npmjs" + }, + "puppeteer-1.20.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz", + "sha": "e3d267786f74e1d87cf2d15acc59177f471bbe38", + "registry": "npmjs" + }, + "puppeteer-2.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.0.0.tgz", + "sha": "0612992e29ec418e0a62c8bebe61af1a64d7ec01", + "registry": "npmjs" + }, + "puppeteer-2.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.1.0.tgz", + "sha": "c10cabc5525f57c6766eed4f3006b6e10afcafc1", + "registry": "npmjs" + }, + "puppeteer-2.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.1.1.tgz", + "sha": "ccde47c2a688f131883b50f2d697bd25189da27e", + "registry": "npmjs" + }, + "puppeteer-3.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.0.tgz", + "sha": "844c714d074c7ea63cfa3744501c1ab6ea60722e", + "registry": "npmjs" + }, + "puppeteer-3.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.1.tgz", + "sha": "dce04a0b742fbf29f81ff423b2164e84647b4379", + "registry": "npmjs" + }, + "puppeteer-3.0.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.2.tgz", + "sha": "1d08cdb7c0c2666f5e743221b1cb1946fea493f0", + "registry": "npmjs" + }, + "puppeteer-3.0.3.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.3.tgz", + "sha": "91c4ce46b3822b849e096413457fe8ced7d5aeca", + "registry": "npmjs" + }, + "puppeteer-3.0.4.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.0.4.tgz", + "sha": "f445aae0a6732c65bbb90e963dcd6fd8fde0d780", + "registry": "npmjs" + }, + "puppeteer-3.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.1.0.tgz", + "sha": "d44efdc5410809025f38bca2de106c3ae5c85a52", + "registry": "npmjs" + }, + "puppeteer-3.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.2.0.tgz", + "sha": "e775519dd99c5f15dc8972b2c44abed00fe81c9e", + "registry": "npmjs" + }, + "puppeteer-3.3.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-3.3.0.tgz", + "sha": "95839af9fdc0aa4de7e5ee073a4c0adeb9e2d3d7", + "registry": "npmjs" + }, + "puppeteer-4.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-4.0.0.tgz", + "sha": "96d647c3546119f8e670493bcebf9ddb044a2367", + "registry": "npmjs" + }, + "puppeteer-4.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-4.0.1.tgz", + "sha": "ebc2ee61157ed1aa25be3843fda97807df1d51f5", + "registry": "npmjs" + }, + "puppeteer-5.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.0.0.tgz", + "sha": "7cf1b1a5c5b6ce5d7abe4d9c9f206d4c52e214ff", + "registry": "npmjs" + }, + "puppeteer-5.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.1.0.tgz", + "sha": "e7bae2caa6e3a13a622755e4c27689d9812c38ca", + "registry": "npmjs" + }, + "puppeteer-5.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.2.0.tgz", + "sha": "c37bf605e6ec103428c872d820f30f2617bf38ad", + "registry": "npmjs" + }, + "puppeteer-5.2.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.2.1.tgz", + "sha": "7f0564f0a5384f352a38c8cc42af875cd87f4ea6", + "registry": "npmjs" + }, + "puppeteer-5.3.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.3.0.tgz", + "sha": "0abf83d0f2d1273baf2b56885a813f8052903e33", + "registry": "npmjs" + }, + "puppeteer-5.3.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.3.1.tgz", + "sha": "324e190d89f25ac33dba539f57b82a18553f8646", + "registry": "npmjs" + }, + "puppeteer-5.4.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.4.0.tgz", + "sha": "b83893476e96ea103c9516bb958d17a71a9768ea", + "registry": "npmjs" + }, + "puppeteer-5.4.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.4.1.tgz", + "sha": "f2038eb23a0f593ed2cce0d6e7cd5c43aecd6756", + "registry": "npmjs" + }, + "puppeteer-5.5.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.5.0.tgz", + "sha": "331a7edd212ca06b4a556156435f58cbae08af00", + "registry": "npmjs" + }, + "puppeteer-6.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-6.0.0.tgz", + "sha": "6b73d7ba63c12abbb5080c2ffc14b55857cc62e2", + "registry": "npmjs" + }, + "puppeteer-7.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.0.tgz", + "sha": "be25ebf53edc1ecc09cb40af4a15f21fd1d38637", + "registry": "npmjs" + }, + "puppeteer-7.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.1.tgz", + "sha": "de0c2602e27bf9b12d7540aae52d6ed121a81884", + "registry": "npmjs" + }, + "puppeteer-7.0.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.2.tgz", + "sha": "0a9c225cfccbd2977fd6ad4d5b3ec169bfdf2e66", + "registry": "npmjs" + }, + "puppeteer-7.0.3.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.3.tgz", + "sha": "07375e80de6bb0703ab5461672ba99f386661d1c", + "registry": "npmjs" + }, + "puppeteer-7.0.4.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.0.4.tgz", + "sha": "f4b91b8a30eef29c53ff9a334123f23f87d42821", + "registry": "npmjs" + }, + "puppeteer-7.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-7.1.0.tgz", + "sha": "ae37f48ee13f157c5b9255d580ffe4c5c1298679", + "registry": "npmjs" + }, + "puppeteer-8.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-8.0.0.tgz", + "sha": "a236669118aa795331c2d0ca19877159e7664705", + "registry": "npmjs" + }, + "puppeteer-9.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.0.0.tgz", + "sha": "b476e17ceb3e33a6667bf682d66dde9898f9c031", + "registry": "npmjs" + }, + "puppeteer-9.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.0.tgz", + "sha": "0530ed1f595088eefd078c8f1f7618d00f216a56", + "registry": "npmjs" + }, + "puppeteer-9.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz", + "sha": "f74b7facf86887efd6c6b9fabb7baae6fdce012c", + "registry": "npmjs" + }, + "puppeteer-10.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.0.0.tgz", + "sha": "1b597c956103e2d989ca17f41ba4693b20a3640c", + "registry": "npmjs" + }, + "puppeteer-10.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.1.0.tgz", + "sha": "6ee1d7e30401a967f4403bd42ace9e51e399504f", + "registry": "npmjs" + }, + "puppeteer-10.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.2.0.tgz", + "sha": "7d8d7fda91e19a7cfd56986e0275448e6351849e", + "registry": "npmjs" + }, + "puppeteer-10.4.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-10.4.0.tgz", + "sha": "a6465ff97fda0576c4ac29601406f67e6fea3dc7", + "registry": "npmjs" + }, + "puppeteer-11.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-11.0.0.tgz", + "sha": "0808719c38e15315ecc1b1c28911f1c9054d201f", + "registry": "npmjs" + }, + "puppeteer-12.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-12.0.0.tgz", + "sha": "38544c9a608c79ded84bb4225af26d2d42c988cf", + "registry": "npmjs" + }, + "puppeteer-12.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-12.0.1.tgz", + "sha": "ae79d0e174a07563e0bf2e05c94ccafce3e70033", + "registry": "npmjs" + }, + "puppeteer-13.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.0.tgz", + "sha": "f241d9bbbe5c8388da922f4f6ea3f84866e17f81", + "registry": "npmjs" + }, + "puppeteer-13.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.1.tgz", + "sha": "9cd9bb8ec090bade183ca186bf342396bdffa135", + "registry": "npmjs" + }, + "puppeteer-13.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.0.tgz", + "sha": "f3a997866c05f28854274dda7752d76afe1bfc5a", + "registry": "npmjs" + }, + "puppeteer-13.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.1.tgz", + "sha": "63771eb744202aa91918c49123f846e1747da121", + "registry": "npmjs" + }, + "puppeteer-13.1.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.2.tgz", + "sha": "d6ef3295d7551200b7e52076a3cc1b731eff4294", + "registry": "npmjs" + }, + "puppeteer-13.1.3.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.1.3.tgz", + "sha": "46b1e3f7577e59c08088b449c6fa161dbc78c680", + "registry": "npmjs" + }, + "puppeteer-13.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.2.0.tgz", + "sha": "0ae3bd9ace55272223bd1905a4d661846231b1dc", + "registry": "npmjs" + }, + "puppeteer-13.3.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.3.0.tgz", + "sha": "610efb11c7ca4a5c28d7efa84c91f5187b10564b", + "registry": "npmjs" + }, + "puppeteer-13.3.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.3.1.tgz", + "sha": "4ec91eaa8a08653bfcdc9d607c6189b3804b29de", + "registry": "npmjs" + }, + "puppeteer-13.3.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.3.2.tgz", + "sha": "4ff1cf6e2009df29fd80038bc702dc067776f79d", + "registry": "npmjs" + }, + "puppeteer-13.4.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.4.0.tgz", + "sha": "d2366542fb0fc7af0cc68719c048a68363a0a940", + "registry": "npmjs" + }, + "puppeteer-13.4.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.4.1.tgz", + "sha": "495b91d2fae3e9761a31bab1820ad179caac0fd9", + "registry": "npmjs" + }, + "puppeteer-13.5.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.0.tgz", + "sha": "fd30692fbed18bd4964dce3517cc952af9b45d7d", + "registry": "npmjs" + }, + "puppeteer-13.5.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.1.tgz", + "sha": "d0f751bf36120efc2ebf74c7562a204a84e500e9", + "registry": "npmjs" + }, + "puppeteer-13.5.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.2.tgz", + "sha": "73ae84969cbf514aeee871a05ec4549d67f6abee", + "registry": "npmjs" + }, + "puppeteer-13.6.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.6.0.tgz", + "sha": "3583fc60c1af59af838d65a09680f2d07f3608f9", + "registry": "npmjs" + }, + "puppeteer-13.7.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.7.0.tgz", + "sha": "18e16f83e397cf02f7a0804c67c1603d381cfb0b", + "registry": "npmjs" + }, + "puppeteer-14.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.0.0.tgz", + "sha": "829e97b70fa81746bb88ec2d72f11a7429cc84ab", + "registry": "npmjs" + }, + "puppeteer-14.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.1.0.tgz", + "sha": "319560e20ff451890158d7146c79ab589c6e7031", + "registry": "npmjs" + }, + "puppeteer-14.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.1.1.tgz", + "sha": "9a2b4042f9644d0d5fb63dbb6d75042af6a67656", + "registry": "npmjs" + }, + "puppeteer-14.1.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.1.2.tgz", + "sha": "bde2ca5585fb56ed906bccced898d551778f5c5d", + "registry": "npmjs" + }, + "puppeteer-14.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.2.0.tgz", + "sha": "edcb37b2e83c1892e630a830dd3daea040b1cd50", + "registry": "npmjs" + }, + "puppeteer-14.2.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.2.1.tgz", + "sha": "e343379061e0211b4c02d0c535883c26a39f825e", + "registry": "npmjs" + }, + "puppeteer-14.3.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.3.0.tgz", + "sha": "0099cabf97767461aca02486313e84fcfc776af6", + "registry": "npmjs" + }, + "puppeteer-14.4.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.0.tgz", + "sha": "e711789814f785484ff5906d464a32a8146a1304", + "registry": "npmjs" + }, + "puppeteer-14.4.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.1.tgz", + "sha": "6c7437a65f7ba98ef8ad7c2b0f1cf808e91617bb", + "registry": "npmjs" + }, + "puppeteer-15.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.0.0.tgz", + "sha": "0c4f373625baab14fdbfe7d41b4fad3ec9306fea", + "registry": "npmjs" + }, + "puppeteer-15.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.0.1.tgz", + "sha": "50dbed2c0c6ea70b22289442b96d3a3c116347a2", + "registry": "npmjs" + }, + "puppeteer-15.0.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.0.2.tgz", + "sha": "59ec1f256547651dec1444941513a323211951b2", + "registry": "npmjs" + }, + "puppeteer-15.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.1.0.tgz", + "sha": "5f225d7662f0f23ca49979797fc0853d23ec47a0", + "registry": "npmjs" + }, + "puppeteer-15.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.1.1.tgz", + "sha": "f995fc3e5794649c4689b87ad29bd083065e53c7", + "registry": "npmjs" + }, + "puppeteer-15.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.2.0.tgz", + "sha": "9cd81334f9c6a2e1c972b5a7ecf3f18ab3bfb978", + "registry": "npmjs" + }, + "puppeteer-15.3.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.3.0.tgz", + "sha": "2d79200cb72d938dfc7af4fdedaa03c04e7ace14", + "registry": "npmjs" + }, + "puppeteer-15.3.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.3.1.tgz", + "sha": "0ff9b433a8fc3798f5ec82ea4b31ec47857219cf", + "registry": "npmjs" + }, + "puppeteer-15.3.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.3.2.tgz", + "sha": "62162739044d570ab9907f85b1e1bbcf52adc79e", + "registry": "npmjs" + }, + "puppeteer-15.4.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.4.0.tgz", + "sha": "31f043ee64cc4e1b5cbe99ad900653aab4afb186", + "registry": "npmjs" + }, + "puppeteer-15.4.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.4.1.tgz", + "sha": "4729e7dbb920b6fdb73c72133b4e9a3d9d4b7c86", + "registry": "npmjs" + }, + "puppeteer-15.4.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.4.2.tgz", + "sha": "d61756844a9eea91e672ea6d9994aa939a23bdcb", + "registry": "npmjs" + }, + "puppeteer-15.5.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-15.5.0.tgz", + "sha": "446e01547ba0f47c37ac2148e5333433b4ecb371", + "registry": "npmjs" + }, + "puppeteer-16.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.0.0.tgz", + "sha": "9efb6cdb57e3e51cf060a33f6289e88200dd4672", + "registry": "npmjs" + }, + "puppeteer-16.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.1.0.tgz", + "sha": "06a32dc347c94642601017fbf83e1d37379b9651", + "registry": "npmjs" + }, + "puppeteer-16.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.1.1.tgz", + "sha": "1bb8ec3b86f755c34b913421b81e9cd2cfad3588", + "registry": "npmjs" + }, + "puppeteer-16.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-16.2.0.tgz", + "sha": "3fc9cc0c461d3166a98562a7dcd0bf3424a0523c", + "registry": "npmjs" + }, + "puppeteer-17.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.0.0.tgz", + "sha": "85fea801a7b8b8c9e2913b1491e98c867be49a6b", + "registry": "npmjs" + }, + "puppeteer-17.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.0.tgz", + "sha": "27dfc629092a5ac1b6f6c30ec200c4147af2847c", + "registry": "npmjs" + }, + "puppeteer-17.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.1.tgz", + "sha": "e981b17e8edee72a7c7b676878040ce2ff1cc3d0", + "registry": "npmjs" + }, + "puppeteer-17.1.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.2.tgz", + "sha": "1e8ea8b0eee0e6afc5d95e2db6ae828a51ad63c9", + "registry": "npmjs" + }, + "puppeteer-17.1.3.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-17.1.3.tgz", + "sha": "2814cf221925e19c681c69aa97401a68b30240c9", + "registry": "npmjs" + }, + "puppeteer-18.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.0.tgz", + "sha": "31cbd6b63ece4ca309da9698ae75755d300ffa44", + "registry": "npmjs" + }, + "puppeteer-18.0.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.1.tgz", + "sha": "344b2c194e5d094496dfd92e3796abfc2fc1ecfb", + "registry": "npmjs" + }, + "puppeteer-18.0.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.2.tgz", + "sha": "caa908d58aefdbf4308f843c486d9925f9f77bd7", + "registry": "npmjs" + }, + "puppeteer-18.0.3.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.3.tgz", + "sha": "3f06b649d3ceef191318b8cb1193c1eaf23eba52", + "registry": "npmjs" + }, + "puppeteer-18.0.4.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.4.tgz", + "sha": "0fd8840840dde9147e7db4b2a796aa27f3ecf0ee", + "registry": "npmjs" + }, + "puppeteer-18.0.5.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.5.tgz", + "sha": "873223b17b92345182c5b5e8cfbd6f3117f1547d", + "registry": "npmjs" + }, + "puppeteer-18.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.1.0.tgz", + "sha": "7fa53b29f87dfb3192d415f38a46e35b107ec907", + "registry": "npmjs" + }, + "puppeteer-18.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.2.0.tgz", + "sha": "11804d1ae2c83216089c0aaa5166b7ccef26dd0e", + "registry": "npmjs" + }, + "puppeteer-18.2.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.2.1.tgz", + "sha": "08967cd423efe511ee4c6e3a5c882ffaf2e6bbf3", + "registry": "npmjs" + }, + "puppeteer-19.0.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.0.0.tgz", + "sha": "848986e6ecec37b19cd5a7327ad2fcf1f1cb83fd", + "registry": "npmjs" + }, + "puppeteer-19.1.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.1.0.tgz", + "sha": "96999e2adb3f6435fa01fd563665bd9dff375d49", + "registry": "npmjs" + }, + "puppeteer-19.1.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.1.1.tgz", + "sha": "1b1092babb58b484d1d4488cad2b549060fc5af4", + "registry": "npmjs" + }, + "puppeteer-19.1.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.1.2.tgz", + "sha": "47b5fff531719fec77c20287754e4e897ab9e5c0", + "registry": "npmjs" + }, + "puppeteer-19.2.0.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.0.tgz", + "sha": "6d39c6b6da4a648928d8dc736b864de493f175f7", + "registry": "npmjs" + }, + "puppeteer-19.2.1.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.1.tgz", + "sha": "5c836071027767a99639aae2206103589a2b3bfc", + "registry": "npmjs" + }, + "puppeteer-19.2.2.tgz": { + "url": "https://registry.npmjs.org/puppeteer/-/puppeteer-19.2.2.tgz", + "sha": "e6f7bc089ac9bffea78b2f792bf3affd93e16803", + "registry": "npmjs" + } + }, + "_attachments": { + "puppeteer-19.2.2.tgz": { + "shasum": "e6f7bc089ac9bffea78b2f792bf3affd93e16803" + } + }, + "_rev": "19-0e6ab3970ba1b046", + "_id": "puppeteer", + "readme": "# Puppeteer\n\n[![Build status](https://github.com/puppeteer/puppeteer/workflows/CI/badge.svg)](https://github.com/puppeteer/puppeteer/actions?query=workflow%3ACI)\n[![npm puppeteer package](https://img.shields.io/npm/v/puppeteer.svg)](https://npmjs.org/package/puppeteer)\n\n\n\n#### [Guides](https://pptr.dev/category/guides) | [API](https://pptr.dev/api) | [FAQ](https://pptr.dev/faq) | [Contributing](https://pptr.dev/contributing) | [Troubleshooting](https://pptr.dev/troubleshooting)\n\n> Puppeteer is a Node.js library which provides a high-level API to control\n> Chrome/Chromium over the\n> [DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/).\n> Puppeteer runs in\n> [headless](https://developers.google.com/web/updates/2017/04/headless-chrome)\n> mode by default, but can be configured to run in full (non-headless)\n> Chrome/Chromium.\n\n#### What can I do?\n\nMost things that you can do manually in the browser can be done using Puppeteer!\nHere are a few examples to get you started:\n\n- Generate screenshots and PDFs of pages.\n- Crawl a SPA (Single-Page Application) and generate pre-rendered content (i.e.\n \"SSR\" (Server-Side Rendering)).\n- Automate form submission, UI testing, keyboard input, etc.\n- Create an automated testing environment using the latest JavaScript and\n browser features.\n- Capture a\n [timeline trace](https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference)\n of your site to help diagnose performance issues.\n- Test Chrome Extensions.\n\n## Getting Started\n\n### Installation\n\nTo use Puppeteer in your project, run:\n\n```bash\nnpm i puppeteer\n# or `yarn add puppeteer`\n# or `pnpm i puppeteer`\n```\n\nWhen you install Puppeteer, it automatically downloads a recent version of\nChromium (~170MB macOS, ~282MB Linux, ~280MB Windows) that is\n[guaranteed to work](https://pptr.dev/faq#q-why-doesnt-puppeteer-vxxx-work-with-chromium-vyyy)\nwith Puppeteer. For a version of Puppeteer without installation, see\n[`puppeteer-core`](#puppeteer-core).\n\n#### Configuration\n\nPuppeteer uses several defaults that can be customized through configuration\nfiles.\n\nFor example, to change the default cache directory Puppeteer uses to install\nbrowsers, you can add a `.puppeteerrc.cjs` (or `puppeteer.config.cjs`) at the\nroot of your application with the contents\n\n```js\nconst {join} = require('path');\n\n/**\n * @type {import(\"puppeteer\").Configuration}\n */\nmodule.exports = {\n // Changes the cache location for Puppeteer.\n cacheDirectory: join(__dirname, '.cache', 'puppeteer'),\n};\n```\n\nAfter adding the configuration file, you will need to remove and reinstall\n`puppeteer` for it to take effect.\n\nSee the [configuration guide](https://pptr.dev/guides/configuration) for more\ninformation.\n\n#### `puppeteer-core`\n\nEvery release since v1.7.0 we publish two packages:\n\n- [`puppeteer`](https://www.npmjs.com/package/puppeteer)\n- [`puppeteer-core`](https://www.npmjs.com/package/puppeteer-core)\n\n`puppeteer` is a _product_ for browser automation. When installed, it downloads\na version of Chromium, which it then drives using `puppeteer-core`. Being an\nend-user product, `puppeteer` automates several workflows using reasonable\ndefaults [that can be customized](https://pptr.dev/guides/configuration).\n\n`puppeteer-core` is a _library_ to help drive anything that supports DevTools\nprotocol. Being a library, `puppeteer-core` is fully driven through its\nprogrammatic interface implying no defaults are assumed and `puppeteer-core`\nwill not download Chromium when installed.\n\nYou should use `puppeteer-core` if you are\n[connecting to a remote browser](https://pptr.dev/api/puppeteer.puppeteer.connect)\nor [managing browsers yourself](https://pptr.dev/api/puppeteer.browserfetcher).\nIf you are managing browsers yourself, you will need to call\n[`puppeteer.launch`](https://pptr.dev/api/puppeteer.puppeteernode.launch) with\nan an explicit\n[`executablePath`](https://pptr.dev/api/puppeteer.launchoptions.executablepath)\n(or [`channel`](https://pptr.dev/api/puppeteer.launchoptions.channel) if it's\ninstalled in a standard location).\n\nWhen using `puppeteer-core`, remember to change the import:\n\n```ts\nimport puppeteer from 'puppeteer-core';\n```\n\n### Usage\n\nPuppeteer follows the latest\n[maintenance LTS](https://github.com/nodejs/Release#release-schedule) version of\nNode.\n\nPuppeteer will be familiar to people using other browser testing frameworks. You\n[launch](https://pptr.dev/api/puppeteer.puppeteernode.launch)/[connect](https://pptr.dev/api/puppeteer.puppeteernode.connect)\na [browser](https://pptr.dev/api/puppeteer.browser),\n[create](https://pptr.dev/api/puppeteer.browser.newpage) some\n[pages](https://pptr.dev/api/puppeteer.page), and then manipulate them with\n[Puppeteer's API](https://pptr.dev/api).\n\nFor more in-depth usage, check our [guides](https://pptr.dev/category/guides)\nand [examples](https://github.com/puppeteer/puppeteer/tree/main/examples).\n\n#### Example\n\nThe following example searches\n[developers.google.com/web](https://developers.google.com/web) for articles\ntagged \"Headless Chrome\" and scrape results from the results page.\n\n```ts\nimport puppeteer from 'puppeteer';\n\n(async () => {\n const browser = await puppeteer.launch();\n const page = await browser.newPage();\n\n await page.goto('https://developers.google.com/web/');\n\n // Type into search box.\n await page.type('.devsite-search-field', 'Headless Chrome');\n\n // Wait for suggest overlay to appear and click \"show all results\".\n const allResultsSelector = '.devsite-suggest-all-results';\n await page.waitForSelector(allResultsSelector);\n await page.click(allResultsSelector);\n\n // Wait for the results page to load and display the results.\n const resultsSelector = '.gsc-results .gs-title';\n await page.waitForSelector(resultsSelector);\n\n // Extract the results from the page.\n const links = await page.evaluate(resultsSelector => {\n return [...document.querySelectorAll(resultsSelector)].map(anchor => {\n const title = anchor.textContent.split('|')[0].trim();\n return `${title} - ${anchor.href}`;\n });\n }, resultsSelector);\n\n // Print all the files.\n console.log(links.join('\\n'));\n\n await browser.close();\n})();\n```\n\n### Default runtime settings\n\n**1. Uses Headless mode**\n\nPuppeteer launches Chromium in\n[headless mode](https://developers.google.com/web/updates/2017/04/headless-chrome).\nTo launch a full version of Chromium, set the\n[`headless`](https://pptr.dev/api/puppeteer.browserlaunchargumentoptions.headless)\noption when launching a browser:\n\n```ts\nconst browser = await puppeteer.launch({headless: false}); // default is true\n```\n\n**2. Runs a bundled version of Chromium**\n\nBy default, Puppeteer downloads and uses a specific version of Chromium so its\nAPI is guaranteed to work out of the box. To use Puppeteer with a different\nversion of Chrome or Chromium, pass in the executable's path when creating a\n`Browser` instance:\n\n```ts\nconst browser = await puppeteer.launch({executablePath: '/path/to/Chrome'});\n```\n\nYou can also use Puppeteer with Firefox Nightly (experimental support). See\n[`Puppeteer.launch`](https://pptr.dev/api/puppeteer.puppeteernode.launch) for\nmore information.\n\nSee\n[`this article`](https://www.howtogeek.com/202825/what%E2%80%99s-the-difference-between-chromium-and-chrome/)\nfor a description of the differences between Chromium and Chrome.\n[`This article`](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/chromium_browser_vs_google_chrome.md)\ndescribes some differences for Linux users.\n\n**3. Creates a fresh user profile**\n\nPuppeteer creates its own browser user profile which it **cleans up on every\nrun**.\n\n#### Using Docker\n\nSee our [Docker guide](https://pptr.dev/guides/docker).\n\n#### Using Chrome Extensions\n\nSee our [Chrome extensions guide](https://pptr.dev/guides/chrome-extensions).\n\n## Resources\n\n- [API Documentation](https://pptr.dev/api)\n- [Guides](https://pptr.dev/category/guides)\n- [Examples](https://github.com/puppeteer/puppeteer/tree/main/examples)\n- [Community list of Puppeteer resources](https://github.com/transitive-bullshit/awesome-puppeteer)\n\n## Contributing\n\nCheck out our [contributing guide](https://pptr.dev/contributing) to get an\noverview of Puppeteer development.\n\n## FAQ\n\nOur [FAQ](https://pptr.dev/faq) has migrated to\n[our site](https://pptr.dev/faq)." +} \ No newline at end of file diff --git a/test/unit/partials/mock-store/puppeteer/puppeteer-19.2.2.tgz b/test/unit/partials/mock-store/puppeteer/puppeteer-19.2.2.tgz new file mode 100644 index 0000000000000000000000000000000000000000..c48cb9a4f29b54f42cd77ad84f494dd7d655e305 GIT binary patch literal 69732 zcmaI7Q*b6s7d0B&wv(CIwr$&XGBKXmwylY6+nm_8&F6o=b9MfzQ>QQX#jftY=xVIJ z)@tHt7?A%pFyNKnr^hBoL9@dK=5ykkWYnSxd$f(z$qnk@nXDFmwy1DZ<{vJt+g$$K2YL+Y#J}376MybR zeD2$4?#A#5BGA}9f8{{e_3W(eS7E+H>g&#C+&0b=ySlfvwvoZFBvlXPHQLVIG(7jD z)}BI4)$B6?mv#+z=Q9;+XYTx8K)L*9!R6zs-U-?98)2Sdm3{{XKD;q-TTv@_F9nNk`})+1mJC*fxoxfUS{AP1mC zaAQO`OU}HxdtbV*PL@hZq^{V2wtd~0d(A+s$SaA00fqf5B46#&{W{T?FWg?TKEXE$ znQja=dry%%@X3ztE(iC8M--bUlWq0Ki8|hv}Fx@B9gnE&%Y4ZdR4YnR`Kq@ZH;0FmWOb%17Y z%D<^NaQSQR`LxJJU`rV6hD3aps|IbE5q+7lkY`qxG}@M!Z&RQ45FBHxMHVF~U|7ei zW>5yq3043%naj4`duP~e>0k+cR0{)PgE1d`S7E(k(l{ofmuLvEU~y;6pd+ zz#0!$CT(stkV5(eDtSWUnpvv3DbLE15PN28669@ZTc>p|5^gz6qir8Ko2&Q5bIsjZ zr|_oZ)(fdkFM~^$?N9cThiMiak3&8|w*zq=yMcA+lUuRZ4wqLh*}6m#Ek3IZRcQNh zjtAxJ>3pc`6mi+cnp|@OcX>`$c}u(KH$76@e zD*AUT$5I0zG<l0Ps($bJIawcCW#{wd$SAMCcPxFO1=>aoAo&j^yV^oJNH5l@$W@GC14{&ZTXz|w?g zLR%CRkzNn`R|@Ap*~_)3uG>y?hk?2xJ6Al1d1f0VN921fVJay-PgM12AD9;5r69(T zg@}(`>IAOdftA)Fb8U5plkrF1Bn=x5>SyBJT>4!8!L$t0|8Bwd7EvMmD?v@;bsWZL# zUbSY`Mmtia<5LmxAIbhB33T%vz4DV$dTPp8lUm^^OC+QLA9ns4DV*^s*3Ry6vpHnO z82U^`iUq2ySY}#Rpl$~XY~rMVo~krS#e=+a39bRb{9GLW7*dC;E(5>!AE&pkGgK+E z-?9E_Qsf$Ith6MQv(Sx!|5Ti@=%M5Q3d2P#t?Vqaq~*s{ghGW^jI5JN17*_ zC8}!An*GI3UA+68ozVk{jFXzOuecd1wi65$2lZ*qU+HQ3*B|sd=abv(SKY$VouMI zPdU$t0jxk_2+oWc-Rza!BWoc-z>b%cR8W*TK&TE|vEoQkadCx#QcWA49z4ZKXRJ@5 z8>8;4TDGyC-l^Lj0wW_Ey?3&FgeSPMJCa9!v*u4l8S{_E8ayLy|UR;7y%Vy07dLP#ZM(g{LLbn3|ZZ<6+~ zd#ngu`TX!rVNh2`-glPL7JEb%Ls|}<2d-+zSS||t*{~I;I13a%X*x?s5ob*lb41Jh zjX~<)ce&o_6eMP}`U3^UAN+|>h2;boVp6QtmCGHQl(xtd1?c&Fw{3Iq2A4}&zY zUs!VSW$_ci*b|v#P<9cxA5U@1>!TkhtzV4RTg+M&2Bv5IucHoi2+Ksm9qcrIV+MwQ z$RWj1>6nY)U`@Kzjp7|L~9pjAiRjg;^Fn+V6q%J(Jgdl+o<4W}+z zkONQClDtu@Isd~U(w{u%lEOCm5vl0Dl=* zO&QZUn7@GU=#gGQpUKwM)m0ab3Mp){ z#njm90&IhE2#f-OfI!N{0J!aGruN%KZ+%1xaae1^%KDq*wVufvNPF@j)Q^+DzgsP1qoO}|KF=|jhaMh6Ub)6Lgh4iZBmd?c)Q0|92xVS9Q+ z8mvAJ+F?;ZrwAQ}y~cP1=JCHtBqLibtE@NTC=1|z7Yfkd20{xl1{)_1yq#Jo3Gz=kkU*^GoGq;1A6D+;0sep z5TzYe@rzeoG)1Fuk_L%||2^>A&&p2Fvg@fm3_)lMl>JQjs46^sw7~)`Q!%FNkhHwb zq>0;pU^`Y$shKVHhuPQT**|`p+DGCy|N7wMM?Objnm3H4-4KI|xqH{HEZ|u{`8@;vR#==@9jnGqpZU`(I^*f}<_b7Q~(BN1S zKA*%p0fiUC1Jv@pW5Py3`(QzD@+2V?T6IQl`a#pKMof5P&~jvvMITGRfH2c->an>!PC#QgFH35=V?8kTw1awP z@^#9KxQDh99>Zw0_q}L z+&S9!Myd4pzD0F1ud?VU$x*N03x64uGjm+oyf4Pde)I|1%=x9dRI~n(WDf+p{DwpzFu+?{cn0( zV?x?pU^K^{`jp51+f86oOP(IEt&Jo4v9B)-*fxvjI2&isjJ)|Pw#hwOU0TZRpL9F; zjmw^EFD(w;*`CR%>vOxt+cR9>4j{XfBLkKz!6n3R8VK+n;#1r8G!0q1* zW$w0)-D*12PX}G%s4M#vAYCzq8_QK+rghYFEaErCsL*qRi9F{!g@`ig(!X>=?{D!= z;%A`CP~V?)r_gnq28u@giMvOiT|qXq&z?8mSIxaF)@5rwuk&TXr-fBJdh97X zSat2RML~Wvk|cyQc0d(bI-6o1Cbh9Tf6RfizrR>d&I|F;of9e{Qc7q#1^T?@?)kX* zm_{{b?!9iA5IN^(JDv_>^FE&Y?kf#*U_qIw-zgVBQo4}Zj1d8SW7SP@ge0_6%y?RJ z%G+}s@b!AmBECv{*|r(hN3rlRdGmNObG5fGqEy-zE4HS>tqW$rAXhggn6A*u zC;rv`tXG;3lqS0~As#+OIu%6Nn&Zf)b8Jp`T+TUghr!RqH({Mn35Ys&%B)Z0A)c$= zgZs^GusF=!6uyNYUhZQ1oD}e(fn7iko#8UY0QxU`iTM3G)bhPYbET%Oni4fd!jd~- zN5?(lu#3X#3ryp@3Ys;q0TmdSkh0kf9Y0Sv;v)tF!MbJ>*p&2ScIm-y!8#UNslREhWUyE93Bc#lgFbxx z^GD*gw$`Xm;y$^bRZ;R@R*R%zQ==x!0yBy3lPZRpiw<Kp)d?!$8gsxe{ay;->4j?>vPXQaqwdrjw%{*&zmUR z-scWuDaDViXN11@FE>QS_p8)Hf&2AKbMJoazqQ}nvTIxQLf_-*{Fcutr{1$4)`HJD zAV~)2+*QB)<{vc_y>d<=6Lw@-OrM9(KUi0yKI2ZSIcHS)I4hvRn0orpE4{kxRYoKt z8sR2gL)$XU)IZ>- zz|)M^rWxRvu3~HQBLKV?^AQ+54a6MP(6^N$Bhi`Bbhf;#RI9w78TDwH*(meeO7=ND zs)FijhE7-KiB95R3@38%MD&|8PT#s%81?$E0DRI~N;}2s6L{qN)!$@)o?!s`5w)wp z*M|+V<*sPPAe)kUMRx3{<+PORjyHyUG%g%}nY>9>FhU+Kyp@Qh+U-SI2mA<7~ zA>CL-?X_3ln2^8}6PB-R2GB#a zNmiYEO0@8ER^4J1rhxebWqz`(FQNrG>{u-*%i3c!;ZAams^$G%>8=Iu?OH@1x{s1f zSY(t15iuv@?v+a4M}f-2*r5fk7)=@Mc;{BUGMEJ-V&}H8?b=*B0S>$moQE9eaXWfb zy2jraP@E(|!mScFiLTnDRL&2|HMkapnQ>i3`P5P7O5A<>nP-G=`qV_RczA=*1RTG-2^twYFpve;A6~WQ*Z_g_x6SLXL{H{AMMIQ@3JvKG z%X=_Vs|0nFBnWEi*;hiAr?BF(?i;c96C1)_@TK~7AUwLLFIK5v!uWQ%$mG9&#aaDm zX_CJ;+8niZJ^;4~N}MXg%6v9C5=s1O+}9E=%;1N|h@l;D7P54DGij`k4DjUYjH8=VMgPaQlHXU}C zbn4sv!Tx$fZB;Yenjw1AEo*s!U|B!^p~K1xC{6jn89CP3ehw<6?~G2(`?q3?50^;P zSGHVG>2T1GcBy6JcY2>(QzI3sXmA~M>@FvDp+evb3bWiAgFOmaV^*FZq9MJ8Gz=4l z+e9{-%~%bzJ_VNW^>YniKkV-u0yj4la)FO#pVG!a04dPW?ATFVYQFlW)&l9<##|j{ z8htL9yA#hZ-0NL|p1g$zZc@#!;=5PG0g4WRIGl_RWLE<}7CUxQx!76FniFp(YS~Kb z?OguYt@yr^WzCTd>NAz9d&8E^b8TbOXThp3U~VQIGp=RYL~tLx%6Zd0Th08rHe)~f z1OPaG?^B%yn*3lt0+E}47zqY?PJhyKb7TK~?QSug0Ew-B0B?3p07v99mttivge5op za!=QC?e&oL?v8lF))(5{{&csm2NToXoUiiOQR`zk0|VIm02Z_QK96}T2R3DtFAUh! zmmS4ei@pcb;`?Gx;YEnN=V8{6=2zR|_r9W0;bP~4=)LGxPvOw>k@(n?<6a?AnX*>W z3?vhlb4a5&0Eqk`B=aAgBAD+&FlaG|ih)oZ-%YD-%9Cz4NZx zVp=MJb3v-%mvHxyusM!EAPFTiCOG$0B987q3G(;w2vNwtv`?^I4_Zjm_0pzE>UQ{1 z_V^?IQw$toeTQWX95&`ypHM&krWl*n|J4`Dw~JQ>Z3|~6uN)S)JCgmM#er?fv9BOM zNC+W$X4u*NyOGM%j+FK2J?q$d4_NQX86mwtQ6PqULW@>t!As>_@WyojRv*M?{}F@T ztGUH}-Lt!zg?*;3UqoNeF?qh@L>2Z~*Q51qXc6MS1=oSD#W{1j+OaSL<@g;F65IiO zfq~K4u@7x`ue!x+8c{VElg|{BP$}Bw!zfO~ctp+%@*inX>NjlgCurXKfoBj{y@On`jE{o-mt$80RN~khuLnm&w zW#`}k$J_J{1NbtyV;P{ zdLwDo8s=9IOVn}`zPS2XgR&ht{)S}1nPl*t0xx}n64qa9W0gdzSSUA&i4tH5H7LX* z#el$x$ATWV;7MI{nfslx6*TP8(_kb4NKFkq`(1#TbxF|(MnA$n)?a{(eobxQ%kj^>#BV;`(U?8;#HEr-XDy<#pRyVA$eMfJ57L&9`7RDNi`?KV1_0Rko00I^bg&E%9lgqgGrnXOA~a2JZ+I#oeNWoN6(o$c?Tn=VcX%(ApI|g+IvE50M|n&#>T(*c>aqo(abY`?z;w8r{cxYqj7D(MK)h5rm7&nLd&I)B^IH%EsMho z$v$<6&-4r6d*>t2xdGUg0UY@P7FPq2d3yHq9t}B{-UZ|TgX{0W=Tl(#9Q)_1OPSzz z!01<_%QDMD;EHfG5#JbN`kb2pip?$hZ;lcZqemp&vyy(sUCQ1V(0+UTzONN3LkS^} z!S6|s9XXw~6ZwsO8&TEPdd~%&_H|CZGDo~v&LhWd&Mk|gL4#x>TFDzm3k#HWcrDF0 zLDZnl7+!sI78Ja%!Ldz_9tVnNw3W<8x!z6AD?^I@dh<0RL2)ehEYe?taD{2{W^fbH z?axL0*}KvhErQ|m{e@=|{iWfsf<%%IukK-U*DMc{!IYU!YD$1{HF@(c3McZt1)Bi< zN={P&nLRQa3Ehfy|IHV4SNh1Dyohu0#ap25^lcyKfA<-H8BeH5ufz9`5s2(I3>;Yi zI=NIp-47>pzzu#{Cx^T}9)cd;ug|b9!szR9cLn?z){+TV(+qY;v37B`wRPr_bD)P+1;cw{}|jeC2wiIPY{B*|aWQ_3i@7(DR!Nj+XG zCm3Zd4pt7n*^rqk4K@Z!UvP=xQ8mZPq&YJCJRS`<*$?7f*Ofzo{6((5?dgoFT~VR` z4k~!}8dh37c(QF9YuNXSZH1&aFF|bg>B{AGP zO>LstM%L3tMz#1Od9b$E@hn!m`ColAx*lM;1DR|t|t@4se;)Td}D;O z#;SmzgT{tE5<{x6q}6q0@udP&(?0yOLD$roW^o^aPVjMjqXf zP>*e5GiA*ZE!3n|aw<)SYP!75- zc@U&q(w59ilyJ9g88_{QxvF89W&{%oEv{C!ue8#MZn>v~!LvkoAxk%I!B(2fvs$@w zPfChM{39X=bdF@RKE?IbRu2k8UFP6lWk@!>JjFwqrfKu{DMwIMk`&ZZ)$G5lY!83w z#Fbq>P38b+q#|g2y9_yh9=X5!FfQdk0BzBa#6N>SyIW_9pXMpJygQsJv1Uk2QC*HD zMr_Z3eX>02Pi!||8Y!0a9jj%1t`znhhZ0eXD;dexGZAshlg|3YBg))mo#n-scyGci zuh~XI#Hl+2KkC=k%yPcuVqNm@@MmWa!M5m667s{d`15TJ_Knc)O{##wE`857_*?h= zZHDg6P>)a2o$Izx*Dfaq;4hvwRfWyDy%qm^XgAyJXrSR_@we&z0t4R$fF|C3fA~k0 zx8d;-@cd1REc4UH2?Ut>{mKRQ-IuHZAD_Sa?hEq|&!F}1g?Dyax$ByGx^-2`^}?Yq z!^WD~pBw(Fv5%{Y#K+nv9ht>Nve7UHM1ku!>`eOP2#l*8I1-Qt@NZks={$|)wnok> zy0Bi@lG=J5j)+6B@t|U+fd%z`qYiw~e^okOqUk7MZ#aLcRlxg-Gy0C@)* zzb^tVb_5ThV=mHD<+s{blgRj9%3#DT5z2|!mIu~t_g~m>1jXcS-+c##J-b$k^JBsL zSwJjgKvc>1vOnn!{5NoF3K*MP)BLr|@FfUPe$TJ^?(=*fQ$07Fu3h9brSYR7oRbQl zFtAeTaAK`tUOAAJ<8`aH!jA=8hqmWzZdsp?s}6HFW9#lO3Q0iP#9A53Hw3P>c?-yW z?EV6_wQ{PS3f|h;+haTct0n-CWowzGfIp6p7!$h=Fz3cO^0Lso)Y?SY6}uB-#QOu1 z-<}l2nH8T=k2n<)OV}LVJ<*BmY)J5H{+1FC9gfkfHZL7AipBxUnznKvd)wNC6fG=6-AlaV$R^|3QMOopJPbstYp)rod z@b|rH#@=5ekaICQ{qxH*!d2o|cs)0He(;{J%YRe2!0-|SPEk0ZrDhM`11LDU-j=Kz zVe2{BuVT-OI4vU%Ww=f}V6x8md4Se7Hof1#)aSmzAI7IX5g_gV9X@G(`jC-Ver}e4 z9Gn~~r@)(PL52gMp)T;VUhi6Q>yf^duFUk?KBJ?}9ye@ETF?_|u$J;ze7-DqMdZE9 zTY+TQ4hUlyW>1~bw%HCf2}|trSc7|$-=AJUzxofS*>R)dMS35PmLr7GU6-Lfe)D&9 ziLasNFPOuq#QeI1c(-aTI#W^&x)p^Op0+#ltu#25YAuAUObS$J6k05Blp&s#YhRty zCHuz?X9QQfX48=PQupDFNH zP(1l{rrU9DqyS$N{RqrxzX`^$aASbo1SMzKCI^PDcgZuibgj5~ z6B#kjTjtkRJ{$&os{6n|24|f?37mU7jBh7+H-i#<5jr{gJ$7ARk8SQcXsotVF>U z-!IsFuTM@2?uGaGFt_?_;lwQbezN8F*T2;vCHDNW_YtO~hD6WX)P+RY$jiYD~tM=FB? z2mjahrOVOL+?8&3c=>$el^Q3cOe7B2$Nm`FS-Ssr+OR(dbzk=w@{5ppKh6~y z6qwL5+%M=`haTphTQ57S4$~=ThX&LF%C0+O3(;Ll7XGTM!k2Y%#?)o|%JbR-!L zKidP4e@ll@wD}@cNOeR*vMV^T1o&kjQgQ5+JW5QG0(Bo-*Ul6fIe)9|Rz2-Q8###u!_7mUT*MQf4ux2o&_n2y7B{o z5oL@pj=f`T+WYRBCvq7J8-VevnzA$&J+PnnRv)=^^S9?V6)J*Lub)cWJa)@}4fMUU zM$8Jj4*-4AHWFPm5@YOOHR0dHYc~KnT3I%dfi?}iz;%~#BDdY`MwieRVnB^lub7AT9FJ|vuq4Zb`7jO&>QJ9 zpE}D=r)>e>v~u-!G<=AVx9ahp%f0yj3(NDy3E&`5^ty3Lekv5y z`_OoJ1wZ&`U_8u3dJ+#xLZaoEELbnXleuv8=;>+jE?}n_5C|k)Z!=*FaK`&)uzUqc zSI1E~e!`SVG2;?gm;Z{0KDKpUMdyvp56UCbz_`63U8qZr$HSi)v&7S|^u+WAm7@Lz zaD9l@gY6ps_=O47LUpK@jt^x^$UX*w!jbLnp9|JaW?kAh*lujCT z{OC$T^YKkntyYXi`G#Svs#8_Hbsb5)auzP+SWt!*(6C^}l@)Y`j(?I*`zv5ByuLj- z=d}ZmLjD-a^WJGDBG;wQ>xu4)u=o?lI~*sbZ)+ zswFwu$h;JB%NO2?XA2A!Du@W;@LA$o+CEoaNH0jj44UZzUGZ-tXienkp9`yLs$^;T zv+5H5a<>&Nadu?OYI>@3nV5u<)ZE~V>)5V+ZZ~~;ahWgSQ(S2oZj^4xMdqY%T4v=U z2xIXJca9lYC3fFWJWqw{kO_u=YXW1ZXa^v<~U?=*mA(^S9HdGT3gGml5vHYu36fbC<&axY633i}rrLYx${$Z9nN^EO3ZZEHo4m8<7{{>?_P;jP&7=nGWi82y4C@b$yLpA3r^*1yiqQ$IYqcPX{X_ zleRr#_$rd@fXpyjMV)rVLl?hV(y~hsYdD4EOLZLy#|RfTJu;fq|B zXv>$FP$R@_>egO`)R9ZF{QdiXXLy2*A8J!-_ExSNAMkuWV%XFR zF{;k*Q?${iIEIF z=vfc-P>lu`hwRZ4DHD3^pqW(vJgXHWtLT+iuT_|AQ_Yhm@j6Oy7}> z>_3v~#wkkg^dpojqI0~pjy%GcimA?ooAmsJzryqCxkh)TcpHU7x0iAG!KR;3{Itdh zBN0`QoV0obn>}!Bk_WuU8r0=?7}L`r7F;j-FSQy~&)qjT-y-ZTfmKC_W74FrM32ss zSPX+uzeAy)vF{6BTmF;Y<v86y)S=$pjHP+@!PtcjU zF7_{c`a^o_u}@R%9z&+{@k9uX$6`r*cCF(9ga|4OZ?yp_jupfI09L`X)~0?WL5G?# z?#>pTcb%B-8Iri5eHk~zTC&HUzNGNkbf*y9S(+e8t@1^NJ4Ey^5qWI$P<7HO$*6xZ zXwS((-SC~!=uUg!1op=opwSdhV|p=5#gf_V?m_-8Rt{G$O1RT!0&&y5`!_4aX6?&c zc}~*-RNM#pUC0vhP`{PX#@`0+Knjvxa+seCg&`j-f&(n5Z^_<`=@K~oTztZ4CoH(U z5ufK{`<+yNoNJWRl|n#C$at;!#GX@Udr6!mGvo>kXZb;#O9APr7i%i~PZuuR?W&JQ zn#Xl6LDL2TZN?%#oL4AAaz^551I>FRhy|-ge6mY_YDN_%hCI3{RH4MaqtwdekfW?1 z1+!*_r9Vmc27P|+Om0{VR06K+dE&kj;p}Wu3MpT!-q<|4u(2|JEy^p zD*e2E2^X7{RSl_p&{p{IRfg~k-w@Q00BMx0p#*fuLfe2_ZI0ebVQNOPN`n2G9i_@G z&NDq^DH{lpHt=&|G4okU)*M6VQ?U6CpOkm{92psFFNQo=*ADwUVVP2lXoV5a89mW5ph?A8%p=Vwxzi4d~o1pxnnw z70pK%a(daOOh)UO6JW2V`-0`+69i-4yF+Nx-`&Hrezw_2fUrn@#?`xtUT0m%Y zk&BjbOn~ddg*DYJzc0DSJ?q#{d>t>aE$XZ9{}Ie+Yk>_@TiAJ@uXDiInx~(-vCB)| z{}_BUK^Fneo(1~jTo$H=)phtr-u1xEng%GI)O+=S6Ns{zXB#C*+n&ZQBc8xo{!s{? z#v*)j8RA4onk&n5$@S`*CKfEM)H;oY)VBzc3en57!RfPV5={`?tp9y>`0p$|KvWZE z54tG##)JfA7|F#Ld14oe8;>zONn}1Zk~E1#vi%gWlMo_ck;=gi#QnzmXGqAl8D4%( zLqbp6<2)hyd&$W=qk?+LlYsz%L}8xa4AJ-e4;UR)FFhJ0cpb3<(+#4Lw^3mtDn@ap z2&%UO*4^*Bt_?18=<+JNK4)(y9bpnjMga2U!kE^-IhzNTfk$YsDb_6qb9z$DIbXe`j zwllJlfhShJ!O+bW(pMjnY}et{pf=GFd^gBu?j^!2eauYSc4dsf*F49s)`H|Tg2v#CkY630B3QwCjrq}f7h2znSD5DD1d)GI34WP^8B|AsV87E9 zJD8MR+wGaCA2gT6;_8!WZ6)J^ZpF5>r(eINWHxqH(>=PlYuotDe#?wy1d${D$ z&`W_gtV;}GJL0jp$=n~@QnXnSDKjb|bOn3d($ZymsisNaBKM1x(2Ns2l!2rN3yYUI z&L{>_l#6yP6uGjk=Gq%iD9Q_=X6HVT@3XOqO|?zCe); z5C7ssKhx%|b>M*T2pko*5KAC56hE`quLXUriv`;Zbkh4X6VYinE6e_c{3vQu%C-+L zE~B(q5CI7@b-r2yZ+CDOt@A@1ZyV@E#J035d{i2Id6r*~h7nE&ouIBJ-eOPKFe-xln2e?ekA58WvA4bG?KQW!;&Id6Wq@|e3r z2J++A`DW&4{_PGwx-6o8EpWTzPWZDT!;5SYLYm9WW=-7Bi8d`t60qEoHyO->1-7rNU(qF{e%zMPb?~3F?D)O6u3FcTnHeFvw@Heh4-eY9S4rO= zR0U`=8_0n~l~UsD@WvoNCjh@e;B9#=!F0d%fMFdD7AJQ7|y-ZkGI($#Cg=M!J!6Yzm&K| zaUp&bkWALPtE#KYmZy{LE0bcef7DZsRo?-jb1#C_z(d+kK=jw`AW-)W01tHB2hxA_ zg#z2|fLK4f|G&xmCN|*h179!eCxFule9yw>e|7QL$UDH$0%+JX+Z)f|V?GR~sHx0V z*Z9%YSMw!*+iGpFfh0rsr%EE*zVi*m5q`M5l)w0m?z5XEN_HaIP`2J$->(Kq95TrW zmCu=$ig#Zl-u;Z)O8CsxHUbiuwsz#|Ut7Jiw7DO8dezuq8+<(n_94T55l{4u*ao*B zE6e=K0xl(#a<+0oipLulw2A6^>Juf>ew+3gc6RGxph((g?2N;p^r zf^2U|dTY>`cZlc!tH(6@DFN03Etl&#yS*{o8x-1WsoOk*+PAEDzH{ta0CltSslPKc zJ^Z>C=Or+ZgSavb^?a#U5L7GvKC zlzOFFSxc;PJdKcn!~_fDB^bG0>XhmhJ=hr`y>{wpu5~8=yEH_LQT$Nw-%v^sr+gj* z^;MSr9Yrr$w!<5cI{n&3ugCVyf2FyV2KhB*;STBrzw6{-hG)$FJP5p74Ie9?=bis> z#vupk)QnuQZFEo&mO zi-r9%c=g(Y@AKQis|mBU*$wWQ(77(}a*Ia6xT-`Zvg=s`H>y)enIvXG;s$1T?zyk@ zB0{3v7UD>YXF?k5mqA%lI+O$#467t0zJzXyD?ZL3E-{W+ z3x54EFaj~fL-d|ev{m|-tAc1wrA5R5jS$*wCr|10fp!F_K`c#$$`Kkf$K% zEeCIImaY9x=suJ9N;wR3RTjh5C-DwcNW8=DKu>W56hNsvQ{|hw7Lc~tAg&Pi9pYVt zDBEmz%u9e&$-02@^vS1)P_HBv%KMiFtJkAw#w%DX(P4JJNhr)%89FW<*YngO4@p#E zW(wdmMRoi8vu8koGw7}yDD+go!@Zf|>8q>vkxgM#_PrZ%w-cz<#~$7?_$j?eB4bVL zUU;b%E-qrvcp%5fzTr-gWH&0k3tWSj4)0|{yyT=e&I(c#H(=f^)a{$sz=w|NWmnwd zxGVbp?!Dq-;0_>8@-c8*kB%#dJ%z;@#B%a!76qnvp~0lv6xTs<)Id+@g~nZCBF#dm zXy$#3;{LnnToQSCxoK>~oq}TfI~pXZ_v%jKX?6x`APQTdvMDAa<~J_`mf+2J|DCLZ z`UYwf1d_u$b`3Mj8wYsp87fdhy(bGq-W4XUz($6Va3vN3vY66fXK^60fxcc>lWVHD zAlgbmyQ6!uX$bT?3>e<+MnKi#`Y3sv1hpC>P?PtgAlL*{y&orZY9 zqR=FJBa)GT@&#}P>hth1>J5HTb26*Fx2J6d;b}zRNuVCaT5Uy?OWx+3XhFfzq%Ipo zAXw^*8xwz6vIAUI?BG%u+cJGC3-8SgLaDYsrTTVfcB6^xlSDbjVVg6t*!?!65=Tl9 znF2>IYKz;9Gt{)g&;ofiSDhZ8zfMT8=OELdJ)>i$tO;7Aip{0@RbwYokL;j2*Fi;^ z?rv4fj$B39#4;8jSWqJ1Q)Z!t={XhYVXBkg#ofacHDGsav)cJXS^Rb0X zm5MD~Mk_6k1>v~gH=fSEq)7v7t(Z!+C0R=Qmw8C zYDnD&B%9q6YOUH0g0ixU&_UP@p$9e^AxVi^kup-R$dMoxx79;a6tjrhp+~vvzry?Id6ODG>fGlpH#7`>Z8>AWv@EnX1B%u=@X%XB_o$cF(#~@} zc}rErFs4*5{PNuM#oMx>?8r_*(~|741RyF;pR)Y+qxw_zo_L$lnC!ChjbbP`^7=uhA9w*eWA!NBrYo7np}aDtnJw)Fy*az1>^X9+O>@&ZXo{XX#F9hg)Dc+@ee^(efj~I3I@(Xysbn~^6*&_9H+!y^m6<4D zItF(cc0Z%{2d)tOGFu?#77CPmFm0CEK~ud#;BrmSk&XLxKxMz-FvXlZIxzAA<8yX5 zLP)MR0#j*yjWD<-!zIE~LizykUsTJdx5|}ldY@63Acw^u(gD*1~*JCcSn!~W7XK|!4y1t6d1spMz~%( z2UpqAzc5gv<#>p8;9BC?69 zOw>`#^94zPS!^CdhC`c!^PbQ)9wo4g1q&Ao5h~94T#>?jvo_y{b&s=cR`(KRQ0BOT zs0UHfa9)G6CL{hOTrTSDh%f4Sd9c?l2|($?RU9H|J-`Ub$0Esn6yo9-+Mrs66`ieX zq|dXVbz={~kRbv=Ns8r}8kp8Xk8w72);m%dibM$XZHjHlHP#ZVF8QLj)>#Tb<%UP4r>PAjj}vA)Ahi|Na7=uz+LkT8 zyA#ORt4nVYULh;HJ0%- z!)#u!2>mxWa{ z7bZiURHWZc+e2^D5qm8&eKdxj>LT;SU5a}b9s)@{Jp|&xTtfiDDfGSD#RowRfSgMU z_ofvg67?s-ZFQ{dvkkAX#6lGGid)7n-Fe0 z!dxxl!i|lp2+9l0%nCA_5CCv+tkG8j&Hax5>&4?juUkB1mYiZHA*i-OId#&K7cYDu-FhTb-~LV#Kda$ zRcJ&Qj=Kw!X@Qkgp7lm662@vB&k|`CLptKnI7>q&x5N@)qHvcydM!J=mTXH#8w0#z zTb(>67aM6D2zT`@Z7G0HAa-Tz&^STVNkwGdcUE_{wl<$^tafm-O9G-?Y{h-{QvN58 zV}XeY204g&Tm)+%@q>{Ul3N$%QTCfV%1=@~uVi&p5j0Sx*dZ<{V4)y|O){wN2{&Ru z{x=Z?K_A?coz+ebX-%(E6qdkFN)*U|vYd%^8z2#o@uR_$2QpB!aAF4{{ussMXB$g9 zASVZ~nLTht!VVs9O2@c}V>O&xV`EJ;X#zEp33y`oX>$%`2cYVt$=CxjV$|h!j!mA) z20Vk$bzDUASA5qRZCeznJ!Xh=fFc2;N|?W6@gm;tQ(7kC$do^g=o0J_{#OsZy27ju zdPR@>CAFtcKvZ+(!0mgsw96ACWm}saT+8v}9Heq0s>%2q)4w!}o%(r|x<@lK>Wnd}0t+6AP??|ww`Ycb3~FIa$8)1}A(No=T6H+k@-8#4(2{)`FBBHUGlO(4AI8BP>#a!-}7s8(oESW8^W5rcD zL;Fzg(kN?g&q6$ZZY+BCO_pktiGfJEdPfjNFrXKj+`Zsl$GeI433hG14c73XpNZY|mdhQzc?8(Ah6(A>{=CGwo@B~Y z#Id~{MfFZ3#{f=OIFXVkfF^~jc%9m&A~xtx+xn8KBDa$qi+wG*n@1WwabFK8?07o} zs?81_brP8Xbl|C_PYcf4Qe?Ia6@$zm+svD%#625xoJ5#=f#Do5nyq6M=Ub$bx!r%} zx)jfdZw^ECs{^l2#fFrQ;aEfgLkl7fgymc@-9l5T~A6K~} zh7l-dxJINFaJLslLOdBm^PMKqKH*vD9Iy^z{pU_lQdkADE zBUPnAE0-FsEsWu(3M2l#v_|C;?p<-a zo!*&|jU4m~6xv%fx=#R@>EVr99LWNVwsparDzR^(25KXt`YhxK5-nDubM;I}yV(t} zI@^4Zk64f0XWF`si^ZT+k~*9oOzg>ilUKcPHuEyN4PCV zoKA<4(nRsZo^5fK8f|k!mzPQi5xcZYdW$khH>4a$GrHh4NbfJj_GZbIG@aXWGhzue zjdaFzFXl|XGq0%7+NWl%^UbNu^`{y4`#ZYz7wYJY`h)CxJcVd34MajXfOTk|gPgMl z;K-HN93P1-JD(K8CbdsR+qk7hq}zpg(DnS@_sSbPcCTD8{nd=24dt<&Dstu}pwZj| zBVZS&ukox4=2LP{OJqUfk=#G18nX{W>~gocPs0|~PXtKJ=s~mNY0QBlK2|S4mYCl` z5`p1vJ^^iL_5;H+?&(e<-@_wRx|E=DATQuaoccy*kCBgp$b(}X2{At_Lz$~7COTeHN%|~>r+GL*A8u#p;Yt8J+96tq@8eM? zceh!N<+q+%IzZQ$X1K+xmmJ;?OUVrPaTt0o0C|l_?bEk=A#J3R$AK(OJi=faHb?z_ zAa_mD(u$QRa3GEr1m3g6UQtg*h(=Y!7-ppJiXai$mUJRH{CAVuHA3(K1JTfw6+sAB zb)~WvLkZ-?eBYHT|AJnxCf%o*wcdcvMOwqISdCD=SJl}d{FI3K&l&X6Qa09%6g#vlpZSgba5k(o#1f6FRg1E9p>W974jZ9jxf?x zQkxH5w@shsDW{V$>}$I>#td*DQ@BD~ZkCE%Z88Kqw=Xny$7GgdJ(amxbWawvY}u}v zxMX^rZoP2{JyciRyyl6r)zcETDKq56rllTcJKwU-@tfo0_F21qa=w3Z^!60~KWYDb zaC&fbm~pNal4i<{1F-rgbB*pWMtbQ@48JzTk@SI3m;)(p_PjR`gg!Z_j9XZ%QB*EY zlALW#$_4+!)c93D3cf^cUb$0ST_k6m9fe8W7M(;iKdGCI=F9eZ>)@nwZ+r=fRr>(T zM%fE$m+1Jh{qkCcm1=aHHCXB90r{y7YgneGIy0^Jn(MItZ%$reQfA-25m5kjm!26Z zOr4K5bN5?EZx3G`HCpE{k511zGwrIykoXvL@kBDM+Wa6qS|XEGSf+Hk1ZDc-Nfy+F z*6+>p-Ta=DsPXcikXd{zi4sZ`(OH%v0`-8wJ8qo4yq|x+ zCl-8G|6ca#SqF0meEo)Q1~a8LJ=U~|W+Ew+1{k?*oA%vI7Xqr&7|@xGZggr`OkkOU zz&KHNPH8wlx!b?An{Un<`>)!w5uBpsC@04m(eik3aW+zjfca-xagI-pT5p{GTROh=I`g(>*LvkJ&5>lI3fw3>}rI>Ow#;} zJ5CTEAxhv@vO7Z|n!j78KOP)M;vkj(5M0?Km4P_*l)4OD9dE$oL4|Tp8}6q`W7rU7 zh91V|D&(CMN+Aniq$o}#@724P^pOv^lS<|qyu#Kok%OR$JIToTLZ2p<@0O-;oSAtL z>8!|L+7XbNrm6 z1Gg&}TnT*sQIyG8R~suU2IyBxs0a zjG?w6vO{oh5iFY^Gw|?UOpZYP)Um|{t?I@w2}T^0{i_5b4!EFOeMh%S%aY&*^JZ)D2ah-WAPK%J2FOvp{n?LNX*!O5na0|ON@VPL3 z0TVn*oz|(q>xZ!Ji!&Nv^2118pvrBKPT^?>u>$0FVylf)c5u4N_8X@Mry`g1?ZMg0 zqc>;lZR6ymad>vnK4nKIta)_UIygHxI)rb}S>y0m_T#}}E4m&XxZ9@_FMMVrQPol7 zr*a>KLP8mU(diJ5J4++hTM1a?o#2KKt+a|&;NPbr3FY1U3M!=CD;SzC zei+AtW?mKXT(gmgTlhje!kE!GJp{PvxP9S}6BXs)UY>mhpYjdqny`$PZ zt2^3OB(FG<31KSBKVvfyHloRTUk}vj%QN;u6;G2(4b6QGMqN{&0_DM@@t+Y7%`5qs zq)#lIT}EYq%ZfXo&(~9X*2P9XG$=^3p`%>1fvnG0N^QaOooQZ)_3DL%BTw7R?~`5r2Q=4V(1MH`rtC)%}#(Nj=NE?})L?JdUmps9`di8#n5I=woJ z^$+^EtFt0mK^**o(}DJIilY_9IhyKhFpJ@Z3+RTMVFCzkKlv1_MV0dydyYFuIbC&@ z$cNXL7^Zlui7Ff}dSWG%cVPw5E)pOG?Z$7`9;{dh{GDUrr=WKv7je#CgeEL8DJYL9g#0_D> z4^P6V$9J=DTM{P$unUkp)0#7Ox=Dk&2F;Y;sm*LSOsZ^+ChWgY6}yzzD*45rkz~2| z`sSlUaiJd|GQt&37LHg;a%ggXqiqXoKM_MDRwl(7+o_A%R1iz(dQ~ zr}K@TvUU9&r%B?ma>z;+dCK0^YBjSj@YU>&sD(>JSsfc3`lM+n7;DjfMFWj*o{EAs zI-}d+?jXF}lf?{RKHUThz(isC8mt+30~~r-L%ekQJfZyN&QU22DBM^r{IyX>Ez z${JqXKynRgZLF`~{dZ@Ei&Mb?D57PBzUu`W%Po z{02*vNg)<#0%8V;J?-L<1@41%`}uW;mF2;s78_avy9?s&A55r}P}{hVV~7S2wk~g| zu8>oSLacPVw>|=g;@Ommv6f*l#KgG1$4Ng-Us;}eY}9m4kw#i%>O@Qf9~y>K z5@ef!lMI<3@o~@N0rHPZ^srLgc5xfsuxXx9hu4Z#qCzxC(Etb*6$q!J;>iU;lT1Ht zqomBfp=n|HQJGJGEN^a`Y-Fx+nvaa9UyPArXS@(2g|{%LE;$c_Dd#JqrjW}$rYN!9 z58`M!g3CZN3yeEiKv4#TRdY-hlf?7^BY=_Skz5U(%E*;0x~5*7TN*9#!etO6PHjHR z$876U_Qg4dwJ+#FghsPhOrZ?BW?HtvrMv{w4d;Sty3umMUemSVLTRxiH;XeK@hB26 zurtrZ6sVeflG-UQE*r@^ z)N2;?QP1HAX^_N4<;)utQvy7d{BoBgO;O0qBU$cSX-q3>J`s|V|MwkShJDsj3zI?U zn$L`j-=jk#r%~xHFPypYZ4u5a!kJ$voN1hb(DD=u)aJ5Q>6`+J{p<87`u3nBein)Z zq>fC;n$yNvxYEUjDXn+nep0-%WUv%0L8Q!#Wky)$bDW%!8o5JQ8|ObbBO6TO#OB%7eKLQI z#G4sw2-Z&@d#A7a5I2b6aS_T9PaKS*)~35vz?vA-M_9Ez5MQ_R+`iRnKX1Hwb#{Jm zc-B5?wvW%wPuizPuil_QIzK)+I665v`&GK_azIE_MHZW(08Bmg)5tX>-kF=;fOz}l zq}{@t>DLFR?ekW9|ILf@vxC=dl(Dl9!{Vx5qNeKFLMmU2UxUaswY|o`IF3Qi`fHm{ zL@Mad^3&|I?MIB_iDqV9-asLy^O=G?mJfZ3akTAYw+l}eb2jEg^|sA zj>}Om=vpJLOYBpL|J_>8c$6sr!g8#eTXD70R{F`5(gz0_kFv|df*mhS4|2-x#J}Z~ z`ZoS8r_^`fB)(>sJF_m>>2~@_qO^T%^`Z|M?^qc)i#=XTJ;*KlWG(d|tL$srwd3Ei zO2KT2eaR`qHa3#qQzb9aORydLl3ive_9eT_Dda|DJC{g~k-Ss^*?%1pG(6-pl&U)ta@A97~ zARh7?XlY|T_9e5-w)r`;#E$tnyTmWCFPUW?o1e2w9LK(7mU&`+PL}YlfEJR1o9kK6 zGHV=u7yFVZb8O#mN3w|goLz$b@+$E)v)q>XIkUvJ`8m6U#mYM`*3wThOYfMUlbq*; z9(%EEel|)}qzd>fzTc>2Te$Npe(-fXSJb$~f^Gnf@yRfY#_UDW~2mjAZ(?dVLqi3}dom(8kMxA{N+~VY#$X zQtjQXl^2WpOUB4c>Rt4hPAz*2F72V5j$Cvz8Gt#% zT;r;~c${*NW7ofMv=x&?iGT?xHTIJ3RAQWNjf!`n6o^5TJxJld!0k_Rl0|nvSzUBX zqywwsd0BV$hk0&s%D54Y@&kx65-B?CVDV?-v2LY-^YtXXq@-(`gu;7=r%S8;t)IiF_nSUSoD`v0`s2|J~%t;BsoST$vD zZK3;EgM4+z6h@R|#&86zp=8m?Y?dcsb__My1i3chOLOsWDNgx{fN?i*amg5}E5N=4 zLc+E$pQ6itc|M?AC+ZcIgz{ADEXhDVB_|0Yxg)p((cQ~Ml6}47Hp}P?GTX>oHO#HB z1IW>takyJu>Z<|!k=n=9oXkzBkH-XpkSRYTl=bYy(ks=d2;UNj&j|vECL>)D5-)tw z5`$!+EZxhe>4X46aOos7rfHU`)kC=lRg!T*w=4A`(fJJTviW*vsPgX7 ztrm6@OGuFKyv&A91MWULdivy$-j&~X80Z+^MiO2E zPwyV8+NyCAH}%4Y$wl`^K(LNDu{I#;?6lpdp;KymX&2zfQ~<;}lO4?D`$gaQWU z6m8B`Gq3U<25%rD4;%((BrJF6-+qErTBv?*Z1jut+qkQ<3xdwg?QIPiAFNVRM(FoN zzG7+K!dOYUj#Vay3+O=Q04y&W(qjVpQ5(A)EMVki7IkuZyW@-#xzTer^^;XsO&wh% zx)B{cl)@yAjg*N}11h!0fJbDpHLPr2BDSI3$|WqesfupHlc1adRgY9e1olmxl<1*1 zTR1gA&H{OWv94Gb3;TsT7=OI`igR8jJp>62lvpl=zrNnVZQsdmX+|cG*E>GJ)^n!F zfUEwSZX>+Sp}d@jEe3Ht#L?Xs8fD}zzPqyE3$0zCjT|=z@!6kB_64Xr4t$dEw3wRA z??%ZPYl8P~jN>@Ev13UM`yt7k8#|BU$t3;D-7R>sEM-zoR{H9bJ;ov3TlJsILL94H zC&TfXM}%9o<`+yJ{ZEyQW%M7|8SwwOLN4kMgy!#@1b69iCWWDVyCJZfx(WR$_+V2YTi z+gvh=-$J`L5UDwpWW2>z@1ou^l_HL+EnZAvgd5_7$8IT@bff#8-#e-Ys9Z{)@BFXu|4z1 z?^ie!*@*Js`O_;Ng4!5#-CQb$UA396V%&A#S#ID}=`pxh#^&XVC-xHwfmUBZk|N3V zLpB__4@%?H?IhEaPALuQW^#q*P@q1feT(A}VU;IS!Z||GW2&{`=`|Jos}rG2c;%Go zHCXrjNf;TqDaG;esPg#rhBIJQo4M5nyKgTmDwF3fk`pNN_tiBWG;^NII_}qp`aQS9 z`pCUD`Gw51A^Fv7@Oi&IXcePi@UO)wHXG_o|G?sGDPB}e9Lt!pvQe6jt5}J8f$@I* z$<3x3GgyTX2FouZwk}is&!<&ee zl$F$T4Jk^Wmq=+?5ng5G1FA+x_DLG{)?7AMUj)?k?1_J#y-?N;P4;eQYwP{(cprDV z@?J$N01vZe$oiEOYL-*Kac-9c<~A#6QP8TyW zYuLK5kG~=|zAh>@Bp6Ds4Efg9aLiPVPn*FI2~3VB@o*6AsyIoz$L&!#jupIwRE-)y z53Cs`8TNvtANLhLJk?|<$a)y+jec-|rl=wOjKnMgrzEwYdkZTw*B?xI6R{E{9q8foK9Y8pG5;2 z*_t}XmK-)$`-+{$4u}*D4iaz(=KqnCMz#WNV%k z%|SXpfSeHiv2~SUAH!pmu5QsIa}C~NAsZVz*Han`r5?ent_TUpqY z5W((TaY+2FOs?5o<>_Y@uS4zD^u8he>R2e1W}WxVhU zu2s$5y!ZFHux{rVR4_QnqvtMaT@z)2gof3oLX7QT&Vys?EN0tl{va&hPM`+Y9T02x@5Q2n%Qz3~M-sMC(kjZ|ypf@hz4*EvR` zQ^b}muPvJEpsn%0Qs`x^+aY4kph_(WbF9TV!5xH3!@03Cnlp7>?rhvbjmZA5WNQ>( zkfh)rNuP~^@FYygQOz3aQkzj-{W+(GhVx_#mgoqS#y)y@d?H`osDDT25wumgub_nt zm!IZgGwtS}byS=YRDGgw{}h`Q9a0c)Xo|_07cPirXGw-65O@t~487D_L>q|)y<*7W(J5pD0-;}obN1s6=f95% z2L)eMyG0U-eC_LA94EE1#_4E*m>cx(<&yo85_MbD?;$1>yS;X#*CUkEWeMzOZ{rIj z*@OKAKayd8xFs7~Pl63ZaKiJ&T^Fb>Eztg&k-xy64+sa?xB@}*vRa=&vhP2zE!$8MxHnxKrU2ce_2S}abT)?XJWX-z^UDh;RCcz#?CRqvt3hi(~vI`HfyN8OkQtWcZs15TE zrq(Ft_&d@R&WxG2ny1eDv(KJAKidE7v*4-Iv)=Q0bdK`W9#| ztdDr&b{_xMvgfX@$+4xKG`ajVEku)}ea!s&p)@&DVrz@sp?;;hlH@M#x8U0ah@EU_ znF&2x#GW}O^Q-IyuK>czZAkLRxYy-;UQpm+t=nU5bkJFGj=`5r*9>wuu@ZgdKAf7# zE8uB3gW=Cs!BHatOi+4z930sRk7=Sa;m!yTTv0qr)DKaFQf@KJP`}g!KgYNz;^_E- zL2ljO;DtGKh7bU0vN^jP^D9&0mVO+Ea7HTsn8o8o?)f#33n46mVVlK8l;rYQ5~FMf zL8DHmnkgts7yPCa*BVfdy6*`pi=~dQBFfP+;qZbumm@2?fbc7ZxLWb;ObM)(78<{u z%bdO-skC5f7u?zxlQHQC3hj`?xSi-;ax<^^A1S-lD?M>vZw#ei>0 zA&BHMG;S)K`LGo&4_V8w4WYUh6#i8Yn1Dh>FU9RwJiPkjG*w~vm!RHYpLH$b73krv zi93f%$Q3C~tqlu^1-Wigik2=;HPi-^N$KkL6`+bmuF@VOg%1|gUjs85RFV9f73GTU z?|)Q{GQgOCuHtfr(jH?Z3VZF}Jz`XIa@ofby(@36LMl#8+5d6($;(|rW{|aCTwFr4d3?;+f`xmKVs^ z6p|o70Z5f;nuDNnj`~(x`b77g&MF89ZlduRQ;o-@l^iFMln`uZ_*K_hS^?YcY6t*! z_af%AMEfAQcRKS?$xCd15cAL9lzycid>YQL6&&bWY-uBs2^6qLLg zyE_b2x{O04*kb58K2MWbNqF5-gx|8d#~?xr=IgF zsFe`7?8R5MirLvwUAV2 zuseBC+Iio>t7Ui(3&i_p&uhjPo?h@xTXJ(u?C>tkPuIGq{NCI&pplom7t8bXtF9@W zqeLm#C_8o8y-J$-Fr5v9;|2SzYcW7JD7ra3ri(-3AQ;8wh@BWO?&?Zy*V$SMHwy^$ z&6c>?V&<2%*DGpA@wLp}@6=7A_$wlpu^MzSv+;>QgDSS1yuyO%j2zwJy6(ZY5zSWx zvTrHFnN^bt1u(y`hb2@xW}|@?nB^rYWY!`@qY9U1R<^k9_VoPX$wgC9XXkbv?Hg{- zHTIa~=wx!Oy9^hwJDDgEm~&^{cYDh-X&m)RzfJvJLy{z?35Dl$FVLnS)?(Tp)!zyF zKZQQcN@Vl?qYx3Sk}o3ppLWs9WELZ_!ya83zu*$~_~#mY{uOG7#X$}CIDox$ig-Xd z=j36KB^-WZ1&$e_2dy`w)f+U<i2j&PDW@jGo;~*+zxr^?j5|O&FIDM(+w5@Bg$fe5l3{NI1clI$ZllXkP)ET zYjOZcnYuaxX#_nrJa~C}dDNo4rTK4Ds^mo2R>bZ+2fi z^&wr_V4Z45FXN1cqup$(hLuT(qk3wl-)m~OpVMz{eVo-FXLZ|IyvVHhSdGiB1{(3$GIG#!D@-{X7kuxF7+UQu_iS{Hn86Oy^tE3z{GE zXxw?d9)7mfqW21-ttbJV8AQfTN8DYH^W+wm@(DVfZfYOc-?TgIrG>j@_k8uT@Tt7f zZ9J0h(vTQWOVv8XQ$>Q74-Kx@Ws@f-oHJ;~$mQ-(KO4&W7S{pFvF8SJ==&t?vsv;q z_@I89F81|$4w8F#k(gJzSkv?J7~(Y#Y8LzgCmKBtR&bIw4T3X0x#=Aw)LAw zKX@6yu@?9E*2fen;z{_+#co!< z>Ud#6eN%8{>HhC1Wx_<7t|jBxyN_!q8OIHd(SAm! z$t0qWxd*Gd;leapOv%Ghnhs?T{;6=+kvG*u?{BfA_?G0e1rsgIE=b}TpmppL>dGVN zjqcp(dQby`P8pNk$B7{cv_;U(R3<8%e_-r4YPdT1Y4BHBfs1V7@O3c20W(nJ=<8Ky zPX>6y%Dvn+N~o#<1$Ba;W0i2}-bMR4JL;zv2tjs>C9hf1+-54mRU|?ET;pW-cu2?6 zmOdOZqpm#Kk=D*=Sb}@^?gbrCknlIv2!Yte^3@FDcND;)@`&j4w3iX&t6Zz_#XXL( zwK7!0gHL@OV(aW2i91O^?p%x}CI$w5vL}ki2G_fN-%D0^(1iK8b_qH<lnP=y!ZLB#? zEPrz`k6?!Ek>lEOG9Owd)@7W&4$~@*<1s8WJ2=6c_*tAwGm%^3mAWW4)A6RL&_Vb4 z^Meg3%Yw`|Zulig34Jbs_jHVZ{kcRfP}JLGH@B}#VEbs{C2wfh32Y)fhBge2C*kZZ zg^R(RWuKJ&MDK zKnbSk^r&3fa!?~sptv;*gM$YTAq_)7_BDMt%Pvzz1>&Fu|TY^m&fCY{KzPIE&y&?=uHz+vyV!MSEHlT^h?U4?^CG#Hj=tWINw$ z8>ez}?V}+K0~kPmF<5BIrT`70^R9rOS#5S;PPJH3xyq^DTn>hLp)>O#`<1}B*@09! zYJ;Tl0RyQ(XGnH<_(YO+X&NNDO?Yx1Z|2Dfn()wz09HV$zZ2avQD$uP?X2hkOA`^j z6K9|+B~jlk%Ytg7qu7WX+?5BZ2kcBl-BT?rd)dH^?7-7EY|V7U~Fc(Y(PN19ss!<0&pi%_V&}hPq@)d`6Wqk!1qq zCkqMN@D~FEP6{0PrXbAQB_@2X(6&g`YoRk}Vgf^Dp(0a@u6Gwyp59B#-HURbf)H+1zPk85(T0`wBaUr7wC z9pakgXmWc4pP>ijTL9mTrIVciW+$=UQIgyi$6+HJ;Y!%Ouhh(}H>)e0C=Akcf(Vjdl< zl$MbCX1lep6-IJD85>6-tL0|IBFlo!J>hW%374@J3bd5g5=lLp#pgIZYOuSkj`c^y z{9#spi$lh!d`f8H74GxrsJH|pwlA6n(TKvZpcY=aLnHS{n6_f_WC;?aJ|I6a!rgMo zjikg>Vg%eHiW&YqjvI?Y(N@-$l#8B|^zJ%z0{l*e9zcHH>8^?O&ox3|;Cj@5pVVJr zDC!2mkBhlUOM095j!AE+#KRLZ!jiC86klN*On2k=^ z5yxwI|AbSJ*_|!!jNJ6c;wR#}gj~}RId~0gFu^IgV_1lc#psXEM)Z*u?vGCk_veur z6%Ms1Ib%2Syeu+AWgFi6cl$ZF+*(PX_{?5E#%$f5+S-&1q zI1Sz7X#^$Zcc6R}vELeJB;Ln{MYZ5#kDZy&tkIM;L(DdYAVMk`y_mC5r!b={>Qa9h zZBw11(n8RAFPtd;jKI{A;-ZXHh!XTPJvaUeDT6Ju1ZQX&7&5{lSrqH>zN{g28U;-m z#+4v7RTz&tfeg`B6-W4gN6_;Ep={G!Nk1|L=p>aU{*^;cDd^b6;>>pVzLl!vXQ z^Ylx-*6o}pvk2B0agG0!L@){OBJOU-&3G<6K^kW7*KA!H8&ljgH;c#Rsg$1F2!*d{HtBdIilDXAfMP3P{P3h5 z062Ttuzxm5NCI)OCBQI=?9$5EQBBm22v18lUg)?JPDY69sxXO4PB@r?2$EEAo46(# zRDSYnS3c!deR56Jhq+gdgfsCHcYO4gcCyC-h=PsU<|82~Y9ZtC_5!&d1$`J>Xt1vH z8rN^_b)VUkb~cq=Q#EYkI!8lsVHE*lhek>EdX~0!??W~R9+xS32K+jW<{6)eCt9Idz5DA{)%t{=#TCMVK4!tZAC44r83P4VmZLxFt~0f z;hNsTU)1#I)p+RU+PXQixgl3})?MkU*x{};me%F8DL!qB0Yl))Q{?0PmcCh!sSvs( zzkfy26?bVki-OdkriHQAeR{n#$eWqVbOqXGl(YX~L9PehS#;t}*lH zkJ?2{F}p?=v0;H_7M+%aRnGQf^KdAx*F){@8hLdq?nD0flTkWJv%ExpSj(TdB#Z0k zQ(Vi@M3XS$D_WD4U;pqljII?$@$snIBs91Acg>p1YXS)SpwYbF^km0V1<10`^ zhVwtS=tOG1wWLB@Lc66zc4cohKcQXqXuTH09UA$|p;nqQ>{`g}Sh6q&+b7ctYz?ff z5T!_aj=P3TuASM-o!@a>oa31tDZ*&{X;hpmM>JXxh9LXG zZCBS2j#E{tyho-y`v(0*JfEPh&lk!Vx+QOS>7oFdFU%udm=$)rHa5N)`T!V79fZS0 zrpQ&T8%4_>!2mKloz>#Vgt0ZuO@|^M+L2DDbiYmEl6dc}N(-%0q<|h_ev1jtM_B2< zwC#Bx({WPE z4z}B!XPjI0%@W48^H5q{bBCcywqH?GdKCk&?Iv3!MU~Bterz)Gx57;kyqZ-p8T)nN9NjiJtfT*neHsiJ&7U_JxY6Gmd2?J)ex7nac?_9RVtux@ebtXF>^se}_ z8RMgvJ;Er8Bac1$euFuhJR>Ne)dFoJ=s?a>*(A+wQ+EsGv-+?f46!shK#aXIS9aMo zNZjJg)lL~UG3X8z>f-1;LK6_|NOC{DQ8kShr%jz;HN9P{-AlEmtToa25a-Fz9k)KY zb`7U#w7^pbv>?qQMp7me1V;dnXY7G1WnM|MV6n!&C~(l>!s zXuZ@3oqen+x6U-?%M>-0OBpU3%|G?reG#5hd({o+RVQ$Jw9hj9mk(3iPGoSzsVe)kN+Nea=zJ)RO4SZ7axp|gse zh2x>)E;tmQ51F&9T=X=d3)&(0=2SRhb@?S#-n~&*^)jx53ZqEXtIw;&DO{`fQuxU7 z+(RVnna1nY=5R53_yBsSt*CzSr9PhqRr!@3n?ZU86yBXBjDb&sGqj!Hg#klQp%QiY zIXNv5h**2iXfP8@k}sH(&+>n>9fLsZ;X8cG?9uTz(ZE!MTuW+9O$+!s1jGbl$f{Q= zVu7m&E4Kr^Lj;~GX@^!&4O`38@Le)pOr3+?lEd6>P?xudLHG8yI$v0rM+fLB1m``1 zxJq*FA2~>(w~=vh=;RvBUlB}-Q=weUTL%>jiRVC^lF4}%5sYS&CV9S9eq>BZ6sZP_XzJcXBR|_s@Rl{$jw(E$o(MOGlm>f z@bUO7;){ja&CJ6c`V;I(vAVt@7lmBRw31DaQNuz--Zg{e2nw7=PU~ruYqNC;1}(OW zDK!b_%$9s4;)gcEtlFf81O1Nnby6*&ttnp^*fi5HlYv4u!cE1KlfeEQr_lv5n+uVO zco(U*1a_ID6iqON1ziq1yn2qnai}9O>OS2Fs(s#y(Wul-7`mi5{hUzf)Kl^;qXw9g zksgCpgdwgrhloM(SKXg zcY69wn3Mf}f1?6k{OtMB{($ErA<`MxIWwUU+YX-G*}mPQxsn$e+mr5gq>2izj--YH z)tg1q)p=_1CBW-yu*kOQcCOp`-qAdX>DscRFcmwx{9bt`I(JYOu-Io-^pU@0zT;rX ztm@Rp6PvW0>%dM~D^cKDBYzcgj?5vYX%AVs@utGev2;D=6x>bwh0oo&$JTG|(BhUUNc$xFELutb3VWjK9zGi`xviXB%&nR5fBI+qt zDuex~02nbem2yXm=iY;ZLk{nGbNgBuSsd%DWwwynvabIpEf~CmOJ<8$Chv2mbc&Ii zkS>3%J0WuiI2La~GwT9Hh|TM1B)JCN1idQ5V+<Az;|-sY zz*k4=^qObO9AAeDj}CMOEwZV}B#|i0C~-j_8``TdP)p5C7$LQ$Sy`n9j9Hx(NjSM% zt=~=yXIc&uB#hb-Q-Os!^OOZtE9Io`pE{I;c8?eIp4jn8C+t6CJ*00vZ|B|nSoPZr zG*~T|shxs$D7FPXGe=o+tg5DHH8P#rT&W0b2J|!t*ECBCPh4efaX5`YZkQ9k9d7!@$}My@E4gOf#=g-|J8-pWprFxv1Omna4aWNa=sO%E6RnH!$I!}0ibA-nPcRtg!S`{<%6wNM zmv#)rQl(?h3E)Cek=T?WI&omVURd9kN@Wg&qm89I z{BHjUm-fN)L;N=`M*WR4-yx-MzmuD0&r$y4aZ3kuR7`g{5qX=;ZT8%zf{+=3g*GWo zbT&ARksBlTvNK4f`gn>mkp1)m1-$TrBWIXR#5u1xL~`ET*CSYLca>qcK6cE)J2I|S zHUjNX+CU-|_b(;iv_^|E&5r3IxrRF`O`40isN2f1q8_l@RyXRbeZaw`;7+vq ^M z=%&DKGhyk>M>JKHWwmNV4hntKC;GTVQ50~dG5)p=16C*ZAyaD+ZydrcWv5=UJN+Y_ zl4d2%x4QjFIzU1)(`Z}(+nwt;6^|FD^i{CYq35w@R9sk}p~#&QSw*G4@#+gBAg`yBOVC0epp&<1hDec~3k6G^DvfO2D-w?XNNSqL`36lLX^M-2evT0PdMe^&eMY4Q`wh%p}^qjub1K0*Uyh-9+JNR8U}uTFBnCxT@Oq-nAg}Ot9{SCAhVu z;|z7(hHA1fLd@x68qPK|xjx|y*aG9B3nWG6GmDGCVE@I7HxG9oKiPjUR3sMVqsA#C z{UEIXuXGa&!F|OJxQVAdm0e$TuH(z98&gs%FYDC;Wnsx(n%q=f?Wtc=WqMg*>LMd4 z(H_N=`EcZdg$Ei#twu2V=6Ii<=QpNC9IGv?Yo@5JT zLbhYky;+&XVPSUFm`l65S@-Mhq`j(Xt4%y2pYW|)OLOL9$8)VNd=v&2w3W-UDs~dJ zFKhLK8iRLr`YLYl`-u~^0+hAhl?BX9HNe`spp@d+cSKhl9g3=-PhjsXVOOG=0-kHW zt-m+80(3fU9_58!lqs1Sw)z%5h4{r!zN*ZgOL;^ zG0>}^uv>;uMPFxxj;CWQxW}lp?V%5iwP&%xhfop`FN>$dpK9XpHJNT4Oo)B;x!p8z z{Oj;i&oRC6#e8Pmb&O14kIInFca9~PaNR9mT6s0Tbs)e|6p58# zjvQ;Ij0;`^Sj47XA#RlD){OY~Zf$RG-un9M%Drv+wx#K^%m`U(5mS8jupHT3q(+qz zITI|k*3;5gs3E^97YakWptwGeMK_-RaD&S?L)usmJU+JT`rVbU3lx{@?{Qxs>;5nv zEl~12VBW7w@7&RHLm^R^BQ`CG(Sk$uXN*3;x3_Gks9b~E4d7Qz>DZD|h1`?6)f8tI zFh-qiY@#R;LuFH5SEdS#Z|60k>kBW=zD-RIYPo#F;F$eYY5W~W!D^*AseKv9&aOM_ zmrlz=?+-$wJYH6jLT0}|zR{`1iuL*a@cFa$^>H${bszgt4IgoNMl0V;)M7wyU?=*s zBs3Wfv2uNUX3)`0pZsimMW|2Em9}|Yth+gf@RpRUOOYDYf--Y;WTjuS6l&!^Zd|gB z#)%+2#|pI;qXm-ut;uji{%S~LP3~*_y;?=gj$GTSo5Y$GB#&bJoL~SsEJL%~y2T!H znx801>*9BvaO%tIHDr=oKAA?2C1aDBb0_J$i?l0Re;Y{(U0XFLnWC=pAUC=+ z;bUc}vY$T?$0vNQoS^LI&+wKJo}p8e{rfJvAc@xyRm}C3x>1>8EB1|v(W&(?v-)SL zYng=&Rypf@)4r}=w23)STMKWYwi=fepwz}0>uES5LWh(KKmv8AEQ{_M6l`-YX0cv1X};$jPoi{~@r>vO-Ngy@u5 z;aw2p7t?f+Gx$MXo17uW;}_vMr&JBAeE~5TCn-WMHYBV=@!^)Hb6cl1ow+|NvI~PW z=9SWT3U|`Wkl;DnfIX}$3`=#*U3ADug$ie#&K#))ZT$VAu2}!-9aRdZ^>xZmr!gM_Ql7`AUvxlp)xoXO zORZKwUD2Uh4>B|gf~jyL@GRRkuOoAVQLRtwbynLShAL8)VUClbZUQBi)?cd3N~^eG zct*H=j;wMWryBOCImXo=Okmt5PIbr`1WsH%^S1J;l58#a zZL-#I2Gtr`9kx`8c~_Plq6#B7jxdyghLo}9S$!r4eoV-eIcUgLRbs( z+^X^ejFi-Im!>9BwHCZF9>=(Io`l&k6tb!N%*5pz7a!K@aXjXWYz~{|lfE_krRzf%Z|~MCk^t=DKP(1<;)_Yah_r{PsFDAx*=6> zti>Soitn&3LgNYzvPB1jY0cLXgEF%yFCiVe0{8JBdbniStvqNV6aL&ow+a!IZxjjJ zB(`D(<{3H%6c=hu$Mu^*xnp5RJdn5V{-8TfESu0mdG-u;+kt`k_+iJ}95Q^`HMepv zWmUmV*79D-`lcTEj)4lM;T%sbr?P98K^|1UBynC2lHpexCb7FyRukAeroC$-Xm{&9 zQxnqBZ4zy@s&QOz*WHSNzA`KeA=&g9bh?tW7_P=v#2iVPmH z4R^zLd>C+`It7~R3`TjZm#&^9c7h|HhI4(}t!8%PjJ9ro&cYcSR6?bUS7vn{X9;QIb)>trhX@SwW?XP&@8M%HX)C zVUgl}rXhzUNX5@SQ)FJB5l9?|?bk^$yz~4K=cqjfN3HsMpD!DgKS1UjXbL#Wj8)H= zQ;v>PQ0}k>cE(3KRI6QDYh)1A6SX!p;{~g3x!tYSu#1^OYL4q%&U5Mv++aKr^|RYx zmaEoAF*!;kYxM#htE10^t4$uz=FvSUT2R&z-Zf$vO{j@okjJArj z*pke)K0)n!)6R0kDIU$=8b!skeK}?(lZoRw;;VR*?Ly)FD_=zp@1G~EwjshMN8g+! zS+QU`0p1nd$3|mCx%QgHC&cXm`n=o1lGl#ZV*<+YEJp_ zV(y;#^#ep7+f!}5G_I;C_BK0-ff}x%uRc7)f4Ft{Q?okuq$%Z98wLdP=l_hr|ElxW@NWRq#94+ap9x0_PvKK>UO9_b`hkmK|6v3^sVi0;GerehpW<& z*iQKIuYcXJocC9(mN)%kUad@*e(DRvlnc}CL057_Cm{+hZi`W+{J%s z4&+@jH<;obBM5efYYcVG05r4}R`TvT{diStnU>Vc3}h{=N7FPyTG%YVR>PCK-#!54 zB2=eXO^IWm=~mMzF$0A)%qL>KVbHRlrGaV`N;)JR&1pLmapB~LoyxZF(|8gEysv~F zvL3-Hq^TQD^3;f5SI;JdtAb)y`ASWhmkj|ghM%MejzS=YkhwxgB>3){eBFlI4eY6g z!H1`D5#qm!--o@%b|=NK=eo%*j&todxxa z{xtmsk7WHcJK2h7n=cQy;Ix=;{S+T>?H)YdQkfIX_!cO=afocr{Nb|Xjm)n5*&^nCoaXM|%2$sgy?{SC9N9rd59gtVXm^wIyd zoNDV)0XkXu_9>SRu*Fto&G4afz#9G$XYP{IU?WfAvK-bYDQvw;gf(#2!y6bfAuuRa zC5H30_EBnrY^1KC)ZSDL&xXZ4q3I5^P_3k6Uxc8? zy7n}Et-DS{mp*db3p(3GiFA|x-lD&^>F?+C_YVF2g8qI4Kc^4I%8B2O!ejdP*XvaUq-#Kt zc{#U!zO8>ojZs<|SqXRu9;H(|GwyR^hc-_>w?2PmQc0Qg*)))oePMmRWs>Ro@GS;? zd_Ir)w*y$6#o>s!>+$>JS+4tmGUEC3fNl@0pC5pjnuZg8n4BcVw)uF|e7t2o-ZmdU zHy`hqk6)ONUz(3!nUCD_WM`HS->MIL>ca!|VPAcCs6KqBK0Hz%9;*-Es}Db@4^PyG zr|QEq_2IetaG*Z?oBHrVeK=Gfj?{;j>cfxf!%ynN-_(bHS0Da^KA`VxT@NjWlpeAGwWP;b5^ut3QxQ9Gw4|%{I@?bsWfqKY;^pFSW zArH>OujTb^`B(C}DH+|AoNh{1Hzlu|lG#nk?WSaRQ}Vkd`Q1|WlKgH-ez)`*(MuX; zaypslue*yVNqJ4Aj6A#M z+W~BgM&=yG(`1xRQV|M&U&yi%p{T#_rPFE1nItpG{2s|oYCKN`umRl@(TJzFFgA28U6h${oSO$TlDuE`g@Q5_ULb){toHy zD{kxmpnqQD-y5A9)M-V*72QMPap@iXDFc0FKjoI=bfORck*3q<3$FSG{rwC5{a5(+tI!RoibE%a&XGg>Go@{I`Z=uo!8Yn>@G7`uy5wC6`W4NqA-4)nz?8a zg8F;fb#OAppAvno)C-b9e-@u(&$#JrUs3L{F4wg#m5UmEetzEfBS#YmY0438tfTk) z{YsXqZlekLeA!Tc-D|m~rtYxE0#Sj&D4k6%?g~86jc+F)r{NHlT?Dw?zfIG(C?$Nq z2NO8+k?Lwvd`l_*%W%1`qRN7B{=-N`b#Nwau7!PgXdY$g~NaF#YW|a+O%J8RDSTK1q~o^ zzxh(ZrtN&GNfX?>S^i#0NuuF%=Zinh9p{Tb%@@v>nlvz<7kTv;f9fxtFEwc@IeyuY z<5$j?nlzOhziPwi zRcdmpp(eMyHMzB{Cic>?f2v7;+x=FTs#5dY4K=^*t@-UGHNRc0`E6g#zfV$re5>@e zl1o^iLBwZRMbB1y2^!Bn`xK=?MdmYH{EUfvp2=(_Gf>JFzDX-Zln5(H}xI+ zb9v^00vLSvx&7Hn(F<75+S$=MyjLY--E|OHI3k*o^9emuXbl!E6=}#C`;S$}9q(D; zJG>W2MpBHvbnsY_DbAadkyrWbLMx@~B2KvVZ$O*aBcFX0O@WRCvspZ;xgHqtQ^awn z*W@jEsVT@H#H$d(T9l&%$J$aLPr(?;7Hu+t9xNC_i%Los(>`gOPOj9IddQgIaB@*1 zyd%dm# zbs(do{TENKp+1<+^;GE5%Y$pE59HFSI-nVWo-yV7&eBb$zW*Gj4mc)xJ0TQQza(v- z5yR~vJ{IskeU*w+y`fFF(Iy#m;nXZeZ`ArzaAv;iPtQVUsF!&%mw>f$m*+)<987qd z3m@U=j&&c((>^~PR{f-`1n|yq-L)1irt>6iHB5(eL46U#v$G^iXB7K-7G?={a_*8f zpCx%B^4)53QytMcLKqt;tW&oSN*mS+-r3px8k}W&<8E?Q*)z!EW``n3<&ehA-kZYU zr}+3VMXUO{-Hlnc#2Uh2Fl(~2lF+y)IS6l9d%>SZi&4RtS@@};^pa0_9*5cJbez5; zUvTjY-;}%cEe2$UpCd%(-uEy@8c~m}X2jIXPGY+qB$o0wHH% zA70Vh;z=@&M;D_>{1bT{XIF-+eS%I2dr-gu==#}1!rMYehY9Fw;#4q+PvlMw^|3UG zu?Jb7@Hh8jJd?h_w^ z%7;MimKr~^pd_rhOlSpVPPJ>P2IM$$4iZPO|G}i4&V4)J13?tXeGdt7+56=CLy9AL zl7O^@!;?1+hKG9}JPAQTE%wsI%)2RrAP6U;!{TBR*QVht9xO5inb(v{Q!)k>Yf5nx z=5L#xe}DKW4(ABtbeQ}S*QYp2i*VvgQi})qG+k&~5@uE*r`=#0CbLZj7u!2LgiQ)g z-nqp}IAIDF+0Bb|zB!4<2!5B%3>EKL5})H7s;8h0_6fpph+=eT;~^l@4j!_oemx0C zCk29J|0{Zt z`QPDKX+c0*_fhm(AGzeZ+r41h9|XyXCBZsC>*A!tCLF= zffJBZtZ)~kGI19ifon}%)6B=LQo7Of*q(Jm@s!Mco*kZsFwb73X|Z(@7wqwdS3yL1lL3;^{@CkJU=E9>B1bNHTsw75(84>&?^$@ut18Y=nWw+ z^zo3xTubd)5Y0aD*jn)p!i-fVkX~k{VQLId#$*W7hw>k!-!vf*aFN-0+Dw^9T<+9K&xBy57!Cg*(gmtgnd&0)~>qBL85O1jrO zrM`m*G#_h2FQ}T=8lg2biXcX58g*4-Oq2>Z{G$#ktCMo&RckGTl{k94w72c7f`550 z;c=doQ-=g{6^18d;_cV4JE&izVNt3-n)6{t1oYV@kPg}jT_PK0q4X_UA)jwyPYUG>v*9& zkCB`is`G97PQQdX^sNVF)J^|cx726W`~7#pU!CvgNdzavt>9L#;iZexOK_e%IW6$5 zw*675C-rX^!=j7u-v_}a2S&HV=j4}5tH_?kYcC}{05>fnvSh;&qJMFw&(lPr`0-V5 zd^VBJz&o52bv#H}!n3jE89eP${?G_~r6*a)SF3Fr0gxi%`VZjE2VoJe)?7UMW=(A_ zHGmKcrU^R`RC4fTfPCKYIyIX7&-ShnH{q+u<8qhR?eWOR7%|_TrMn8-|y+m6I<2Q}se%n<6 zucfp1-$UvA1NBbtihZPnjVn0tTyy0f{g9XsW(kn4jkUUtaBj?YcNRUs@oW&6*NFsi zd9~X;+NQo;6a|^&IujMslj(S#X%a;f4h%zJSdI`&vvW9Hcdmos&r$uY-Z-X8shyOo z_)Y0t;k{V8ysk>wySH64QV{;;8zfd88Yu)=o}GSvbq7Yp!MOKOc|LHrC*g{BASlG|KUYM5{plenTAGuun?URrG0o4up4duVgwjVim8cW{8w@m1%E=UeiOMH)?g zHGuw{C=k`9p1D%D0>_;_@RHcj`zub%NqR!i$Z?)yyBIA?aVFs}LsX^Y#Jy|=(x4#b zaJPeRb$T+Xa8jf&mQYxipl9dVKX~CeJ%}On#&dM3~Ag9ZJ3$aAM_qklhSZd0iK=dB(LZmGz_0L z5WQeXUe-g7@jp-UTAe%PMcX%1X;U9)&ZW6pP_x|!Ek zsujCQ5|SQ`A$3*#-GsY&R-cRC6)rNE50E#h27Dw^2!uo-$-+*Ub%ciG9QLCHQj(R7 z_F`~4i}k8XtU*8{3el%<_7iH5@~w)*%1EQ`UVtE(1v8&Q4Shnnu@`E_A)Qrd;7Ax_ zzDyXi)1`VcjoS}B>4Iz!@b80i`d2@^COL`r5u`b?YWR&^?kN79N*<4YpMuLX*`9i6 zCxdA=BFdLh3TJ)=t%7lFEZZ4rj~xn;p0RY{Habnyyv&bOo&}?j=oyzRheci(4lekF zK3nW{m=Lfi6vUB-tTe?@KX_aid|s9t?lq5M;)CWfg@BV+>zUgE3l+WSW}ByR7?GEg ziFqun{$@(;T&W?m&{PRV;cW?QH%da-gn}WVfS;!4xH$0=Se=d*jZN@gkD~H5PSH0D zGt+uC9W7EI^UXJ;CuafG#(0pkVI&p z4A(AM)H#%JWeUVs_}U&<>$O&t#Z20VIn;esxSAy}*OIue6<<6#^43Ld(u=5H9nq&|rd2oARE^YejD3UJ zQC%tW3Kk<1WrcDSV>_?dl?&A#jf2u8ZPT+yX2oDQ2y@M^xM0}El9$5p$qo}*xyoU9 zjutD_HHF+z>?d@^R_8AVc~A@ywvj%#yt^7o7oRJf-BOYwU5rlIs6dm!d@Us$;nF7a z#sEYCe=g^hg(G2GJmQa~1S*szL3esgwrl^;YR0ROe!;q?9)yjsC_+>^f)-p4{EF_f z#?X0PE|w(*OgQHyd~L!a(0O6yUP7wrz6Za#A(-*8JiLUBI!{Ll6|7Ml zD(!5+``{3m$mKX}6B#0fNMUuG6+gwU(-mv%zFk!77^T5?>X9>|HYYtgIyz8Bg%IJD zFMGZ?Tss-oKbbA!OB*)dP9W-!vYO<5>Hv2qQifo%YKQZXrz24=B7ppby0}t}ka!$C zi=$ZtDOSTJL-8C9vEDvFTa`L0#}pB!%`T`s=LJqZanDbRPDR_I=EJ+vPz15a0_wdu z`UXFbQrsMI+VIBhh*(@T^|hu`c*vHw{48-)- z$pS}ZOUmA~%l_?!uR`=fl~bseTz*xL#Snz@|NH;=j_{)b-??lWg%-CCt*#HMR|u_HXDApu z*t7u!SmgO_VfCuCZ#qe&w^#{R(W1F>B7D8oBg<=T-InjQ*8W$?N^gD?ZNYA2U+c>P0a+g#{*Ja^?6w~ zy`32}(@<7we5JamOT^Aex1l$m^E(J4ewB`Nb-j?uZ?r=Lo3G*Pi=(~ZAg1$?baNhb z^EmcuwxjHLaY9$zcfPp&#pj=I5Qk+RTSqi$u@l4S+x8D+m#|vfL;|WIr{~&1$(|v~ zg-Xy;?U@w`wNP8)>L3!{1h}2@KkvL`naq zRd@NNds<9aua=m#pP5nq&9U&C2mZ>!|H@OH?cb39)0(N%YUS3e(fajJ_NjHsKdF?z(ZUb##R9MYbu2z8ki*8TD6xB;?9z5p-LZB#+QJBqhu_YgF5oYISC1NhZ5TAI~iGBg~xf$)gE$$Pgn%Q z@&nQeWYmRI&_(SF&a)77OgftpiR309C>W-o{=heO0FW$FLaTzN8rrC@dcRlIJycdy zWe5In&hPL&CCypUOQ>0RYe~(jukF9fsc0VN27<&z*3`v!!wIa%#mT8fuNY=-T{95# zQcxHDtbURAA zti<;1v(n1kRj@pl#<95srHPO)8l73LifD#Bl+GOv-b+*Ykfo*RaT;BCqq^AzrA3C7 z`0MBbOTd5o2^``x46i6VLWB-#kuMC}aRBAg?JD(u&eIveZCd`G_Jz8W7~R%9r>3US zeVXPPsE6YN$pu9%2D5I4ZILHIN3dpxwlXQ2fWuzmdFUf=d zJuIPP75lejT9pRbzh!qj$~&fM^x;&D>jizhf+4xs3}Nw%LPBHb446-P77U$E7<%Rc zrx#D173KhLQbstj+oc>yVG%EAQuy{38QzkM*-%Z9VNXp999YD@rQ5XNB&9pCRLSqq zJ!F^K*<+y%&0|5!oX5#Xi%k$)pa9=jYXZFB_%L_-cH{#rcN ziJe-ItYyF7ylYpsS~x{U2jP_dfvs+;dw@Joab9?e9#L{{%dxy1TaEwrC-Lm0IPE!g z^={R6g1W6*r_}9PXH!=KNaZ2w&1PjXlqW*pZ|aa`DwkLGvC+;jv>b)(l~v_8@t0>w zDtmPA>aGCs;HvN*FdOX1*6$B`98hG1plA(nlXj6%qlic?tF3L8@{ z#c8St!2k!X^K5pH_3nI^qejDg55B$7cNa+^F&TW4RH~t9ma1Aa@$=NxBL5@T+R0!j zqaa@#Z&HBRHE-vly8m$X zNn8eK({sA?pc_vHl?rdzv%cvZv+Q_*9&rhRc;u&L80=&=77u4-rYdVB65>~$HHs7p zyPAxlJX;ns$+-&XD@O-+LsIiLCJAT&NnU|)4-sU2dKn=xE{>HfuzodG;c@+L0Y34YlXJbb9ho| zR=PsG-*iZwfu3)ucAPUS9pq8TK;x>i6t`1)Oo)JK3K~r`#=Xf#B!N~*W=0!wmj%+z zIks=Fv8l)2fz*rPx!jyU|HPAVIW&}uGyvX}n+jSLHJ25=V4d^071OosBEwp3a1iIh z%ulZ?XZlx5Gc@^tR_(cK=>=<=1L}sc624(Awi{(8Le_${D-?;MA%K1vps{ z^`Y$h!@l@M4E2@jz*9E`%~w~oUOGomF=BPMu|g;~seK4thsT1sjGz#Mm{1x!{I9*+cJeQ|-x zVp6JRDJUMJQ!Tk1>$-DeQg$hy7Z-eQvf=@u!4>bF*A?$w*R;LtjOPuqF+H^z?3*tb ztR)>=H>2&M6eVa2&%5S<<*SXCFP<Z=(&M+uKp-0gI zK}Y^aah_zbE5PV;kT>ZfS6H<^#e-KcY?XXAI|@&fOQ^k;?dQgwf9Z-YbIh34!R_zY zB0%`|Km=7)ryg<4l735OKNFsjJIJP!<+Zw1<7=HjN9;R!VR zy%u0M0S2O}%my7P8d%VLr5|`iZxhEGSk6fS@Hq_ya z=7gUx-)jHoyyEI^44y;jg`vj|$& z9168w;9oi$e}d3kjk+Oz-<@7C%}>gR#_&_0k+e1%gLj=-(e1#{Kz?*Ysdy;|(r>~N z{3y&%`Gt-CVjiJa8@{*EkCGF_E$*Dg?jc^^iC2qpreAZ`YTt*ox>v~&=ikK5;SO;^V1d68Mh>OIg|FfhjopBO zK0-VnHLN+V2|C5PPDIYn`M$lPzm2eP8#MP0?5TSb)DI%c<4wZue z!FCgIBsO%Bn`_#-04|-)17^zfWi^^4WJW<=CnC{w^R7&sl_E8W7hYkcOMwg>)6l&y zRjs?a{zl&FpPt4=i1od1nPvAiPR`46vUM<*pI0W{G=^%7Fgy_fcenW5KM#|vVY+Vy zLj>J`v-Na73~l<+{^^0u5D&`D^tqh!SknNv1y;llMn=IK^|Sy@o519V`kd7 zz)-vl!Qyal;$34x?=)r$i#(i+$O=}QH|53l*Nl?O#LQb%_`!ntYBArvbb3taXVF5D z*oy0zRolF6bsKYbGN!6m{CHY7gw5Yei?cao$X3^gyNC-Z%-^@?wS?_c z{;5IUdS$P-3tC=9EV7C33W6|QFYBsKPt`VKbKD9xmenNL)tB$$6hpO12J!$Ku$a?D ze4ZyKvs(D_>Ydqv0kfn4Zes30nhWM3Dw2|lTL%Vi!D0qO?Q?2T1{Mx0iE<8Yn&X0E zg>$g4U1aX`ve z7{aF`Ibfi%OTcJ#m|>UYyS1R^O`To=kT-Q59Ni>PK*Qo_N1C{DBOW6w(gvKn` z_8{!?x&(=W{B=bzyt563PxGZ!y!C#ncx#0!Ho0vWFhg@}aG7=VmPhzdoRMKOMY_NsADzZiIQ++b7dAf_Dv!@$^Cn>7E9(7V)u4GgW*`NG z62-zKkfT%Cj7$~fOH9oo3sV=S??^eAS;&ln^u_TV+O0t4ELJ`z(@97GNStBItxG%l zx7fMNzBpKM^I8Hp>4;z0qe`>c-LbY;+OMn~s+8*=Z@;Q+S5~+Aw<@(cm8!LLtFkh7 zb}1GzbS#bJ^eOQWk#^-kTMt4x2wYjIl1RcNVzrtfA+lG*Mrp}cY`wqL zS%JGvj#)#EVLbFhW<pvYr2_Yv{3I)on|UhFA~$uBJ9Hwj^DCQV9N~e5EV0_`b(#WZ&pA zMVV;B%aNIzG=GcMgy%?|3S1^V^QprhPYfSV48Na+>*JB(2*R{$n@8)U&?%@(|WQFEn%u{`WgFE&w#b~y7r{8bO`F6#ZIa79BOYk`|+CED1BF!$C%{Gv40eq`OpIiJua$K_{b69r@ z`@I#T-K7B_HOf)LwrJF*wN<6cy}YA1H7QF@@#Ry1IfjI@(J7ymtTfSrma>d;sSY>; z7CA8uE^R@x8(}SN&^3xiW6FP?A-Nja7l;Q$gyCHO2rX9lMr|S+Lxw{lol?)q^|bDS zSgyrk?RsP-;U;K?RokaodR?AX@H9M}qFZX#cb2gXV7bsSYm}QAGT6*!W)1G$yXUP` zV_oFB1Z?sGpV}D~7j0!*Grg7lQ?w%zACis_ssoEte z`K^+L^s1HT=n|{Wb--GNzJ+TgF+qK~d(OL^yLcJC(^&$v<;q9N>^g;_7KR^67FM)# zk0a4qvaswWQ)_BjRTj$FHwwdC2}4f&p`;;~wvy@cxS=+_SY~x{BvBbpl<@s zCkg^fiSVqqjFgsij z?;fQO@ty7pwhoTK$6IsZF^%AaHA0_X9Xij{KWzop`8FYK~LOL6$j}mj~>xVP{IFpuZXm<>tAUEk&UH>D(pSADZ_etr(Wq$hH@QF#&B9mtJ3WZ~BD_um6hl#R6{4dI16 z2zX>xH@3#a)DgiJ0J;aY0G%09icaKbb{Kv-tBb|GeLW*faeC`BARwj)6ZnKOTFB2UfnP zNTh(C`V0s)O%+KHCSzo%N%9Nt|5+%J0%eGN#(BfO4qoO91X0kC@8L`acBsN=zNNAu z`=Lcd!`Nd^uC>w;bU8SdH4LjR;VQ!^141k>o53DQbEYZSJ3NGjMX*ECLvbeJtwIMu zgm`8uwMg)jP+1znq=(5p>_NYP1_5U!+|lIV23r~r4u4l?o!pdMVkl5xKGz5nU!pXp zYmcW`bhpD*?`-t>E+nrKdjI2p|38BwE3rYg%ba>+S>EGtlGnGZD()$7WT(*ifAikj zU8&o3HoV-at=o+g={+|3gAVrcUD31~SLl5Y!NpSbd?qXI;3Y*y6~#m(kW$`qSl{?K z_sa2cDD*{`EJBT2e(Bz1PBE1$D2KQ3ms{_2(q0f3quK+9ln*5z>3VfJb9DnGN1oM% z-8c@51*pGxAiR5@NkACeYiDQZu_>?=l($^`c&3K$sp?v?%amek6TyCn-l%p0AF?H3 z&$YKqT~!EL)9Inqy5cDPE8|>tI3_jU9Ho;q+hiPrPLG8?JdR*H?p*d79hH5nrcBLM zSwvl5!Gi$H+c0aZ$>U~~MZ9ixCTLS!tv+i>`PRdf#nECEN1M|Ww@z!I_`&-fD!1@K zz~6t@;VM^YmTsCT>p#-Kt+2lSV59y|zd%2(iuboF)J*14I|-*mGODKU{C4N^^;!yE z*UAtSrR?N*<2`A6Zb|doAEulv9^Kl$wY~Aa)J#1>O05BP(|)iTwU-<^lWF`*I*T7i zrK6{M;2t^;EjbO}pD5PF3kVx79bCOKK( z@lFKf4X(@{99s_Qbog>MNk?zd%tDLkvYF;PN*R<9mg4AbPJGNxl9K7P{5tj5y3JS} zhaUlDGP*+944y(O?ZM>%Evn*n_61?49u}vdKsYb==d+W}<&`TG#fu`&!dW_B zy*~E4*HoS32{MdE{9x7k$jh6&3|iOd`iVirAWhnUn4hgRS%7er#oHqizs?Nyw9b&D z)*ImD>v~NLXddMF!?=)LFDk#KSWP?lc4rj@NZ%5u+uY$=cd~Buvbvvbx|7Ad5pzG2 za=q6N6*7lr+4q#pm1QbNOkE$IU_T`B#-ke4}|d3McVHF>BuJH3l)%%2_)e zZS|F=J9)DO&bacT(=XB3t?W8SJvJOD`cn9U^JJd9izlD~%RU%2<-k3wvfyv4=1~~} z$c`y7E@XIu93N_P_U{i=!oZQ|@ zE#z{V8~G%hMbOprxV9w1>+VIZ796SqgFyYX1`SEub=AqsE35T->g1Ib)ovYy*%}MU zyN;rH_TOzCm4ozKlzJ`8sztfhd{+6Q7oeKOaue5NI1oFQL-Ct9q`tzsW+5Bq%4r-b zx|Awc=Za1d?BF{zCNv}(MZ)5th4v^5uUGMWHNN&=?@)DlH=Kx67;7TpGERIJgQf#&2)ZPPG)XSV+XUH6NPdIR zIbNJ7*HVr@z_zjuG+1)SguT49_1h zb1luDIv17gyfU9pkbenTV64LwtqslNJhqxEsh6vSHPBIEmiV&gWUze-*Aap;@p=J^fFo(ozB)nV!H&Z z(w33}`6$;*V^?bjkgmN;aZ?BbUBpOCvzU?N_^a1FBIeY;tNjaqly`PuuzWx7bnO~2 z!6$5x3QxA*?_*C4IAY6o=ig=O_PZ~rMY!Vc;=4OLOS17%-?}7*_LGC=5|` z?|EWUjPj7%jiUlYfsjVRnI0V!RWVg0gG!8;FK-S6Vt-5qL?$XeCNGCBUT6~v0&kZB zW>LmcSg)37-0XRylC z>9F5o0qc*v{M16AUR3sC>B)vwylbyw+Ip0}rI+5SgyC{Ipn}z8PNZn7o}DbnmL#XG z3)SU%KH^C(AFOswG#7ZwpYx`B7_8NKmK3p23#qycO=W~2GYm$Hyhx|GahKyT*}JTd z7R*_EATM@x6MI2NXWZ#k)Huj+U};Dj^{m{lI)usydB6w!dps+JF5neOqnWAP0k9y6 zhSpqE@Qg;b@O&{{?~C4@vOl)OH`~mc>7A>yj8++4OkreWk5Oe{wQQ zNi!dz#H1q+*=ZH(-ZAnU|NrfM3v=5>mhSy2SZ8J>B_t)kvKiTtSC-^Nvwp28$8#%{ z5w=zfd&YWa>h54RLz(I(A}qBr%#{9ca%9ydGL#g z@VOmzDv_HVs)~gDRF!BF4?tT@o(;rY9G^2?c5!LwCp!I$jueGNP*}PU0P$=km-%YI zm{cVvu16hhswPFFj7kwpy9yr=>sM8VQ!~+2ZqOk)zoe$-Oxa;{9-xtj1EZ*3TApO_ z!RxfNOOb4_L435yQqy!GN5!0KECll1a-0_^DHaO;8koEF*Oc5e{8l8TOmY|z@{~Ze8r|^o zaZnN`6evbpj}q7q)HK_=94h5nB1V&t5-8^>!FkuES`CI@%s6w%g(QP@$8~v_RRTq3 z$6ke+CLmlm!-;RO{hRJ6juQ}EgiU4ftUC$LF;R39@kxh-po+qGMjtD6Jhm>FVaTqKwp25b3|yhs#80n7+Sfa)(uCqqF)MLp}t zpJkkaCtp3OKu3Uho5DeXHrMvc1WLsyRjQq${w{14d#mDE_wA!H5W*0qCn*xa50@-f z>R#|XxQ(N6ZuPack9?CFBT&ym$(bP-2Ui&!Vkx?`UCxKSFy2;=x-&6oZ)b6~jXQSx zD~3e@$>dHAvhVu);f&Gt1_rLw_FAEYz;W&mHR$7h#Tn=(GoFkOENB)}5tvgi+}+7-JBW^FP~ zxEyvz#a`MGoy#L>9n*|$TyUGBD4~U!`?A6IU@-he9ncQ7piUsM=Vpgo6+IlsU}UUGS{DtxjM;qPW=x zvUaHj-XI6(dvzu7?B|ke^Mzb(0XwIBh(CWl!RDmlq8ok)8PKPG%>vG+*%U>mI zXEKkT)AmBAUEjEHujsRT95KYGgxhOohe=onM}g=W_u5Qcm>y6e>}Z)fw8Kr~c}nB( z3V$>Ncsma$4uf(HveioRU8L|Qc}aBS5|q*<8od$l$o4{8iyR3Yme0aigxbc`VtYj1 zf?WSFsf<>L2bh!51-2&i^u%~hNjTw(tjMGY5@LS_sp3q5J<~}P?MgABqWe_wo|88_ zqM=bI&~S84H@MLUe7;HIG4#dDdHhJsXqyEPMgohysaz%C)*qVDrJCJw`fdYO6POQA?i#;9>SDCXF?Vx)Gr}34Z1EAF6=~O%77nTBU|7PjqWO zT}e0#$ICdF__tMf?QrYK;^>)h?dSAY;S*}`03E>AMRjk-`H2af$0K6pVUZELcy)88 z>}15{<$otqCH(KKFO{ZvV^Iy*QX~5KMCP`luG`yc=~gOuWh(Ad-c&rUlK-TU4{XbtFF`%f&hAh2Ck^5}^Iv3L%64Y>DWSa;58p>6T2S)6h$U z_2$y`rfvQ4K06QTSMiX)&x7PPzj0S&Kos=1uJ;rFKtB&zMZ||D3f`N9<9wxDIviIA zYP<&M$CZR2&;=b@r3S`a4(i-taLQ}k_N11~nNl3tHM?T~+QnP6Jc_xeE><8bX=_pG zyg={EVsWq6-Vf_}!h){dVUwjLYYekuwCuY@jA< zt!jj+bSWDBS%b6A{Az`hu1_vjaLj!OZV_P)VJG3|45W*6n@>AlmH2c%Q%9e6bb`|{ z@kd49Jz1FO5Ls)*pk`1jh3*Ib#Dg|E-X#10Tn@2JVc)Rp$385->q90F{RS2ObZ|S2 z{bbyudKPyHa+#6A+`VVeEqk#es)<(N8}&@dp*baAf-IQaVyh*EhEd}<4pM?|XIk?>kUa5^HMR)S z!MQh=MU;{#S{I69WNIMiA0MRdG&O8R>F(zR8v1g;g(g9!JbmAtynNy?N0nkBip*tm zBb;7rY?Z&m%ZY?4n&GY+FX-^aWUR!@$w6?}+wi_IDA_7edQO4u`U6}KKbP8cVs><@ zKQods)O2gaXm7c=DAD>V|!Tj`(wO)CJy*)i=wo7MIiILis#M zEKj4sFJ95p^>%4q zymo1j6}Ne+e&~=dahWo1Dt&#`D<%0-ugb1tR^a>7*YP-bVYIfl*B}9yEs))Cl+PVX zV^ZT?iDFXSmn?_K@R^sxr$PAr*ebvinN(sBT)wbO3WyqV))Qmo3v%>}I|9>Vc+Rfyb^ zY5kYcPH~xQG(8{27f^2I7`n|34!2|EruP(^`xI?s_2A4V;H)6bKHlkQNZH3F)0!%- z$a(VF1qbIk53Pk24q=*G=N5H7Yz>r%UM-uYG9HKqBGdY_P{sLT z$SJm!ZvW|{YI89t6)tT&n}&BLqaRDd-E50?ZOT+VQoyTsR?haAO?L)N_H zEH8N&Ov0-mIYRHSKHmfHq%QJk*1@%(M8&A`1}OiU0OcYl4&mtDCZfavfAA_u zQ=nu4i%k>+E+w%VhADr|3kqQrp~Dvi*QU0xftScs$nVppdAF@sI11`g#YV@QrWY<@ zgY=824Gm$@>^y;gp5mv(@iw=5lOVdtE}wYcd=qXt&u^vP9Q^5HxY+gn^f52|bNI_* zumqLag|cgDO)tr-uj4)LcppK`#f&a~va#4|jBY3MN?U?|Hr^Dzxh=+_4+M$Q9x?b4 z^c-e<;7?#XazgNUI)h&}VRSMkQ{Dy)%rK|Oam*L4FNr9!a;&QX)bbURl^Nvr;hR_JQwqOd!q7llpS;qe zMIm`TDeqEL*vu$FV5K6ZR1@|(o{sq0gr2qPKl8=JPcKn}_a03zSQ%z$fO#CyDOnj3 zN^g+_VrzwViwm%XE?aEQavodstd{86zQT)z7O6H>Q`45m!HO*(28EVYO)WN{ra~j? zl6{ZF^mivOi!@cb)m82Tdiz>eu1M9*{gd|vW%T$&aIh;ce_Zs~F|1_8?!X9-Q9@!g zyb*;}#rdg@TEl(@Cm8Uw7lo@oR-`gSg2a%7BTS%ZtLD^mBtqfm z5%SJ;+|+_V@F0U-$=R7rOf+vtZ;Qo+aHxRVSL+fFbJaySF+K#h+pIdC`C-CH3o8Bx z&A3I&et=dPRK^Y}bF#dW+F_QZq2_xmf}7UJr~E&`4W1@=H@w7iE=r5SV9y+6`<$z1 zdL$An#)mbzm|p{?8xvK$|1*Dx=bq>ys~wIt#paq@FrEdSxSS-68;NHGm{DKl%2^eD zruv(KSy&#|l9~ggBN6RJs7}VpHaf~0xK#&kvEl!mfmjw~-=7U9e)Qp&jWvKRzNGFI zgh!b=TqhOz#M<@ST*I_BaQ)(s7KfN1%%>FKr_qNAK(Mqne>^>XD{1)J@;@@AGT)=i zvOmU{LBggh8lt3yV+>7`Ex#xktwa4b;?yJ4dB)}$=|UwtlIn4+H*Gfr?Ozu4gVjgl z)A$ASk#L=ju_Lq87<*5hUtuWE{cr-kkO%_0Xd+ByNMPq^nXV4JSH904s9|?o6c8 zTLVAqYo*d$QG-n9ErI9~N!S?UWSL4kQtR$|l!e9wE#$k&Zb6M{e8Fm-T~Yj)FAAEF za^)ne?=t5$9$VT3v7r=St1ExSYkkcwzei%qq{!{2t@M+Oy3nj zt)$#j68P9EV>}gxxoa|9>oqg4U5oFP%k$w-U5mw)mwZ+b6{^0r*v)Rf%S)f={aOBK zQDgu7IZ+s97@X;5GB z^MY_Ue@RJf;A;L|?=i@5H{SjG8hyI(;e|gjzkB5V?$jSn;&2RKVomtre^gaCzMz)z zgPMl-ci@|c4|`nOqi=iPReX0JzI*Vn_lUmZ0?zLqV4L6e9`lD>!ujDt>O@b-;}Xsf zAJMoxQ2ppt^mzXUa-h{&6c_Y=qks2h6F z+wnH>gM0Gop1wkVO`*tWNk!3lPH4|zs#3DxU6QgHqc9$l(N#lZOI4aM%CU(R#Y0gy zkD!MNMn%5%{H)Xwa&iR82Lzw%>+7CRogj&4!iCc9m&XT3ulq+`=t!yfyNDpZRkm%E zFN~BT6aSj*kO+lDNe)Agsdg1NA{@>nz9lt*8 zsFV+|MF_zIJ!EmfjcF(O$0SAt(TEHA$W!UNybFZuA{8dAK{P3G22&k!_q8{Hdt}B@ zyyb583j5Yvvu&lK!xyjocc>1-Wlxl?hD@9gCgdImAvYHW%dA{{F6(=TyhsyNw4GFlMFHV;Sqz4!mS{wqk#O) zE2t3f_8+Of7gUwgDY{4$<|*~E0QM7lBIa3?VGe}2o=UwlRB{lN(VR}hA=?VniBBja z${RV1Nb(o600E#t;c2b)Vhkh=L?l9%!c^hYtjlQD zui1p5vs}^jjMqRdbupaKZ#h9B{icGc@(@>KRACL$jGW4JJ#$XDJh=pylF zmvB2;bwg2wdFG@>o5|SWOple}m=|R^{3v#;#Im$@x{+)xm`CRnN*No5uspg z#?Tbz`g;WJ6?#$SFR+MJp5I;CTmEsQF_oOU{B*yMTHN!LZ zXWc>FG%cT*e+PtXR|>urk32h9V57Atp##N`#To)AV6ifrjWb%$c_V3|M$z{?ihBuS zCE{%WXWE#C`0MCbyL_E7>J0EL-?ROhL%UxfIzR(;AW$pW+71<`YUBjY(z|DO5Dlzzkg)S_W&sM*`qiNQ> zm)u4|J>KwxqYe}E~ispaR5K78dp{2@=Cp3~$E zK3yg7v~AF7AwaZhd^fp=RmBKyLc98)&d-3iunKK&GoH5Rvzf5h>y@gkh$gioNlh=I zmBK`7rfSza5zn2c##Yhux9gQk7`tcV1tzGh{cN#!Cwmz+iw#swE`-$_&e*~(u7y+D zsS+0|^W~KCtexlh7#%Z@Aws6l;7DeVT2a&BO{o}iZXUewt|+7|{!q*Rp_czWsO1fz zBZNklM%Li6C~9yDVv;7#VfN1B8@D|1$7cCsv;6)yi))vhJ!rE}4g&B!I=ArX7&QS#~ko&4cq0-iG_;$bZY@XrkT( zH^FG0;ouW+4+6+U!33lQP9uH7$fx;U&n5S7hWhtRH4(R4i6=DIFT?ZT;C3`&e@jw~#G)!HhK;h; zi?3D3<4Iuty+4`8X+}?lm)Da~K2zT*qX93wGVZ;-a-6FMg6R zyn*J|gPzeLIEHv*sjW27RSw8SA5&zh6m5bgpe?#6w*+|U^>cm6bpRjhGUE3qYZ`?Q zC*i%7Sb-kLn#=7;aDghq#6%GwX7S$$p2XlFxbH^vP|}TwlCf><#6F?KCe$K(jxY|b zRA+&iA+x-_CT7Y1?^mY$)M=lGl;~s@NHpA~k?l(S2HI#B01Kf*@s;R-EcBs=8l@v=3SH+Th%$jj7lh( zXD|;-J@NCXA^FRR`$5^4u^4$aBYSfZnJyt}R3hayR=HUvAl3}hsuX~D=ok?qp)?E) zg!wSljQ9ZKFB3fx-TeaubC<@675qU|x zqYHyppb3KCJTYR!zh(eR6%&qj92KA~e8F{Pp?k_k^J@w%Maj~~1HQuyww4DU@x=@-cc}860_Ri-B4W}FhpF?{A+}M3 zZlNCw@sG*xTe+*RQpzzN0IuI0<7T;@&WvQ#qxvbI?!t9af*a+sC0)YiH15dP=1dsz z*~LbBLTm%`H;tk8dnOGIZiH~;PfX;q;@Ut@p@baW<{(h`CQxpbMZF#P@|R}=|6+{U zZ%`M2dyBx}B~%bo(Xy+de#5>uykI8?FhbCPWK{q@547dGRhdb!hK>ew>YyS4Zt!Cb zyP%Vck}IO0S)s)xTyI$GLX*-Q_zY)(-X6Jn!N2mu3CTjT_Se%CntNTJSWczEiW+cH z0?WB}5+JTS?9{dbtd;_^RZ4#W;_nwG-L|;qt}Ok!##d}Bsl#-`8;ftQIYv32CTd*p zoU{|9DMyIvzP;x>=egcTv%D?{MnM7PQ1+uGvh{332<+3?`JyTvs$H3wQH)yT$wEgc z38rUT^iAc(ZKQOyn+`7`=<#80l`)7Yy(?);&cg}if1hXGpxd3!v!LtG$6-9+U8fva z^~|+LDPMXx6)`_cMDKb(Zu+D$dk@G}=-@Gv2hQX!3vcQFUP11DHOjidIB zJO-7Adzmq4-bPYPpp`BGsAf} z851JP{Ne&;48dSPN?q3WWqh5*7eVlW`uJey!FLZHZ)2#!pN}5=`MaGz|K%@f7sj+Z z4$ooG0^odIaVYC5vb(_bx-vQ>1EZvwWFcIz7NvkJL{H%a)Ut3GbX8TJYIilgppd8X z@YVxAsX^o^OX2=BGA0h*Y^TX+`M*?9f=d z1f)3oW;d{}FVWeT@Z{4LXYCtT_$u?1N__Vg2c)vMYZP|3LZID2sSkKFe`0>%P-NZ4 zkybI5C{hjXUxp_&OqaRVA&kx^bKE^tmQvMQf^^S&gWUZ(OeN5!0QpSIVX)2+3BBz` z$El$7C|H#o*aBe7@E4qDn1Yf%z;Hm0E{2O7#(UejFoA@S(Bee1gX67ui$J>cymzUS zx7+#<3jsU{R@3S~#R(DLt*Xt~OXhp>hMuRS)Y-r{Q>%~`LZGy$o@8vx7-EYa1o2ku4n0ResH-Gq47H)7_3hgSf&1)Wj^hs6uVW4F=?H zz$aue|8*AdkLzGK+gJkFKtVqx)CNl3j<5|3NU7=O&8$RcxI~g}uZ&hLp+p&@0h0Dm z;Wzj>QUg9BAI}JHY+(-OU{z=WJ5+-@U=vZSTTz5?==jN5y*vjPPp*->q-{*cdoigjBImE zjgddgINM`Bc`cDO>Zfl7Y>lI66psxkI~tZ+3Wgyn$*V{Rq`qgAbSw?NeZ*K6RH%+~ z9MIs11evexVQ@?7y)N?{)3wymE~#2y+{AOLQl(XHG)fi3=}4M%PVBhju?2&z7K-MT z>BZ{%Tyu%a%5aE&02~dL?jfOYr(%28iTMPCO+FH=Zg!y6)o5WtYcVx)I6)!#Ts~0N zT0_sXl4C%Tf~a>Leh6o9DPz2O z{A>GN6yBU6Y7J~8{7ncpDdtjI*qGg@eDwJglY3Z_IXbYBGQ=W`c&}K2(I5T@b8F=B zP^LxG?$l@ORiRq}8tL0~%I+0^b{e}oRqR!9h3Ji=V&{NCAz^5h70A1Lr!V{7{oaFn zHXSw*s zVy%!hUHJ^#wr`>?^$Po^qz|^cQhf=4D>WfIp#;t$Jqr<<80t41f&s^si3Z%n?R%H=DW&)H$0WDWl2^g% z%^Jlb&sw#5YJj|Pvbk2hq$0J5gf$(GJb%ofGjN?RblzceZ$^<(u-!=PN4J=Ak3hc= zNI1zxbJFRg@hBu!V2=6Hj1;I%*Yj+>wP3Oaxn|)4Yqktm9}?FzSgWPs3UT4!cm~8W z_R%f8D>mR`mapnB&f^iDN7Wxpp*FBDlTc9>SeWia|MjBij?K)+ESh}l=aT(S}4 z?at5_ID`{JCF4V<7j8!X=sqxhDu1SFcmrD$)rdA8vU{k7+`RLQ&<9m)v>paz2F4Jm z5iluQP7uMDtU(aTBbdO6?lq*(EaX3Tw@YQ7?N;z@+PqW3F0K2(zp4BH?cyq_S|ta# z^ixWm(~di-IY4m)v1$0`cAIl(7LexwyK0aSynI09!%9*NwCQ%_9w1Wy&dGdKNbE>j zdknr#2&uQp+U1H+Z&VP2S_yWm3ty2xtI)qzcmHiN2hKQ;sG5NNyKw~4T&0jDfn%o> z0cDeU&|ngEBX4T?q?6Q>IL>%i!%=%7sK6F@D3Mx7gjtF3o#^W11cmj3Xb45UVATO0 zZ1atVs_A?yOJBao(*J>)_nM$K#brKvg_X{hGb0REIUM zA`Q}#Yh?|8CubPEB#UeHVQ`fJ*U9mMJXN7ehNnb%9<>IXpPD#0eB0-WHVvQG{OR74 z)o1RNAHf8yI$%%%&z<(ISUzk5OwP@FA-fwQqeL6ofO3G}V@UaXxryP7A7jpER>usY z`D8L^AZ7_fkQz0K48ziUPws$Rgd7Cv^^DWvDZDO~Q4Wy(;SGNtLFp zvTI{Jn8=z%vebuA)Q;R&ae6Hi>o^0;u^m;P8eysBJfz~&jxO=q44Q5imH~#@pmV&D zjx)sN=MT}7%P>pLiqTo>24$SHa#|%Akxkl4f%K z4uz7g@0RCZnCO-Gf|kclkfMn-FWIKtvQV7L*x&Gs@J)Ahn9w)*>eT zKrWLj6^7jgep7BMT^c8y9C%#-29v6ZKs-p)4lA-7yyr`vprAv-E)JuRQSK$v_eP20> zFP(W{tEcgNbjb#Pjmn4q*2v-WH+H`4wT8f`^-eE)%Ps(pqvbG6XMQH}(*y1=T9gHV zo*uvy4Y>O*RRz2A-*{c`$2bZ9fvN2$9t>Y-YS1%(R$cZM%Kn5_wNcZOB>~2tZE9!0 zPVNI}NRQ~}yVpWhL<=MFN2s(ZEDF-w@EeQ?&T>6bugT^%qpAl|QO_E5{VbjhOqgP7 zmR;}cD%mD1+INu*!pOLlozkrgcb6j|GZ@RYt#=V-m-AsSjJJ_>p>d##a$As4%&0u_ z_)$G;D2J05KPkp+BQj!+_F;|7=0|j*1NoHt-}^O^=t$Sb3KM|zxP`x(d|Jlt@lw$tlp<=}gS=WQ4A;oqO;QZ0 z?2a;H7&1ch^cb$rk&&@&q6}9>cb76l0W#cC-V9|Ez1!p&hLY}XGH6JJjnZh8cV}_= z7pW9iU*$Dj<$%8q+g3i*%^l7N-;LAM!g81q^K78;t%%ZT(3a$%ZP8d|=ugc7FM-G) zEr)o*Q^MAB(nR%IYI&#eKf=j`T_uC4`>xMeC+~yd_Ws-B?e}3cj<2`5Av$|baODs* zfc>bT0bXiKzTd!^3|r`9=UB`3tkocyULpfH*L=M+;U?n~z#+!AL>98bQnHJwMk`F< z>8p4cPTD#&^>suGJ0|3tiJT~mwA)js58R5hzN}5Zy?hxKi4_~QC@oy-iq)yT^ixt= zxJhj4b|hIZhZ~_rz@h7_ zxX73Y6YQ-cHza}N#v_)I8f=V%f@Fv+J`FMfD-*@n!nouYzIe^Bk}wwPTZaq2jR0AD z9kWARC>ifyxu(XQmp4BIVBFtDSvavkk8CX9PgQSz8(*OJwu-gY^1`yYEFu1g3f5Cn zt%~nCF1*7xuh{jRULfodEVqsq_FQZzV-OF*9v#5aoK1XGguy+WZL(CHe0g@g%Wymn zq5)2_%2neKewjnX?X?^! z#kMjtsi>QC4R!_=@A@2ktDZ%z%3Qq7hdZ8hW@{}@^O;!#8__%y_D-8qLotEyxP}7n2yORFc2NnZKIs_#STYLjFo?>gf5|+oO|L z$9>F+ad!IV?Cr^$(>DiiUK)=Zm<~fn;H~deHvE&P-Jcfi?a8=) z_(I?f*jYzl%f;fv&&ENTCGjmig{`5C;DVqwv!M_WG*!nWrr`zZ;qf!B%A0^-HbTMd z?yW?m+lZsh4XY;`9o6*rdqqtcT0}5(XcAv+Zio+=6x;PSyl&H_JT% zl>-5Z|Lm@k{I=$_Zear>jvatbO1XdgL~d@w|}v>Uh0g55(qlYtX_LY}Vj)J^hm} zf2tvUH58sFE}hj5DM$xYx35zMWHGHL#+5PJ9IR%?Wso#l(mDWnS-r)btvdJgEs~t) zh7$O$pMUAla2OntzsHACX3zWH`FPKonO&~ulg87Ni6XR1_}s87@8i@5lq_8P16F~-xt=+-zt