-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "@einride/eslint-plugin",
"version": "0.0.0-development",
"description": "Einride's default ESLint config",
"scripts": {
"commitlint": "commitlint --from origin/master --to HEAD",
"format": "prettier --write .",
"format-check": "prettier --check .",
"review": "yarn install --frozen-lockfile && yarn commitlint && yarn format-check"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@einride/prettier-config": "2.1.0",
"eslint": "8.57.1",
"prettier": "3.4.2",
"semantic-release": "24.2.0"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"prettier": ">=3.0.0"
},
"files": [
"index.js"
],
"main": "index.js",
"keywords": [
"eslint",
"plugin",
"eslint-plugin",
"react",
"typescript"
],
"homepage": "https://github.com/einride/eslint-plugin",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/einride/eslint-plugin/issues"
},
"license": "MIT",
"author": {
"name": "Filip Tammergård",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/einride/eslint-plugin.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22"
}
}