-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.6 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
{
"name": "rbs-syntax",
"publisher": "soutaro",
"displayName": "RBS Syntax",
"description": "",
"homepage": "https://github.com/soutaro/vscode-rbs-syntax",
"repository": {
"type": "git",
"url": "https://github.com/soutaro/vscode-rbs-syntax.git"
},
"version": "0.2.1",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:ruby-signature",
"onLanguage:rbs"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "rbs",
"aliases": [
"rbs",
"ruby-signature"
],
"extensions": [
".rbs"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rbs",
"scopeName": "source.rbs",
"path": "./syntaxes/rbs.tmLanguage.json"
}
],
"configurationDefaults": {
"[rbs]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.formatOnType": true
}
},
"configuration": {
"title": "RBS Syntax",
"properties": {
"rbs-syntax.enableDocumentSymbolProvider": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable this for outline view, breadcrumbs, and go-to-symbol navigation inside a file for RBS files."
},
"rbs-syntax.enableOnTypeFormattingProvider": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable this for on-type formatting for RBS files."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"package": "vsce package"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.39.0",
"@vscode/vsce": "^2.19.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vscode-test": "^1.2.2"
}
}