playwright/package.json

133 lines
5.1 KiB
JSON
Raw Normal View History

2019-11-19 05:18:28 +03:00
{
"name": "playwright-internal",
"private": true,
2021-07-20 00:57:11 +03:00
"version": "1.14.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
},
"scripts": {
"basetest": "node ./tests/config/test-runner/node_modules/@playwright/test/lib/cli/cli.js test",
"ctest": "npm run basetest -- --config=tests/config/default.config.ts --project=chromium",
"ftest": "npm run basetest -- --config=tests/config/default.config.ts --project=firefox",
"wtest": "npm run basetest -- --config=tests/config/default.config.ts --project=webkit",
"atest": "npm run basetest -- --config=tests/config/android.config.ts",
"etest": "npm run basetest -- --config=tests/config/electron.config.ts",
"ttest": "npm run basetest -- --config=tests/playwright-test/playwright-test.config.ts",
"test": "npm run basetest -- --config=tests/config/default.config.ts",
2021-06-02 18:41:48 +03:00
"eslint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe --ext ts . || eslint --ext ts .",
2019-11-19 05:18:28 +03:00
"tsc": "tsc -p .",
"build-installer": "babel -s --extensions \".ts\" --out-dir lib/utils/ src/utils",
"doc": "node utils/doclint/cli.js",
"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 test-types",
"clean": "rimraf lib && rimraf src/generated/",
"prepare": "node install-from-github.js",
"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
},
"author": {
"name": "Microsoft Corporation"
},
2020-01-07 05:22:35 +03:00
"license": "Apache-2.0",
"bin": {
"playwright": "./lib/cli/cli.js"
},
"DEPS-NOTE": "Any non-test dependency must be added to the build_package.js script as well",
2019-11-19 05:18:28 +03:00
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-dynamic-import": "^7.13.8",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-proposal-private-property-in-object": "^7.14.0",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"colors": "^1.4.0",
"commander": "^6.1.0",
"debug": "^4.1.1",
2021-06-08 21:22:56 +03:00
"expect": "^26.4.2",
2020-08-28 23:43:57 +03:00
"extract-zip": "^2.0.1",
"https-proxy-agent": "^5.0.0",
2020-08-28 23:43:57 +03:00
"jpeg-js": "^0.4.2",
"mime": "^2.4.6",
2021-06-08 21:22:56 +03:00
"minimatch": "^3.0.3",
"ms": "^2.1.2",
"pirates": "^4.0.1",
"pixelmatch": "^5.2.1",
"pngjs": "^5.0.0",
"progress": "^2.0.3",
"proper-lockfile": "^4.1.1",
"proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
2021-06-08 21:22:56 +03:00
"source-map-support": "^0.4.18",
"stack-utils": "^2.0.3",
"ws": "^7.4.6",
"yazl": "^2.5.1"
2019-11-19 05:18:28 +03:00
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/preset-react": "^7.14.5",
"@types/babel__code-frame": "^7.0.2",
"@types/babel__core": "^7.1.14",
2020-08-28 23:43:57 +03:00
"@types/debug": "^4.1.5",
2019-11-19 05:18:28 +03:00
"@types/extract-zip": "^1.6.2",
2020-08-28 23:43:57 +03:00
"@types/mime": "^2.0.3",
"@types/minimatch": "^3.0.3",
2020-08-28 23:43:57 +03:00
"@types/node": "^10.17.28",
"@types/pixelmatch": "^5.2.1",
2020-08-28 23:43:57 +03:00
"@types/pngjs": "^3.4.2",
"@types/progress": "^2.0.3",
"@types/proper-lockfile": "^4.1.1",
2020-08-28 23:43:57 +03:00
"@types/proxy-from-env": "^1.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/resize-observer-browser": "^0.1.4",
2020-08-28 23:43:57 +03:00
"@types/rimraf": "^3.0.0",
"@types/source-map-support": "^0.4.2",
"@types/webpack": "^4.41.25",
2020-08-28 23:43:57 +03:00
"@types/ws": "7.2.6",
"@types/xml2js": "^0.4.5",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-loader": "^8.2.2",
2021-01-08 00:26:34 +03:00
"chokidar": "^3.5.0",
2020-08-28 23:43:57 +03:00
"commonmark": "^0.29.1",
"cross-env": "^7.0.2",
"css-loader": "^5.2.6",
"electron": "^11.1.1",
"eslint": "^7.7.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.1.0",
2020-08-28 23:43:57 +03:00
"formidable": "^1.2.2",
"html-webpack-plugin": "^4.4.1",
2019-11-19 05:18:28 +03:00
"ncp": "^2.0.0",
2020-08-28 23:43:57 +03:00
"node-stream-zip": "^1.11.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"socksv5": "0.0.6",
"style-loader": "^1.2.1",
"typescript": "=4.2.4",
2020-09-29 21:51:00 +03:00
"webpack": "^4.44.2",
2020-08-28 23:43:57 +03:00
"webpack-cli": "^3.3.12",
"xml2js": "^0.4.23",
"yaml": "^1.10.0"
2019-11-19 05:18:28 +03:00
}
}