-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 2.87 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
{
"name": "markdown-table-prettify",
"displayName": "Markdown Table Prettifier",
"description": "Transforms markdown tables to be more readable.",
"version": "3.6.0",
"publisher": "darkriszty",
"repository": {
"type": "git",
"url": "https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt"
},
"bugs": {
"url": "https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/issues"
},
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Formatters"
],
"keywords": [
"markdown",
"table",
"formatter"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/src/extension/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Markdown Table Prettifier Configuration",
"properties": {
"markdownTablePrettify.showWindowMessages": {
"type": "boolean",
"default": true,
"description": "Whether or not show window messages."
},
"markdownTablePrettify.maxTextLength": {
"type": "integer",
"default": 1000000,
"description": "The maximum text length to apply formatting to."
},
"markdownTablePrettify.extendedLanguages": {
"type": "array",
"default": [],
"description": "Additional VSCode language identifiers to register the formatter for. Eg: [ 'ruby' ]"
},
"markdownTablePrettify.columnPadding": {
"type": "integer",
"default": 0,
"description": "The left and right padding value expressed in number of spaces."
}
}
},
"commands": [
{
"command": "markdownTablePrettify.prettifyTables",
"title": "Prettify markdown tables"
}
],
"keybindings": [
{
"command": "markdownTablePrettify.prettifyTables",
"key": "ctrl+alt+m",
"mac": "cmd+alt+m",
"when": "editorTextFocus && !editorReadonly && !inCompositeEditor"
}
]
},
"capabilities": {
"documentFormattingProvider": "true"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"dist": "rm -r ./out; tsc -p ./ --lib 'ES5' --target 'ES5' --sourceMap false --downlevelIteration true && gulp merge-packagejson-for-npm-dist && cp README.md out && cp LICENSE out && cd out && npm pack",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "gulp copy-systemTest-resources && node ./out/test/index.js",
"prettify-md": "node ./out/cli/index.js",
"check-md": "node ./out/cli/index.js --check"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.2",
"@types/vscode": "^1.59.0",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-merge-json": "^2.1.1",
"mocha": "^9.0.0",
"typemoq": "^2.1.0",
"typescript": "^4.3.5",
"vscode-test": "^1.6.1"
},
"license": "MIT"
}