playwright/packages/playwright-test/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2021-10-11 17:52:17 +03:00
{
"name": "@playwright/test",
2023-08-09 11:46:29 +03:00
"version": "1.38.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": ">=16"
2021-10-11 17:52:17 +03:00
},
"main": "index.js",
"exports": {
".": {
"types": "./index.d.ts",
2021-10-11 17:52:17 +03:00
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
2021-10-11 17:52:17 +03:00
},
"./cli": "./cli.js",
"./package.json": "./package.json",
"./lib/cli": "./lib/cli.js",
"./lib/transform/babelBundle": "./lib/transform/babelBundle.js",
"./lib/transform/compilationCache": "./lib/transform/compilationCache.js",
"./lib/transform/esmLoader": "./lib/transform/esmLoader.js",
"./lib/internalsForTest": "./lib/internalsForTest.js",
"./lib/plugins": "./lib/plugins/index.js",
"./jsx-runtime": {
"import": "./jsx-runtime.mjs",
"require": "./jsx-runtime.js",
"default": "./jsx-runtime.js"
},
"./lib/util": "./lib/util.js",
"./lib/utilsBundle": "./lib/utilsBundle.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": {
"@types/node": "*",
2023-08-09 11:46:29 +03:00
"playwright-core": "1.38.0-next"
},
"optionalDependencies": {
"fsevents": "2.3.2"
}
2021-10-11 17:52:17 +03:00
}