playwright/package.json

82 lines
2.9 KiB
JSON
Raw Normal View History

2019-11-19 05:18:28 +03:00
{
"name": "playwright-internal",
"private": true,
2020-09-11 00:17:54 +03:00
"version": "1.4.0-post",
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": "cross-env BROWSER=chromium test-runner test/",
"ftest": "cross-env BROWSER=firefox test-runner test/",
"wtest": "cross-env BROWSER=webkit test-runner test/",
"test": "test-runner test/",
"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",
"test-infra": "test-runner utils/doclint/check_public_api/test/test.js && test-runner utils/doclint/preprocessor/test.js",
"lint": "npm run eslint && npm run tsc && npm run doc && npm run check-deps && npm run generate-channels && npm run test-types && npm run test-infra",
"clean": "rimraf lib && rimraf types",
"prepare": "node install-from-github.js",
"build": "node utils/runWebpack.js --mode='development' && tsc -p . && npm run generate-types",
"watch": "node utils/watch.js",
"test-types": "npm run generate-types && npx -p typescript@3.7.5 tsc -p utils/generate_types/test/tsconfig.json && npm run typecheck-tests",
"generate-types": "node utils/generate_types/",
"generate-channels": "node utils/generate_channels.js",
"typecheck-tests": "tsc -p ./test/",
"roll-browser": "node utils/roll_browser.js",
"coverage": "node test/checkCoverage.js",
2020-08-17 22:44:39 +03:00
"check-deps": "node utils/check_deps.js",
"show-trace": "node utils/showTestTraces.js"
2019-11-19 05:18:28 +03:00
},
"author": {
"name": "Microsoft Corporation"
},
2020-01-07 05:22:35 +03:00
"license": "Apache-2.0",
2019-11-19 05:18:28 +03:00
"dependencies": {
"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",
"proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
2020-08-28 23:43:57 +03:00
"ws": "^7.3.1"
2019-11-19 05:18:28 +03:00
},
"devDependencies": {
"@playwright/test-runner": "^0.3.9",
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",
2020-08-28 23:43:57 +03:00
"@types/proxy-from-env": "^1.0.1",
"@types/rimraf": "^3.0.0",
"@types/ws": "7.2.6",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"colors": "^1.4.0",
2020-08-28 23:43:57 +03:00
"commonmark": "^0.29.1",
"cross-env": "^7.0.2",
"electron": "^9.2.1",
"eslint": "^7.7.0",
"eslint-plugin-notice": "^0.9.10",
2020-08-28 23:43:57 +03:00
"formidable": "^1.2.2",
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",
2020-08-17 22:44:39 +03:00
"pkg": "^4.4.9",
"socksv5": "0.0.6",
2020-08-28 23:43:57 +03:00
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
2020-08-28 23:43:57 +03:00
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"yaml": "^1.10.0"
2019-11-19 05:18:28 +03:00
}
}