-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
156 lines (156 loc) · 4.06 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "rails-run-spec-vscode",
"displayName": "Rails Run Specs",
"description": "Rails Run Spec Files",
"version": "0.1.4",
"publisher": "noku",
"icon": "rspec.png",
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"engines": {
"vscode": "^1.55.0"
},
"repository": {
"type": "git",
"url": "https://github.com/noku/rails-run-spec-vscode.git"
},
"homepage": "https://github.com/noku/rails-run-spec-vscode",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.runAllSpecFiles",
"onCommand:extension.runFileSpecs",
"onCommand:extension.runSpecsFromMenu",
"onCommand:extension.runSpecLine",
"onCommand:extension.runLastSpec"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.runAllSpecFiles",
"title": "Run All Spec Files"
},
{
"command": "extension.runFileSpecs",
"title": "Run File Specs"
},
{
"command": "extension.runSpecsFromMenu",
"title": "Run Specs"
},
{
"command": "extension.runSpecLine",
"title": "Run Spec Line"
},
{
"command": "extension.runLastSpec",
"title": "Run Last Spec"
}
],
"keybindings": [
{
"command": "extension.runAllSpecFiles",
"key": "cmd+ctrl+r"
},
{
"command": "extension.runFileSpecs",
"key": "cmd+ctrl+t"
},
{
"command": "extension.runSpecLine",
"key": "cmd+ctrl+l"
},
{
"command": "extension.runLastSpec",
"key": "cmd+ctrl+y"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.runSpecsFromMenu",
"group": "spec"
}
]
},
"configuration": {
"title": "Ruby Spec Test Configurations",
"properties": {
"ruby.specCommand": {
"type": "string",
"default": "",
"description": "Defines a custom command to run for specs (i.e. 'spring rspec')"
},
"ruby.specFocusTerminal": {
"type": "boolean",
"default": true,
"description": "Defines if it should focus on terminal on each spec run"
},
"ruby.specClearTerminal": {
"type": "boolean",
"default": true,
"description": "Defines if it should clear the terminal on each spec run"
},
"ruby.specGem": {
"type": "string",
"default": "rspec",
"description": "Defines the type of tool used for testing",
"enum": [
"rspec",
"zeus"
]
},
"ruby.specPattern": {
"type": "string",
"default": "spec",
"description": "Defines the pattern for seaching test files",
"enum": [
"spec",
"test"
]
},
"ruby.zeusStartTimeout": {
"type": "number",
"description": "Zeus gem needs a certain time to start. Defined in ms",
"default": 2000
},
"ruby.specSaveFile": {
"type": "boolean",
"description": "Auto Save file before running spec test",
"default": false
}
}
}
},
"keywords": [
"Ruby on Rails",
"Rspec"
],
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"format": "prettier --config ./prettier.json --write './src/**/*.{ts,tsx}'",
"format:check": "prettier --config ./prettier.json --list-different './src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/prettier": "^2.2.3",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.3",
"typings": "^2.1.0",
"vscode": "^1.1.37",
"yarn": "^1.22.10"
}
}