UNPKG

@codspeed/benchmark.js-plugin

Version:

Benchmark.js compatibility layer for CodSpeed

46 lines 1.45 kB
{ "name": "@codspeed/benchmark.js-plugin", "version": "5.5.0", "description": "Benchmark.js compatibility layer for CodSpeed", "keywords": [ "codspeed", "benchmark", "benchmark.js", "performance" ], "main": "dist/index.cjs.js", "module": "dist/index.es5.js", "types": "dist/index.d.ts", "files": [ "dist" ], "author": "Arthur Pastel <arthur@codspeed.io>", "repository": "https://github.com/CodSpeedHQ/codspeed-node", "homepage": "https://codspeed.io", "license": "Apache-2.0", "devDependencies": { "@babel/preset-env": "^7.22.5", "@types/benchmark": "^2.1.2", "@types/lodash": "^4.14.195", "benchmark": "^2.1.4", "jest-mock-extended": "^3.0.4" }, "dependencies": { "@codspeed/core": "^5.5.0", "lodash": "^4.17.10" }, "peerDependencies": { "benchmark": "^2.1.0" }, "scripts": { "build": "NODE_NO_WARNINGS=1 rollup -c rollup.config.ts --configPlugin typescript", "test": "jest --passWithNoTests --silent", "test/integ": "jest --passWithNoTests --silent -c jest.config.integ.js", "lint": "eslint .", "typecheck": "tsc --noEmit --pretty", "format": "prettier --config ../../.prettierrc.json --ignore-path ../../.prettierignore --check .", "fix-format": "prettier --config ../../.prettierrc.json --ignore-path ../../.prettierignore --write .", "bench": "node -r esbuild-register benches/sample.ts", "clean": "rm -rf dist" } }