-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"$schema": "https://json.schemastore.org/package",
"name": "benchmarks-js",
"version": "0.0.1",
"description": "JS code pattern benchmarks",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"type": "module",
"volta": {
"node": "22.11.0",
"pnpm": "9.14.4"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git://github.com/jerome-benoit/benchmarks-js.git"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/fraggle_"
},
{
"type": "github",
"url": "https://github.com/sponsors/jerome-benoit"
}
],
"pnpm": {
"overrides": {
"semver": "^7.5.3"
}
},
"scripts": {
"prepare": "node prepare.mjs",
"benchmark:busy-wait": "node busy-wait.mjs",
"benchmark:deep-clone-object": "node deep-clone-object.mjs",
"benchmark:deep-merge-object": "node deep-merge-object.mjs",
"benchmark:empty-array": "node empty-array.mjs",
"benchmark:shallow-clone-object": "node shallow-clone-object.mjs",
"benchmark:is-empty-object": "node is-empty-object.mjs",
"benchmark:is-undefined": "node is-undefined.mjs",
"benchmark:json-stringify": "node json-stringify.mjs",
"benchmark:quick-select": "node quick-select.mjs",
"benchmark:max": "node max.mjs",
"benchmark:min": "node min.mjs",
"benchmark:object-hash": "node object-hash.mjs",
"benchmark:promise-handling": "node promise-handling.mjs",
"benchmark:fibonacci": "node fibonacci.mjs",
"benchmark:random": "node random.mjs",
"benchmark:uuid-generator": "node uuid-generator.mjs",
"format": "biome format . --write; eslint . --cache --fix",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Jérôme Benoit",
"email": "[email protected]",
"url": "https://github.com/jerome-benoit"
},
"license": "MIT",
"dependencies": {
"deep-clone": "^4.0.0",
"deepmerge": "^4.3.1",
"hash-object": "^5.0.1",
"just-clone": "^6.2.0",
"lodash": "^4.17.21",
"node-object-hash": "^3.0.0",
"object-hash": "^3.0.0",
"rambda": "^9.4.0",
"tatami-ng": "^0.8.14",
"uuid": "^11.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-perfectionist": "^4.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"neostandard": "^0.11.9",
"prettier": "^3.4.1"
}
}