Pin volta node 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
JB
5 "engines": {
6 "node": ">=14.x"
7 },
44c67c12
JB
8 "volta": {
9 "node": "20.0.0"
10 },
ed2968f2
JB
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
14 },
ce6a679c
JB
15 "funding": [
16 {
17 "type": "patreon",
18 "url": "https://www.patreon.com/fraggle_"
19 },
20 {
21 "type": "github",
22 "url": "https://github.com/sponsors/jerome-benoit"
23 }
24 ],
ed2968f2 25 "scripts": {
fe711f69 26 "preinstall": "npx only-allow pnpm",
51c84d4b 27 "prepare": "node prepare.js",
ed2968f2 28 "benchmark:busy-wait": "node busy-wait.js",
2deff321 29 "benchmark:empty-array": "node empty-array.js",
57f62217
JB
30 "benchmark:deep-clone-object": "node deep-clone-object.js",
31 "benchmark:shallow-clone-object": "node shallow-clone-object.js",
bb578730 32 "benchmark:is-empty-object": "node is-empty-object.js",
adad2e80 33 "benchmark:is-undefined": "node is-undefined.js",
ed2968f2 34 "benchmark:quick-select": "node quick-select.js",
8e5cf49d 35 "benchmark:max": "node max.js",
ed2968f2 36 "benchmark:promise-handling": "node promise-handling.js",
a9c78d5d 37 "benchmark:fibonacci": "node fibonacci.js",
aa697b2f 38 "benchmark:random": "node random.js",
5ae4976a 39 "benchmark:uuid-generator": "node uuid-generator.js",
586ba8db 40 "format": "prettier . --cache --write; standard . --fix",
7fd91296
JB
41 "lint": "eslint . --cache",
42 "lint:fix": "eslint . --cache --fix",
ed2968f2
JB
43 "test": "echo \"Error: no test specified\" && exit 1"
44 },
45 "author": "jerome-benoit",
46 "license": "MIT",
47 "dependencies": {
8e5cf49d 48 "benny": "^3.7.1",
a9aa1456 49 "just-clone": "^6.2.0",
6dce9ba7 50 "lodash": "^4.17.21",
5ae4976a 51 "microtime": "^3.1.1",
ce26b710 52 "uuid": "^9.0.0"
ed2968f2
JB
53 },
54 "devDependencies": {
4e3bc0c7 55 "eslint": "^8.38.0",
7fd91296 56 "eslint-config-standard": "^17.0.0",
ce437957 57 "eslint-define-config": "^1.18.0",
2df265c4 58 "eslint-plugin-import": "^2.27.5",
549b1a49 59 "eslint-plugin-jsdoc": "^43.0.6",
90c6e278 60 "eslint-plugin-n": "^15.7.0",
7fd91296 61 "eslint-plugin-promise": "^6.1.1",
35ce7574 62 "husky": "^8.0.3",
306777d7 63 "lint-staged": "^13.2.1",
b08bc5bd 64 "prettier": "^2.8.7",
51c84d4b 65 "standard": "^17.0.0",
45831d54 66 "typescript": "^5.0.4"
ed2968f2
JB
67 }
68}