build(deps-dev): apply updates
[benchmarks-js.git] / package.json
CommitLineData
ed2968f2 1{
58932f2d 2 "$schema": "https://json.schemastore.org/package",
ed2968f2
JB
3 "name": "benchmarks-js",
4 "version": "0.0.1",
5 "description": "JS code pattern benchmarks",
9d7eeee7 6 "engines": {
393aec7b 7 "node": ">=18.0.0",
3e2fedcb 8 "pnpm": ">=9.0.0"
9d7eeee7 9 },
a04670ee 10 "packageManager": "pnpm@9.1.0",
3efb941c 11 "type": "module",
44c67c12 12 "volta": {
ddded53c 13 "node": "22.1.0",
a04670ee 14 "pnpm": "9.1.0"
44c67c12 15 },
ed2968f2
JB
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
19 },
ce6a679c
JB
20 "funding": [
21 {
22 "type": "patreon",
23 "url": "https://www.patreon.com/fraggle_"
24 },
25 {
26 "type": "github",
27 "url": "https://github.com/sponsors/jerome-benoit"
28 }
29 ],
3149ea62
JB
30 "pnpm": {
31 "overrides": {
32 "semver": "^7.5.3"
33 }
34 },
ed2968f2 35 "scripts": {
d124d21a 36 "prepare": "node prepare.mjs",
f522d7b9 37 "benchmark:busy-wait": "node busy-wait.mjs",
f522d7b9 38 "benchmark:deep-clone-object": "node deep-clone-object.mjs",
896570f7 39 "benchmark:deep-merge-object": "node deep-merge-object.mjs",
26792d4d 40 "benchmark:empty-array": "node empty-array.mjs",
f522d7b9
JB
41 "benchmark:shallow-clone-object": "node shallow-clone-object.mjs",
42 "benchmark:is-empty-object": "node is-empty-object.mjs",
43 "benchmark:is-undefined": "node is-undefined.mjs",
bf2f087f 44 "benchmark:json-stringify": "node json-stringify.mjs",
f522d7b9
JB
45 "benchmark:quick-select": "node quick-select.mjs",
46 "benchmark:max": "node max.mjs",
a6affe16 47 "benchmark:min": "node min.mjs",
bf2f087f 48 "benchmark:object-hash": "node object-hash.mjs",
f522d7b9
JB
49 "benchmark:promise-handling": "node promise-handling.mjs",
50 "benchmark:fibonacci": "node fibonacci.mjs",
51 "benchmark:random": "node random.mjs",
52 "benchmark:uuid-generator": "node uuid-generator.mjs",
f913c68c 53 "format": "biome format . --write; standard . --fix",
7fd91296
JB
54 "lint": "eslint . --cache",
55 "lint:fix": "eslint . --cache --fix",
ed2968f2
JB
56 "test": "echo \"Error: no test specified\" && exit 1"
57 },
dfdb4c56
JB
58 "author": {
59 "name": "Jérôme Benoit",
60 "email": "jerome.benoit@piment-noir.org",
61 "url": "https://github.com/jerome-benoit"
62 },
ed2968f2
JB
63 "license": "MIT",
64 "dependencies": {
f522d7b9 65 "deep-clone": "^4.0.0",
896570f7 66 "deepmerge": "^4.3.1",
bf2f087f 67 "hash-object": "^5.0.1",
a9aa1456 68 "just-clone": "^6.2.0",
6dce9ba7 69 "lodash": "^4.17.21",
bf2f087f
JB
70 "node-object-hash": "^3.0.0",
71 "object-hash": "^3.0.0",
26981534 72 "rambda": "^9.2.0",
9fe780df 73 "tatami-ng": "^0.4.4",
50dbfd53 74 "uuid": "^9.0.1"
ed2968f2
JB
75 },
76 "devDependencies": {
a04670ee 77 "@biomejs/biome": "^1.7.3",
c8a73865 78 "@commitlint/cli": "^19.3.0",
0b00d9c0 79 "@commitlint/config-conventional": "^19.2.2",
8870a6e0 80 "eslint": "^8.57.0",
d4afb723 81 "eslint-config-standard": "^17.1.0",
3efb941c 82 "eslint-define-config": "^2.1.0",
de1d585c 83 "eslint-plugin-import": "^2.29.1",
9f7a831e 84 "eslint-plugin-jsdoc": "^48.2.3",
678287ee 85 "eslint-plugin-n": "^17.4.0",
7fd91296 86 "eslint-plugin-promise": "^6.1.1",
45d7b178 87 "eslint-plugin-simple-import-sort": "^12.1.0",
bfca901b 88 "husky": "^9.0.11",
715c214e 89 "lint-staged": "^15.2.2",
6342c364 90 "prettier": "^3.2.5",
f789ae57 91 "standard": "^17.1.0"
ed2968f2
JB
92 }
93}