-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 1.87 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
{
"name": "ruby-and-rails-snippets",
"publisher": "Cjay",
"displayName": "Ruby and Rails Snippets",
"description": "Snippets for ruby and rails",
"icon": "icon/rails.png",
"licence": "MIT",
"galleryBanner": {
"color": "#8b0000",
"theme": "dark"
},
"homepage": "https://github.com/Chris56974/ruby-and-rails-snippets",
"repository": {
"type": "git",
"url": "https://github.com/Chris56974/ruby-and-rails-snippets"
},
"version": "0.2.2",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Snippets"
],
"keywords": [
"rails",
"ROR",
"RoR",
"Ruby on Rails",
"erb",
"slim"
],
"contributes": {
"snippets": [
{
"language": "slim",
"path": "./snippets/erb.json"
},
{
"language": "erb",
"path": "./snippets/erb.json"
},
{
"language": "ruby",
"path": "./snippets/ruby.json"
},
{
"language": "ruby",
"path": "./snippets/rails.json"
}
],
"languages": [
{
"id": "html",
"aliases": [
"html.erb"
],
"extensions": [
".html.erb"
]
},
{
"id": "slim",
"aliases": [
"html.slim"
],
"extensions": [
".html.slim"
]
}
],
"grammars": [
{
"language": "html",
"scopeName": "text.html.erb",
"path": "./syntaxes/erb.tmLanguage"
}
]
}
}