-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 2.45 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
110
111
112
113
114
115
116
117
118
119
{
"name": "dotfiles-syntax-highlighting",
"displayName": "Dotfiles Syntax Highlighting",
"version": "0.1.1",
"publisher": "dotiful",
"description": "Provides syntax highlighting for dotfiles",
"categories": [ "Programming Languages" ],
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"preview": true,
"bugs": {
"url": "https://github.com/dotiful/vscode-dotfiles-syntax/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dotiful/vscode-dotfiles-syntax"
},
"engines": {
"vscode": "*"
},
"license": "SEE LICENSE IN LICENSE.md",
"contributes": {
"languages": [
{
"id": "shellscript",
"aliases": [ "Shell Script" ],
"extensions": [
"ackrc",
"aliases",
"antigen",
"bash_prompt",
"brew",
"cshrc",
"curlrc",
"dircolors",
"editorconfig",
"env",
"envrc",
"exports",
"extra",
"functions",
"git",
"gitattributes",
"gitconfig",
"gitignore",
"gitmodules",
"gtkrc-2.0",
"hushlogin",
"inputrc",
"jshintignore",
"npmignore",
"npmrc",
"osx",
"packages",
"path",
"pkginit",
"profile",
"screenrc",
"symlink",
"wgetrc",
"xbindkeysrc",
"xsession",
"xsessionrc",
"zpreztorc",
"zshrc.local",
"xinitrc"
],
"filenames": [
"bash_colors",
"bash_completion",
"bash_logout",
"bashrc",
"symlink",
"zlogin",
"zlogout",
"zpreztorc",
"zprofile",
"zshrc"
],
"firstLine": "^#\\s*compdef"
},
{
"id": "ruby",
"aliases": [ "Ruby", "ruby" ],
"extensions": [ "gemrc" ]
},
{
"id": "ini",
"aliases": [ "npmrc", "ini" ],
"extensions": [ "npmrc" ],
"filenames": [ "npmrc" ]
},
{
"id": "xmodmap",
"aliases": [ "Xmodmap", "xmodmap" ],
"extensions": [ "Xmodmap" ],
"filenames": [ "Xmodmap" ],
"configuration": "./xmodmap-config.json"
}
],
"grammars": [
{
"language": "xmodmap",
"scopeName": "source.xmodmap",
"path": "./syntaxes/xmodmap.tmLanguage.json"
}
]
},
"homepage": "https://github.com/dotiful/vscode-dotfiles-syntax/blob/master/README.md",
"scripts": {
"build-package": "vsce package"
},
"devDependencies": {
"vsce": "^1.62.0"
}
}