-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "pimatic-sysinfo",
"description": "pimatic plugin for displaying system and process information such as CPU and Memory usage",
"author": "Oliver Schneider <oliverschneider89+sweetpi@gmail.com> (http://pimatic.org)",
"license": "GPL-2.0",
"main": "sysinfo",
"files": [
"LICENSE",
"sysinfo.coffee",
"README.md",
"sysinfo-config-schema.coffee",
"device-config-schema.coffee",
"icon.svg"
],
"version": "0.9.6",
"homepage": "http://github.com/pimatic/pimatic-sysinfo",
"repository": {
"type": "git",
"url": "git://github.com/pimatic/pimatic-sysinfo.git"
},
"configSchema": "sysinfo-config-schema.coffee",
"icon": "icon.svg",
"keywords": [
"pimatic",
"pimatic-plugin",
"system-info",
"sysinfo",
"monitoring",
"memory-usage",
"cpu-monitoring",
"network-monitoring"
],
"dependencies": {
"systeminformation": "^4.1.4"
},
"bundledDependencies": [
"systeminformation"
],
"peerDependencies": {
"pimatic": "0.9.*"
},
"engines": {
"node": ">=4",
"npm": ">=2"
}
}