-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.57 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
{
"name": "excel-to-html-table",
"displayName": "Excel To Html Table / Json",
"description": "Copy Excel data and convert to Html table / Json / React format",
"version": "1.1.0",
"publisher": "hongyin163",
"repository": "https://github.com/hongyin163/vscode-excel-to-html-table.git",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:html",
"onLanguage:typescript"
],
"main": "./out/extension",
"contributes": {
"menus": {
"editor/context": [
{
"when": "editorTextFocus",
"command": "extension.excelToHtml",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "extension.excelToJson",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "extension.excelToReactCode",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "extension.csvToJson",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "extension.imageToHtml",
"group": "navigation"
}
]
},
"keybindings": [
{
"key": "shift+alt+h",
"command": "extension.excelToHtml",
"title": "Excel to Html table",
"when": "editorTextFocus"
},
{
"key": "shift+alt+j",
"command": "extension.excelToJson",
"title": "Excel to Json",
"when": "editorTextFocus"
},
{
"key": "shift+alt+x",
"command": "extension.excelToReactCode",
"title": "Excel to React Code",
"when": "editorTextFocus"
},
{
"key": "shift+alt+w",
"command": "extension.csvToJson",
"title": "Csv to Json",
"when": "editorTextFocus"
}
],
"commands": [
{
"command": "extension.excelToHtml",
"title": "Excel to Html table"
},
{
"command": "extension.excelToJson",
"title": "Excel to Json"
},
{
"command": "extension.excelToReactCode",
"title": "Excel to React Code"
},
{
"command": "extension.csvToJson",
"title": "Csv to Json"
},
{
"command": "extension.imageToHtml",
"title": "Image to Html"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"copy-paste": "^1.3.0"
}
}