-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.04 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
{
"name": "ruby-run-tests",
"displayName": "Ruby Run Tests",
"description": "Quick commands to run your ruby tests",
"version": "0.0.4",
"publisher": "mtayllan",
"repository": "https://github.com/mtayllan/vscode-ruby-run-tests",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Programming Languages",
"Keymaps",
"Testing"
],
"keywords": [
"ruby",
"test",
"rspec",
"minitest",
"rails"
],
"activationEvents": [],
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "ruby-run-tests.toggle",
"title": "Toggle between test and program"
},
{
"command": "ruby-run-tests.run",
"title": "Run test for active file"
},
{
"command": "ruby-run-tests.runForLine",
"title": "Run test for line on active test file"
}
],
"keybindings": [
{
"command": "ruby-run-tests.toggle",
"key": "alt+d",
"when": "editorLangId == 'ruby'"
},
{
"command": "ruby-run-tests.run",
"key": "alt+f",
"when": "editorLangId == 'ruby'"
},
{
"command": "ruby-run-tests.runForLine",
"key": "alt+v",
"when": "editorLangId == 'ruby'"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies",
"lint": "eslint src --ext ts",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vscode/vsce": "^2.23.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}