UNPKG

@esmj/monitor

Version:

Node.js performance measurement metrics (cpu, memory, event loop, gc)

81 lines (80 loc) 2.09 kB
{ "name": "@esmj/monitor", "version": "0.5.4", "description": "Node.js performance measurement metrics (cpu, memory, event loop, gc)", "keywords": [ "memory", "cpu", "usage", "metrics", "monitor", "node", "utilization", "event-loop", "gc" ], "main": "dist/index", "module": "dist/index", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "scripts": { "preversion": "npm test && npm run lint", "version": "npm run changelog && git add CHANGELOG.md", "postversion": "git push && git push --tags", "build": "node_modules/.bin/rollup -c --bundleConfigAsCjs", "test": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --no-watchman -c ./jest.config.js", "lint": "biome check --no-errors-on-unmatched", "lint:fix": "npm run lint -- --fix --unsafe", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1", "commit": "git-cz", "prepare": "husky install" }, "author": "Miroslav Jancarik", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/mjancarik/esmj-monitor.git" }, "bugs": { "url": "https://github.com/mjancarik/esmj-monitor/issues" }, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "devDependencies": { "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@rollup/plugin-node-resolve": "^16.0.1", "@biomejs/biome": "1.9.4", "commitizen": "^4.3.1", "conventional-changelog-cli": "^5.0.0", "cz-conventional-changelog": "^3.3.0", "git-cz": "^4.9.0", "husky": "^9.1.7", "jest": "^29.7.0", "lint-staged": "^16.1.0", "rollup": "^4.41.1", "to-mock": "^1.6.2" }, "lint-staged": { "**/*.{js,mjs}": "npm run lint" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "config": { "commitizen": { "path": "git-cz" } }, "dependencies": { "@esmj/observable": "^0.2.1" } }