-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 1.93 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
{
"name": "vscode-markdown-footnote",
"displayName": "Markdown Footnote",
"publisher": "houkanshan",
"description": "Support markdown footnote in VSCode editor",
"version": "1.0.0",
"engines": {
"vscode": "^1.57.0"
},
"author": "Mai Hou <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/houkanshan/vscode-markdown-footnote"
},
"bugs": {
"url": "https://github.com/houkanshan/vscode-markdown-footnote/issues"
},
"icon": "assets/markdown-footnote.png",
"keywords": [
"markdown",
"footnote",
"footnotes",
"preview",
"notes",
"note taking"
],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-markdown-footnote.insertFootnote",
"title": "Insert a Footnote"
}
],
"markdown.markdownItPlugins": true
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"scripts": {
"lint": "eslint src --ext ts",
"check-types": "tsc --noEmit -p ./",
"test": "jest",
"test:watch": "jest --watch",
"publish": "npx vsce publish",
"watch": "tsc -watch -p ./",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/vscode": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"commitlint": "^12.1.4",
"eslint": "^7.29.0",
"glob": "^7.1.7",
"husky": "^6.0.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"vsce": "^1.94.0",
"vscode-test": "^1.5.2"
},
"dependencies": {
"markdown-it-footnote": "^3.0.3"
}
}