-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "gotest-snippets",
"displayName": "gotest-snippets",
"description": "A handful of snippets to make writing tests for golang a little easier.",
"version": "0.0.5",
"publisher": "gauntface",
"license": "MIT",
"engines": {
"vscode": "^2023.0.0"
},
"categories": [
"Snippets",
"Testing"
],
"keywords": ["go", "golang", "gotest", "testing", "snippets"],
"icon": "images/icon-256x256.png",
"galleryBanner": {
"color": "#E0EEE3",
"theme": "light"
},
"contributes": {
"snippets": [
{
"language": "go",
"path": "./snippets/snippets.code-snippets"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/gauntface/gotest-snippets.git"
},
"bugs": {
"url": "https://github.com/gauntface/gotest-snippets/issues",
"email": "[email protected]"
},
"homepage": "https://www.gaunt.dev/projects/gotest-snippets"
}