forked from Tyriar/vscode-sort-lines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sort-lines",
"displayName": "Sort lines",
"description": "Sorts lines of text",
"version": "1.1.0",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tyriar/vscode-sort-lines/issues"
},
"scripts": {
"test": "mocha"
},
"homepage": "https://github.com/Tyriar/vscode-sort-lines",
"repository": {
"type": "git",
"url": "https://github.com/Tyriar/vscode-sort-lines"
},
"publisher": "Tyriar",
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:sortLines.sortLines",
"onCommand:sortLines.sortLinesReverse",
"onCommand:sortLines.sortLinesCaseInsensitive",
"onCommand:sortLines.sortLinesUnique"
],
"main": "./lib/main",
"contributes": {
"commands": [
{
"command": "sortLines.sortLines",
"title": "Sort lines"
},
{
"command": "sortLines.sortLinesReverse",
"title": "Sort lines (reverse)"
},
{
"command": "sortLines.sortLinesCaseInsensitive",
"title": "Sort lines (case insensitive)"
},
{
"command": "sortLines.sortLinesUnique",
"title": "Sort lines (unique)"
}
],
"keybindings": [{
"command": "sortLines.sortLines",
"key": "f9",
"when": "editorTextFocus"
}]
},
"devDependencies": {
"vscode": "0.10.x",
"mocha": "~2.3.3"
},
"icon": "images/icon.png"
}