-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
61 lines (61 loc) · 1.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pidusage",
"version": "3.0.1",
"description": "Cross-platform process cpu % and memory usage of a PID",
"license": "MIT",
"homepage": "https://github.com/soyuka/pidusage",
"repository": "github:soyuka/pidusage",
"bugs": {
"url": "https://github.com/soyuka/pidusage/issues"
},
"author": "soyuka",
"contributors": [
"Simone Primarosa <simonepri@outlook.com> (https://simoneprimarosa.com)"
],
"main": "index.js",
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "standard",
"test": "nyc ava -m \"!*benchmark*\"",
"coverage": "codecov",
"bench": "ava -m \"*benchmark*\""
},
"dependencies": {
"safe-buffer": "^5.2.1"
},
"devDependencies": {
"ava": "^3.10.1",
"codecov": "^3.7.0",
"mockdate": "^2.0.5",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"pify": "^3.0.0",
"standard": "^16.0.4",
"string-to-stream": "^1.1.1",
"through": "^2.3.8",
"time-span": "^2.0.0"
},
"keywords": [
"pid",
"usage",
"ps",
"cpu",
"memory",
"proc"
],
"ava": {
"verbose": true
},
"nyc": {
"reporter": [
"lcovonly",
"text"
]
}
}