|
23 | 23 | "scripts": { |
24 | 24 | "changelog": "lerna-changelog", |
25 | 25 | "test": "mocha tests/*-tests.js", |
| 26 | + "format": "prettier . --cache --write", |
| 27 | + "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto", |
| 28 | + "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" --prefixColors auto && npm run format", |
| 29 | + "lint:format": "prettier . --cache --check", |
| 30 | + "lint:js": "eslint . --cache", |
| 31 | + "lint:js:fix": "eslint . --fix", |
26 | 32 | "test:debug": "mocha debug tests/*-tests.js" |
27 | 33 | }, |
28 | 34 | "prettier": { |
|
35 | 41 | "silent-error": "^1.1.1" |
36 | 42 | }, |
37 | 43 | "devDependencies": { |
38 | | - "eslint-config-prettier": "^6.15.0", |
39 | | - "eslint-plugin-prettier": "^3.4.0", |
| 44 | + "@eslint/js": "^10.0.1", |
| 45 | + "concurrently": "^10.0.3", |
| 46 | + "eslint": "^10.7.0", |
| 47 | + "eslint-config-prettier": "^10.1.8", |
40 | 48 | "fixturify": "^2.1.1", |
41 | 49 | "fixturify-project": "^2.1.1", |
42 | | - "lerna-changelog": "^1.0.1", |
43 | | - "mocha": "^8.4.0", |
44 | | - "mocha-eslint": "^6.0.0", |
45 | | - "prettier": "^1.19.1", |
46 | | - "release-it": "^14.10.1", |
47 | | - "release-it-lerna-changelog": "^3.1.0" |
| 50 | + "globals": "^17.7.0", |
| 51 | + "mocha": "^11.7.6", |
| 52 | + "prettier": "^3.9.5" |
48 | 53 | }, |
49 | 54 | "engines": { |
50 | | - "node": "10.* || >= 12.*" |
| 55 | + "node": "22.* || 24.* || >= 26.*" |
51 | 56 | }, |
52 | 57 | "publishConfig": { |
53 | 58 | "registry": "https://registry.npmjs.org" |
|
0 commit comments