-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "@mll-lab/eslint-plugin",
"version": "1.3.4",
"description": "ESLint plugin and common configuration of MLL",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mll-lab/eslint-plugin.git"
},
"keywords": [
"eslint",
"eslintplugin"
],
"publishConfig": {
"access": "public"
},
"author": "Benedikt Franke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mll-lab/eslint-plugin/issues"
},
"homepage": "https://github.com/mll-lab/eslint-plugin",
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.62"
},
"peerDependencies": {
"eslint": "^8.8.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts .",
"format": "yarn run lint --fix",
"test": "jest"
},
"devDependencies": {
"@mll-lab/eslint-config": "^2",
"@mll-lab/prettier-config": "^1.0.0",
"@mll-lab/tsconfig": "^1.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/types": "^6",
"@typescript-eslint/type-utils": "^6",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-redux-saga": "^1.3.2",
"eslint-plugin-testing-library": "^5.0.5",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}