-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.88 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
{
"name": "drupal-smart-snippets",
"displayName": "Drupal Smart Snippets",
"description": "Context-aware snippets for Drupal development",
"version": "2.2.1",
"publisher": "andrewdavidblum",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/andy-blum/smart-drupal-snippets"
},
"engines": {
"vscode": "^1.49.0"
},
"galleryBanner": {
"color": "#0678BE",
"theme": "dark"
},
"icon": "images/drupal_logo.png",
"categories": [
"Snippets"
],
"keywords": [
"Drupal",
"Drupal-9",
"Drupal-10",
"PHP",
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/hooks.json"
},
{
"language": "php",
"path": "./snippets/elements.json"
},
{
"language": "php",
"path": "./snippets/services.json"
}
],
"languages": [
{
"id": "php",
"aliases": [
"PHP",
"php"
],
"extensions": [
".engine",
".install",
".inc",
".make",
".module",
".profile",
".test",
".theme"
]
}
]
},
"dependencies": {
"del": "^6.1.1",
"download": "^8.0.0",
"find": "^0.3.0",
"he": "^1.2.0",
"php-parser": "^3.1.4",
"tar": "^6.1.11",
"write-json-file": "^4.3.0",
"yaml": "^2.2.1"
},
"scripts": {
"start": "node index.js",
"vscode:prepublish": "node index.js"
}
}