-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 924 Bytes
/
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
{
"name": "liquibase-snippets",
"displayName": "Liquibase Snippets",
"description": "A VSCode extension that provides liquibase snippets.",
"version": "1.3.0",
"publisher": "chris-rimmer",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/rockinrimmer/VSCode-Liquibase-Snippets.git"
},
"bugs": {
"url": "https://github.com/rockinrimmer/VSCode-Liquibase-Snippets/issues"
},
"homepage": "https://github.com/rockinrimmer/VSCode-Liquibase-Snippets#readme",
"license": "MIT",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"Liquibase"
],
"contributes": {
"snippets": [
{
"language": "xml",
"path": "./snippets/xml.json"
}
]
}
}