mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-10 12:57:42 +03:00
89 lines
2.9 KiB
JSON
89 lines
2.9 KiB
JSON
{
|
|
"name": "playwright-core",
|
|
"version": "0.11.0-post",
|
|
"description": "A high-level API to automate web browsers",
|
|
"repository": "github:Microsoft/playwright",
|
|
"engines": {
|
|
"node": ">=10.15.0"
|
|
},
|
|
"main": "index.js",
|
|
"playwright": {
|
|
"chromium_revision": "740847",
|
|
"firefox_revision": "1029",
|
|
"webkit_revision": "1151"
|
|
},
|
|
"scripts": {
|
|
"ctest": "cross-env BROWSER=chromium node test/test.js",
|
|
"ftest": "cross-env BROWSER=firefox node test/test.js",
|
|
"wtest": "cross-env BROWSER=webkit node test/test.js",
|
|
"unit": "npm run ctest",
|
|
"funit": "npm run ftest",
|
|
"wunit": "npm run wtest",
|
|
"debug-test": "node --inspect-brk test/test.js",
|
|
"test-doclint": "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js",
|
|
"test": "npm run lint --silent && npm run coverage && npm run test-doclint && node utils/testrunner/test/test.js",
|
|
"prepare": "node prepare.js",
|
|
"lint": "([ \"$CI\" = true ] && eslint --quiet -f codeframe --ext js,ts ./src || eslint --ext js,ts ./src) && npm run tsc && npm run doc",
|
|
"doc": "node utils/doclint/cli.js",
|
|
"ccoverage": "cross-env COVERAGE=true npm run ctest",
|
|
"fcoverage": "cross-env COVERAGE=true BROWSER=firefox node test/test.js",
|
|
"wcoverage": "cross-env COVERAGE=true BROWSER=webkit node test/test.js",
|
|
"tsc": "tsc -p .",
|
|
"clean": "rimraf lib",
|
|
"build": "node utils/runWebpack.js --mode='development' && tsc -p .",
|
|
"watch": "node utils/runWebpack.js --mode='development' --watch --silent | tsc -w -p .",
|
|
"apply-next-version": "node utils/apply_next_version.js",
|
|
"version": "node utils/sync_package_versions.js && npm run doc"
|
|
},
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"debug": "^4.1.0",
|
|
"extract-zip": "^1.6.6",
|
|
"https-proxy-agent": "^3.0.0",
|
|
"jpeg-js": "^0.3.6",
|
|
"pngjs": "^3.4.0",
|
|
"progress": "^2.0.3",
|
|
"proxy-from-env": "^1.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"uuid": "^3.4.0",
|
|
"ws": "^6.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/debug": "0.0.31",
|
|
"@types/extract-zip": "^1.6.2",
|
|
"@types/node": "^8.10.34",
|
|
"@types/pngjs": "^3.4.0",
|
|
"@types/proxy-from-env": "^1.0.0",
|
|
"@types/rimraf": "^2.0.2",
|
|
"@types/uuid": "^3.4.6",
|
|
"@types/ws": "^6.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^2.6.1",
|
|
"@typescript-eslint/parser": "^2.6.1",
|
|
"commonmark": "^0.28.1",
|
|
"cross-env": "^5.0.5",
|
|
"eslint": "^6.6.0",
|
|
"esprima": "^4.0.0",
|
|
"formidable": "^1.2.1",
|
|
"minimist": "^1.2.0",
|
|
"ncp": "^2.0.0",
|
|
"node-stream-zip": "^1.8.2",
|
|
"pixelmatch": "^4.0.2",
|
|
"text-diff": "^1.0.1",
|
|
"ts-loader": "^6.1.2",
|
|
"typescript": "^3.7.5",
|
|
"webpack": "^4.41.0",
|
|
"webpack-cli": "^3.3.9"
|
|
},
|
|
"browser": {
|
|
"./lib/BrowserFetcher.js": false,
|
|
"ws": "./utils/browser/WebSocket",
|
|
"fs": false,
|
|
"child_process": false,
|
|
"rimraf": false,
|
|
"readline": false
|
|
}
|
|
}
|