-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
99 lines (99 loc) · 2.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "eslint-plugin-testing-library",
"version": "0.0.0-semantically-released",
"description": "ESLint plugin to follow best practices and anticipate common mistakes when writing tests with Testing Library",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"lint",
"testing-library",
"testing"
],
"homepage": "https://github.com/testing-library/eslint-plugin-testing-library",
"bugs": {
"url": "https://github.com/testing-library/eslint-plugin-testing-library/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/eslint-plugin-testing-library"
},
"license": "MIT",
"author": {
"name": "Mario Beltrán Alarcón",
"email": "[email protected]",
"url": "https://mario.dev/"
},
"files": [
"dist",
"README.md",
"LICENSE",
"index.d.ts"
],
"main": "./dist/index.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"generate-all": "pnpm run --parallel \"/^generate:.*/\"",
"generate-all:check": "pnpm run generate-all && git diff --exit-code",
"generate:configs": "ts-node tools/generate-configs",
"generate:rules-doc": "pnpm run build && pnpm run rule-doc-generator",
"format": "pnpm run prettier-base --write",
"format:check": "pnpm run prettier-base --check",
"lint": "eslint . --max-warnings 0 --ext .js,.ts",
"lint:fix": "pnpm run lint --fix",
"prepare": "is-ci || husky",
"prettier-base": "prettier . --ignore-unknown --cache --log-level warn",
"rule-doc-generator": "eslint-doc-generator",
"semantic-release": "semantic-release",
"test": "jest",
"test:ci": "pnpm run test --ci --coverage",
"test:watch": "pnpm run test --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@typescript-eslint/scope-manager": "^8.15.0",
"@typescript-eslint/utils": "^8.15.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@swc/core": "^1.9.3",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@typescript-eslint/rule-tester": "^8.15.0",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-doc-generator": "^1.7.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-remote-tester": "^3.0.1",
"eslint-remote-tester-repositories": "^1.0.1",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"semantic-release": "^24.2.0",
"semver": "^7.6.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0",
"pnpm": "^9.14.0"
},
"packageManager": "[email protected]"
}