mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
10e7654fd9
As per
https://github.com/microsoft/playwright/actions/runs/6425074868/job/17446981722#step:7:168.
e.g. here:
2e4b4ad8be/package.json (L28-L31)
docs:
https://docs.npmjs.com/cli/v10/configuring-npm/package-json#repository
https://github.com/microsoft/playwright/issues/22555
33 lines
722 B
JSON
33 lines
722 B
JSON
{
|
|
"name": "@playwright/browser-firefox",
|
|
"version": "1.39.0-next",
|
|
"description": "Playwright package that automatically installs Firefox",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "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"
|
|
}
|
|
}
|