forked from thadeu/vscode-run-rspec-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 4.31 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "vscode-run-rspec-file",
"displayName": "vscode-run-rspec-file",
"description": "Provide simple command to Run RSpec File",
"version": "0.5.28",
"publisher": "Thadeu",
"icon": "rspec.png",
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Extension Packs",
"Other"
],
"activationEvents": [
"onCommand:extension.runAllFilesOnRspec",
"onCommand:extension.runFileOnRspec",
"onCommand:extension.runLineOnRspec",
"onCommand:extension.runOpenSpec",
"onCommand:extension.runOnLastSpec",
"onCommand:extension.runAllOpenedFiles"
],
"repository": {
"type": "git",
"url": "https://github.com/thadeu/vscode-run-rspec-file.git"
},
"homepage": "https://github.com/thadeu/vscode-run-rspec-file",
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "ruby",
"extensions": [
".rb"
]
}
],
"commands": [
{
"command": "extension.runAllFilesOnRspec",
"title": "RSpec: Run All Files on RSpec"
},
{
"command": "extension.runAllOpenedFiles",
"title": "RSpec: Run All Opened Files"
},
{
"command": "extension.runFileOnRspec",
"title": "RSpec: Run File on RSpec"
},
{
"command": "extension.runLineOnRspec",
"title": "RSpec: Run Line on RSpec"
},
{
"command": "extension.runOpenSpec",
"title": "RSpec: Run Open spec this file"
},
{
"command": "extension.runOnLastSpec",
"title": "RSpec: Run On Last Spec"
}
],
"keybindings": [
{
"command": "extension.runLineOnRspec",
"key": "cmd+l",
"when": "editorLangId == 'ruby'"
},
{
"command": "extension.runAllOpenedFiles",
"key": "cmd+alt+j",
"when": "editorLangId == 'ruby'"
},
{
"command": "extension.runFileOnRspec",
"key": "cmd+alt+l",
"when": "editorLangId == 'ruby'"
},
{
"command": "extension.runOpenSpec",
"key": "cmd+alt+o",
"when": "editorLangId == 'ruby'"
},
{
"command": "extension.runOnLastSpec",
"key": "cmd+y",
"when": "editorLangId == 'ruby'"
}
],
"configuration": {
"title": "vscode-run-rspec-file",
"properties": {
"vscode-run-rspec-file.custom-command": {
"type": "string",
"default": "bundle exec rspec --color",
"description": "RSpec command to be used when running specs. Example: \"bundle exec rspec --color\""
},
"vscode-run-rspec-file.folder": {
"type": "string",
"default": "spec",
"description": "Set an custom folder to run tests Example: \"test\""
},
"vscode-run-rspec-file.suffix": {
"type": "string",
"default": "spec",
"description": "Set an custom suffix files tests Example: \"test\""
}
}
}
},
"keywords": [
"Ruby on Rails",
"Rspec",
"RSpec",
"Spec",
"Ruby",
"TDD",
"Testing"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"tslint": "^5.20.1",
"typescript": "^2.6.1",
"vscode": "^1.1.37"
}
}