X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=package.json;h=c26f19af85658ccfc1fbe05615149e61603bab2c;hb=87c0474b93af0692a3c283e54f6c201d57b91c53;hp=8114cbf901e685a36c7a62d145a4e6faf92ee1c3;hpb=a2fd60ad84fcbc9bad1fd4a8351a9fe41ff99632;p=benchmarks-js.git diff --git a/package.json b/package.json index 8114cbf..c26f19a 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,15 @@ { + "$schema": "https://json.schemastore.org/package", "name": "benchmarks-js", "version": "0.0.1", "description": "JS code pattern benchmarks", "engines": { - "node": ">=14.x", + "node": ">=16.x", "pnpm": ">=8.6.0" }, "volta": { - "node": "20.5.0", - "pnpm": "8.6.11" + "node": "20.6.0", + "pnpm": "8.7.3" }, "repository": { "type": "git", @@ -41,16 +42,21 @@ "benchmark:is-undefined": "node is-undefined.mjs", "benchmark:quick-select": "node quick-select.mjs", "benchmark:max": "node max.mjs", + "benchmark:min": "node min.mjs", "benchmark:promise-handling": "node promise-handling.mjs", "benchmark:fibonacci": "node fibonacci.mjs", "benchmark:random": "node random.mjs", "benchmark:uuid-generator": "node uuid-generator.mjs", - "format": "prettier . --cache --write; standard . --fix", + "format": "rome format . --write; standard . --fix", "lint": "eslint . --cache", "lint:fix": "eslint . --cache --fix", "test": "echo \"Error: no test specified\" && exit 1" }, - "author": "jerome-benoit", + "author": { + "name": "Jérôme Benoit", + "email": "jerome.benoit@piment-noir.org", + "url": "https://github.com/jerome-benoit" + }, "license": "MIT", "dependencies": { "benny": "^3.7.1", @@ -63,17 +69,18 @@ "uuid": "^9.0.0" }, "devDependencies": { - "eslint": "^8.46.0", + "eslint": "^8.48.0", "eslint-config-standard": "^17.1.0", "eslint-define-config": "^1.23.0", - "eslint-plugin-import": "^2.28.0", - "eslint-plugin-jsdoc": "^46.4.6", - "eslint-plugin-n": "^16.0.1", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsdoc": "^46.5.1", + "eslint-plugin-n": "^16.0.2", "eslint-plugin-promise": "^6.1.1", "husky": "^8.0.3", - "lint-staged": "^13.2.3", - "prettier": "^3.0.1", + "lint-staged": "^14.0.1", + "prettier": "^3.0.3", + "rome": "^12.1.3", "standard": "^17.1.0", - "typescript": "^5.1.6" + "typescript": "^5.2.2" } }