-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "quasar-snippets",
"displayName": "Quasar Snippets",
"description": "vscode snippets for quasar-framework ",
"version": "1.0.0",
"publisher": "abdelaziz18003",
"repository": {
"type": "git",
"url": "https://github.com/Abdelaziz18003/vscode-quasar-snippets.git"
},
"scripts": {
"pug": "vsc-snippets-html2pug --src snippets/html-snippets.json --dist snippets/jade-snippets.json"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/html-snippets.json"
},
{
"language": "vue-html",
"path": "./snippets/html-snippets.json"
},
{
"language": "jade",
"path": "./snippets/jade-snippets.json"
},
{
"language": "vue-jade",
"path": "./snippets/jade-snippets.json"
}
]
},
"__metadata": {
"id": "d0d67b9a-ca83-4113-8a1e-4af32b28688d",
"publisherDisplayName": "Abdelaziz Mokhnache",
"publisherId": "cdd0e72d-bca3-4d14-bf7d-648c80d7a395"
},
"devDependencies": {
"vsc-snippets-html2pug": "^0.1.0"
}
}