-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.8 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
{
"name": "vscode-mockthis",
"displayName": "Mock This",
"description": "Automatically generates jasmine test specs for TypeScript and JavaScript files.",
"version": "0.2.3",
"publisher": "duydao",
"author": {
"name": "Duy Dao",
"email": "[email protected]",
"url": "https://github.com/duydao"
},
"icon": "images/icon.svg",
"galleryBanner": {
"color": "#252627",
"theme": "dark"
},
"license": "MIT",
"licenseUrl": "LICENSE",
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onCommand:mockthis.toggleSpec",
"onCommand:mockthis.mockThis",
"onCommand:mockthis.mockEverything"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "mockthis.toggleSpec",
"title": "Toggle Spec/Code",
"category": "Tests"
},
{
"command": "mockthis.mockThis",
"title": "Mock This"
},
{
"command": "mockthis.mockEverything",
"title": "Mock Everything"
}
],
"keybindings": [
{
"command": "mockthis.toggleSpec",
"key": "ctrl+j",
"mac": "cmd+j",
"when": "editorTextFocus"
},
{
"command": "mockthis.mockThis",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j"
},
{
"command": "mockthis.mockEverything",
"key": "ctrl+alt+j",
"mac": "cmd+alt+j"
}
],
"configuration": {
"type": "object",
"title": "Mock This configuration",
"properties": {
"mockthis.specSuffix": {
"default": [
".spec"
],
"description": "Spec suffix",
"type": "array"
},
"mockthis.defaultExtension": {
"default": [
".spec"
],
"description": "The default spec suffix will be used to create a spec if none is available",
"type": "string"
},
"mockthis.includeTypes": {
"type": "boolean",
"default": true,
"description": "When enabled, type information is added to comment tags."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"lint": "node ./node_modules/tslint/bin/tslint src/**/*.ts",
"compile": "npm run lint && node ./node_modules/vscode/bin/compile -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"tslint": "^3.3.0",
"vscode": "^0.11.18"
},
"dependencies": {
"serialize-error": "^2.0.0",
"typescript": "^1.8.10"
},
"bugs": {
"url": "https://github.com/duydao/vscode-mockthis/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/duydao/vscode-mockthis"
}
}