puppeteer/package.json

178 lines
5.6 KiB
JSON
Raw Normal View History

2017-05-11 07:06:41 +00:00
{
"name": "puppeteer-repo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/puppeteer/puppeteer"
2017-06-19 22:01:14 +00:00
},
2017-05-11 07:06:41 +00:00
"scripts": {
"build": "wireit",
"build:docs": "wireit",
"check:pinned-deps": "tsx tools/ensure-pinned-deps",
"check": "npm run check --workspaces --if-present && run-p check:*",
2023-03-22 09:31:55 +00:00
"clean": "rimraf -g \"./**/.wireit\" && npm run clean --workspaces --if-present",
"debug": "mocha --inspect-brk",
"docs": "run-s build:docs generate:markdown",
"format:eslint": "eslint --ext js --ext ts --fix .",
"format:prettier": "prettier --write .",
"format:expectations": "node tools/sort-test-expectations.js",
"format": "run-s format:*",
"generate:markdown": "tsx tools/generate_docs.ts",
"lint:eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)",
"lint:prettier": "prettier --check .",
"lint": "run-s lint:prettier lint:eslint",
"postinstall": "npm run postinstall --workspaces --if-present",
"test-install": "npm run test --workspace @puppeteer-test/installation",
"test-types": "tsd -t packages/puppeteer",
"test:chrome:headful": "wireit",
"test:chrome:new-headless": "wireit",
"test:chrome:headless": "wireit",
"test:chrome:bidi": "wireit",
"test:chrome:bidi-local": "wireit",
"test:chrome": "wireit",
"test:firefox:bidi": "wireit",
"test:firefox:headful": "wireit",
"test:firefox:headless": "wireit",
"test:firefox": "wireit",
2023-07-18 16:43:22 +00:00
"test": "wireit",
2023-06-26 08:57:48 +00:00
"validate-licenses": "tsx tools/third_party/validate-licenses.ts",
"unit": "npm run unit --workspaces --if-present"
2017-05-11 07:06:41 +00:00
},
"wireit": {
"build": {
"dependencies": [
"./packages/browsers:build",
"./packages/ng-schematics:build",
"./packages/puppeteer-core:build",
"./packages/puppeteer:build",
"./packages/testserver:build",
"./test:build",
"./test/installation:build"
]
},
"build:docs": {
"dependencies": [
"./packages/browsers:build:docs",
"./packages/puppeteer:build:docs",
"./packages/puppeteer-core:build:docs"
]
},
"test:chrome:headful": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite chrome-headful"
},
"test:chrome:headless": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite chrome-headless"
},
"test:chrome:new-headless": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite chrome-new-headless"
},
"test:chrome:bidi": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite chrome-bidi"
},
"test:chrome:bidi-local": {
2023-07-18 16:43:22 +00:00
"command": "PUPPETEER_EXECUTABLE_PATH=$(node tools/download_chrome_bidi.mjs ~/.cache/puppeteer/chrome-canary --shell) npm test -- --test-suite chrome-bidi"
},
"test:firefox:headful": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite firefox-headful"
},
"test:firefox:headless": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite firefox-headless"
},
"test:firefox:bidi": {
2023-07-18 16:43:22 +00:00
"command": "npm test -- --test-suite firefox-bidi"
},
"test:chrome": {
"dependencies": [
"test:chrome:headful",
"test:chrome:headless",
"test:chrome:new-headless",
"test:chrome:bidi"
]
},
"test:firefox": {
"dependencies": [
"test:firefox:headful",
"test:firefox:headless",
"test:firefox:bidi"
]
2023-07-18 16:43:22 +00:00
},
"test": {
"command": "cross-env PUPPETEER_DEFERRED_PROMISE_DEBUG_TIMEOUT=20000 node tools/mochaRunner/lib/main.js --min-tests 1003",
"dependencies": [
"./test:build"
]
}
},
"devDependencies": {
"@actions/core": "1.10.0",
2023-08-21 18:13:03 +00:00
"@microsoft/api-documenter": "7.22.33",
"@microsoft/api-extractor": "7.36.4",
"@microsoft/api-extractor-model": "7.27.6",
"@pptr/testserver": "file:packages/testserver",
2023-08-21 18:13:03 +00:00
"@prettier/sync": "0.3.0",
2023-08-24 12:42:51 +00:00
"@rollup/plugin-node-resolve": "15.2.1",
"@rollup/plugin-terser": "0.4.3",
2023-06-07 11:17:31 +00:00
"@types/debug": "4.1.8",
"@types/diff": "5.0.3",
"@types/mime": "3.0.1",
"@types/mocha": "10.0.1",
2023-08-28 11:01:52 +00:00
"@types/node": "20.5.6",
"@types/pixelmatch": "5.2.4",
"@types/pngjs": "6.0.1",
"@types/progress": "2.0.5",
2023-06-07 11:17:31 +00:00
"@types/semver": "7.5.0",
2023-08-21 18:13:03 +00:00
"@types/sinon": "10.0.16",
"@types/tar-fs": "2.0.1",
2022-05-31 14:34:16 +00:00
"@types/unbzip2-stream": "1.4.0",
"@types/ws": "8.5.5",
2023-08-24 12:42:51 +00:00
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
2023-08-21 18:13:03 +00:00
"c8": "8.0.1",
"commonmark": "0.30.0",
"cross-env": "7.0.3",
"diff": "5.1.0",
2023-08-21 18:13:03 +00:00
"esbuild": "0.19.2",
2023-08-28 11:01:52 +00:00
"eslint": "8.48.0",
2023-08-21 18:13:03 +00:00
"eslint-config-prettier": "9.0.0",
"eslint-formatter-codeframe": "7.32.1",
2023-08-21 18:13:03 +00:00
"eslint-plugin-import": "2.28.1",
"eslint-plugin-local": "1.0.0",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-prettier": "5.0.0",
2022-09-27 09:53:19 +00:00
"eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-unused-imports": "3.0.0",
"esprima": "4.0.1",
2023-08-28 11:01:52 +00:00
"expect": "29.6.4",
"glob": "10.3.3",
2023-08-24 12:42:51 +00:00
"gts": "5.0.1",
"jpeg-js": "0.4.4",
2023-03-23 09:22:52 +00:00
"license-checker": "25.0.1",
"mime": "3.0.0",
2023-03-06 12:43:37 +00:00
"minimist": "1.2.8",
"mocha": "10.2.0",
"ncp": "2.0.0",
2022-07-01 13:03:12 +00:00
"npm-run-all": "4.1.5",
"pixelmatch": "5.3.0",
2023-03-06 12:43:37 +00:00
"pngjs": "7.0.0",
2023-08-21 18:13:03 +00:00
"prettier": "3.0.2",
"puppeteer": "file:packages/puppeteer",
2023-06-07 11:17:31 +00:00
"rimraf": "5.0.1",
2023-08-24 12:42:51 +00:00
"rollup": "3.28.1",
"semver": "7.5.4",
"sinon": "15.2.0",
"source-map-support": "0.5.21",
2023-03-23 09:22:52 +00:00
"spdx-satisfies": "5.0.1",
"text-diff": "1.0.1",
2023-06-07 11:17:31 +00:00
"tsd": "0.28.1",
"tsx": "3.12.7",
2023-08-28 11:01:52 +00:00
"typescript": "5.2.2",
"wireit": "0.10.0",
2023-08-21 18:13:03 +00:00
"zod": "3.22.2"
},
"workspaces": [
"packages/*",
"test",
"test/installation"
]
2017-05-11 07:06:41 +00:00
}