eslint-plugin-raflint 1.2.7 → 1.2.9

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 (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +27 -26
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # README
2
+
1
3
  Ce plugin eslint permet de détecter les écritures du style :
2
4
 
3
5
  const obj = {
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "eslint-plugin-raflint",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "",
5
+ "keywords": [],
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/eslint-plugin-raflint.git"
9
+ },
10
+ "license": "ISC",
11
+ "author": "Raphael Piccolo",
12
+ "type": "module",
5
13
  "exports": {
6
14
  ".": {
7
15
  "require": "./dist/bundle.cjs",
@@ -9,39 +17,32 @@
9
17
  }
10
18
  },
11
19
  "scripts": {
12
- "prepare": "husky install",
20
+ "cov": "c8 npm run test",
13
21
  "jest": "SILENT=1 node --no-warnings --experimental-vm-modules ./node_modules/.bin/jest",
14
- "test": "SILENT=1 mocha --timeout 15000 {lib,test}/**/*.test.js",
15
- "cov": "c8 npm run test"
16
- },
17
- "keywords": [],
18
- "author": "Raphael Piccolo",
19
- "license": "ICS",
20
- "repository": {
21
- "type": "git",
22
- "url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/eslint-plugin-raflint.git"
22
+ "prepare": "husky",
23
+ "test": "SILENT=1 mocha --timeout 15000 {lib,test}/**/*.test.js"
23
24
  },
24
25
  "dependencies": {
25
- "@babel/eslint-parser": "^7.22.15",
26
- "c8": "^8.0.1",
27
- "eslint": "^8.51.0",
28
- "eslint-plugin-import": "^2.28.1",
29
- "eslint-plugin-n": "^16.2.0",
26
+ "@babel/eslint-parser": "^7.24.1",
27
+ "c8": "^9.1.0",
28
+ "eslint": "^8.57.0",
29
+ "eslint-plugin-import": "^2.29.1",
30
+ "eslint-plugin-n": "^16.6.2",
30
31
  "eslint-plugin-promise": "^6.1.1",
31
- "eslint-plugin-sonarjs": "^0.21.0",
32
- "eslint-plugin-unicorn": "^48.0.1",
33
- "html-validate": "^8.6.0",
34
- "husky": "^8.0.3",
32
+ "eslint-plugin-sonarjs": "^0.25.1",
33
+ "eslint-plugin-unicorn": "^52.0.0",
34
+ "html-validate": "^8.18.1",
35
+ "husky": "^9.0.11",
35
36
  "jest": "^29.7.0",
36
- "lint-staged": "^15.0.0",
37
- "mocha": "^10.2.0",
38
- "prettier": "^3.0.3"
37
+ "lint-staged": "^15.2.2",
38
+ "mocha": "^10.4.0",
39
+ "prettier": "^3.2.5"
39
40
  },
40
41
  "devDependencies": {
41
- "eslint-plugin-raflint": "^1.2.6"
42
+ "eslint-plugin-raflint": "^1.2.8",
43
+ "markdownlint": "^0.34.0"
42
44
  },
43
45
  "engines": {
44
46
  "node": ">=17.0.0"
45
- },
46
- "type": "module"
47
+ }
47
48
  }