UNPKG

2.45 kBJSONView Raw
1{
2 "name": "systeminformation",
3 "version": "4.27.8",
4 "description": "Simple system and OS information library",
5 "license": "MIT",
6 "author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
7 "homepage": "https://systeminformation.io",
8 "main": "./lib/index.js",
9 "bin": "./lib/cli.js",
10 "types": "./lib/index.d.ts",
11 "scripts": {
12 "clean": "rimraf dist",
13 "test-bare": "npm run compile && mocha ./test/**/*.test.js",
14 "compile": "tsc",
15 "watch": "tsc -w",
16 "test": "nyc mocha --require ts-node/register --require source-map-support/register ./test/**/*.test.ts",
17 "coverage": "nyc report --reporter=text-lcov"
18 },
19 "files": [
20 "lib/"
21 ],
22 "keywords": [
23 "system information",
24 "sysinfo",
25 "monitor",
26 "monitoring",
27 "os",
28 "linux",
29 "osx",
30 "windows",
31 "freebsd",
32 "openbsd",
33 "netbsd",
34 "cpu",
35 "cpuload",
36 "physical cores",
37 "logical cores",
38 "processor",
39 "cores",
40 "threads",
41 "socket type",
42 "memory",
43 "file system",
44 "fsstats",
45 "diskio",
46 "block devices",
47 "netstats",
48 "network",
49 "network interfaces",
50 "network connections",
51 "network stats",
52 "iface",
53 "processes",
54 "users",
55 "internet",
56 "battery",
57 "docker",
58 "docker stats",
59 "docker processes",
60 "graphics",
61 "graphic card",
62 "graphic controller",
63 "gpu",
64 "display",
65 "smart",
66 "disk layout",
67 "wifi",
68 "wifinetworks",
69 "virtual box",
70 "virtualbox",
71 "vm"
72 ],
73 "repository": {
74 "type": "git",
75 "url": "https://github.com/sebhildebrandt/systeminformation.git"
76 },
77 "funding": {
78 "type": "Buy me a coffee",
79 "url": "https://www.buymeacoffee.com/systeminfo"
80 },
81 "os": [
82 "darwin",
83 "linux",
84 "win32",
85 "freebsd",
86 "openbsd",
87 "netbsd",
88 "sunos"
89 ],
90 "engines": {
91 "node": ">=4.0.0"
92 },
93 "devDependencies": {
94 "@types/chai": "^4.1.7",
95 "@types/mocha": "^5.2.5",
96 "@types/node": "^10.12.18",
97 "chai": "^4.2.0",
98 "coveralls": "^3.0.2",
99 "mocha": "^5.2.0",
100 "nyc": "^13.1.0",
101 "rimraf": "^2.6.2",
102 "source-map-support": "^0.5.9",
103 "ts-node": "^7.0.1",
104 "typescript": "^3.2.2"
105 },
106 "nyc": {
107 "extension": [
108 ".js"
109 ],
110 "include": [
111 "lib/**"
112 ],
113 "exclude": [
114 "**/*.d.ts"
115 ],
116 "reporter": [
117 "html",
118 "text"
119 ],
120 "all": true
121 }
122}