2017-05-11 07:06:41 +00:00
|
|
|
{
|
|
|
|
"name": "puppeteer",
|
2020-09-23 09:28:08 +00:00
|
|
|
"version": "5.3.1-post",
|
2017-08-16 05:30:56 +00:00
|
|
|
"description": "A high-level API to control headless Chrome over the DevTools Protocol",
|
2020-06-25 13:24:46 +00:00
|
|
|
"main": "./cjs-entry.js",
|
2019-11-26 12:12:25 +00:00
|
|
|
"repository": "github:puppeteer/puppeteer",
|
2017-06-19 22:01:14 +00:00
|
|
|
"engines": {
|
2020-03-10 20:55:32 +00:00
|
|
|
"node": ">=10.18.1"
|
2017-06-19 22:01:14 +00:00
|
|
|
},
|
2017-05-11 07:06:41 +00:00
|
|
|
"scripts": {
|
2020-07-22 11:14:35 +00:00
|
|
|
"test-browser": "wtr",
|
|
|
|
"test-browser-watch": "wtr --watch",
|
2020-07-13 09:22:26 +00:00
|
|
|
"unit": "npm run tsc-cjs && mocha --config mocha-config/puppeteer-unit-tests.js",
|
2020-09-11 08:10:25 +00:00
|
|
|
"unit-debug": "npm run tsc-cjs && mocha --inspect-brk --config mocha-config/puppeteer-unit-tests.js",
|
2020-04-30 12:00:41 +00:00
|
|
|
"unit-with-coverage": "cross-env COVERAGE=1 npm run unit",
|
|
|
|
"assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js",
|
2020-04-09 05:56:25 +00:00
|
|
|
"funit": "PUPPETEER_PRODUCT=firefox npm run unit",
|
2020-09-25 10:44:34 +00:00
|
|
|
"test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser",
|
2020-04-17 09:29:40 +00:00
|
|
|
"prepare": "node typescript-if-required.js",
|
2020-04-02 14:25:19 +00:00
|
|
|
"prepublishOnly": "npm run tsc",
|
|
|
|
"dev-install": "npm run tsc && node install.js",
|
2017-06-19 21:43:05 +00:00
|
|
|
"install": "node install.js",
|
2020-04-21 09:40:04 +00:00
|
|
|
"eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)",
|
2020-05-07 13:54:33 +00:00
|
|
|
"eslint-fix": "eslint --ext js --ext ts --fix .",
|
2020-10-08 10:04:15 +00:00
|
|
|
"commitlint": "commitlint --from=HEAD~1",
|
|
|
|
"lint": "npm run eslint && npm run tsc && npm run doc && npm run commitlint",
|
2017-07-27 23:16:37 +00:00
|
|
|
"doc": "node utils/doclint/cli.js",
|
2020-06-09 11:10:19 +00:00
|
|
|
"clean-lib": "rm -rf lib",
|
2020-06-25 13:24:46 +00:00
|
|
|
"tsc": "npm run clean-lib && tsc --version && npm run tsc-cjs && npm run tsc-esm",
|
2020-07-14 15:57:29 +00:00
|
|
|
"tsc-cjs": "tsc -b src/tsconfig.cjs.json",
|
|
|
|
"tsc-esm": "tsc -b src/tsconfig.esm.json",
|
2018-09-13 19:08:51 +00:00
|
|
|
"apply-next-version": "node utils/apply_next_version.js",
|
2020-06-04 10:47:13 +00:00
|
|
|
"test-install": "scripts/test-install.sh",
|
2020-06-11 08:48:37 +00:00
|
|
|
"generate-docs": "npm run tsc && api-extractor run --local --verbose && api-documenter markdown -i temp -o new-docs",
|
2020-07-10 10:51:52 +00:00
|
|
|
"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",
|
2020-09-28 09:35:35 +00:00
|
|
|
"ensure-correct-devtools-protocol-revision": "ts-node -s scripts/ensure-correct-devtools-protocol-package"
|
2017-05-11 07:06:41 +00:00
|
|
|
},
|
2020-04-17 09:32:25 +00:00
|
|
|
"files": [
|
|
|
|
"lib/",
|
2020-04-22 14:33:36 +00:00
|
|
|
"install.js",
|
2020-06-25 13:24:46 +00:00
|
|
|
"typescript-if-required.js",
|
2020-06-29 15:13:24 +00:00
|
|
|
"cjs-entry.js",
|
|
|
|
"cjs-entry-core.js"
|
2020-04-17 09:32:25 +00:00
|
|
|
],
|
2017-05-11 07:06:41 +00:00
|
|
|
"author": "The Chromium Authors",
|
2017-08-31 18:16:28 +00:00
|
|
|
"license": "Apache-2.0",
|
2017-05-11 07:06:41 +00:00
|
|
|
"dependencies": {
|
2018-11-09 23:32:20 +00:00
|
|
|
"debug": "^4.1.0",
|
2020-10-01 06:24:47 +00:00
|
|
|
"devtools-protocol": "0.0.809251",
|
2020-04-09 19:13:25 +00:00
|
|
|
"extract-zip": "^2.0.0",
|
2019-12-11 14:40:22 +00:00
|
|
|
"https-proxy-agent": "^4.0.0",
|
2020-10-12 09:08:57 +00:00
|
|
|
"node-fetch": "^2.6.1",
|
2020-06-29 15:13:24 +00:00
|
|
|
"pkg-dir": "^4.2.0",
|
2018-11-09 23:32:20 +00:00
|
|
|
"progress": "^2.0.1",
|
2017-08-23 15:33:29 +00:00
|
|
|
"proxy-from-env": "^1.0.0",
|
2020-03-12 21:17:47 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2020-03-10 20:59:03 +00:00
|
|
|
"tar-fs": "^2.0.0",
|
|
|
|
"unbzip2-stream": "^1.3.3",
|
2020-04-14 14:13:38 +00:00
|
|
|
"ws": "^7.2.3"
|
2017-05-11 07:06:41 +00:00
|
|
|
},
|
2017-05-12 23:36:37 +00:00
|
|
|
"devDependencies": {
|
2020-10-08 10:04:15 +00:00
|
|
|
"@commitlint/cli": "^11.0.0",
|
|
|
|
"@commitlint/config-conventional": "^11.0.0",
|
2020-10-08 15:02:37 +00:00
|
|
|
"@microsoft/api-documenter": "7.9.7",
|
|
|
|
"@microsoft/api-extractor": "7.10.4",
|
2018-11-09 23:32:20 +00:00
|
|
|
"@types/debug": "0.0.31",
|
2018-04-17 21:51:03 +00:00
|
|
|
"@types/mime": "^2.0.0",
|
2020-06-23 05:18:46 +00:00
|
|
|
"@types/mocha": "^7.0.2",
|
|
|
|
"@types/node": "^14.0.13",
|
2020-05-07 16:26:26 +00:00
|
|
|
"@types/proxy-from-env": "^1.0.1",
|
2017-10-10 05:31:40 +00:00
|
|
|
"@types/rimraf": "^2.0.2",
|
2020-07-28 08:37:49 +00:00
|
|
|
"@types/sinon": "^9.0.4",
|
2020-03-10 20:59:03 +00:00
|
|
|
"@types/tar-fs": "^1.16.2",
|
2020-04-14 14:13:38 +00:00
|
|
|
"@types/ws": "^7.2.4",
|
2020-10-12 09:30:35 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.4.0",
|
|
|
|
"@typescript-eslint/parser": "^4.4.0",
|
2020-10-19 08:57:15 +00:00
|
|
|
"@web/test-runner": "^0.9.2",
|
2018-11-09 23:32:20 +00:00
|
|
|
"commonmark": "^0.28.1",
|
2020-10-08 15:02:37 +00:00
|
|
|
"cross-env": "^7.0.2",
|
2020-06-17 13:29:39 +00:00
|
|
|
"dependency-cruiser": "^9.7.0",
|
2020-10-12 09:30:35 +00:00
|
|
|
"eslint": "^7.10.0",
|
|
|
|
"eslint-config-prettier": "^6.12.0",
|
2020-07-13 09:22:26 +00:00
|
|
|
"eslint-plugin-import": "^2.22.0",
|
2020-10-12 09:30:35 +00:00
|
|
|
"eslint-plugin-mocha": "^8.0.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
|
|
"eslint-plugin-unicorn": "^22.0.0",
|
2017-07-07 16:36:45 +00:00
|
|
|
"esprima": "^4.0.0",
|
2020-04-03 11:22:55 +00:00
|
|
|
"expect": "^25.2.7",
|
2020-10-08 10:04:15 +00:00
|
|
|
"husky": "^4.3.0",
|
2020-04-23 09:38:00 +00:00
|
|
|
"jpeg-js": "^0.3.7",
|
2020-09-23 07:56:40 +00:00
|
|
|
"mime": "^2.0.3",
|
2017-06-16 21:33:34 +00:00
|
|
|
"minimist": "^1.2.0",
|
2020-10-22 13:37:28 +00:00
|
|
|
"mocha": "^8.2.0",
|
2017-06-16 21:33:34 +00:00
|
|
|
"ncp": "^2.0.0",
|
2017-06-16 22:02:14 +00:00
|
|
|
"pixelmatch": "^4.0.2",
|
2020-04-23 09:38:00 +00:00
|
|
|
"pngjs": "^5.0.0",
|
2020-10-12 09:30:35 +00:00
|
|
|
"prettier": "^2.1.2",
|
2020-05-12 09:30:24 +00:00
|
|
|
"sinon": "^9.0.2",
|
2017-10-10 05:31:40 +00:00
|
|
|
"text-diff": "^1.0.1",
|
2020-10-08 15:02:37 +00:00
|
|
|
"ts-node": "^9.0.0",
|
2020-06-23 11:55:42 +00:00
|
|
|
"typescript": "3.9.5"
|
2018-09-13 19:08:51 +00:00
|
|
|
},
|
2020-10-08 10:04:15 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
|
|
|
|
}
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
}
|