benchmark-suite
Version:
A simple suite of benchmarking tests
61 lines (60 loc) • 1.4 kB
JSON
{
"name": "benchmark-suite",
"version": "1.3.2",
"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.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe",
"test": "mocha --no-timeouts test/**/*.test.*",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"eventemitter3": "*",
"expose-gc": "*",
"human-format": "*",
"pretty-bytes": "^5.6.0",
"stats-accumulator": "*"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*"
},
"engines": {
"node": ">=8"
},
"tsds": {
"source": "src/index.ts"
}
}