forked from testing-library/eslint-plugin-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "eslint-plugin-testing-library",
"version": "0.0.0-semantically-released",
"description": "ESLint rules for Testing Library",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"lint",
"testing-library",
"testing"
],
"author": {
"name": "Mario Beltrán Alarcón",
"email": "[email protected]",
"url": "https://mario.dev/"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/eslint-plugin-testing-library"
},
"homepage": "https://github.com/testing-library/eslint-plugin-testing-library",
"bugs": {
"url": "https://github.com/testing-library/eslint-plugin-testing-library/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc",
"postbuild": "cpy README.md ./dist && cpy package.json ./dist && cpy LICENSE ./dist",
"lint": "eslint . --max-warnings 0 --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write README.md \"{lib,docs,tests}/**/*.{js,ts,md}\"",
"format:check": "prettier --check README.md \"{lib,docs,tests}/**/*.{js,json,yml,ts,md}\"",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:update": "npm run test -- --u",
"test:watch": "npm run test -- --watch",
"type-check": "tsc --noEmit",
"semantic-release": "semantic-release"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^4.21.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-jest-formatting": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^5.1.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-environment-jsdom": "^25.5.0",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"peerDependencies": {
"eslint": "^7.5.0"
},
"engines": {
"node": "^10.12.0 || >=12.0.0",
"npm": ">=6"
},
"license": "MIT"
}