feat: add JSON.stringify benchmark
[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": {
4c86f7e8 7 "node": ">=18.x",
faa41c13 8 "pnpm": ">=8.6.0"
9d7eeee7 9 },
3efb941c 10 "type": "module",
44c67c12 11 "volta": {
bd3cbd3c 12 "node": "20.12.0",
1617c0af 13 "pnpm": "8.15.5"
44c67c12 14 },
ed2968f2
JB
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
18 },
ce6a679c
JB
19 "funding": [
20 {
21 "type": "patreon",
22 "url": "https://www.patreon.com/fraggle_"
23 },
24 {
25 "type": "github",
26 "url": "https://github.com/sponsors/jerome-benoit"
27 }
28 ],
3149ea62
JB
29 "pnpm": {
30 "overrides": {
31 "semver": "^7.5.3"
32 }
33 },
ed2968f2 34 "scripts": {
80b94c60 35 "preinstall": "npx --yes only-allow pnpm",
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
JB
40 "benchmark:json-stringify": "node json-stringify.mjs",
41 "benchmark:empty-array": "node empty-array.mjs",
f522d7b9
JB
42 "benchmark:shallow-clone-object": "node shallow-clone-object.mjs",
43 "benchmark:is-empty-object": "node is-empty-object.mjs",
44 "benchmark:is-undefined": "node is-undefined.mjs",
45 "benchmark:quick-select": "node quick-select.mjs",
46 "benchmark:max": "node max.mjs",
a6affe16 47 "benchmark:min": "node min.mjs",
f522d7b9
JB
48 "benchmark:promise-handling": "node promise-handling.mjs",
49 "benchmark:fibonacci": "node fibonacci.mjs",
50 "benchmark:random": "node random.mjs",
51 "benchmark:uuid-generator": "node uuid-generator.mjs",
f913c68c 52 "format": "biome format . --write; standard . --fix",
7fd91296
JB
53 "lint": "eslint . --cache",
54 "lint:fix": "eslint . --cache --fix",
ed2968f2
JB
55 "test": "echo \"Error: no test specified\" && exit 1"
56 },
dfdb4c56
JB
57 "author": {
58 "name": "Jérôme Benoit",
59 "email": "jerome.benoit@piment-noir.org",
60 "url": "https://github.com/jerome-benoit"
61 },
ed2968f2
JB
62 "license": "MIT",
63 "dependencies": {
8e5cf49d 64 "benny": "^3.7.1",
f522d7b9 65 "deep-clone": "^4.0.0",
896570f7 66 "deepmerge": "^4.3.1",
a9aa1456 67 "just-clone": "^6.2.0",
6dce9ba7 68 "lodash": "^4.17.21",
5ae4976a 69 "microtime": "^3.1.1",
ab9a08f3
JB
70 "mitata": "^0.1.11",
71 "rambda": "^9.1.1",
50dbfd53 72 "uuid": "^9.0.1"
ed2968f2
JB
73 },
74 "devDependencies": {
b54c96ac 75 "@biomejs/biome": "^1.6.3",
1b7c76c1 76 "@commitlint/cli": "^19.2.1",
7ae0f4de 77 "@commitlint/config-conventional": "^19.1.0",
8870a6e0 78 "eslint": "^8.57.0",
d4afb723 79 "eslint-config-standard": "^17.1.0",
3efb941c 80 "eslint-define-config": "^2.1.0",
de1d585c 81 "eslint-plugin-import": "^2.29.1",
06fc1e2f 82 "eslint-plugin-jsdoc": "^48.2.2",
b1bab8e6 83 "eslint-plugin-n": "^16.6.2",
7fd91296 84 "eslint-plugin-promise": "^6.1.1",
0c01f51c 85 "eslint-plugin-simple-import-sort": "^12.0.0",
bfca901b 86 "husky": "^9.0.11",
715c214e 87 "lint-staged": "^15.2.2",
6342c364 88 "prettier": "^3.2.5",
f789ae57 89 "standard": "^17.1.0"
ed2968f2
JB
90 }
91}