forked from sindresorhus/tasklist
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 769 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 769 Bytes
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
{
"name": "tasklist",
"version": "4.0.2",
"description": "Wrapper for the Windows `tasklist` command. Returns a list of apps and services with their Process ID (PID) for all tasks running on either a local or a remote computer.",
"license": "MIT",
"repository": "sindresorhus/tasklist",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"tasklist",
"task",
"list",
"windows",
"win",
"win32",
"pid",
"process",
"processes",
"services"
],
"dependencies": {
"neat-csv": "^5.0.0",
"sec": "^1.0.0"
},
"devDependencies": {
"ava": "^2.1.0",
"xo": "^0.24.0"
}
}