-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·109 lines (109 loc) · 2.7 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ur-cache-cleaner",
"displayName": "UR Cache Cleaner",
"description": "Clear cache from CMS like Drupal, Only build for Linux/Mac OS.",
"publisher": "UR-Services",
"author": {
"name": "Vinay Gawade"
},
"icon": "assets/images/logo.jpg",
"repository": {
"type": "git",
"url": "https://github.com/vinugawade/ur-cache-cleaner.git"
},
"license": "GNU General Public License",
"version": "1.4.0",
"engines": {
"vscode": "^1.72.0"
},
"categories": [
"Other"
],
"preview": false,
"activationEvents": [
"workspaceContains:**/composer.json",
"workspaceContains:**/.ddev/config.yaml",
"workspaceContains:**/.lando.yml",
"onStartupFinished"
],
"main": "./src/extension.js",
"contributes": {
"icons": {
"drupal-icon": {
"description": "Drupal",
"default": {
"fontPath": "./assets/icons/fonts/ur-icons.woff",
"fontCharacter": "\\41"
}
},
"ddev-icon": {
"description": "DDEV",
"default": {
"fontPath": "./assets/icons/fonts/ur-icons.woff",
"fontCharacter": "\\42"
}
},
"lando-icon": {
"description": "Lando",
"default": {
"fontPath": "./assets/icons/fonts/ur-icons.woff",
"fontCharacter": "\\43"
}
},
"wordpress-icon": {
"description": "Wordpress",
"default": {
"fontPath": "./assets/icons/fonts/ur-icons.woff",
"fontCharacter": "\\44"
}
},
"civicrm-icon": {
"description": "CiviCRM",
"default": {
"fontPath": "./assets/icons/fonts/ur-icons.woff",
"fontCharacter": "\\45"
}
}
},
"commands": [
{
"command": "drush-clear-cache",
"title": "Drush Clear Cache"
},
{
"command": "civicrm-clear-cache",
"title": "CiviCRM Clear Cache"
}
],
"keybindings": [
{
"command": "drush-clear-cache",
"key": "ctrl+shift+c ctrl+shift+r",
"mac": "cmd+shift+c cmd+shift+r"
},
{
"command": "civicrm-clear-cache",
"key": "ctrl+shift+c ctrl+shift+c",
"mac": "cmd+shift+c cmd+shift+c"
}
]
},
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.72.0",
"eslint": "^8.24.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.8.4"
},
"bugs": {
"url": "https://github.com/vinugawade/ur-cache-cleaner/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/vinugawade/ur-cache-cleaner/blob/master/README.md"
}