blob: 2574b8bf63664469a36aa7b8b6f91f298769dfa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"name": "busboy-benchmarks",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"getopts": "^2.3.0",
"photofinish": "^1.8.0",
"systeminformation": "^5.9.15",
"tslib": "^2.3.1",
"validation-utils": "^7.0.0"
},
"scripts": {
"install-node": "nvm install 17.2.0 && nvm install 16.13.1 && nvm install 14.18.2 && nvm install 12.22.7",
"benchmark-busboy": "node busboy/executioner.js -c 0",
"benchmark-fastify": "node busboy/executioner.js -c 1",
"benchmark-all": "npm run benchmark-busboy -- -p high && npm run benchmark-fastify -- -p high",
"benchmark-all-medium": "npm run benchmark-busboy -- -p medium && npm run benchmark-fastify -- -p medium",
"benchmark-all-low": "npm run benchmark-busboy -- -p low && npm run benchmark-fastify -- -p low",
"combine-results": "node common/resultsCombinator.js -r _results -p 6"
}
}
|