-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "@naturalcycles/bench-lib",
"scripts": {
"prepare": "husky",
"build": "dev-lib build",
"test": "dev-lib test",
"lint": "dev-lib lint",
"bt": "dev-lib bt",
"lbt": "dev-lib lbt"
},
"dependencies": {
"@naturalcycles/js-lib": "^14",
"@naturalcycles/nodejs-lib": "^13",
"autocannon": "^8",
"benchmark": "^2"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^15",
"@types/benchmark": "^2",
"@types/express": "^5",
"@types/node": "^22",
"express": "^4",
"fastify": "^5",
"helmet": "^8",
"jest": "^29"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/bench-lib"
},
"engines": {
"node": ">=22.10.0"
},
"version": "1.6.1",
"description": "Benchmarking library, based on Benchmark.js and Autocannon",
"author": "Natural Cycles Team",
"license": "MIT"
}