-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 785 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 785 Bytes
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
{
"name": "eslint-plugin-better-max-params",
"version": "1.0.0",
"description": "Set a max param number for your constructors, functions, methods etc.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"max",
"param",
"max-param",
"max-params"
],
"author": "GP4cK",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha tests --recursive --watch"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"eslint-plugin-eslint-plugin": "^7.0.0",
"eslint-plugin-n": "^17.21.3",
"globals": "^16.3.0",
"mocha": "^11.7.1"
},
"engines": {
"node": ">= 22"
},
"peerDependencies": {
"eslint": ">=9"
},
"license": "ISC"
}