eslint-plugin-playwright
Version:
ESLint plugin for Playwright testing.
43 lines (42 loc) • 999 B
JSON
{
"name": "eslint-plugin-playwright",
"description": "ESLint plugin for Playwright testing.",
"version": "0.12.0",
"main": "lib/index.js",
"repository": "https://github.com/playwright-community/eslint-plugin-playwright",
"author": "Max Schmitt <max@schmitt.mx>",
"contributors": [
"Mark Skelton <mark@mskelton.dev>"
],
"license": "MIT",
"files": [
"lib",
"!lib/**/*.spec.js"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write .",
"test": "jest",
"ts": "tsc"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/eslint": "^8.4.5",
"@types/estree": "^1.0.0",
"dedent": "^0.7.0",
"eslint": "^8.4.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"eslint": ">=7",
"eslint-plugin-jest": ">=24"
},
"peerDependenciesMeta": {
"eslint-plugin-jest": {
"optional": true
}
}
}