-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 998 Bytes
/
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
{
"name": "pi-boinc-monitor",
"version": "1.1.2",
"description": "Get current BOINC tasks, CPU load, and temperature in your Raspberry Pi command line.",
"keywords": [
"raspberry",
"raspberry pi",
"boinc",
"cli"
],
"homepage": "https://github.com/monosux/raspberry-pi-boinc-js-monitor",
"repository": {
"type": "git",
"url": "https://github.com/monosux/raspberry-pi-boinc-js-monitor.git"
},
"bugs": {
"url": "https://github.com/monosux/raspberry-pi-boinc-js-monitor/issues"
},
"author": "Sergey Alexeev <alexeev.sergey.a@gmail.com>",
"license": "MIT",
"main": "index.js",
"bin": {
"pi-boinc-monitor": "index.js"
},
"scripts": {
"lint": "eslint index.js --fix",
"prettier": "prettier index.js --write"
},
"dependencies": {
"asciichart": "^1.5.25",
"chalk": "^4.1.0",
"chalk-table": "^1.0.2",
"set-interval-async": "^1.0.34"
},
"devDependencies": {
"eslint": "^7.17.0",
"prettier": "2.2.1"
}
}