mirror of
https://github.com/microsoft/playwright-cli.git
synced 2026-09-14 19:59:39 +08:00
32 lines
838 B
JSON
32 lines
838 B
JSON
{
|
|
"name": "playwright-cli",
|
|
"version": "0.1.0",
|
|
"description": "Playwright CLI",
|
|
"repository": "github:Microsoft/playwright-cli",
|
|
"homepage": "https://playwright.dev",
|
|
"scripts": {
|
|
"test": "test-runner test/",
|
|
"build": "node utils/runWebpack.js --mode='development' && tsc -p .",
|
|
"watch": "node utils/runWebpack.js --mode='development' --watch --silent | tsc -w -p ."
|
|
},
|
|
"bin": {
|
|
"playwright-cli": "./index.js"
|
|
},
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"commander": "^6.1.0",
|
|
"highlight.js": "^10.1.2",
|
|
"playwright": "1.3.0-next.1598921133538"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test-runner": "^0.2.2",
|
|
"ts-loader": "^8.0.3",
|
|
"typescript": "^4.0.2",
|
|
"webpack": "^4.44.1",
|
|
"webpack-cli": "^3.3.12"
|
|
}
|
|
}
|