2019-11-19 03:18:28 +01:00
{
2020-05-21 22:18:15 +02:00
"name" : "playwright-internal" ,
"private" : true ,
2022-10-06 00:30:35 +02:00
"version" : "1.28.0-next" ,
2020-01-07 20:51:22 +01:00
"description" : "A high-level API to automate web browsers" ,
2019-11-19 03:18:28 +01:00
"repository" : "github:Microsoft/playwright" ,
2020-05-07 21:31:59 +02:00
"homepage" : "https://playwright.dev" ,
2019-11-19 03:18:28 +01:00
"engines" : {
2022-04-26 17:52:32 +02:00
"node" : ">=14"
2019-11-19 03:18:28 +01:00
} ,
2021-10-11 16:52:17 +02:00
"author" : {
"name" : "Microsoft Corporation"
} ,
"license" : "Apache-2.0" ,
2019-11-19 03:18:28 +01:00
"scripts" : {
2022-03-26 07:09:02 +01:00
"ctest" : "playwright test --config=tests/library/playwright.config.ts --project=chromium" ,
"ftest" : "playwright test --config=tests/library/playwright.config.ts --project=firefox" ,
"wtest" : "playwright test --config=tests/library/playwright.config.ts --project=webkit" ,
"atest" : "playwright test --config=tests/android/playwright.config.ts" ,
"etest" : "playwright test --config=tests/electron/playwright.config.ts" ,
2022-09-07 20:09:22 +02:00
"webview2test" : "playwright test --config=tests/webview2/playwright.config.ts" ,
2022-04-25 18:30:14 +02:00
"itest" : "playwright test --config=tests/installation/playwright.config.ts" ,
2022-05-18 18:50:58 +02:00
"stest" : "playwright test --config=tests/stress/playwright.config.ts" ,
2022-03-29 22:27:37 +02:00
"test-html-reporter" : "playwright test --config=packages/html-reporter" ,
"test-web" : "playwright test --config=packages/web" ,
2022-03-26 07:09:02 +01:00
"ttest" : "node ./tests/playwright-test/stable-test-runner/node_modules/@playwright/test/cli test --config=tests/playwright-test/playwright.config.ts" ,
"ct" : "playwright test tests/components/test-all.spec.js --reporter=list" ,
"test" : "playwright test --config=tests/library/playwright.config.ts" ,
2021-11-19 18:48:33 +01:00
"eslint" : "eslint --ext ts,tsx ." ,
2019-11-19 03:18:28 +01:00
"tsc" : "tsc -p ." ,
2021-10-11 16:52:17 +02:00
"build-installer" : "babel -s --extensions \".ts\" --out-dir packages/playwright-core/lib/utils/ packages/playwright-core/src/utils" ,
2020-03-08 02:09:38 +01:00
"doc" : "node utils/doclint/cli.js" ,
2021-11-11 22:27:50 +01:00
"lint" : "npm run eslint && npm run tsc && npm run doc && npm run check-deps && node utils/generate_channels.js && node utils/generate_types/ --check-clean && npm run lint-tests && npm run test-types && npm run lint-packages" ,
2022-02-08 19:35:00 +01:00
"lint-packages" : "node utils/workspace.js --ensure-consistent" ,
2021-11-11 22:27:50 +01:00
"lint-tests" : "node utils/lint_tests.js" ,
"flint" : "concurrently \"npm run eslint\" \"npm run tsc\" \"npm run doc\" \"npm run check-deps\" \"node utils/generate_channels.js\" \"node utils/generate_types/ --check-clean\" \"npm run lint-tests\" \"npm run test-types\" \"npm run lint-packages\"" ,
2022-04-18 20:31:58 +02:00
"clean" : "node utils/build/clean.js" ,
2021-01-06 21:41:17 +01:00
"build" : "node utils/build/build.js" ,
2021-06-24 03:01:48 +02:00
"watch" : "node utils/build/build.js --watch --lint" ,
2021-04-05 22:23:49 +02:00
"test-types" : "node utils/generate_types/ && npx -p typescript@3.7.5 tsc -p utils/generate_types/test/tsconfig.json && tsc -p ./tests/" ,
2021-04-23 18:23:01 +02:00
"roll" : "node utils/roll_browser.js" ,
2020-12-12 08:35:25 +01:00
"check-deps" : "node utils/check_deps.js" ,
2022-07-15 19:36:36 +02:00
"build-android-driver" : "./utils/build_android_driver.sh" ,
2022-07-31 23:31:17 +02:00
"innerloop" : "playwright run-server --reuse-browser"
2019-11-19 03:18:28 +01:00
} ,
2021-10-11 16:52:17 +02:00
"workspaces" : [
"packages/*"
] ,
2019-11-19 03:18:28 +01:00
"devDependencies" : {
2022-02-01 17:12:11 +01:00
"@babel/cli" : "^7.16.8" ,
2022-04-18 20:31:58 +02:00
"@babel/plugin-proposal-class-properties" : "^7.16.7" ,
"@babel/plugin-proposal-export-namespace-from" : "^7.16.7" ,
"@babel/plugin-proposal-logical-assignment-operators" : "^7.16.7" ,
"@babel/plugin-proposal-nullish-coalescing-operator" : "^7.16.7" ,
"@babel/plugin-proposal-optional-chaining" : "^7.16.7" ,
"@babel/plugin-transform-modules-commonjs" : "^7.17.9" ,
2022-02-01 17:12:11 +01:00
"@babel/plugin-transform-typescript" : "^7.16.8" ,
"@babel/preset-react" : "^7.16.7" ,
2022-11-01 23:04:30 +01:00
"@types/codemirror" : "^5.60.5" ,
2022-02-01 17:12:11 +01:00
"@types/formidable" : "^2.0.4" ,
2022-08-21 13:52:02 +02:00
"@types/node" : "=14.18.24" ,
2022-06-07 06:05:47 +02:00
"@types/react" : "^18.0.12" ,
2022-06-07 02:14:01 +02:00
"@types/react-dom" : "^18.0.5" ,
2022-05-23 21:59:33 +02:00
"@types/resize-observer-browser" : "^0.1.7" ,
2022-09-29 02:01:13 +02:00
"@types/ws" : "^8.5.3" ,
2022-02-01 17:12:11 +01:00
"@types/xml2js" : "^0.4.9" ,
"@typescript-eslint/eslint-plugin" : "^5.10.2" ,
"@typescript-eslint/parser" : "^5.10.2" ,
2022-06-07 02:14:01 +02:00
"@vitejs/plugin-react" : "^1.3.2" ,
2022-02-01 17:12:11 +01:00
"@zip.js/zip.js" : "^2.4.2" ,
"ansi-to-html" : "^0.7.2" ,
"chokidar" : "^3.5.3" ,
2022-11-01 23:04:30 +01:00
"codemirror" : "^5.65.9" ,
2022-04-19 02:50:25 +02:00
"colors" : "^1.4.0" ,
2022-02-01 17:12:11 +01:00
"commonmark" : "^0.30.0" ,
2021-09-03 20:30:34 +02:00
"concurrently" : "^6.2.1" ,
2022-02-01 17:12:11 +01:00
"cross-env" : "^7.0.3" ,
2022-03-12 00:12:25 +01:00
"dotenv" : "^16.0.0" ,
2022-09-01 03:30:26 +02:00
"electron" : "19.0.11" ,
2022-08-10 10:41:55 +02:00
"electron-to-chromium" : "^1.4.212" ,
2021-10-22 10:13:05 +02:00
"enquirer" : "^2.3.6" ,
2022-09-05 16:33:05 +02:00
"esbuild" : "^0.15.6" ,
2022-02-01 17:12:11 +01:00
"eslint" : "^8.8.0" ,
2020-07-07 20:12:45 +02:00
"eslint-plugin-notice" : "^0.9.10" ,
2021-11-19 18:48:33 +01:00
"eslint-plugin-react-hooks" : "^4.3.0" ,
2022-02-01 17:12:11 +01:00
"formidable" : "^2.0.1" ,
2022-04-18 20:31:58 +02:00
"license-checker" : "^25.0.1" ,
2022-02-01 21:27:34 +01:00
"mime" : "^3.0.0" ,
2019-11-19 03:18:28 +01:00
"ncp" : "^2.0.0" ,
2022-02-01 17:12:11 +01:00
"node-stream-zip" : "^1.15.0" ,
2021-08-19 16:36:03 +02:00
"proxy" : "^1.0.2" ,
2022-06-07 02:14:01 +02:00
"react" : "^18.1.0" ,
"react-dom" : "^18.1.0" ,
2022-04-18 22:47:23 +02:00
"rimraf" : "^3.0.2" ,
2020-06-05 22:50:15 +02:00
"socksv5" : "0.0.6" ,
2022-06-07 06:05:47 +02:00
"typescript" : "^4.7.3" ,
2022-10-31 16:58:11 +01:00
"vite" : "^3.2.1" ,
2022-04-19 05:20:49 +02:00
"ws" : "^8.5.0" ,
2021-06-07 02:09:53 +02:00
"xml2js" : "^0.4.23" ,
2022-02-01 17:12:11 +01:00
"yaml" : "^1.10.2"
2019-11-19 03:18:28 +01:00
}
2021-10-08 00:49:30 +02:00
}