This repository has been archived by the owner on Oct 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 4.24 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "ngx-translate-manager",
"displayName": "ngx-translate-manager",
"description": "The plugin allows you to speed up your work with the ngx-translate library.",
"version": "1.0.5",
"publisher": "0x8b",
"preview": true,
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/0x8b/vscode-ngx-translate-manager.git"
},
"bugs": {
"url": "https://github.com/0x8b/vscode-ngx-translate-manager/issues",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"angular",
"ngx-translate",
"translate",
"translations",
"i18n"
],
"icon": "images/ngx-translate-manager-icon-256px.png",
"galleryBanner": {
"color": "#070707",
"theme": "dark"
},
"activationEvents": [
"workspaceContains:angular.json",
"workspaceContains:.angular-cli.json"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "ngx-translate-manager",
"properties": {
"ngx-translate-manager.locale": {
"type": "string",
"default": "**/assets/i18n/en.json",
"scope": "resource",
"description": "A glob pattern that defines files and folders to search for. The glob pattern will be matched against the paths of resulting matches relative to their workspace."
},
"ngx-translate-manager.exclude": {
"type": "string",
"default": "**/node_modules/**",
"scope": "resource",
"description": "A glob pattern that defines files and folders to exclude. The glob pattern will be matched against the file paths of resulting matches relative to their workspace."
},
"ngx-translate-manager.pattern": {
"type": "string",
"default": "**/*.{html,js,ts}",
"scope": "resource",
"description": "A glob pattern that specify files which can use extension."
}
}
},
"commands": [
{
"command": "ngx-translate-manager.search",
"title": "Find Translation",
"category": "ngx-translate-manager"
},
{
"command": "ngx-translate-manager.store",
"title": "Add Translation",
"category": "ngx-translate-manager"
},
{
"command": "ngx-translate-manager.set-locale-file",
"title": "Set locale file",
"category": "ngx-translate-manager"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection",
"command": "ngx-translate-manager.store",
"group": "5_cutcopypaste"
},
{
"when": "editorHasSelection",
"command": "ngx-translate-manager.search",
"group": "5_cutcopypaste"
}
]
},
"keybindings": [
{
"command": "ngx-translate-manager.search",
"key": "shift+alt+t",
"when": "editorHasSelection"
},
{
"command": "ngx-translate-manager.store",
"key": "ctrl+t",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.4",
"@types/vscode": "^1.39.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"vscode-test": "^1.2.2"
}
}