{
    "name": "benchmark-node",
    "version": "0.7.3",
    "description": "A Node.js benchmarking library for accurate performance test.",
    "main": "lib-commonjs/index.js",
    "module": "lib/index.js",
    "types": "lib/index.d.ts",
    "homepage": "https://github.com/yifanwww/benchmark-node#readme",
    "license": "MIT",
    "author": "yifanwww <yifanw1101@gmail.com> (https://github.com/yifanwww)",
    "bugs": {
        "url": "https://github.com/yifanwww/benchmark-node/issues"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/yifanwww/benchmark-node.git"
    },
    "scripts": {
        "build": "concurrently -n cjs,esm,types \"npm run build:cjs\" \"npm run build:esm\" \"npm run build:types\"",
        "build:cjs": "tsc --project tsconfigs/tsconfig.cjs.json",
        "build:esm": "tsc --project tsconfigs/tsconfig.esm.json",
        "build:types": "tsc --project tsconfigs/tsconfig.types.json",
        "build-test": "tsc --project tsconfigs/tsconfig.test.json",
        "clean": "rimraf dist lib lib-commonjs tsconfigs/*.tsbuildinfo",
        "clean-test": "rimraf dist",
        "dev": "npm run build-test -- --watch",
        "format": "prettier --write \"**/*.{cjs,js,mjs,json,ts,yaml,yml}\"",
        "lint": "eslint .",
        "pre-commit": "lint-staged",
        "prepare": "husky install",
        "test": "node scripts/unit-test.js --color",
        "test-full": "node scripts/unit-test.js --color"
    },
    "engines": {
        "node": ">=8.3.0"
    },
    "dependencies": {
        "@stdlib/stats-base-dists-t-quantile": "^0.0.6",
        "chalk": "^4.1.2"
    },
    "devDependencies": {
        "@babel/preset-env": "^7.18.2",
        "@babel/preset-typescript": "^7.17.12",
        "@types/jest": "^27.5.2",
        "@types/node": "^16.11.39",
        "@types/semver": "^7.3.12",
        "@typescript-eslint/eslint-plugin": "^5.27.1",
        "@typescript-eslint/experimental-utils": "^5.27.1",
        "@typescript-eslint/parser": "^5.27.1",
        "@typescript-eslint/scope-manager": "^5.27.1",
        "@typescript-eslint/types": "^5.27.1",
        "@typescript-eslint/typescript-estree": "^5.27.1",
        "@typescript-eslint/visitor-keys": "^5.27.1",
        "babel-jest": "^27.5.1",
        "concurrently": "^7.2.1",
        "eslint": "^8.17.0",
        "eslint-config-airbnb-base": "^15.0.0",
        "eslint-config-airbnb-typescript": "^17.0.0",
        "eslint-config-prettier": "^8.5.0",
        "eslint-plugin-import": "^2.26.0",
        "eslint-plugin-jest": "^26.5.3",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-prettier": "^4.0.0",
        "husky": "^8.0.1",
        "jest": "^27.5.1",
        "lint-staged": "^13.0.1",
        "prettier": "2.6.2",
        "rimraf": "^3.0.2",
        "semver": "^7.3.7",
        "typescript": "4.7.3"
    },
    "keywords": [
        "benchmark",
        "benchmarking",
        "bench",
        "perf",
        "performance",
        "analysis",
        "profiler",
        "measure",
        "node",
        "lib",
        "library"
    ]
}
