-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.26 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
{
"name": "test-utils",
"displayName": "Test Utils",
"description": "Add, remove, and move .only in tests",
"version": "1.1.0",
"publisher": "chrisbreiding",
"license": "MIT",
"homepage": "https://github.com/chrisbreiding/vscode-test-utils",
"repository": {
"type": "git",
"url": "https://github.com/chrisbreiding/vscode-test-utils.git"
},
"bugs": {
"url": "https://github.com/chrisbreiding/vscode-test-utils/issues"
},
"engines": {
"vscode": "^1.17.0"
},
"scripts": {
"lint": "eslint --fix *.js"
},
"activationEvents": [
"onCommand:extension.addOnly",
"onCommand:extension.removeOnly",
"onCommand:extension.removeAllOnlys",
"onCommand:extension.moveOnly",
"onCommand:extension.addSkip",
"onCommand:extension.removeSkip",
"onCommand:extension.removeAllSkips"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.addOnly",
"title": "Add only"
},
{
"command": "extension.removeOnly",
"title": "Remove only"
},
{
"command": "extension.removeAllOnlys",
"title": "Remove all onlys"
},
{
"command": "extension.moveOnly",
"title": "Move only"
},
{
"command": "extension.addSkip",
"title": "Add skip"
},
{
"command": "extension.removeSkip",
"title": "Remove skip"
},
{
"command": "extension.removeAllSkips",
"title": "Remove all skips"
}
],
"keybindings": [
{
"command": "extension.addOnly",
"key": "ctrl+alt+a ctrl+alt+o",
"when": "editorTextFocus"
},
{
"command": "extension.removeOnly",
"key": "ctrl+alt+r ctrl+alt+o",
"when": "editorTextFocus"
},
{
"command": "extension.removeAllOnlys",
"key": "ctrl+alt+x ctrl+alt+o",
"when": "editorTextFocus"
},
{
"command": "extension.moveOnly",
"key": "ctrl+alt+m ctrl+alt+o",
"when": "editorTextFocus"
},
{
"command": "extension.addSkip",
"key": "ctrl+alt+a ctrl+alt+s",
"when": "editorTextFocus"
},
{
"command": "extension.removeSkip",
"key": "ctrl+alt+r ctrl+alt+s",
"when": "editorTextFocus"
},
{
"command": "extension.removeAllSkips",
"key": "ctrl+alt+x ctrl+alt+s",
"when": "editorTextFocus"
}
]
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"eslint": "^4.6.1",
"eslint-plugin-cypress-dev": "^1.0.0",
"@types/node": "^7.0.0",
"@types/mocha": "^2.2.42"
}
}