-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 2.61 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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "vscode-mscgen",
"displayName": "MscGen",
"description": "Syntax highlighting and snippets for MscGen and two similar sequence chart languages",
"version": "1.2.0",
"publisher": "mscgenjs",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"engines": {
"vscode": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mscgenjs/vscode-mscgen"
},
"homepage": "https://github.com/mscgenjs/vscode-mscgen",
"bugs": {
"url": "https://github.com/mscgenjs/vscode-mscgen/issues"
},
"license": "GPL-3.0",
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"MscGen",
"Xù",
"MsGenny"
],
"contributes": {
"languages": [
{
"id": "mscgen",
"aliases": [
"MscGen",
"mscgen"
],
"extensions": [
".msc",
".mscgen",
".mscin"
],
"configuration": "./language-configuration.mscgen.json"
},
{
"id": "msgenny",
"aliases": [
"MsGenny",
"msgenny"
],
"extensions": [
".msgenny"
],
"configuration": "./language-configuration.msgenny.json"
},
{
"id": "xu",
"aliases": [
"Xu",
"Xù",
"xu"
],
"extensions": [
".xu"
],
"configuration": "./language-configuration.xu.json"
}
],
"grammars": [
{
"language": "mscgen",
"scopeName": "source.mscgen",
"path": "./syntaxes/mscgen.tmLanguage.json"
},
{
"language": "msgenny",
"scopeName": "source.msgenny",
"path": "./syntaxes/msgenny.tmLanguage.json"
},
{
"language": "xu",
"scopeName": "source.xu",
"path": "./syntaxes/xu.tmLanguage.json"
}
],
"snippets": [
{
"language": "mscgen",
"path": "./snippets/mscgen.json"
},
{
"language": "xu",
"path": "./snippets/xu.json"
},
{
"language": "msgenny",
"path": "./snippets/msgenny.json"
}
]
},
"devDependencies": {
"npm-run-all": "4.1.3",
"tap-spec": "5.0.0",
"tape": "4.9.1",
"upem": "1.0.1",
"vscode-textmate": "3.3.3"
},
"upem": {
"donotup": [
"vscode-textmate"
]
},
"scripts": {
"test": "tape test/*.spec.js | tap-spec",
"update-dependencies": "npm-run-all upem:update upem:install test",
"upem:update": "npm outdated --json | upem",
"upem:install": "npm install"
}
}