This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 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
{
"name": "LinkCheckMD",
"displayName": "HTTP/s and relative link checker",
"description": "Checks Markdown links for the presence of a country-code as you type and flags as a warning. Checks whether HTTP/s links or relative links are reachable when you press Alt+L.",
"icon": "images/linkcheckermdicon.png",
"version": "0.3.0",
"publisher": "blackmist",
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/microsoft/linkcheckermd/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/microsoft/linkcheckermd/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/linkcheckermd.git"
},
"categories": [
"Linters",
"Other"
],
"engines": {
"vscode": "0.10.x"
},
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"contributes": {
"commands": [
{
"command": "extension.generateLinkReport",
"title": "Generate a link report"
}
],
"keybindings": [
{
"command": "extension.generateLinkReport",
"key": "Alt+L"
}
],
"configuration": {
"title": "LinkCheckMD",
"properties": {
"linkcheckmd.enableCountryCodeCheck": {
"type": "boolean",
"default": true,
"description": "Enable checking links for hard-coded language identifiers (LNK0001)."
}
}
}
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^10.2.0",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"broken-link": "^1.0.1",
"validator": "^13.7.0"
}
}