123 lines
2.4 KiB
JSON
123 lines
2.4 KiB
JSON
{
|
|
"name": "systeminformation",
|
|
"version": "4.26.12",
|
|
"description": "Simple system and OS information library",
|
|
"license": "MIT",
|
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|
|
"homepage": "https://systeminformation.io",
|
|
"main": "./lib/index.js",
|
|
"bin": "./lib/cli.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"test-bare": "npm run compile && mocha ./test/**/*.test.js",
|
|
"compile": "tsc",
|
|
"watch": "tsc -w",
|
|
"test": "nyc mocha --require ts-node/register --require source-map-support/register ./test/**/*.test.ts",
|
|
"coverage": "nyc report --reporter=text-lcov"
|
|
},
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"keywords": [
|
|
"system information",
|
|
"sysinfo",
|
|
"monitor",
|
|
"monitoring",
|
|
"os",
|
|
"linux",
|
|
"osx",
|
|
"windows",
|
|
"freebsd",
|
|
"openbsd",
|
|
"netbsd",
|
|
"cpu",
|
|
"cpuload",
|
|
"physical cores",
|
|
"logical cores",
|
|
"processor",
|
|
"cores",
|
|
"threads",
|
|
"socket type",
|
|
"memory",
|
|
"file system",
|
|
"fsstats",
|
|
"diskio",
|
|
"block devices",
|
|
"netstats",
|
|
"network",
|
|
"network interfaces",
|
|
"network connections",
|
|
"network stats",
|
|
"iface",
|
|
"processes",
|
|
"users",
|
|
"internet",
|
|
"battery",
|
|
"docker",
|
|
"docker stats",
|
|
"docker processes",
|
|
"graphics",
|
|
"graphic card",
|
|
"graphic controller",
|
|
"gpu",
|
|
"display",
|
|
"smart",
|
|
"disk layout",
|
|
"wifi",
|
|
"wifinetworks",
|
|
"virtual box",
|
|
"virtualbox",
|
|
"vm"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sebhildebrandt/systeminformation.git"
|
|
},
|
|
"funding": {
|
|
"type": "Buy me a coffee",
|
|
"url": "https://www.buymeacoffee.com/systeminfo"
|
|
},
|
|
"os": [
|
|
"darwin",
|
|
"linux",
|
|
"win32",
|
|
"freebsd",
|
|
"openbsd",
|
|
"netbsd",
|
|
"sunos"
|
|
],
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.1.7",
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/node": "^10.12.18",
|
|
"chai": "^4.2.0",
|
|
"coveralls": "^3.0.2",
|
|
"mocha": "^5.2.0",
|
|
"nyc": "^13.1.0",
|
|
"rimraf": "^2.6.2",
|
|
"source-map-support": "^0.5.9",
|
|
"ts-node": "^7.0.1",
|
|
"typescript": "^3.2.2"
|
|
},
|
|
"nyc": {
|
|
"extension": [
|
|
".js"
|
|
],
|
|
"include": [
|
|
"lib/**"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts"
|
|
],
|
|
"reporter": [
|
|
"html",
|
|
"text"
|
|
],
|
|
"all": true
|
|
}
|
|
}
|