-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.54 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
{
"name": "eslint-config-iamnapo",
"version": "37.0.0",
"description": "ESLint shareable config for iamnapo’s coding style",
"keywords": [
"eslint",
"eslintrc",
"eslintconfig",
"config",
"iamnapo",
"styleguide",
"react",
"javascript",
"typescript"
],
"homepage": "https://github.com/iamnapo/eslint-config-iamnapo#readme",
"bugs": {
"url": "https://github.com/iamnapo/eslint-config-iamnapo/issues"
},
"repository": "github:iamnapo/eslint-config-iamnapo",
"license": "MIT",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "Napoleonoikon@gmail.com",
"url": "https://iamnapo.me"
},
"type": "module",
"exports": {
".": "./index.js"
},
"files": [
"configs",
"index.js"
],
"scripts": {
"lint": "eslint . --cache",
"test": "npm run lint && node test/run.js"
},
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@stylistic/eslint-plugin": "^2.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.11.0",
"typescript-eslint": "^8.8.1"
},
"devDependencies": {
"eslint": "^8.57.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=20.11"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}