-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "permute-lines",
"displayName": "Permute Lines",
"description": "Reverse, Unique, Shuffle lines as in Sublime Text",
"icon": "doc/logo.png",
"version": "1.1.0",
"publisher": "earshinov",
"repository": "https://github.com/earshinov/vscode-permute-lines/",
"license": "MIT",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:permute-lines.reverse",
"onCommand:permute-lines.unique",
"onCommand:permute-lines.shuffle"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "permute-lines.reverse",
"title": "Permute Lines: Reverse"
},
{
"command": "permute-lines.unique",
"title": "Permute Lines: Unique"
},
{
"command": "permute-lines.shuffle",
"title": "Permute Lines: Shuffle"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vsce": "^1.66.0",
"vscode": "^1.0.0"
}
}