-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 904 Bytes
/
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
{
"name": "expressjs-snippets",
"displayName": "ExpressJS Snippets",
"description": "Express Snippets for VS Code",
"version": "0.0.1",
"publisher": "AdityaSingh",
"homepage": "https://github.com/aditya-singh9/ExpressJS-Snippets",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/aditya-singh9/ExpressJS-Snippets"
},
"bugs": {
"url": "https://github.com/aditya-singh9/ExpressJS-Snippets/issues"
},
"license": "MIT",
"keywords": [
"Javascript",
"Express",
"Node",
"Snippet"
],
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.json"
}
]
}
}