Files
playwrong/package.json
2025-07-17 05:32:02 +02:00

32 lines
843 B
JSON

{
"name": "test-language",
"version": "1.0.0",
"description": "Custom test language using Playwright",
"main": "src/index.js",
"scripts": {
"test": "node src/cli.js step1.test Chrome --headed --screenshot-none",
"install-browsers": "playwright install chromium",
"lint": "node src/linter-cli.js step1.test",
"lint:strict": "node src/linter-cli.js --strict step1.test",
"lint:verbose": "node src/linter-cli.js --verbose step1.test",
"lint:all": "node src/linter-cli.js step1.test"
},
"dependencies": {
"dotenv": "^17.2.0",
"fs-extra": "^11.1.1",
"js-beautify": "^1.14.11",
"path": "^0.12.7",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
},
"keywords": [
"playwright",
"testing",
"automation"
],
"author": "",
"license": "MIT"
}