mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
f856e3e4bc
As per ``` npm WARN publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors. npm WARN publish errors corrected: npm WARN publish Removed invalid "scripts" npm WARN publish "bin[playwright-core]" script name was cleaned npm WARN publish "repository.url" was normalized to "git+https://github.com/microsoft/playwright.git ``` works now as per https://www.npmjs.com/package/@playwright/test/v/1.39.0-alpha-1696547902000 when you scroll down. https://github.com/microsoft/playwright/issues/22555
33 lines
726 B
JSON
33 lines
726 B
JSON
{
|
|
"name": "@playwright/browser-firefox",
|
|
"version": "1.39.0-next",
|
|
"description": "Playwright package that automatically installs Firefox",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/microsoft/playwright.git"
|
|
},
|
|
"homepage": "https://playwright.dev",
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./index.mjs",
|
|
"require": "./index.js",
|
|
"default": "./index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"install": "node install.js"
|
|
},
|
|
"dependencies": {
|
|
"playwright-core": "1.39.0-next"
|
|
}
|
|
}
|