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
} ,
"scripts" : {
2020-07-22 18:57:54 +03:00
"ctest" : "cross-env BROWSER=chromium jest" ,
"ftest" : "cross-env BROWSER=firefox jest" ,
"wtest" : "cross-env BROWSER=webkit jest" ,
2020-07-18 02:09:27 +03:00
"test" : "npm run ctest && npm run ftest && npm run wtest" ,
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" ,
2020-08-01 03:00:36 +03:00
"doc-channel" : "node utils/doclint/cli.js --channel" ,
2020-03-08 04:09:38 +03:00
"test-infra" : "node utils/doclint/check_public_api/test/test.js && node utils/doclint/preprocessor/test.js && node utils/testrunner/test/test.js" ,
2020-08-01 03:00:36 +03:00
"lint" : "npm run eslint && npm run tsc && npm run doc && npm run doc-channel && npm run check-deps && npm run generate-channels && 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/" ,
2020-07-31 01:08:21 +03:00
"generate-channels" : "node utils/generate_channels.js" ,
2020-07-08 21:13:18 +03:00
"typecheck-tests" : "tsc -p ./test/" ,
2020-07-09 03:10:33 +03:00
"roll-browser" : "node utils/roll_browser.js" ,
2020-07-22 19:08:10 +03:00
"jest" : "jest" ,
2020-07-27 23:02:28 +03:00
"coverage" : "node test/jest/checkCoverage.js" ,
"check-deps" : "node utils/check_deps.js"
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-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-07-27 20:39:59 +03:00
"jpeg-js" : "^0.4.0" ,
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" ,
2020-07-08 21:13:18 +03:00
"jest" : "^26.1.0" ,
2020-07-16 02:52:41 +03:00
"jest-circus" : "^26.1.0" ,
2020-07-16 21:18:38 +03:00
"jest-image-snapshot" : "^4.0.2" ,
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" ,
2020-07-23 05:38:19 +03:00
"webpack-cli" : "^3.3.9" ,
"yaml" : "^1.10.0"
2019-11-19 05:18:28 +03:00
}
}