UNPKG

cronometro

Version:

Simple benchmarking suite powered by HDR histograms.

61 lines (60 loc) 1.63 kB
{ "name": "cronometro", "version": "5.3.0", "description": "Simple benchmarking suite powered by HDR histograms.", "homepage": "https://sw.cowtech.it/cronometro", "repository": { "type": "git", "url": "git+https://github.com/ShogunPanda/cronometro.git" }, "keywords": [ "benchmark", "hdr" ], "bugs": { "url": "https://github.com/ShogunPanda/cronometro/issues" }, "author": "Shogun <shogun@cowtech.it>", "license": "ISC", "private": false, "files": [ "dist", "CHANGELOG.md", "LICENSE.md", "README.md" ], "type": "module", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "build": "tsc -p .", "postbuild": "npm run lint", "format": "prettier -w src test", "lint": "eslint --cache", "typecheck": "tsc -p . --noEmit", "test": "c8 -c test/config/c8-local.json node --env-file=test/config/env --test test/*.test.ts", "test:ci": "c8 -c test/config/c8-ci.json node --env-file=test/config/env --test test/*.test.ts", "ci": "npm run build && npm run test:ci", "prepublishOnly": "npm run ci", "postpublish": "git push origin && git push origin -f --tags" }, "dependencies": { "acquerello": "^3.0.1", "hdr-histogram-js": "^3.0.0", "table": "^6.9.0" }, "devDependencies": { "@cowtech/eslint-config": "10.4.0", "@types/node": "^22.10.2", "c8": "^10.1.3", "cleaner-spec-reporter": "^0.3.1", "cross-env": "^7.0.3", "eslint": "^9.17.0", "prettier": "^3.4.2", "proxyquire": "^2.1.3", "typescript": "^5.7.2" }, "engines": { "node": ">= 22.6.0" } }