playwright/package.json

104 lines
3.8 KiB
JSON
Raw Normal View History

2019-11-19 05:18:28 +03:00
{
"name": "playwright-internal",
"private": true,
2021-03-23 23:35:03 +03:00
"version": "1.11.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": ">=10.17.0"
2019-11-19 05:18:28 +03:00
},
"scripts": {
"ctest": "npm run build-folio && node tests/folio/cli.js --config=tests/config/default.config.ts chromium",
"ftest": "npm run build-folio && node tests/folio/cli.js --config=tests/config/default.config.ts firefox",
"wtest": "npm run build-folio && node tests/folio/cli.js --config=tests/config/default.config.ts webkit",
"atest": "npm run build-folio && node tests/folio/cli.js --config=tests/config/android.config.ts",
"test": "npm run build-folio && node tests/folio/cli.js --config=tests/config/default.config.ts",
"eslint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe --ext js,ts . || eslint --ext js,ts .",
2019-11-19 05:18:28 +03:00
"tsc": "tsc -p .",
"tsc-installer": "tsc -p ./src/install/tsconfig.json",
"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 && folio utils/doclint/test/",
"clean": "rimraf lib",
"prepare": "node install-from-github.js",
"build": "node utils/build/build.js",
"watch": "node utils/build/build.js --watch",
"test-types": "node utils/generate_types/ && npx -p typescript@3.7.5 tsc -p utils/generate_types/test/tsconfig.json && tsc -p ./test/",
"roll-browser": "node utils/roll_browser.js",
"check-deps": "node utils/check_deps.js",
2021-01-21 19:29:01 +03:00
"build-android-driver": "./utils/build_android_driver.sh",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"build-folio": "tsc -p ./tests/folio"
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"
},
2019-11-19 05:18:28 +03:00
"dependencies": {
"commander": "^6.1.0",
"debug": "^4.1.1",
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",
"pngjs": "^5.0.0",
"progress": "^2.0.3",
"proper-lockfile": "^4.1.1",
"proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
"stack-utils": "^2.0.3",
2020-08-28 23:43:57 +03:00
"ws": "^7.3.1"
2019-11-19 05:18:28 +03:00
},
"devDependencies": {
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/node": "^10.17.28",
"@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/webpack": "^4.41.25",
2020-08-28 23:43:57 +03:00
"@types/ws": "7.2.6",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
2021-01-08 00:26:34 +03:00
"chokidar": "^3.5.0",
"colors": "^1.4.0",
2020-08-28 23:43:57 +03:00
"commonmark": "^0.29.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"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",
"folio": "=0.3.17",
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",
"@storybook/addon-actions": "^6.1.20",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/addon-links": "^6.1.20",
"@storybook/node-logger": "^6.1.20",
"@storybook/react": "^6.1.20",
"style-loader": "^1.2.1",
2020-08-28 23:43:57 +03:00
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
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",
"yaml": "^1.10.0"
2019-11-19 05:18:28 +03:00
}
}