forked from accnops/os-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 903 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
{
"name": "os-utils",
"version": "0.0.14",
"description": "an operating-system utility library",
"url": "http://oscar-mejia.com",
"main": "./lib/osutils.js",
"directories": {
"test": "./test"
},
"scripts": {
"test": "node test/test.js",
"test:summary": "node test/testSummary.js",
"lint": "npx eslint lib/** test/**",
"lint:fix": "npx eslint --fix lib/** test/**"
},
"repository": {
"type": "git",
"url": "https://github.com/oscmejia/os-utils"
},
"keywords": [
"os",
"operating system",
"server",
"memory",
"cpu",
"monitor",
"stats",
"harddrive"
],
"author": {
"name": "Oscar Mejia",
"email": "oscmejia@vovsolutions.com"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.24.0"
}
}