{
  "_args": [
    [
      "puppeteer@14.4.1",
      "/home/tbbdev/public_html/billbook"
    ]
  ],
  "_from": "puppeteer@14.4.1",
  "_id": "puppeteer@14.4.1",
  "_inBundle": false,
  "_integrity": "sha512-+H0Gm84aXUvSLdSiDROtLlOofftClgw2TdceMvvCU9UvMryappoeS3+eOLfKvoy4sm8B8MWnYmPhWxVFudAOFQ==",
  "_location": "/puppeteer",
  "_phantomChildren": {
    "glob": "7.2.3"
  },
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "puppeteer@14.4.1",
    "name": "puppeteer",
    "escapedName": "puppeteer",
    "rawSpec": "14.4.1",
    "saveSpec": null,
    "fetchSpec": "14.4.1"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-14.4.1.tgz",
  "_spec": "14.4.1",
  "_where": "/home/tbbdev/public_html/billbook",
  "author": {
    "name": "The Chromium Authors"
  },
  "bugs": {
    "url": "https://github.com/puppeteer/puppeteer/issues"
  },
  "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"
  },
  "description": "A high-level API to control headless Chrome over the DevTools Protocol",
  "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"
  },
  "engines": {
    "node": ">=14.1.0"
  },
  "exports": {
    ".": {
      "types": "./lib/types.d.ts",
      "import": "./lib/esm/puppeteer/puppeteer.js",
      "require": "./lib/cjs/puppeteer/puppeteer.js"
    },
    "./*": {
      "import": "./*",
      "require": "./*"
    }
  },
  "files": [
    "lib",
    "install.js",
    "typescript-if-required.js"
  ],
  "homepage": "https://github.com/puppeteer/puppeteer#readme",
  "keywords": [
    "puppeteer",
    "chrome",
    "headless",
    "automation"
  ],
  "license": "Apache-2.0",
  "main": "./lib/cjs/puppeteer/puppeteer.js",
  "name": "puppeteer",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/puppeteer/puppeteer.git"
  },
  "scripts": {
    "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:cjs": "tsc -b src/tsconfig.cjs.json",
    "build:tsc:esm": "tsc -b src/tsconfig.esm.json",
    "clean:docs": "rimraf docs-api-json",
    "clean:lib": "rimraf lib",
    "commitlint": "commitlint --from=HEAD~1",
    "doc": "node utils/doclint/cli.js",
    "format": "prettier --write .",
    "generate:docs": "npm run generate:types && node utils/remove-tag.js",
    "generate:docs:testing": "commonmark docs/api.md > docs/api.html",
    "generate:esm-package-json": "echo '{\"type\": \"module\"}' > lib/esm/package.json",
    "generate:types": "npm run clean:docs && api-extractor run --local --verbose",
    "install": "node install.js",
    "lint": "npm run build && npm run lint:eslint && npm run doc && npm run lint:prettier",
    "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 .",
    "lint:prettier": "prettier --check .",
    "prepare": "node typescript-if-required.js && ([[ $HUSKY = 0 ]] || husky install)",
    "prepublishOnly": "npm run build",
    "test": "npm run lint --silent && npm run test:unit:coverage",
    "test:debug": "npm run build:test && mocha --inspect-brk",
    "test:install": "scripts/test-install.sh",
    "test:pinned-deps": "ts-node -s scripts/ensure-pinned-deps",
    "test:protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package",
    "test:types": "ts-node -s scripts/test-ts-definition-files.ts",
    "test:unit": "npm run build:test && mocha",
    "test:unit:chrome-headless": "cross-env HEADLESS=chrome npm run test:unit",
    "test:unit:coverage": "c8 --check-coverage --lines 94 npm run test:unit",
    "test:unit:firefox": "cross-env PUPPETEER_PRODUCT=firefox npm run test:unit"
  },
  "type": "commonjs",
  "types": "lib/types.d.ts",
  "version": "14.4.1"
}
