playwright/package.json

100 lines
4.4 KiB
JSON
Raw Normal View History

2019-11-19 05:18:28 +03:00
{
"name": "playwright-internal",
"private": true,
2022-03-09 01:01:20 +03:00
"version": "1.21.0-next",
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",
"homepage": "https://playwright.dev",
2019-11-19 05:18:28 +03:00
"engines": {
"node": ">=12"
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": {
"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-02-17 02:45:35 +03:00
"htest": "playwright test --config=packages/html-reporter",
"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",
"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",
"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",
"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\"",
2021-10-11 17:52:17 +03:00
"clean": "rimraf packages/playwright-core/lib && rimraf packages/playwright-test/lib && rimraf packages/playwright-core/src/generated/",
"build": "node utils/build/build.js",
"watch": "node utils/build/build.js --watch --lint",
"test-types": "node utils/generate_types/ && npx -p typescript@3.7.5 tsc -p utils/generate_types/test/tsconfig.json && tsc -p ./tests/",
"roll": "node utils/roll_browser.js",
"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",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@types/babel__code-frame": "^7.0.3",
2022-02-01 19:12:11 +03:00
"@types/babel__core": "^7.1.18",
2022-02-17 02:45:35 +03:00
"@types/babel__helper-plugin-utils": "^7.10.0",
2022-02-01 19:12:11 +03:00
"@types/debug": "^4.1.7",
"@types/formidable": "^2.0.4",
2020-08-28 23:43:57 +03:00
"@types/mime": "^2.0.3",
2022-02-01 19:12:11 +03:00
"@types/minimatch": "^3.0.5",
"@types/ms": "^0.7.31",
2022-02-01 19:12:11 +03:00
"@types/node": "=14.17.15",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@types/progress": "^2.0.5",
"@types/proper-lockfile": "^4.1.2",
2020-08-28 23:43:57 +03:00
"@types/proxy-from-env": "^1.0.1",
2022-02-01 19:12:11 +03:00
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/resize-observer-browser": "^0.1.6",
"@types/rimraf": "^3.0.2",
"@types/source-map-support": "^0.5.4",
"@types/ws": "8.2.2",
2022-02-01 19:12:11 +03:00
"@types/xml2js": "^0.4.9",
"@types/yazl": "^2.4.2",
2022-02-01 19:12:11 +03:00
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@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",
"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",
"dotenv": "^16.0.0",
2021-10-02 05:40:47 +03:00
"electron": "^12.2.1",
"enquirer": "^2.3.6",
2022-02-01 19:12:11 +03:00
"eslint": "^8.8.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-react-hooks": "^4.3.0",
2022-02-01 19:12:11 +03:00
"formidable": "^2.0.1",
"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",
"proxy": "^1.0.2",
2022-02-01 19:12:11 +03:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"socksv5": "0.0.6",
2022-02-01 19:12:11 +03:00
"typescript": "^4.5.5",
"vite": "^2.8.0",
"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
}