forked from bahiirwa/classicpress-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 1.4 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
67
68
69
{
"name": "classicpress-snippets",
"displayName": "ClassicPress snippets and autocompletions.",
"description": "A collection of snippets and autocompletions for ClassicPress & WordPress theme and plugins development.",
"publisher": "laurencebahiirwa",
"author": {
"name": "Laurence Bahiirwa"
},
"license": "GPLv3",
"homepage": "https://github.com/bahiirwa/classicpress-snippets",
"repository": {
"type": "git",
"url": "https://github.com/bahiirwa/classicpress-snippets"
},
"bugs": {
"url": "https://github.com/bahiirwa/classicpress-snippets/issues"
},
"version": "0.3.3",
"engines": {
"vscode": "^1.18.0"
},
"icon": "images/classicpress-logo.png",
"keywords": [
"php",
"ClassicPress",
"WordPress",
"plugin",
"themes"
],
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "css",
"path": "./snippets/themecss.json"
},
{
"language": "php",
"path": "./snippets/theme.json"
},
{
"language": "php",
"path": "./snippets/plugin.json"
},
{
"language": "php",
"path": "./snippets/cp/snippets.json"
},
{
"language": "php",
"path": "./snippets/cp/modified.json"
},
{
"language": "php",
"path": "./snippets/cp/deprecated.json"
},
{
"language": "php",
"path": "./snippets/wp/functions.json"
},
{
"language": "php",
"path": "./snippets/wp/classes.json"
}
]
}
}