forked from testing-library/eslint-plugin-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "eslint-plugin-testing-library",
"version": "0.0.0-semantically-released",
"description": "ESLint rules for Testing Library",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": {
"name": "Mario Beltrán Alarcón",
"email": "[email protected]",
"url": "https://mario.dev/"
},
"repository": {
"type": "git",
"url": "https://github.com/Belco90/eslint-plugin-testing-library.git"
},
"homepage": "https://github.com/Belco90/eslint-plugin-testing-library",
"bugs": {
"url": "https://github.com/Belco90/eslint-plugin-testing-library/issues"
},
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write README.md {lib,docs,tests}/**/*.{js,md}",
"test:local": "jest",
"test:ci": "jest --coverage",
"test": "is-ci test:ci test:local",
"semantic-release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jest-formatting": "^1.1.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.5",
"is-ci-cli": "^2.0.0",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"prettier": "1.18.2",
"semantic-release": "^15.13.24"
},
"peerDependencies": {
"eslint": ">=5"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"license": "MIT"
}