forked from testing-library/eslint-plugin-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.97 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
{
"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/"
},
"main": "index.js",
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"postbuild": "cpy README.md ./dist && cpy package.json ./dist && cpy LICENSE ./dist",
"generate-all": "run-p \"generate:*\"",
"generate:configs": "ts-node tools/generate-configs",
"generate:rules-doc": "npm run build && npm run rule-doc-generator",
"format": "npm run prettier-base -- --write",
"format:check": "npm run prettier-base -- --check",
"lint": "eslint . --max-warnings 0 --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "is-ci || husky install",
"prettier-base": "prettier . --ignore-unknown --cache --loglevel warn",
"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/",
"semantic-release": "semantic-release",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:watch": "npm run test -- --watch",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@typescript-eslint/utils": "^5.43.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cpy-cli": "^4.2.0",
"del-cli": "^5.0.0",
"eslint": "^8.28.0",
"eslint-config-kentcdodds": "^20.4.0",
"eslint-config-prettier": "^8.5.0",
"eslint-doc-generator": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-remote-tester": "^3.0.0",
"eslint-remote-tester-repositories": "^1.0.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "2.8.1",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"eslint": "^7.5.0 || ^8.0.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0",
"npm": ">=6"
}
}