-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.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
{
"name": "vscode-import-js",
"displayName": "ImportJS",
"description": "VSCode extension for ImportJS, a tool that helps you import javascript dependencies by automatically injecting import statements at the top of the file.",
"version": "0.0.9",
"publisher": "dabbott",
"repository": {
"type": "git",
"url": "https://github.com/dabbott/vscode-import-js"
},
"galleryBanner": {
"color": "#00A699",
"theme": "dark"
},
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Other"
],
"keywords": [
"import-js",
"import",
"vscode-import-js"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "importjs.word",
"title": "ImportJS: Import word under cursor"
},
{
"command": "importjs.goto",
"title": "ImportJS: Go to module"
},
{
"command": "importjs.fix",
"title": "ImportJS: Fix imports"
}
],
"keybindings": [
{
"command": "importjs.word",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j",
"when": "editorTextFocus"
},
{
"command": "importjs.goto",
"key": "ctrl+shift+k",
"mac": "cmd+shift+k",
"when": "editorTextFocus"
},
{
"command": "importjs.fix",
"key": "ctrl+shift+i",
"mac": "cmd+shift+i",
"when": "editorTextFocus"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"diff": "^3.2.0",
"import-js": "^2.3.0",
"oboe": "^2.1.3"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}