-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "vscode-springboot-snippets",
"publisher": "developersoapbox",
"displayName": "Spring Boot Snippets",
"description": "Useful snippets for Spring Boot projects.",
"version": "1.0.1",
"icon": "images/spring-boot.png",
"repository": {
"type": "git",
"url": "https://github.com/DeveloperSoapbox/vscode-springboot-snippets.git"
},
"keywords": [
"Spring Boot",
"Spring Framework",
"Java"
],
"scripts": {
"package": "npx vsce package"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Snippets"
],
"contributes": {
"languages": [
{
"id": "spring-boot-properties-yaml",
"aliases": [
"Spring Boot Properties Yaml"
],
"filenamePatterns": [
"application*.yml",
"application*.yaml",
"bootstrap*.yml",
"bootstrap*.yaml"
]
},
{
"id": "spring-boot-properties",
"aliases": [
"Spring Boot Properties"
],
"filenamePatterns": [
"application*.properties",
"bootstrap*.properties"
]
}
],
"snippets": [
{
"language": "spring-boot-properties",
"path": "./snippets/spring-boot-properties.json"
},
{
"language": "spring-boot-properties-yaml",
"path": "./snippets/spring-boot-properties-yaml.json"
},
{
"language": "java",
"path": "./snippets/java.json"
}
]
}
}