eslint-plugin-playwright
Version:
ESLint plugin for Playwright testing.
65 lines (64 loc) • 1.57 kB
JSON
{
"name": "eslint-plugin-playwright",
"version": "2.10.1",
"description": "ESLint plugin for Playwright testing.",
"license": "MIT",
"author": "Mark Skelton <mark@mskelton.dev>",
"contributors": [
"Max Schmitt <max@schmitt.mx>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mskelton/eslint-plugin-playwright.git"
},
"files": [
"dist",
"index.cjs",
"index.d.ts",
"index.js"
],
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs --out-dir dist",
"lint": "eslint .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "vitest --hideSkippedTests",
"typecheck": "tsc --noEmit",
"ci": "yarn format:check && yarn lint && yarn typecheck"
},
"dependencies": {
"globals": "^17.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/estree": "^1.0.8",
"@types/node": "^25.2.3",
"@typescript-eslint/parser": "^8.56.0",
"dedent": "^1.7.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sort": "^4.0.0",
"oxfmt": "^0.33.0",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"eslint": ">=8.40.0"
},
"engines": {
"node": ">=16.9.0"
},
"packageManager": "yarn@4.12.0"
}