-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
109 lines (109 loc) · 2.4 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
107
108
109
{
"name": "yuml",
"displayName": "yUML",
"description": "UML diagramming tool based on the yUML syntax",
"version": "3.5.1",
"icon": "images/yUML.png",
"publisher": "JaimeOlivares",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/jaime-olivares/vscode-yuml"
},
"bugs": {
"url": "https://github.com/jaime-olivares/vscode-yuml/issues",
"email": "jaime_olivares@hotmail.com"
},
"homepage": "https://github.com/jaime-olivares/vscode-yuml/blob/master/README.md",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"yuml",
"uml",
"diagram",
"sequence",
"markdown"
],
"contributes": {
"languages": [
{
"id": "yuml",
"aliases": [
"yUML",
"yuml"
],
"extensions": [
".yuml"
],
"configuration": "./yuml.configuration.json"
}
],
"grammars": [
{
"language": "yuml",
"scopeName": "source.yuml",
"path": "./syntaxes/yuml.tmLanguage"
},
{
"scopeName": "markdown.yuml.codeblock",
"path": "./syntaxes/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.yuml": "javascript"
}
}
],
"commands": [
{
"command": "extension.viewYumlDiagram",
"title": "Preview yUML Diagram",
"icon": {
"light": "./images/preview.svg",
"dark": "./images/preview_inverse.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == yuml",
"command": "extension.viewYumlDiagram",
"group": "navigation"
}
]
},
"snippets": [
{
"language": "yuml",
"path": "./snippets/yuml.json"
}
],
"markdown.markdownItPlugins": true
},
"activationEvents": [
"onCommand:extension.viewYumlDiagram"
],
"main": "./src/extension.js",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"jsdom": "^11.11.0",
"yuml-diagram": "^1.0.12"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.112",
"eslint": "^4.6.1",
"mocha": "^2.3.3",
"vscode": "^1.1.18"
}
}