forked from sporto/rails-go-to-spec-vscode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "jest-go-to-test",
"displayName": "Jest Go to Test",
"repository": {
"url": "https://github.com/Maxim-Filimonov/jest-go-to-test-vscode"
},
"description": "Switch between code and test in Jest",
"version": "0.0.2",
"publisher": "Maxim-Filimonov",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.jestGoToTest"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.jestGoToTest",
"title": "Go to Test"
}
],
"keybindings": [
{
"command": "extension.jestGoToTest",
"key": "ctrl+shift+y",
"mac": "cmd+shift+y",
"when": "editorTextFocus"
}
]
},
"scripts": {
"test": "jest",
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)x?$"
},
"dependencies": {
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
"typescript": "^1.8.5",
"vscode": "^0.11.12"
}
}