perf-insight
Version:
Performance benchmarking tool for NodeJS.
61 lines • 1.26 kB
JSON
{
"name": "perf-insight",
"version": "2.0.0",
"description": "Performance benchmarking tool for NodeJS.",
"type": "module",
"engines": {
"node": ">=20.18"
},
"bin": {
"insight": "./bin.mjs",
"perf-insight": "./bin.mjs"
},
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"keywords": [
"performance",
"benchmark",
"cli",
"node",
"tool"
],
"author": {
"name": "Street Side Software",
"url": "https://github.com/streetsidesoftware"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/perf-insight/issues"
},
"homepage": "https://github.com/streetsidesoftware/perf-insight#readme",
"license": "MIT",
"devDependencies": {
"lorem-ipsum": "^2.0.8"
},
"dependencies": {
"as-table": "^1.0.55",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"globby": "^14.1.0",
"ora": "^8.2.0"
},
"files": [
"bin.mjs",
"dist/**/*.mjs",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.mts",
"!**/*.test.*",
"!**/*.map"
],
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"coverage": "vitest run --coverage",
"app": "node ./bin.mjs",
"test": "vitest run",
"test:watch": "vitest"
}
}