22b05cf3e5290f0e3357c63bd1590014dc1f3ac9
[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 "pnpm": ">=8.6.0"
8 },
9 "volta": {
10 "node": "20.3.1",
11 "pnpm": "8.6.5"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
16 },
17 "funding": [
18 {
19 "type": "patreon",
20 "url": "https://www.patreon.com/fraggle_"
21 },
22 {
23 "type": "github",
24 "url": "https://github.com/sponsors/jerome-benoit"
25 }
26 ],
27 "scripts": {
28 "preinstall": "npx --yes only-allow pnpm",
29 "prepare": "node prepare.js",
30 "benchmark:busy-wait": "node busy-wait.js",
31 "benchmark:empty-array": "node empty-array.js",
32 "benchmark:deep-clone-object": "node deep-clone-object.js",
33 "benchmark:shallow-clone-object": "node shallow-clone-object.js",
34 "benchmark:is-empty-object": "node is-empty-object.js",
35 "benchmark:is-undefined": "node is-undefined.js",
36 "benchmark:quick-select": "node quick-select.js",
37 "benchmark:max": "node max.js",
38 "benchmark:promise-handling": "node promise-handling.js",
39 "benchmark:fibonacci": "node fibonacci.js",
40 "benchmark:random": "node random.js",
41 "benchmark:uuid-generator": "node uuid-generator.js",
42 "format": "prettier . --cache --write; standard . --fix",
43 "lint": "eslint . --cache",
44 "lint:fix": "eslint . --cache --fix",
45 "test": "echo \"Error: no test specified\" && exit 1"
46 },
47 "author": "jerome-benoit",
48 "license": "MIT",
49 "dependencies": {
50 "benny": "^3.7.1",
51 "just-clone": "^6.2.0",
52 "lodash": "^4.17.21",
53 "microtime": "^3.1.1",
54 "uuid": "^9.0.0"
55 },
56 "devDependencies": {
57 "eslint": "^8.43.0",
58 "eslint-config-standard": "^17.1.0",
59 "eslint-define-config": "^1.21.0",
60 "eslint-plugin-import": "^2.27.5",
61 "eslint-plugin-jsdoc": "^46.4.0",
62 "eslint-plugin-n": "^16.0.1",
63 "eslint-plugin-promise": "^6.1.1",
64 "husky": "^8.0.3",
65 "lint-staged": "^13.2.3",
66 "prettier": "^2.8.8",
67 "standard": "^17.1.0",
68 "typescript": "^5.1.5"
69 }
70 }