2017-05-11 07:06:41 +00:00
|
|
|
{
|
|
|
|
"name": "puppeteer",
|
2020-07-02 15:13:04 +00:00
|
|
|
"version": "5.0.0-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-06-23 11:55:42 +00:00
|
|
|
"unit": "tsc --version && mocha --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",
|
2017-12-15 22:25:06 +00:00
|
|
|
"debug-unit": "node --inspect-brk test/test.js",
|
2020-07-10 09:07:28 +00:00
|
|
|
"test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-types",
|
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-04-21 09:40:04 +00:00
|
|
|
"lint": "npm run eslint && npm run tsc && npm run doc",
|
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-10 10:51:52 +00:00
|
|
|
"tsc-cjs": "tsc -p .",
|
|
|
|
"tsc-esm": "tsc --build tsconfig-esm.json",
|
2020-07-02 11:04:55 +00:00
|
|
|
"typecheck": "tsc -p . --noEmit",
|
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-06-17 13:29:39 +00:00
|
|
|
"ensure-new-docs-up-to-date": "npm run generate-docs && exit `git status --porcelain | head -255 | wc -l`",
|
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",
|
|
|
|
"ensure-correct-devtools-protocol-revision": "ts-node 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-07-10 13:32:44 +00:00
|
|
|
"devtools-protocol": "0.0.767361",
|
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",
|
2018-04-17 21:51:03 +00:00
|
|
|
"mime": "^2.0.3",
|
2020-06-15 10:52:19 +00:00
|
|
|
"mitt": "^2.0.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-06-22 08:16:51 +00:00
|
|
|
"@microsoft/api-documenter": "7.8.14",
|
|
|
|
"@microsoft/api-extractor": "7.8.12",
|
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-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-04-14 11:08:52 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.28.0",
|
|
|
|
"@typescript-eslint/parser": "^2.28.0",
|
2018-11-09 23:32:20 +00:00
|
|
|
"commonmark": "^0.28.1",
|
2017-10-11 19:14:13 +00:00
|
|
|
"cross-env": "^5.0.5",
|
2020-06-17 13:29:39 +00:00
|
|
|
"dependency-cruiser": "^9.7.0",
|
2020-03-31 16:43:06 +00:00
|
|
|
"eslint": "^6.8.0",
|
2020-05-07 10:54:55 +00:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-04-09 05:56:25 +00:00
|
|
|
"eslint-plugin-mocha": "^6.3.0",
|
2020-05-07 10:54:55 +00:00
|
|
|
"eslint-plugin-prettier": "^3.1.3",
|
2020-04-28 13:16:28 +00:00
|
|
|
"eslint-plugin-unicorn": "^19.0.1",
|
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-04-23 09:38:00 +00:00
|
|
|
"jpeg-js": "^0.3.7",
|
2017-06-16 21:33:34 +00:00
|
|
|
"minimist": "^1.2.0",
|
2020-06-18 15:26:30 +00:00
|
|
|
"mocha": "^8.0.1",
|
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-05-07 10:54:55 +00:00
|
|
|
"prettier": "^2.0.5",
|
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-06-23 05:18:46 +00:00
|
|
|
"ts-node": "^8.10.2",
|
2020-06-23 11:55:42 +00:00
|
|
|
"typescript": "3.9.5"
|
2018-09-13 19:08:51 +00:00
|
|
|
},
|
|
|
|
"browser": {
|
|
|
|
"./lib/BrowserFetcher.js": false,
|
|
|
|
"ws": "./utils/browser/WebSocket",
|
|
|
|
"fs": false,
|
|
|
|
"child_process": false,
|
|
|
|
"rimraf": false,
|
|
|
|
"readline": false
|
2017-05-11 07:06:41 +00:00
|
|
|
}
|
|
|
|
}
|