-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
71 lines (71 loc) · 1.91 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
{
"name": "excel-to-markdown-table",
"displayName": "Excel to Markdown table",
"description": "Copy Excel data and convert to Markdown table format",
"version": "1.3.0",
"publisher": "csholmq",
"repository": {
"url": "https://github.com/csholmq/vscode-excel-to-markdown-table"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.excelToMarkdown",
"onLanguage:markdown"
],
"main": "./out/extension",
"contributes": {
"keybindings": {
"key": "shift+alt+v",
"command": "extension.excelToMarkdown",
"title": "Excel to Markdown table",
"when": "editorLangId == 'markdown'"
},
"commands": {
"command": "extension.excelToMarkdown",
"title": "Excel to Markdown table"
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"mocha": "./node_modules/.bin/mocha --opts ./src/test/mocha.opts",
"coverage": "./node_modules/.bin/nyc npm run mocha"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^13.13.52",
"@types/vscode": "^1.59.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.10",
"vscode-test": "^1.6.1"
},
"dependencies": {},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"**/*.test.ts",
"src/test/index.ts"
],
"reporter": [
"html"
],
"all": true
}
}