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