playwright/package.json

87 lines
3.1 KiB
JSON
Raw Normal View History

2019-11-19 05:18:28 +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",
"homepage": "https://playwright.dev",
2019-11-19 05:18:28 +03:00
"engines": {
"node": ">=10.15.0"
2019-11-19 05:18:28 +03:00
},
"scripts": {
"ctest": "cross-env BROWSER=chromium npm run jest",
"ftest": "cross-env BROWSER=firefox npm run jest",
"wtest": "cross-env BROWSER=webkit npm run jest",
"test": "npm run ctest && npm run ftest && npm run wtest",
"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 .",
"tsc-installer": "tsc -p ./src/install/tsconfig.json",
"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",
"lint": "npm run eslint && npm run tsc && npm run doc && npm run test-types && npm run test-infra",
"debug-test": "node --inspect-brk test/test.js",
"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/runWebpack.js --mode='development' --watch --silent | tsc -w -p .",
"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/",
"roll-browser": "node utils/roll_browser.js",
"jest": "jest"
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",
"extract-zip": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"jpeg-js": "^0.3.7",
2020-04-02 00:42:47 +03:00
"mime": "^2.4.4",
"pngjs": "^5.0.0",
"progress": "^2.0.3",
"proxy-from-env": "^1.1.0",
"rimraf": "^3.0.2",
2019-11-19 05:18:28 +03:00
"ws": "^6.1.0"
},
"devDependencies": {
"@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",
"@types/node": "^10.17.17",
2019-12-07 04:14:08 +03:00
"@types/pngjs": "^3.4.0",
"@types/progress": "^2.0.3",
"@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",
"colors": "^1.4.0",
2019-11-19 05:18:28 +03:00
"commonmark": "^0.28.1",
"cross-env": "^5.0.5",
"electron": "^9.0.0-beta.24",
2019-11-19 05:18:28 +03:00
"eslint": "^6.6.0",
"eslint-plugin-notice": "^0.9.10",
2019-11-19 05:18:28 +03:00
"esprima": "^4.0.0",
"formidable": "^1.2.1",
"jest": "^26.1.0",
"jest-circus": "^26.1.0",
"jest-image-snapshot": "^4.0.2",
2019-11-19 05:18:28 +03:00
"ncp": "^2.0.0",
"node-stream-zip": "^1.8.2",
"pirates": "^4.0.1",
2019-11-19 05:18:28 +03:00
"pixelmatch": "^4.0.2",
"socksv5": "0.0.6",
2019-11-19 05:18:28 +03:00
"text-diff": "^1.0.1",
"ts-loader": "^6.1.2",
"typescript": "^3.8.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
2019-11-19 05:18:28 +03:00
}
}