playwright/packages/playwright-ct-angular/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2023-10-24 22:29:29 +02:00
{
"name": "@playwright/experimental-ct-angular",
2024-03-27 22:05:09 +01:00
"version": "1.43.0-next",
2023-10-24 22:29:29 +02:00
"description": "Playwright Component Testing for Angular",
"repository": {
"type": "git",
2024-03-27 22:05:09 +01:00
"url": "git+https://github.com/microsoft/playwright.git"
2023-10-24 22:29:29 +02:00
},
"homepage": "https://playwright.dev",
"engines": {
"node": ">=16"
},
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./register": {
"types": "./register.d.ts",
"default": "./register.mjs"
},
"./hooks": {
"types": "./hooks.d.ts",
"default": "./hooks.mjs"
}
},
"dependencies": {
"@playwright/experimental-ct-core": "1.43.0-next"
2023-10-24 22:29:29 +02:00
},
"devDependencies": {
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
2023-10-24 22:29:29 +02:00
"rxjs": "~7.8.1",
"typescript": "~5.2.0",
"vite": "~5.0.12",
"zone.js": "~0.14.0"
2023-10-24 22:29:29 +02:00
},
"peerDependencies": {
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"typescript": ">=5.2.0"
2023-10-24 22:29:29 +02:00
},
"bin": {
2024-03-27 16:30:09 +01:00
"playwright": "cli.js",
"pw-angular": "cli.js"
2023-10-24 22:29:29 +02:00
}
}