forked from MrOrz/vscode-gettext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.19 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
{
"name": "language-gettext",
"displayName": "gettext",
"description": "Gettext PO files language support for Visual Studio Code",
"version": "0.1.0",
"publisher": "mrorz",
"main": "./out/src/vscgettext",
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onCommand:vscgettext.moveToNextUntranslated",
"onCommand:vscgettext.moveToPreviousUntranslated"
],
"contributes": {
"languages": [
{
"id": "po",
"aliases": [
"gettext",
"po"
],
"extensions": [
".po",
".pot",
".potx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "po",
"scopeName": "source.po",
"path": "./syntaxes/po.tmLanguage"
}
],
"keybindings": [
{
"command": "vscgettext.moveToNextUntranslated",
"key": "alt+n",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToPreviousUntranslated",
"key": "alt+shift+n",
"when": "editorTextFocus && resourceLangId == po"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"vstest": "node ./node_modules/vscode/bin/test",
"lint": "tslint src/**/*.ts test/*.test.ts"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.47",
"chai": "^4.1.2",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.5.3",
"vscode": "^1.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/MrOrz/vscode-gettext.git"
}
}