-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 986 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 986 Bytes
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
{
"name": "shellman",
"displayName": "shellman",
"description": "Bash script snippet",
"version": "2.1.0",
"publisher": "Remisa",
"icon": "images/icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/remisa-yousefvand/shellman.git"
},
"galleryBanner": {
"color": "#A79E35",
"theme": "dark"
},
"engines": {
"vscode": "^1.28.1"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "shellscript",
"path": "./snippets/snippets.json"
}
]
},
"devDependencies": {
"cspell": "^3.1.3",
"fs": "0.0.1-security",
"path": "^0.12.7"
},
"scripts": {
"doc": "node docgen.js",
"clean": "rm COMMANDS.md &> /dev/null",
"spellcheck": "./node_modules/.bin/cspell ./**/*"
}
}