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