eslint-plugin-func-params-args 5.0.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +10 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-func-params-args",
3
- "version": "5.0.0",
3
+ "version": "6.0.0",
4
4
  "description": "Limit the number of function parameters and arguments with ease and flexibility",
5
5
  "author": "Abdulrahman (Abdu) Assabri <abdusabri@abdusabri.com>",
6
6
  "keywords": [
@@ -24,12 +24,13 @@
24
24
  },
25
25
  "license": "MIT",
26
26
  "engines": {
27
- "node": ">=18.18.0"
27
+ "node": ">=20.9.0"
28
28
  },
29
29
  "main": "dist/index.js",
30
30
  "scripts": {
31
- "prettier:fix": "prettier --write **/*.{js,json,md}",
32
- "prettier:check": "prettier --check **/*.{js,json,md}",
31
+ "lint": "eslint lib/rules/ tests/lib/rules/",
32
+ "prettier:fix": "prettier --write **/*.{js,mjs,json,md}",
33
+ "prettier:check": "prettier --check **/*.{js,mjs,json,md}",
33
34
  "test:unit": "mocha tests --recursive",
34
35
  "test": "nyc mocha tests --recursive",
35
36
  "check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
@@ -42,17 +43,18 @@
42
43
  "requireindex": "~1.2.0"
43
44
  },
44
45
  "peerDependencies": {
45
- "eslint": "^8.0.0 || ^9.0.0"
46
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0"
46
47
  },
47
48
  "devDependencies": {
48
49
  "@typescript-eslint/parser": "^8.0.0",
49
50
  "babel-minify": "^0.5.1",
50
51
  "coveralls": "^3.1.0",
51
- "eslint": "^8.57.1",
52
+ "eslint": "9.39.3",
53
+ "eslint-plugin-eslint-plugin": "^7.3.1",
52
54
  "husky": "^9.0.0",
53
55
  "lint-staged": "^16.0.0",
54
56
  "mocha": "^11.0.0",
55
- "nyc": "^17.0.0",
57
+ "nyc": "^18.0.0",
56
58
  "prettier": "^3.1.0",
57
59
  "rimraf": "^6.0.0",
58
60
  "typescript": "^5.0.2"
@@ -69,6 +71,6 @@
69
71
  }
70
72
  },
71
73
  "lint-staged": {
72
- "*.{js,json,md}": "prettier --write"
74
+ "*.{js,mjs,json,md}": "prettier --write"
73
75
  }
74
76
  }