2019-11-19 05:18:28 +03:00
|
|
|
{
|
2020-05-21 23:18:15 +03:00
|
|
|
"name": "playwright-internal",
|
|
|
|
"private": true,
|
2020-07-07 01:12:03 +03:00
|
|
|
"version": "1.2.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",
|
2020-05-07 22:31:59 +03:00
|
|
|
"homepage": "https://playwright.dev",
|
2019-11-19 05:18:28 +03:00
|
|
|
"engines": {
|
2020-01-29 22:58:29 +03:00
|
|
|
"node": ">=10.15.0"
|
2019-11-19 05:18:28 +03:00
|
|
|
},
|
2020-06-15 03:24:45 +03:00
|
|
|
"bin": {
|
|
|
|
"playwright": "lib/cli/index.js"
|
|
|
|
},
|
2019-11-19 05:18:28 +03:00
|
|
|
"scripts": {
|
2020-04-15 08:40:33 +03:00
|
|
|
"ctest": "cross-env BROWSER=chromium node --unhandled-rejections=strict test/test.js",
|
|
|
|
"ftest": "cross-env BROWSER=firefox node --unhandled-rejections=strict test/test.js",
|
|
|
|
"wtest": "cross-env BROWSER=webkit node --unhandled-rejections=strict test/test.js",
|
|
|
|
"test": "cross-env BROWSER=all node --unhandled-rejections=strict test/test.js",
|
|
|
|
"cunit": "cross-env BROWSER=chromium node --unhandled-rejections=strict test/test.js",
|
|
|
|
"funit": "cross-env BROWSER=firefox node --unhandled-rejections=strict test/test.js",
|
|
|
|
"wunit": "cross-env BROWSER=webkit node --unhandled-rejections=strict test/test.js",
|
|
|
|
"unit": "cross-env BROWSER=all node --unhandled-rejections=strict test/test.js",
|
|
|
|
"ccoverage": "cross-env COVERAGE=true BROWSER=chromium node --unhandled-rejections=strict test/test.js",
|
|
|
|
"fcoverage": "cross-env COVERAGE=true BROWSER=firefox node --unhandled-rejections=strict test/test.js",
|
|
|
|
"wcoverage": "cross-env COVERAGE=true BROWSER=webkit node --unhandled-rejections=strict test/test.js",
|
|
|
|
"coverage": "cross-env COVERAGE=true BROWSER=all node --unhandled-rejections=strict test/test.js",
|
2020-03-08 04:09:38 +03:00
|
|
|
"eslint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe --ext js,ts ./src || eslint --ext js,ts ./src",
|
2019-11-19 05:18:28 +03:00
|
|
|
"tsc": "tsc -p .",
|
2020-07-02 01:22:29 +03:00
|
|
|
"tsc-installer": "tsc -p ./src/install/tsconfig.json",
|
2020-03-08 04:09:38 +03:00
|
|
|
"doc": "node utils/doclint/cli.js",
|
|
|
|
"test-infra": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js && node utils/testrunner/test/test.js",
|
2020-03-20 20:40:02 +03:00
|
|
|
"lint": "npm run eslint && npm run tsc && npm run doc && npm run test-types && npm run test-infra",
|
2020-03-08 04:09:38 +03:00
|
|
|
"debug-test": "node --inspect-brk test/test.js",
|
2020-03-20 11:30:35 +03:00
|
|
|
"clean": "rimraf lib && rimraf types",
|
2020-03-08 04:09:38 +03:00
|
|
|
"prepare": "node install-from-github.js",
|
2020-07-02 01:22:29 +03:00
|
|
|
"build": "node utils/runWebpack.js --mode='development' && tsc -p . && npm run generate-types",
|
2019-11-23 04:27:09 +03:00
|
|
|
"watch": "node utils/runWebpack.js --mode='development' --watch --silent | tsc -w -p .",
|
2020-07-08 10:20:36 +03:00
|
|
|
"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/",
|
|
|
|
"typecheck-tests": "tsc -p ./test/"
|
2019-11-19 05:18:28 +03:00
|
|
|
},
|
2019-12-05 22:29:16 +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": {
|
2020-06-15 03:24:45 +03:00
|
|
|
"commander": "^5.1.0",
|
2020-04-21 06:00:55 +03:00
|
|
|
"debug": "^4.1.1",
|
2020-04-08 00:56:30 +03:00
|
|
|
"extract-zip": "^2.0.0",
|
2020-07-01 03:03:01 +03:00
|
|
|
"https-proxy-agent": "^5.0.0",
|
2020-04-17 18:44:33 +03:00
|
|
|
"jpeg-js": "^0.3.7",
|
2020-04-02 00:42:47 +03:00
|
|
|
"mime": "^2.4.4",
|
2020-04-17 18:44:33 +03:00
|
|
|
"pngjs": "^5.0.0",
|
2019-12-14 23:16:28 +03:00
|
|
|
"progress": "^2.0.3",
|
2020-03-04 22:02:50 +03:00
|
|
|
"proxy-from-env": "^1.1.0",
|
2020-02-10 22:27:27 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2019-11-19 05:18:28 +03:00
|
|
|
"ws": "^6.1.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-08 10:20:36 +03:00
|
|
|
"@babel/core": "^7.10.3",
|
|
|
|
"@babel/preset-env": "^7.10.3",
|
|
|
|
"@babel/preset-typescript": "^7.10.1",
|
2019-11-19 05:18:28 +03:00
|
|
|
"@types/debug": "0.0.31",
|
|
|
|
"@types/extract-zip": "^1.6.2",
|
2020-04-02 00:42:47 +03:00
|
|
|
"@types/mime": "^2.0.1",
|
2020-04-07 17:40:57 +03:00
|
|
|
"@types/node": "^10.17.17",
|
2019-12-07 04:14:08 +03:00
|
|
|
"@types/pngjs": "^3.4.0",
|
2020-04-25 05:14:10 +03:00
|
|
|
"@types/progress": "^2.0.3",
|
2020-01-14 00:33:25 +03:00
|
|
|
"@types/proxy-from-env": "^1.0.0",
|
2019-11-19 05:18:28 +03:00
|
|
|
"@types/rimraf": "^2.0.2",
|
|
|
|
"@types/ws": "^6.0.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^2.6.1",
|
|
|
|
"@typescript-eslint/parser": "^2.6.1",
|
2020-02-21 09:55:39 +03:00
|
|
|
"colors": "^1.4.0",
|
2019-11-19 05:18:28 +03:00
|
|
|
"commonmark": "^0.28.1",
|
|
|
|
"cross-env": "^5.0.5",
|
2020-05-12 04:00:33 +03:00
|
|
|
"electron": "^9.0.0-beta.24",
|
2019-11-19 05:18:28 +03:00
|
|
|
"eslint": "^6.6.0",
|
2020-07-07 21:12:45 +03:00
|
|
|
"eslint-plugin-notice": "^0.9.10",
|
2019-11-19 05:18:28 +03:00
|
|
|
"esprima": "^4.0.0",
|
2020-02-10 21:08:51 +03:00
|
|
|
"formidable": "^1.2.1",
|
2019-11-19 05:18:28 +03:00
|
|
|
"ncp": "^2.0.0",
|
2019-12-04 21:33:29 +03:00
|
|
|
"node-stream-zip": "^1.8.2",
|
2020-07-08 10:20:36 +03:00
|
|
|
"pirates": "^4.0.1",
|
2019-11-19 05:18:28 +03:00
|
|
|
"pixelmatch": "^4.0.2",
|
2020-06-05 23:50:15 +03:00
|
|
|
"socksv5": "0.0.6",
|
2019-11-19 05:18:28 +03:00
|
|
|
"text-diff": "^1.0.1",
|
2019-11-22 01:43:30 +03:00
|
|
|
"ts-loader": "^6.1.2",
|
2020-04-02 21:05:53 +03:00
|
|
|
"typescript": "^3.8.3",
|
2019-11-22 01:43:30 +03:00
|
|
|
"webpack": "^4.41.0",
|
|
|
|
"webpack-cli": "^3.3.9"
|
2019-11-19 05:18:28 +03:00
|
|
|
}
|
|
|
|
}
|