This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "ruby-syntax-replacer",
"displayName": "Ruby Syntax Replacer",
"description": "Replaces old Ruby syntax with new",
"version": "1.0.12",
"publisher": "Kosai106",
"author": "Kevin Østerkilde <[email protected]> (https://oesterkilde.dk/)",
"contributors": [
"Klaas Jan Wierenga <[email protected]> (http://kerkdienstgemist.nl)"
],
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#141c22",
"theme": "dark"
},
"engines": {
"vscode": "^1.23.0"
},
"categories": ["Formatters"],
"activationEvents": ["onCommand:extension.rubyReplace"],
"main": "./src/extension",
"contributes": {
"languages": [
{
"id": "ruby",
"aliases": ["ruby", "Ruby", "haml", "Haml", "HAML"],
"extensions": [".rb", ".erb", ".html.erb", ".haml", "html.haml"]
}
],
"commands": [
{
"command": "extension.rubyReplace",
"title": "Replace Ruby syntax"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^4.11.0",
"vscode": "^1.1.18"
},
"bugs": {
"url": "https://github.com/Kosai106/vscode-ruby-syntax-replacer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Kosai106/vscode-ruby-syntax-replacer.git"
},
"homepage":
"https://github.com/Kosai106/vscode-ruby-syntax-replacer/blob/master/README.md"
}