-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·83 lines (83 loc) · 1.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "classicpress-snippets",
"displayName": "ClassicPress Snippets & Auto-Completions",
"description": "A snippets and autocompletions collection for WordPress & ClassicPress theme and plugins development.",
"publisher": "laurencebahiirwa",
"author": {
"name": "Laurence Bahiirwa"
},
"license": "MIT",
"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.5.3",
"engines": {
"vscode": "^1.18.0"
},
"icon": "images/classicpress-logo.png",
"keywords": [
"php",
"ClassicPress",
"WordPress",
"plugins",
"themes"
],
"categories": [
"Snippets"
],
"scripts": {
"deploy": "vsce publish --yarn"
},
"contributes": {
"snippets": [
{
"language": "css",
"path": "./snippets/css/theme.json"
},
{
"language": "javascript",
"path": "./snippets/php/general.json"
},
{
"language": "php",
"path": "./snippets/php/general.json"
},
{
"language": "php",
"path": "./snippets/php/plugin.json"
},
{
"language": "php",
"path": "./snippets/php/cp/snippets.json"
},
{
"language": "php",
"path": "./snippets/php/cp/modified.json"
},
{
"language": "php",
"path": "./snippets/php/cp/deprecated.json"
},
{
"language": "php",
"path": "./snippets/php/wp/functions.json"
},
{
"language": "php",
"path": "./snippets/php/wp/classes.json"
},
{
"language": "php",
"path": "./snippets/php/cli/wpcli.json"
}
]
},
"devDependencies": {
"vsce": "^2.9.0"
}
}