-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 1.65 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
{
"name": "stackery",
"displayName": "Stackery Serverless Tools",
"description": "CloudFormation architecture editing + local debugging and development of any AWS Lambda function",
"homepage": "https://www.stackery.io",
"icon": "media/icon.png",
"version": "1.1.4",
"publisher": "stackery",
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"keywords": [
"serverless",
"serverless framework",
"aws",
"lambda",
"cloudformation"
],
"activationEvents": [
"onCommand:extension.edit",
"onCommand:extension.logout"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.edit",
"title": "Edit With Stackery",
"category": "Stackery",
"icon": {
"light": "./media/stackery-navy.svg",
"dark": "./media/stackery-teal.svg"
}
},
{
"command": "extension.logout",
"title": "Log out of Stackery Editor",
"category": "Stackery"
}
],
"menus": {
"commandPalette": [
{
"command": "extension.edit",
"when": "editorLangId == yaml"
}
],
"editor/title": [
{
"command": "extension.edit",
"when": "editorLangId == yaml",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "extension.edit",
"when": "resourceLangId == yaml",
"group": "navigation"
}
]
}
},
"scripts": {
"test": "node test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/vscode": "^1.33.0",
"eslint": "^5.13.0",
"typescript": "^3.3.1"
},
"dependencies": {
"hasbin": "^1.2.3",
"request": "^2.88.0",
"semver": "^6.0.0",
"vscode-test": "^1.5.2"
}
}