-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "current-processes",
"version": "0.2.1",
"description": "Get a snapshot of the currently running processes, OS-agnostic",
"main": "current-processes.js",
"scripts": {
"pretest": "node node_modules/jshint/bin/jshint .",
"test": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha",
"coveralls": "node test/run-coveralls coverage/lcov.info node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/branneman/current-processes.git"
},
"dependencies": {
"async": "^0.9.0",
"csv-parse": "0.0.5"
},
"devDependencies": {
"jshint": "^2.5.1",
"mocha": "^1.20.1",
"chai": "^1.9.1",
"rewire": "^2.0.1",
"istanbul": "^0.2.11",
"coveralls": "^2.10.1"
},
"author": "Bran van der Meer <branmovic@gmail.com> (http://bran.name/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/branneman/current-processes/issues"
},
"homepage": "https://github.com/branneman/current-processes",
"keywords": [
"processes",
"os",
"cpu",
"memory",
"usage",
"tasks",
"tasklist",
"top",
"vtop",
"ps",
"wmi",
"wmic"
]
}