579225fc622fbd6f0fa314131456a67810ebea3e
[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 "repository": {
9 "type": "git",
10 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
11 },
12 "scripts": {
13 "prepare": "node prepare.js",
14 "benchmark:busy-wait": "node busy-wait.js",
15 "benchmark:empty-array": "node empty-array.js",
16 "benchmark:deep-clone-object": "node deep-clone-object.js",
17 "benchmark:shallow-clone-object": "node shallow-clone-object.js",
18 "benchmark:is-empty-object": "node is-empty-object.js",
19 "benchmark:is-undefined": "node is-undefined.js",
20 "benchmark:quick-select": "node quick-select.js",
21 "benchmark:max": "node max.js",
22 "benchmark:promise-handling": "node promise-handling.js",
23 "benchmark:fibonacci": "node fibonacci.js",
24 "benchmark:random": "node random.js",
25 "benchmark:uuid-generator": "node uuid-generator.js",
26 "format": "prettier . --cache --write; standard . --fix",
27 "lint": "eslint . --cache",
28 "lint:fix": "eslint . --cache --fix",
29 "test": "echo \"Error: no test specified\" && exit 1"
30 },
31 "author": "jerome-benoit",
32 "license": "MIT",
33 "dependencies": {
34 "benny": "^3.7.1",
35 "just-clone": "^6.2.0",
36 "lodash": "^4.17.21",
37 "microtime": "^3.1.1",
38 "uuid": "^9.0.0"
39 },
40 "devDependencies": {
41 "eslint": "^8.32.0",
42 "eslint-config-standard": "^17.0.0",
43 "eslint-define-config": "^1.14.0",
44 "eslint-plugin-import": "^2.27.4",
45 "eslint-plugin-jsdoc": "^39.6.4",
46 "eslint-plugin-n": "^15.6.1",
47 "eslint-plugin-promise": "^6.1.1",
48 "husky": "^8.0.3",
49 "lint-staged": "^13.1.0",
50 "prettier": "^2.8.3",
51 "standard": "^17.0.0",
52 "typescript": "^4.9.4"
53 }
54 }