-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.01 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
{
"name": "apacheconf-snippets",
"publisher": "eiminsasete",
"displayName": "Apache Conf Snippets",
"description": "Apache Conf Snippets",
"icon": "img/apache.png",
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/hrdtbs/vscode-apacheconf-snippets.git"
},
"keywords": [
"Apache",
"Apacheconf",
"htaccess"
],
"scripts": {
"build": "vsce package"
},
"version": "1.4.0",
"engines": {
"vscode": "^1.1.37"
},
"extensionDependencies": [
"mrmlnc.vscode-apache"
],
"devDependencies": {
"@vscode/vsce": "2.31.1"
},
"categories": [
"Snippets",
"Other"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": "manifest.json",
"url": "http://json.schemastore.org/web-manifest"
}
],
"snippets": [
{
"language": "apacheconf",
"path": "./snippets/apacheconf.json"
}
]
}
}