-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.13 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
{
"name": "verilog-highlight",
"displayName": "Verilog Highlight",
"description": "Syntax highlighter for Verilog",
"license": "MIT",
"publisher": "tzylee",
"homepage": "https://github.com/tzyLee/verilog-highlight",
"repository": {
"type": "git",
"url": "https://github.com/tzyLee/verilog-highlight"
},
"bugs": {
"url": "https://github.com/tzyLee/verilog-highlight/issues"
},
"icon": "docs/images/icon.png",
"scripts": {
"build": "yarn build:grammar",
"build:grammar": "tsc -b build -v && node build/build.js",
"test": "yarn build && yarn vscode-tmgrammar-snap -t './test/*.v' -s source.verilog -g './Verilog.tmLanguage'",
"test:update": "yarn build && yarn vscode-tmgrammar-snap -t './test/*.v' -s source.verilog -g './Verilog.tmLanguage' --updateSnapshot",
"package": "yarn vsce package"
},
"version": "0.0.10",
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"verilog",
"syntax",
"highlighting",
"color",
"textmate"
],
"contributes": {
"languages": [
{
"id": "verilog",
"aliases": [
"Verilog",
"verilog"
],
"extensions": [
".v",
".vh",
".vl",
".vp"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "verilog",
"scopeName": "source.verilog",
"path": "./Verilog.tmLanguage"
},
{
"scopeName": "markdown.verilog.codeblock",
"path": "./MarkdownCodeblock.tmLanguage",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.verilog": "source.verilog"
}
}
],
"configurationDefaults": {
"[verilog]": {
"editor.wordSeparators": "~!@#%^&*()-=+[{]}\\|;:\",.<>/?"
}
}
},
"devDependencies": {
"@types/js-yaml": "latest",
"@types/node": "latest",
"js-yaml": "latest",
"plist": "latest",
"typescript": "latest",
"vsce": "^2.15.0",
"vscode-tmgrammar-test": "^0.1.1"
}
}