-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.15 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": "markdown-link-updater",
"displayName": "Markdown Link Updater",
"author": {
"name": "Mathias Soeholm"
},
"description": "Automatically updates links in markdown files when moving or renaming files in the workspace.",
"repository": {
"url": "https://github.com/mathiassoeholm/markdown-link-updater"
},
"version": "2.3.0",
"license": "MIT",
"publisher": "mathiassoeholm",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"markdown",
"automatic",
"sync",
"links"
],
"icon": "images/icon.png",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Markdown Link Updater",
"properties": {
"markdownLinkUpdater.exclude": {
"type": "array",
"default": [
"**/node_modules/**"
],
"description": "Array of glob patterns used to exclude specific folders and files."
},
"markdownLinkUpdater.include": {
"type": "array",
"default": [],
"description": "Array of glob patterns used to include specific folders and files. If the array is empty, everything will be included, unless specified by exclude."
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/diff": "^5.0.0",
"@types/fs-extra": "^9.0.2",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/node": "^12.11.7",
"@types/vscode": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-jest": "^26.6.3",
"eslint": "^7.9.0",
"jest": "^26.6.3",
"ts-node": "^9.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"diff": "^5.0.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"minimatch": "^3.0.4"
}
}