UNPKG

eslint-plugin-ui-testing

Version:

ESLint rules for UI testing tools WebdriverIO, Cypress, TestCafe, Playwright, Puppeteer

64 lines (63 loc) 1.7 kB
{ "name": "eslint-plugin-ui-testing", "version": "2.0.1", "description": "ESLint rules for UI testing tools WebdriverIO, Cypress, TestCafe, Playwright, Puppeteer", "keywords": [ "eslint", "eslintplugin", "eslint-plugin", "testing", "test", "ui-testing", "ui", "automation", "cypress", "playwright", "puppeteer", "testcafe", "webdriverio" ], "author": "Kwo Ding", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/kwoding/eslint-plugin-ui-testing.git" }, "homepage": "https://github.com/kwoding/eslint-plugin-ui-testing", "bugs": { "url": "https://github.com/kwoding/eslint-plugin-ui-testing/issues" }, "main": "index.js", "scripts": { "build": "rimraf ./dist && npm run lint && tsc", "postbuild": "cp package.json ./dist && cp README.md ./dist && cp LICENSE ./dist", "lint": "eslint . --ext .js,.ts", "test": "jest --clearCache && jest", "pack": "npm pack ./dist" }, "peerDependencies": { "eslint": ">= 7" }, "dependencies": { "@typescript-eslint/experimental-utils": "^5.3.0" }, "devDependencies": { "@types/jest": "^26.0.14", "@typescript-eslint/eslint-plugin": "^5.3.0", "@typescript-eslint/parser": "^5.3.0", "eslint": "^7", "eslint-config-airbnb-base": "^14.2.1", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-import": "^2.25.2", "eslint-plugin-jest": "^25.2.2", "eslint-plugin-jest-formatting": "^3.0.0", "jest": "^27.3.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.7", "typescript": "^4.4.4" }, "engines": { "node": "^10.12.0 || >=12.0.0", "npm": ">=6" } }