-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.17 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
{
"name": "@anylint/eslint-config",
"private": false,
"version": "1.0.8",
"license": "MIT",
"author": "Yurii Rybak",
"description": "Shareable ESLint config for TS/JS projects code consistency",
"homepage": "https://github.com/Yurchishin/anylint/tree/master/packages/eslint-config",
"repository": {
"type": "git",
"url": "https://github.com/Yurchishin/anylint.git"
},
"keywords": [
"eslint",
"eslint-config",
"javascript",
"typescript",
"react",
"react-web",
"react-native",
"testing-library",
"testing-library-react",
"jest",
"jest-web",
"jest-native"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"src",
"LICENSE"
],
"type": "commonjs",
"exports": {
"./javascript": "./src/javascript.cjs",
"./typescript": "./src/typescript.cjs",
"./tests": "./src/tests.cjs",
"./jest": "./src/jest.cjs",
"./jest-native": "./src/jest-native.cjs",
"./jest-web": "./src/jest-web.cjs",
"./react-native": "./src/react-native.cjs",
"./react-web": "./src/react-web.cjs",
"./testing-library-react": "./src/testing-library-react.cjs"
},
"scripts": {
"release": "release-it --ci --config ../../.release-it.js"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"eslint-config-prettier": "9.0.0",
"eslint-config-unicorn": "0.5.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.0",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-regexp": "1.15.0",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-testing-library": "6.0.1",
"eslint-plugin-unicorn": "48.0.1"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"@anylint:registry": "https://registry.npmjs.org"
}
}