-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 901 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "alfred-fkill",
"version": "0.4.1",
"description": "Alfred 3 workflow to fabulously search and kill processes",
"license": "MIT",
"repository": "SamVerschueren/alfred-fkill",
"author": {
"name": "Sam Verschueren",
"email": "[email protected]",
"url": "github.com/SamVerschueren"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"index.js",
"kill.js",
"lib",
"icon.png",
"info.plist"
],
"keywords": [
"alfred",
"workflow",
"alfy",
"fkill",
"kill",
"killing",
"killall",
"taskkill",
"sigkill",
"sigterm",
"force"
],
"dependencies": {
"alfy": "^0.8.0",
"fkill": "^5.3.0",
"pid-from-port": "^1.1.2",
"ps-list": "^4.0.0"
},
"devDependencies": {
"alfy-test": "^0.3.0",
"ava": "*",
"get-port": "^3.2.0",
"xo": "*"
}
}