-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.49 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "vscode-taskkill",
"displayName": "Task Kill",
"description": "Allows killing processes that hang on specific network ports easily",
"publisher": "Shynet",
"version": "0.0.65",
"icon": "images/icon.png",
"keywords": [
"taskkill",
"port",
"network",
"lsof",
"netstat"
],
"repository": {
"type": "git",
"url": "https://github.com/shy2net/vscode-taskkill"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.showActiveNetworkTasks",
"onCommand:extension.forceKillActiveNetworkTasks",
"onCommand:extension.killActiveNetworkTask"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.showActiveNetworkTasks",
"title": "Task Kill: Show active network tasks"
},
{
"command": "extension.forceKillActiveNetworkTasks",
"title": "Task Kill: Kill all active network tasks"
},
{
"command": "extension.killActiveNetworkTask",
"title": "Task Kill: Kill an active network task (by port number)"
}
],
"configuration": {
"type": "object",
"title": "Task Kill Configurations",
"properties": {
"taskkill.interestingPorts": {
"type": "array",
"default": [
3000,
4200,
8000
],
"description": "An array of ports to be marked as interesting and will appear on top of the task kill list and killed automatically with the extension.forceKillActiveNetworkTask command."
}
}
},
"keybindings": [
{
"command": "extension.killActiveNetworkTask",
"key": "ctrl+numpad_decimal",
"mac": "cmd+numpad_decimal"
},
{
"command": "extension.showActiveNetworkTasks",
"key": "ctrl+delete ctrl+shift",
"mac": "cmd+delete cmd+shift"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/getos": "^3.0.0",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"semantic-release": "^15.13.3",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"getos": "^3.1.1",
"table-parser": "^1.0.1"
}
}