@esmj/monitor
Version:
Node.js performance measurement metrics (cpu, memory, event loop, gc)
83 lines (82 loc) • 2.15 kB
JSON
{
"name": "@esmj/monitor",
"version": "0.9.0",
"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.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"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",
"dev": "node_modules/.bin/rollup --watch -c --bundleConfigAsCjs",
"build": "node_modules/.bin/tsup --dts",
"test": "node --test --experimental-strip-types",
"test:watch": "npm run test -- --watch",
"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": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@rollup/plugin-node-resolve": "^16.0.1",
"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",
"lint-staged": "^16.1.0",
"to-mock": "^1.6.2",
"tsup": "^8.5.0"
},
"lint-staged": {
"**/*.{js,mjs}": "npm run lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"dependencies": {
"@esmj/observable": "^0.4.0"
}
}