-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "markdown-table-maker",
"displayName": "Markdown Table Maker",
"description": "More Intuitive Way to Generate Markdown Tables",
"version": "1.0.3",
"publisher": "hellorusk",
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown"
],
"activationEvents": [
"onCommand:tablemaker.make"
],
"main": "./out/extension.js",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/7ma7X/vscode-markdown-tablemaker.git"
},
"contributes": {
"commands": [
{
"command": "tablemaker.make",
"title": "TableMaker: Generate New Markdown Table"
}
]
},
"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",
"lint": "./node_modules/.bin/eslint src/*.ts src/test/*.ts --fix"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.19.0",
"typescript": "^3.7.2",
"vscode": "^1.1.36"
}
}