100 lines
2.2 KiB
JSON
100 lines
2.2 KiB
JSON
{
|
|
"name": "@nx/playwright",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"type": "commonjs",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"migrations.json",
|
|
"executors.json",
|
|
"generators.json"
|
|
],
|
|
"description": "The Nx Plugin for Playwright contains executors and generators allowing your workspace to use the powerful Playwright integration testing capabilities.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/playwright"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Angular",
|
|
"React",
|
|
"Web",
|
|
"Node",
|
|
"Nest",
|
|
"Jest",
|
|
"Playwright",
|
|
"CLI",
|
|
"Testing",
|
|
"Front-end"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"plugin": [
|
|
"dist/plugin.d.ts"
|
|
],
|
|
"preset": [
|
|
"dist/preset.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"@nx/nx-source": "./index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./migrations.json": "./migrations.json",
|
|
"./generators.json": "./generators.json",
|
|
"./executors.json": "./executors.json",
|
|
"./plugin": {
|
|
"@nx/nx-source": "./plugin.ts",
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
},
|
|
"./preset": {
|
|
"@nx/nx-source": "./preset.ts",
|
|
"types": "./dist/preset.d.ts",
|
|
"default": "./dist/preset.js"
|
|
}
|
|
},
|
|
"author": "Victor Savkin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"homepage": "https://nx.dev",
|
|
"executors": "./executors.json",
|
|
"generators": "./generators.json",
|
|
"nx-migrations": {
|
|
"migrations": "./migrations.json",
|
|
"supportsOptionalMigrations": true
|
|
},
|
|
"dependencies": {
|
|
"@nx/devkit": "workspace:*",
|
|
"@nx/eslint": "workspace:*",
|
|
"@nx/js": "workspace:*",
|
|
"tslib": "catalog:typescript",
|
|
"minimatch": "catalog:",
|
|
"semver": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"nx": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@playwright/test": "catalog:"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@playwright/test": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|