2019-11-19 05:18:28 +03:00
{
2020-05-21 23:18:15 +03:00
"name" : "playwright-internal" ,
"private" : true ,
2022-05-21 05:26:06 +03:00
"version" : "1.22.2" ,
2020-01-07 22:51:22 +03:00
"description" : "A high-level API to automate web browsers" ,
2019-11-19 05:18:28 +03:00
"repository" : "github:Microsoft/playwright" ,
2020-05-07 22:31:59 +03:00
"homepage" : "https://playwright.dev" ,
2019-11-19 05:18:28 +03:00
"engines" : {
2022-04-26 18:52:32 +03:00
"node" : ">=14"
2019-11-19 05:18:28 +03:00
} ,
2021-10-11 17:52:17 +03:00
"author" : {
"name" : "Microsoft Corporation"
} ,
"license" : "Apache-2.0" ,
2019-11-19 05:18:28 +03:00
"scripts" : {
2022-03-26 09:09:02 +03: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-04-25 19:30:14 +03:00
"itest" : "playwright test --config=tests/installation/playwright.config.ts" ,
2022-03-29 23:27:37 +03:00
"test-html-reporter" : "playwright test --config=packages/html-reporter" ,
"test-web" : "playwright test --config=packages/web" ,
2022-03-26 09:09:02 +03:00
"ttest" : "node ./tests/playwright-test/stable-test-runner/node_modules/@playwright/test/cli test --config=tests/playwright-test/playwright.config.ts" ,
"vtest" : "cross-env PLAYWRIGHT_DOCKER=1 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 20:48:33 +03:00
"eslint" : "eslint --ext ts,tsx ." ,
2019-11-19 05:18:28 +03:00
"tsc" : "tsc -p ." ,
2021-10-11 17:52:17 +03:00
"build-installer" : "babel -s --extensions \".ts\" --out-dir packages/playwright-core/lib/utils/ packages/playwright-core/src/utils" ,
2020-03-08 04:09:38 +03:00
"doc" : "node utils/doclint/cli.js" ,
2021-11-12 00:27:50 +03: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 21:35:00 +03:00
"lint-packages" : "node utils/workspace.js --ensure-consistent" ,
2021-11-12 00:27:50 +03: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 21:31:58 +03:00
"clean" : "node utils/build/clean.js" ,
2021-01-06 23:41:17 +03:00
"build" : "node utils/build/build.js" ,
2021-06-24 04:01:48 +03:00
"watch" : "node utils/build/build.js --watch --lint" ,
2021-04-05 23:23:49 +03: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 19:23:01 +03:00
"roll" : "node utils/roll_browser.js" ,
2020-12-12 10:35:25 +03:00
"check-deps" : "node utils/check_deps.js" ,
2021-05-13 05:55:49 +03:00
"build-android-driver" : "./utils/build_android_driver.sh"
2019-11-19 05:18:28 +03:00
} ,
2021-10-11 17:52:17 +03:00
"workspaces" : [
"packages/*"
] ,
2019-11-19 05:18:28 +03:00
"devDependencies" : {
2022-02-01 19:12:11 +03:00
"@babel/cli" : "^7.16.8" ,
2022-04-18 21:31:58 +03: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 19:12:11 +03:00
"@babel/plugin-transform-typescript" : "^7.16.8" ,
"@babel/preset-react" : "^7.16.7" ,
"@types/formidable" : "^2.0.4" ,
"@types/node" : "=14.17.15" ,
"@types/react" : "^17.0.38" ,
"@types/react-dom" : "^17.0.11" ,
"@types/resize-observer-browser" : "^0.1.6" ,
"@types/xml2js" : "^0.4.9" ,
"@typescript-eslint/eslint-plugin" : "^5.10.2" ,
"@typescript-eslint/parser" : "^5.10.2" ,
2022-03-26 00:12:00 +03:00
"@vitejs/plugin-react" : "^1.0.7" ,
2022-02-01 19:12:11 +03:00
"@zip.js/zip.js" : "^2.4.2" ,
"ansi-to-html" : "^0.7.2" ,
"chokidar" : "^3.5.3" ,
2022-04-19 03:50:25 +03:00
"colors" : "^1.4.0" ,
2022-02-01 19:12:11 +03:00
"commonmark" : "^0.30.0" ,
2021-09-03 21:30:34 +03:00
"concurrently" : "^6.2.1" ,
2022-02-01 19:12:11 +03:00
"cross-env" : "^7.0.3" ,
2022-03-12 02:12:25 +03:00
"dotenv" : "^16.0.0" ,
2021-10-02 05:40:47 +03:00
"electron" : "^12.2.1" ,
2021-10-22 11:13:05 +03:00
"enquirer" : "^2.3.6" ,
2022-02-01 19:12:11 +03:00
"eslint" : "^8.8.0" ,
2020-07-07 21:12:45 +03:00
"eslint-plugin-notice" : "^0.9.10" ,
2021-11-19 20:48:33 +03:00
"eslint-plugin-react-hooks" : "^4.3.0" ,
2022-02-01 19:12:11 +03:00
"formidable" : "^2.0.1" ,
2022-04-18 21:31:58 +03:00
"license-checker" : "^25.0.1" ,
2022-02-01 23:27:34 +03:00
"mime" : "^3.0.0" ,
2019-11-19 05:18:28 +03:00
"ncp" : "^2.0.0" ,
2022-02-01 19:12:11 +03:00
"node-stream-zip" : "^1.15.0" ,
2021-08-19 17:36:03 +03:00
"proxy" : "^1.0.2" ,
2022-02-01 19:12:11 +03:00
"react" : "^17.0.2" ,
"react-dom" : "^17.0.2" ,
2022-04-18 23:47:23 +03:00
"rimraf" : "^3.0.2" ,
2020-06-05 23:50:15 +03:00
"socksv5" : "0.0.6" ,
2022-02-01 19:12:11 +03:00
"typescript" : "^4.5.5" ,
2022-03-26 00:12:00 +03:00
"vite" : "^2.8.0" ,
2022-04-19 06:20:49 +03:00
"ws" : "^8.5.0" ,
2021-06-07 03:09:53 +03:00
"xml2js" : "^0.4.23" ,
2022-02-01 19:12:11 +03:00
"yaml" : "^1.10.2"
2019-11-19 05:18:28 +03:00
}
2021-10-08 01:49:30 +03:00
}