forked from FlorianLoch/vscode-text-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "text-transform",
"displayName": "TextTransform",
"description": "A simple extension to apply simple transformations (like 'to uppercase', 'to lowercase') to currently selected text",
"version": "0.1.0",
"publisher": "florianloch",
"engines": {
"vscode": "^1.0.0"
},
"license": "MIT",
"repository": "https://github.com/FlorianLoch/vscode-text-transform",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "uppercase",
"title": "To uppercase"
},
{
"command": "lowercase",
"title": "To lowercase"
},
{
"command": "capitalcase",
"title": "To capitalcase"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}