build: update volta pnpm version
[benchmarks-js.git] / package.json
CommitLineData
ed2968f2
JB
1{
2 "name": "benchmarks-js",
3 "version": "0.0.1",
4 "description": "JS code pattern benchmarks",
9d7eeee7 5 "engines": {
9edceaea 6 "node": ">=14.x",
faa41c13 7 "pnpm": ">=8.6.0"
9d7eeee7 8 },
44c67c12 9 "volta": {
a80e30cf 10 "node": "20.5.0",
5e4efd6e 11 "pnpm": "8.6.12"
44c67c12 12 },
ed2968f2
JB
13 "repository": {
14 "type": "git",
15 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
16 },
ce6a679c
JB
17 "funding": [
18 {
19 "type": "patreon",
20 "url": "https://www.patreon.com/fraggle_"
21 },
22 {
23 "type": "github",
24 "url": "https://github.com/sponsors/jerome-benoit"
25 }
26 ],
3149ea62
JB
27 "pnpm": {
28 "overrides": {
29 "semver": "^7.5.3"
30 }
31 },
ed2968f2 32 "scripts": {
80b94c60 33 "preinstall": "npx --yes only-allow pnpm",
51c84d4b 34 "prepare": "node prepare.js",
f522d7b9
JB
35 "benchmark:busy-wait": "node busy-wait.mjs",
36 "benchmark:empty-array": "node empty-array.mjs",
37 "benchmark:deep-clone-object": "node deep-clone-object.mjs",
896570f7 38 "benchmark:deep-merge-object": "node deep-merge-object.mjs",
f522d7b9
JB
39 "benchmark:shallow-clone-object": "node shallow-clone-object.mjs",
40 "benchmark:is-empty-object": "node is-empty-object.mjs",
41 "benchmark:is-undefined": "node is-undefined.mjs",
42 "benchmark:quick-select": "node quick-select.mjs",
43 "benchmark:max": "node max.mjs",
44 "benchmark:promise-handling": "node promise-handling.mjs",
45 "benchmark:fibonacci": "node fibonacci.mjs",
46 "benchmark:random": "node random.mjs",
47 "benchmark:uuid-generator": "node uuid-generator.mjs",
586ba8db 48 "format": "prettier . --cache --write; standard . --fix",
7fd91296
JB
49 "lint": "eslint . --cache",
50 "lint:fix": "eslint . --cache --fix",
ed2968f2
JB
51 "test": "echo \"Error: no test specified\" && exit 1"
52 },
53 "author": "jerome-benoit",
54 "license": "MIT",
55 "dependencies": {
8e5cf49d 56 "benny": "^3.7.1",
f522d7b9 57 "deep-clone": "^4.0.0",
896570f7 58 "deepmerge": "^4.3.1",
a9aa1456 59 "just-clone": "^6.2.0",
896570f7 60 "just-merge": "^3.2.0",
6dce9ba7 61 "lodash": "^4.17.21",
5ae4976a 62 "microtime": "^3.1.1",
ce26b710 63 "uuid": "^9.0.0"
ed2968f2
JB
64 },
65 "devDependencies": {
62525846 66 "eslint": "^8.46.0",
d4afb723 67 "eslint-config-standard": "^17.1.0",
a2fd60ad 68 "eslint-define-config": "^1.23.0",
df76f9e9 69 "eslint-plugin-import": "^2.28.0",
a2fd60ad 70 "eslint-plugin-jsdoc": "^46.4.6",
98b827d5 71 "eslint-plugin-n": "^16.0.1",
7fd91296 72 "eslint-plugin-promise": "^6.1.1",
35ce7574 73 "husky": "^8.0.3",
b5bab6ee 74 "lint-staged": "^13.2.3",
9f4593d2 75 "prettier": "^3.0.1",
d4afb723 76 "standard": "^17.1.0",
77d3850e 77 "typescript": "^5.1.6"
ed2968f2
JB
78 }
79}