rusage2
Version:
A binding around libuv's uv_getrusage/ getrusage(2)
40 lines (39 loc) • 880 B
JSON
{
"name": "rusage2",
"version": "1.0.0",
"author" : "Roman Klauke",
"description": "A binding around libuv's uv_getrusage/ getrusage(2)",
"keywords": [
"libuv",
"uv_getrusage",
"getrusage",
"binding",
"performance"
],
"homepage" :"https://github.com/romankl/node-getrusage",
"license": "MIT",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/romankl/node-getrusage.git"
},
"engines": {
"node": ">=4.0"
},
"scripts": {
"start": "node main.js",
"configure": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"test": "mocha --reporter spec test/*-test.js && eslint main.js"
},
"gypfile": true,
"dependencies": {
"bindings": "~1.2.1",
"nan": "^2.0.0"
},
"devDependencies": {
"eslint": "^2.10.0",
"mocha": "^2.4.5"
}
}