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