-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
56 lines (48 loc) · 1.12 KB
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
{
"name": "ms-task",
"description": "A Node .js wrapper for Microsoft Windows' tasklist and taskkill",
"version": "1.1.0",
"homepage": "https://github.com/mjhasbach/MS-Task",
"main": "lib/ms-task.js",
"private": false,
"dependencies": {
"csv": ">=0.4.0"
},
"devDependencies": {
"mocha": ">=1.20.0"
},
"scripts": {
"test": "node_modules/.bin/mocha"
},
"keywords": [
"Microsoft",
"Windows",
"tasklist",
"taskkill",
"process",
"ID",
"PID",
"search",
"find",
"kill",
"utility"
],
"repository": {
"type": "git",
"url": "https://github.com/mjhasbach/MS-Task.git"
},
"author": {
"name": "Matthew Hasbach",
"email": "hasbach.git@gmail.com",
"url": "https://github.com/mjhasbach"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mjhasbach/MS-Task/blob/master/LICENSE.txt"
}
],
"bugs": {
"url": "https://github.com/mjhasbach/MS-Task/issues"
}
}