forked from tushortz/vscode-Java-Imports
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 820 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 820 Bytes
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
{
"name": "java-imports-snippets",
"displayName": "Java Imports Snippets",
"description": "Java Imports is a vscode extension that makes it easy to import java classes and packages. It also offer other basic completions.",
"version": "0.0.1",
"publisher": "tushortz",
"icon": "icon.png",
"homepage": "https://github.com/tushortz/vscode-Java-Imports",
"engines": {
"vscode": "^0.10.6"
},
"keywords":["java", "imports", "snippets"],
"categories": [
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/tushortz/vscode-Wildlife-Theme.git"
},
"contributes": {
"snippets": [
{
"language": "java",
"path": "./snippets/basic.json"
},
{
"language": "java",
"path": "./snippets/java_imports.json"
}
]
}
}