-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.98 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vscode-dltookit",
"displayName": "DLTookit",
"description": "",
"version": "1.0.8",
"icon": "images/droidlabs.jpg",
"publisher": "droid-labs-llc",
"engines": {
"vscode": "^1.10.0"
},
"contributors": [{
"name": "vocrsz",
"url": "https://github.com/vocrsz"
},{
"name": "rousgg",
"url": "https://github.com/rous-gg"
}],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:ruby"
],
"main": "./extension",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"capabilities" : {
"definitionProvider" : "true"
},
"dependencies": {
"lodash": "^4.17.3",
"minimatch": "^3.0.3",
"mkdirp": "*"
},
"devDependencies": {
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"configuration": {
"properties": {
"ruby.locate": {
"type": "object",
"description": "Defines where the Ruby extension will look to find Modules, Classes and methods.",
"default": {
"exclude": "{**/@(test|spec|tmp|.*),**/@(test|spec|tmp|.*)/**,**/*_spec.rb}",
"include": "**/*.rb"
}
}
}
},
"contributes": {
"commands": [
{
"command": "extension.showSpec",
"title": "DLToolkit: Show Spec File"
},
{
"command": "extension.removeUnusedInjectedDeps",
"title": "DLToolkit: Check Empty Inject"
},
{
"command": "extension.goToPackage",
"title": "DLToolkit: Go to RDM Package Folder"
},
{
"command": "extension.generateNewPackage",
"title": "DLToolkit: Generate new Rdm package"
},
{
"command": "extension.generateNewBean",
"title": "DLToolkit: Generate new Rdm Bean"
}
],
"keybindings": [
{
"command": "extension.showSpec",
"key": "alt+ctrl+r",
"mac": "ctrl+cmd+r"
},
{
"command": "extension.removeUnusedInjectedDeps",
"key": "ctrl+alt+e",
"mac": "ctrl+cmd+e"
},
{
"command": "extension.goToPackage",
"key": "ctrl+alt+p",
"mac": "ctrl+cmd+p"
},
{
"command": "extension.generateNewPackage",
"key": "ctrl+alt+g",
"mac": "ctrl+cmd+g"
},
{
"command": "extension.generateNewBean",
"key": "ctrl+alt+n",
"mac": "ctrl+cmd+n"
}
]
}
}