| 1 | {
|
|---|
| 2 | "name": "eslint-plugin-testing-library",
|
|---|
| 3 | "version": "5.11.1",
|
|---|
| 4 | "description": "ESLint plugin to follow best practices and anticipate common mistakes when writing tests with Testing Library",
|
|---|
| 5 | "keywords": [
|
|---|
| 6 | "eslint",
|
|---|
| 7 | "eslintplugin",
|
|---|
| 8 | "eslint-plugin",
|
|---|
| 9 | "lint",
|
|---|
| 10 | "testing-library",
|
|---|
| 11 | "testing"
|
|---|
| 12 | ],
|
|---|
| 13 | "homepage": "https://github.com/testing-library/eslint-plugin-testing-library",
|
|---|
| 14 | "bugs": {
|
|---|
| 15 | "url": "https://github.com/testing-library/eslint-plugin-testing-library/issues"
|
|---|
| 16 | },
|
|---|
| 17 | "repository": {
|
|---|
| 18 | "type": "git",
|
|---|
| 19 | "url": "https://github.com/testing-library/eslint-plugin-testing-library"
|
|---|
| 20 | },
|
|---|
| 21 | "license": "MIT",
|
|---|
| 22 | "author": {
|
|---|
| 23 | "name": "Mario Beltrán Alarcón",
|
|---|
| 24 | "email": "me@mario.dev",
|
|---|
| 25 | "url": "https://mario.dev/"
|
|---|
| 26 | },
|
|---|
| 27 | "main": "index.js",
|
|---|
| 28 | "scripts": {
|
|---|
| 29 | "prebuild": "del-cli dist",
|
|---|
| 30 | "build": "tsc",
|
|---|
| 31 | "postbuild": "cpy README.md ./dist && cpy package.json ./dist && cpy LICENSE ./dist",
|
|---|
| 32 | "generate-all": "run-p \"generate:*\"",
|
|---|
| 33 | "generate:configs": "ts-node tools/generate-configs",
|
|---|
| 34 | "generate:rules-doc": "npm run build && npm run rule-doc-generator",
|
|---|
| 35 | "format": "npm run prettier-base -- --write",
|
|---|
| 36 | "format:check": "npm run prettier-base -- --check",
|
|---|
| 37 | "lint": "eslint . --max-warnings 0 --ext .js,.ts",
|
|---|
| 38 | "lint:fix": "npm run lint -- --fix",
|
|---|
| 39 | "prepare": "is-ci || husky install",
|
|---|
| 40 | "prettier-base": "prettier . --ignore-unknown --cache --loglevel warn",
|
|---|
| 41 | "rule-doc-generator": "eslint-doc-generator --path-rule-list \"../README.md\" --path-rule-doc \"../docs/rules/{name}.md\" --url-rule-doc \"docs/rules/{name}.md\" dist/",
|
|---|
| 42 | "semantic-release": "semantic-release",
|
|---|
| 43 | "test": "jest",
|
|---|
| 44 | "test:ci": "jest --ci --coverage",
|
|---|
| 45 | "test:watch": "npm run test -- --watch",
|
|---|
| 46 | "type-check": "tsc --noEmit"
|
|---|
| 47 | },
|
|---|
| 48 | "dependencies": {
|
|---|
| 49 | "@typescript-eslint/utils": "^5.58.0"
|
|---|
| 50 | },
|
|---|
| 51 | "devDependencies": {
|
|---|
| 52 | "@babel/core": "^7.21.4",
|
|---|
| 53 | "@babel/eslint-parser": "^7.21.3",
|
|---|
| 54 | "@babel/eslint-plugin": "^7.19.1",
|
|---|
| 55 | "@commitlint/cli": "^17.5.1",
|
|---|
| 56 | "@commitlint/config-conventional": "^17.4.4",
|
|---|
| 57 | "@types/jest": "^27.5.2",
|
|---|
| 58 | "@types/node": "^16.18.23",
|
|---|
| 59 | "@typescript-eslint/eslint-plugin": "^5.58.0",
|
|---|
| 60 | "@typescript-eslint/parser": "^5.58.0",
|
|---|
| 61 | "cpy-cli": "^4.2.0",
|
|---|
| 62 | "del-cli": "^5.0.0",
|
|---|
| 63 | "eslint": "^8.38.0",
|
|---|
| 64 | "eslint-config-kentcdodds": "^20.5.0",
|
|---|
| 65 | "eslint-config-prettier": "^8.8.0",
|
|---|
| 66 | "eslint-doc-generator": "^1.4.3",
|
|---|
| 67 | "eslint-plugin-import": "^2.27.5",
|
|---|
| 68 | "eslint-plugin-jest": "^27.2.1",
|
|---|
| 69 | "eslint-plugin-jest-formatting": "^3.1.0",
|
|---|
| 70 | "eslint-plugin-node": "^11.1.0",
|
|---|
| 71 | "eslint-plugin-prettier": "^4.2.1",
|
|---|
| 72 | "eslint-plugin-promise": "^6.1.1",
|
|---|
| 73 | "eslint-remote-tester": "^3.0.0",
|
|---|
| 74 | "eslint-remote-tester-repositories": "^1.0.1",
|
|---|
| 75 | "husky": "^8.0.3",
|
|---|
| 76 | "is-ci": "^3.0.1",
|
|---|
| 77 | "jest": "^28.1.3",
|
|---|
| 78 | "lint-staged": "^13.2.1",
|
|---|
| 79 | "npm-run-all": "^4.1.5",
|
|---|
| 80 | "prettier": "2.8.7",
|
|---|
| 81 | "semantic-release": "^19.0.5",
|
|---|
| 82 | "ts-jest": "^28.0.8",
|
|---|
| 83 | "ts-node": "^10.9.1",
|
|---|
| 84 | "typescript": "^4.9.5"
|
|---|
| 85 | },
|
|---|
| 86 | "peerDependencies": {
|
|---|
| 87 | "eslint": "^7.5.0 || ^8.0.0"
|
|---|
| 88 | },
|
|---|
| 89 | "engines": {
|
|---|
| 90 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0",
|
|---|
| 91 | "npm": ">=6"
|
|---|
| 92 | }
|
|---|
| 93 | }
|
|---|