forked from groksrc/ruby_haml_for_vscode
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
{
"name": "haml",
"displayName": "Better Haml",
"description": "Better Haml syntax highlighting, auto close and suggestions",
"version": "1.4.1",
"publisher": "karunamurti",
"engines": {
"vscode": "^1.13.0"
},
"icon": "images/haml.png",
"categories": [
"Programming Languages",
"Snippets"
],
"license": "MIT",
"keywords": [
"haml",
"Ruby Haml",
"Haml",
"HAML"
],
"main": "./haml",
"activationEvents": [
"onLanguage:haml"
],
"contributes": {
"languages": [
{
"id": "haml",
"aliases": [
"Ruby Haml",
"Haml",
"haml"
],
"extensions": [
".haml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "haml",
"scopeName": "text.haml",
"path": "./syntaxes/haml.json"
}
],
"snippets": [
{
"language": "haml",
"path": "./snippets/snippets.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/karuna/haml-vscode.git"
},
"galleryBanner": {
"color": "#888888",
"theme": "dark"
},
"homepage": "https://github.com/karuna/haml-vscode",
"bugs": {
"url": "https://github.com/karuna/haml-vscode/issues",
"email": "[email protected]"
},
"__metadata": {
"id": "31dab038-d2f7-47c2-894e-5c35684dbd0e",
"publisherId": "14fb4112-a640-4645-8750-f1fab9c5e87a",
"publisherDisplayName": "Karuna Murti"
},
"devDependencies": {
"vscode": "^1.0.0",
"eslint": "^3.6.0"
}
}