-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 2.74 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
98
99
100
101
102
103
104
105
106
{
"name": "markdown-scripture",
"version": "0.2.0",
"displayName": "Markdown Scripture",
"publisher": "swils",
"description": "Allow your Markdown notes in VS Code to track references and include quotes from verse-based documents such as the Bible.",
"license": "MIT",
"categories": [
"Notebooks",
"Other",
"Programming Languages",
"Snippets"
],
"keywords": [
"markdown",
"notebook",
"notes",
"notetaking",
"tagging",
"bible",
"scripture"
],
"engines": {
"vscode": "^1.56.0"
},
"repository": {
"url": "https://github.com/swils/vscode-markdown-scripture.git",
"type": "git"
},
"activationEvents": [
"onCommand:markdownScripture.resetCache",
"onLanguage:markdown"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "markdownScripture.resetCache",
"title": "Markdown Scripture: Reset cache"
}
],
"configuration": {
"title": "Markdown Scripture",
"properties": {
"markdownScripture.sources": {
"type": "array",
"description": "Locations of source files, either in a VScode extension or as a list of local glob patterns, with an optional reference specification.",
"items": {
"type": "object",
"properties": {
"include": {
"type": "string"
},
"extension": {
"type": "string"
},
"ref": {
"type": "string",
"default": "${filename}"
}
}
},
"default": []
}
}
},
"markdown.markdownItPlugins": true
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.170",
"@types/markdown-it": "^12.0.1",
"@types/minimatch": "^3.0.4",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chai": "^4.3.4",
"eslint": "^7.19.0",
"mocha": "^8.2.1",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"typescript": "^4.1.3",
"vsce": "^1.93.0",
"vscode-test": "^1.5.0"
},
"dependencies": {
"glob": "^7.1.7",
"lodash": "^4.17.21",
"markdown-it": "^12.0.6",
"markdown-it-for-inline": "^0.1.1",
"minimatch": "^3.0.4"
}
}