-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"name": "@alma-oss/eslint-config-typescript",
"description": "Alma's ESLint config for TypeScript projects",
"version": "3.0.0-alpha.2",
"keywords": [
"config",
"eslint",
"typescript",
"LMC"
],
"author": "Tomáš Litera <tomas.litera@almacareer.com",
"homepage": "https://github.com/lmc-eu/code-quality-tools#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/lmc-eu/code-quality-tools.git"
},
"bugs": {
"url": "https://github.com/lmc-eu/code-quality-tools/issues"
},
"main": "index.js",
"exports": {
".": "./index.js",
"./react": "./react.js",
"./optional": "./optional.js"
},
"dependencies": {
"@alma-oss/eslint-config-base": "^4.0.0-alpha.2",
"@alma-oss/eslint-config-react": "^3.0.0-alpha.2",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint-import-resolver-typescript": "^3.2.7",
"eslint-plugin-react": "^7.37.5",
"typescript-eslint": "^8.38.0"
},
"peerDependencies": {
"eslint": "^9.31.0 || ^10.0.0"
},
"devDependencies": {
"eslint": "10.2.0",
"typescript": "5.9.3"
}
}