-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.98 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
{
"name": "ponylang",
"displayName": "Ponylang",
"description": "Provides basic support of Ponylang inside vscode",
"version": "0.2.2",
"engines": {
"vscode": "^1.38.0"
},
"icon": "icon.png",
"license": "MIT",
"publisher": "gbtb",
"repository": {
"url": "https://github.com/gbtb/vscode-ponylang"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "pony",
"aliases": [
"Pony",
"pony"
],
"extensions": [
".pony"
],
"configuration": "./language-configuration.json"
}
],
"problemMatchers": [
{
"name": "ponyc-matcher",
"label": "ponyc cli output problem matcher",
"source": "ponyc",
"applyTo": "allDocuments",
"owner": "pony",
"fileLocation": "absolute",
"pattern": [
{
"regexp": "^(\\w+).*$",
"severity": 1
},
{
"regexp": "^([^\\s]+?):(\\d+):(\\d+):(.+)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
},
{
"regexp": "^(?!Error:)(.*)$",
"message": 1,
"loop": true
}
]
}
],
"grammars": [
{
"language": "pony",
"scopeName": "source.pony",
"path": "./syntaxes/pony.tmLanguage"
}
]
},
"devDependencies": {
"generator-code": "^1.2.7",
"vsce": "^2.6.0",
"yo": "^3.1.0"
}
}