|
2 | 2 | "name": "eslint-plugin-jest-dom", |
3 | 3 | "version": "0.0.0-semantically-released", |
4 | 4 | "description": "ESLint plugin to follow best practices and anticipate common mistakes when writing tests with jest-dom", |
5 | | - "main": "dist/index.js", |
6 | 5 | "keywords": [ |
7 | 6 | "eslint", |
8 | 7 | "eslintplugin", |
|
15 | 14 | "DTL", |
16 | 15 | "tests" |
17 | 16 | ], |
18 | | - "author": "Ben Monro", |
19 | | - "license": "MIT", |
| 17 | + "homepage": "https://github.com/testing-library/eslint-plugin-jest-dom#readme", |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/testing-library/eslint-plugin-jest-dom/issues" |
| 20 | + }, |
20 | 21 | "repository": { |
21 | 22 | "type": "git", |
22 | 23 | "url": "https://github.com/testing-library/eslint-plugin-jest-dom" |
23 | 24 | }, |
24 | | - "bugs": { |
25 | | - "url": "https://github.com/testing-library/eslint-plugin-jest-dom/issues" |
26 | | - }, |
27 | | - "homepage": "https://github.com/testing-library/eslint-plugin-jest-dom#readme", |
| 25 | + "license": "MIT", |
| 26 | + "author": "Ben Monro", |
| 27 | + "main": "dist/index.js", |
28 | 28 | "files": [ |
29 | 29 | "dist" |
30 | 30 | ], |
|
40 | 40 | "test:update": "npm test:coverage -- --updateSnapshot", |
41 | 41 | "validate": "kcd-scripts validate" |
42 | 42 | }, |
| 43 | + "eslintConfig": { |
| 44 | + "extends": "./node_modules/kcd-scripts/eslint.js", |
| 45 | + "rules": { |
| 46 | + "consistent-return": "off", |
| 47 | + "max-lines-per-function": "off", |
| 48 | + "testing-library/no-dom-import": "off" |
| 49 | + } |
| 50 | + }, |
| 51 | + "eslintIgnore": [ |
| 52 | + "node_modules", |
| 53 | + "coverage", |
| 54 | + "dist", |
| 55 | + "eslint-remote-tester-results" |
| 56 | + ], |
43 | 57 | "dependencies": { |
44 | 58 | "@babel/runtime": "^7.16.3", |
45 | 59 | "requireindex": "^1.2.0" |
|
64 | 78 | "optional": true |
65 | 79 | } |
66 | 80 | }, |
67 | | - "eslintConfig": { |
68 | | - "extends": "./node_modules/kcd-scripts/eslint.js", |
69 | | - "rules": { |
70 | | - "consistent-return": "off", |
71 | | - "max-lines-per-function": "off", |
72 | | - "testing-library/no-dom-import": "off" |
73 | | - } |
74 | | - }, |
75 | | - "eslintIgnore": [ |
76 | | - "node_modules", |
77 | | - "coverage", |
78 | | - "dist", |
79 | | - "eslint-remote-tester-results" |
80 | | - ], |
81 | 81 | "engines": { |
82 | 82 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0", |
83 | 83 | "npm": ">=6", |
|
0 commit comments