-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
42 lines (42 loc) · 964 Bytes
/
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
{
"name": "vscode-markdown-tm-grammar",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node build",
"test": "node ./test/runTest.js"
},
"activationEvents": [],
"engines": {
"vscode": "^1.55.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mjbvz/vscode-markdown-tm-grammar.git"
},
"keywords": [],
"author": "Microsoft",
"publisher": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjbvz/vscode-markdown-tm-grammar/issues"
},
"contributes": {
"grammars": [
{
"language": "markdown",
"scopeName": "text.html.markdown",
"path": "./syntaxes/markdown.tmLanguage"
}
]
},
"homepage": "https://github.com/mjbvz/vscode-markdown-tm-grammar#readme",
"devDependencies": {
"js-yaml": "^3.13.1",
"mocha": "^10.0.0",
"plist": "^3.0.4",
"vscode-test": "^1.6.1"
}
}