Pin volta node version
[benchmarks-js.git] / package.json
1 {
2 "name": "benchmarks-js",
3 "version": "0.0.1",
4 "description": "JS code pattern benchmarks",
5 "engines": {
6 "node": ">=14.x"
7 },
8 "volta": {
9 "node": "20.0.0"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
14 },
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 ],
25 "scripts": {
26 "preinstall": "npx only-allow pnpm",
27 "prepare": "node prepare.js",
28 "benchmark:busy-wait": "node busy-wait.js",
29 "benchmark:empty-array": "node empty-array.js",
30 "benchmark:deep-clone-object": "node deep-clone-object.js",
31 "benchmark:shallow-clone-object": "node shallow-clone-object.js",
32 "benchmark:is-empty-object": "node is-empty-object.js",
33 "benchmark:is-undefined": "node is-undefined.js",
34 "benchmark:quick-select": "node quick-select.js",
35 "benchmark:max": "node max.js",
36 "benchmark:promise-handling": "node promise-handling.js",
37 "benchmark:fibonacci": "node fibonacci.js",
38 "benchmark:random": "node random.js",
39 "benchmark:uuid-generator": "node uuid-generator.js",
40 "format": "prettier . --cache --write; standard . --fix",
41 "lint": "eslint . --cache",
42 "lint:fix": "eslint . --cache --fix",
43 "test": "echo \"Error: no test specified\" && exit 1"
44 },
45 "author": "jerome-benoit",
46 "license": "MIT",
47 "dependencies": {
48 "benny": "^3.7.1",
49 "just-clone": "^6.2.0",
50 "lodash": "^4.17.21",
51 "microtime": "^3.1.1",
52 "uuid": "^9.0.0"
53 },
54 "devDependencies": {
55 "eslint": "^8.38.0",
56 "eslint-config-standard": "^17.0.0",
57 "eslint-define-config": "^1.18.0",
58 "eslint-plugin-import": "^2.27.5",
59 "eslint-plugin-jsdoc": "^43.0.6",
60 "eslint-plugin-n": "^15.7.0",
61 "eslint-plugin-promise": "^6.1.1",
62 "husky": "^8.0.3",
63 "lint-staged": "^13.2.1",
64 "prettier": "^2.8.7",
65 "standard": "^17.0.0",
66 "typescript": "^5.0.4"
67 }
68 }