-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 854 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
38
{
"name": "lambda-snippets",
"displayName": "AWS Lambda Boilerplate Snippets for Node.JS",
"description": "Simple boilerplate AWS Lambda functions for Node.JS",
"icon": "images/lambda.png",
"version": "1.0.0",
"publisher": "loganarnett",
"galleryBanner": {
"color": "#F58536",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/loganarnett/vscode-lambda-snippets"
},
"bugs": {
"url": "https://github.com/loganarnett/vscode-lambda-snippets/issues",
"email": "logan@loganarnett.com"
},
"license": "MIT",
"categories": [
"Snippets"
],
"engines": {
"vscode": "^1.0.0"
},
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
}
]
},
"devDependencies": {
"vscode": "^1.1.26"
}
}