-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "wrapforgettext",
"displayName": "Wrap for Gettext",
"description": "A VSCode extension to wrap texts with markup to pass into gettext in Jinja",
"version": "1.1.2",
"publisher": "mbacalan",
"keywords": [
"gettext",
"translation",
"localization"
],
"author": {
"name": "Muhammed Bacalan",
"email": "[email protected]",
"url": "https://github.com/mbacalan/"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/mbacalan/wrap-for-gettext"
},
"homepage": "https://github.com/mbacalan/wrap-for-gettext/README.md",
"bugs": {
"url": "https://github.com/mbacalan/wrap-for-gettext/issues"
},
"engines": {
"vscode": "^1.6.0"
},
"activationEvents": [
"onCommand:extension.wrapForGettext"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.wrapForGettext",
"title": "Wrap For Gettext"
}
],
"keybindings": [
{
"command": "extension.wrapForGettext",
"key": "ctrl+alt+g",
"mac": "alt+g",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"typings": "typings"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.1.9",
"@types/node": "^6.0.40"
}
}