1 | {
|
2 | "name": "eslint-plugin-testing-library",
|
3 | "version": "6.4.0",
|
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 | "files": [
|
28 | "dist",
|
29 | "README.md",
|
30 | "LICENSE"
|
31 | ],
|
32 | "main": "./dist/index.js",
|
33 | "scripts": {
|
34 | "prebuild": "del-cli dist",
|
35 | "build": "tsc",
|
36 | "generate-all": "npm-run-all --parallel \"generate:*\"",
|
37 | "generate-all:check": "npm run generate-all && git diff --exit-code",
|
38 | "generate:configs": "ts-node tools/generate-configs",
|
39 | "generate:rules-doc": "npm run build && npm run rule-doc-generator",
|
40 | "format": "npm run prettier-base -- --write",
|
41 | "format:check": "npm run prettier-base -- --check",
|
42 | "lint": "eslint . --max-warnings 0 --ext .js,.ts",
|
43 | "lint:fix": "npm run lint -- --fix",
|
44 | "prepare": "is-ci || husky install",
|
45 | "prettier-base": "prettier . --ignore-unknown --cache --loglevel warn",
|
46 | "rule-doc-generator": "eslint-doc-generator",
|
47 | "semantic-release": "semantic-release",
|
48 | "test": "jest",
|
49 | "test:ci": "jest --ci --coverage",
|
50 | "test:watch": "npm run test -- --watch",
|
51 | "type-check": "tsc --noEmit"
|
52 | },
|
53 | "dependencies": {
|
54 | "@typescript-eslint/utils": "^5.62.0"
|
55 | },
|
56 | "devDependencies": {
|
57 | "@babel/core": "^7.25.8",
|
58 | "@babel/eslint-parser": "^7.25.8",
|
59 | "@babel/eslint-plugin": "^7.25.7",
|
60 | "@commitlint/cli": "^17.8.1",
|
61 | "@commitlint/config-conventional": "^17.8.1",
|
62 | "@swc/core": "^1.7.36",
|
63 | "@swc/jest": "^0.2.36",
|
64 | "@types/jest": "^27.5.2",
|
65 | "@types/node": "^20.16.12",
|
66 | "@typescript-eslint/eslint-plugin": "^5.62.0",
|
67 | "@typescript-eslint/parser": "^5.62.0",
|
68 | "del-cli": "^5.1.0",
|
69 | "eslint": "^8.57.1",
|
70 | "eslint-config-prettier": "^9.1.0",
|
71 | "eslint-doc-generator": "^1.7.1",
|
72 | "eslint-import-resolver-typescript": "^3.6.3",
|
73 | "eslint-plugin-import": "^2.31.0",
|
74 | "eslint-plugin-jest": "^27.9.0",
|
75 | "eslint-plugin-jest-formatting": "^3.1.0",
|
76 | "eslint-plugin-node": "^11.1.0",
|
77 | "eslint-plugin-promise": "^6.6.0",
|
78 | "eslint-remote-tester": "^3.0.1",
|
79 | "eslint-remote-tester-repositories": "^1.0.1",
|
80 | "husky": "^8.0.3",
|
81 | "is-ci": "^3.0.1",
|
82 | "jest": "^28.1.3",
|
83 | "lint-staged": "^13.3.0",
|
84 | "npm-run-all2": "^5.0.2",
|
85 | "prettier": "^3.3.3",
|
86 | "semantic-release": "^19.0.5",
|
87 | "semver": "^7.6.3",
|
88 | "ts-node": "^10.9.2",
|
89 | "typescript": "5.0.4"
|
90 | },
|
91 | "peerDependencies": {
|
92 | "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0"
|
93 | },
|
94 | "engines": {
|
95 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0",
|
96 | "npm": ">=6"
|
97 | }
|
98 | }
|