playwright/packages/playwright-test/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2021-10-11 16:52:17 +02:00
{
"name": "@playwright/test",
2022-04-08 03:16:22 +02:00
"version": "1.22.0-next",
2021-10-11 16:52:17 +02: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",
2022-03-11 17:00:46 +01:00
"./lib/mount": "./lib/mount.js",
"./lib/ci": "./lib/ci.js",
"./reporter": "./reporter.js"
2021-10-11 16:52:17 +02:00
},
"bin": {
"playwright": "./cli.js"
},
2021-10-11 16:52:17 +02:00
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"dependencies": {
2022-01-10 01:18:21 +01:00
"colors": "1.4.0",
"commander": "8.3.0",
"debug": "4.3.3",
"json5": "2.2.1",
"mime": "3.0.0",
"minimatch": "3.0.4",
"ms": "2.1.3",
"open": "8.4.0",
"pirates": "4.0.4",
2022-04-08 03:16:22 +02:00
"playwright-core": "1.22.0-next",
"rimraf": "3.0.2",
"source-map-support": "0.4.18",
"stack-utils": "2.0.5",
"yazl": "2.5.1"
2021-10-11 16:52:17 +02:00
}
}