-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2 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
{
"name": "ask-cli-configure",
"displayName": "Alexa Skills Kit (ASK) CLI Configure",
"description": "Quickly access the ASK CLI config file.",
"version": "0.2.1",
"publisher": "mark-tucker",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.23.0"
},
"galleryBanner": {
"color": "#2B2C33",
"theme": "dark"
},
"categories": [
"Other"
],
"keywords": [
"amazon",
"ask cli",
"config",
"alexa",
"alexa skills kit"
],
"repository": {
"type": "git",
"url": "https://github.com/rmtuckerphx/ask-cli-configure.git"
},
"bugs": {
"url": "https://github.com/rmtuckerphx/ask-cli-configure/issues"
},
"activationEvents": [
"onCommand:ask-cli.open.config",
"onCommand:ask-cli.browse.docs",
"onCommand:ask-cli.copy.profile.cli_config"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "ask-cli.open.config",
"title": "ASK CLI: Open 'cli_config' file"
},
{
"command": "ask-cli.browse.docs",
"title": "ASK CLI: Browse online docs"
},
{
"command": "ask-cli.copy.profile.cli_config",
"title": "ASK CLI: Copy ASK profile name from 'cli_config'..."
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.11.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"copy-paste": "^1.3.0",
"jsonfile": "^4.0.0",
"npm": "^6.3.0",
"object-hash": "^1.3.0",
"opn": "^5.3.0",
"uniqid": "^5.0.2"
}
}