playwright/packages/playwright-test/package.json

70 lines
2.2 KiB
JSON
Raw Normal View History

2021-10-11 17:52:17 +03:00
{
"name": "@playwright/test",
"version": "1.19.0-next",
2021-10-11 17:52:17 +03:00
"description": "A high-level API to automate web browsers",
"repository": "github:Microsoft/playwright",
"homepage": "https://playwright.dev",
"engines": {
"node": ">=12"
},
"main": "index.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./cli": "./cli.js",
"./package.json": "./package.json",
"./lib/cli": "./lib/cli.js",
"./lib/experimentalLoader": "./lib/experimentalLoader.js",
"./reporter": "./reporter.js"
2021-10-11 17:52:17 +03:00
},
"bin": {
"playwright": "./cli.js"
},
2021-10-11 17:52:17 +03:00
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/code-frame": "^7.14.5",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-dynamic-import": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-private-methods": "^7.14.5",
"@babel/plugin-proposal-private-property-in-object": "^7.14.5",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
2021-12-15 06:25:07 +03:00
"@babel/plugin-transform-react-jsx": "^7.14.5",
2021-10-11 17:52:17 +03:00
"@babel/preset-typescript": "^7.14.5",
"babel-plugin-module-resolver": "^4.1.0",
2022-01-10 03:18:21 +03:00
"colors": "1.4.0",
2021-10-11 17:52:17 +03:00
"commander": "^8.2.0",
"debug": "^4.1.1",
2021-10-22 18:07:33 +03:00
"expect": "=27.2.5",
"jest-matcher-utils": "=27.2.5",
"jpeg-js": "^0.4.2",
"json5": "^2.2.0",
"mime": "^2.4.6",
2021-10-11 17:52:17 +03:00
"minimatch": "^3.0.3",
"ms": "^2.1.2",
"open": "^8.3.0",
"pirates": "^4.0.1",
"pixelmatch": "^5.2.1",
"playwright-core": "=1.19.0-next",
"pngjs": "^5.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.4.18",
"stack-utils": "^2.0.3",
"yazl": "^2.5.1"
2021-10-11 17:52:17 +03:00
}
}