-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "eslint-plugin-criteo",
"version": "5.4.0",
"description": "An opinionated collection of ESLint shared configs and rules used by Criteo.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Criteo",
"main": "lib/index.js",
"scripts": {
"build": "echo Nothing to do",
"lint": "npx prettier . --check",
"lint:fix": "npx prettier . --write"
},
"dependencies": {
"requireindex": "1.2.0"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-plugin-eslint-plugin": "6.2.0",
"eslint-plugin-n": "17.11.1",
"prettier": "3.4.2"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"peerDependencies": {
"@angular-eslint/eslint-plugin": ">= 17",
"@angular-eslint/eslint-plugin-template": ">= 17",
"@angular-eslint/template-parser": ">= 17",
"@typescript-eslint/eslint-plugin": ">= 7",
"@typescript-eslint/parser": ">= 7",
"eslint": ">= 8",
"eslint-plugin-cypress": ">= 2 <4",
"eslint-plugin-deprecation": ">= 2",
"eslint-plugin-eslint-comments": ">= 3",
"eslint-plugin-no-only-tests": ">= 3",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-rxjs": ">= 5",
"eslint-plugin-rxjs-angular": ">= 2",
"eslint-plugin-simple-import-sort": ">= 12",
"typescript": ">= 4"
},
"peerDependenciesMeta": {
"@angular-eslint/eslint-plugin": {
"optional": true
},
"@angular-eslint/eslint-plugin-template": {
"optional": true
},
"@angular-eslint/template-parser": {
"optional": true
},
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"typescript": {
"optional": true
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/criteo/eslint-plugin-criteo.git"
},
"bugs": "https://github.com/criteo/eslint-plugin-criteo/issues"
}