benchmark-suite
Version:
A simple suite of benchmarking tests
60 lines (59 loc) • 1.43 kB
JSON
{
"name": "benchmark-suite",
"version": "1.2.11",
"description": "A simple suite of benchmarking tests",
"keywords": [
"benchmark",
"performance",
"mem",
"ops",
"speed",
"test"
],
"homepage": "https://github.com/kmalakoff/benchmark-suite#readme",
"bugs": {
"url": "https://github.com/kmalakoff/benchmark-suite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmalakoff/benchmark-suite.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"expose-gc": "^1.0.0",
"human-format": "^1.2.1",
"pretty-bytes": "^5.6.0",
"stats-accumulator": "^1.2.15"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*"
},
"engines": {
"node": ">=8"
},
"tsds": {
"source": "src/index.mjs"
}
}