-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
138 lines (138 loc) · 4.35 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "opensslutils",
"displayName": "opensslutils",
"description": "",
"version": "1.1.1",
"publisher": "ffaraone",
"engines": {
"vscode": "^1.23.0"
},
"icon": "images/opensslutils_logo.png",
"license": "SEE LICENSE IN LICENSE.md",
"galleryBanner": {
"color": "#1289B9",
"theme": "dark"
},
"categories": [
"Other"
],
"keywords": [
"ssl",
"openssl",
"certificate",
"self-signed",
"PKCS#12"
],
"repository": {
"url": "https://github.com/ffaraone/vscode-opensslutils.git"
},
"homepage": "https://github.com/ffaraone/vscode-opensslutils/blob/master/README.md",
"activationEvents": [
"onCommand:opensslutils.showOpenSSLPreview",
"onCommand:opensslutils.convertCrtToPem",
"onCommand:opensslutils.convertPemToCrt",
"onCommand:opensslutils.generateKeyCsr",
"onCommand:opensslutils.generatePrivKey",
"onCommand:opensslutils.generateSelfSignedCert",
"onCommand:opensslutils.generatePkcs12"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"type": "object",
"title": "OpenSSL Utils configuration",
"properties": {
"opensslutils.opensslPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Full path to the openssl executable"
},
"opensslutils.useWsl": {
"type": [
"boolean"
],
"default": false,
"description": "Use OpenSSL via Windows Subsystem for Linux"
}
}
}
],
"commands": [
{
"command": "opensslutils.showOpenSSLPreview",
"title": "Show OpenSSL preview",
"category": "OpenSSL"
},
{
"command": "opensslutils.generateKeyCsr",
"title": "Generate Private Key end CSR",
"category": "OpenSSL"
},
{
"command": "opensslutils.generateSelfSignedCert",
"title": "Generate self-signed Certificate and Key",
"category": "OpenSSL"
},
{
"command": "opensslutils.generatePkcs12",
"title": "Generate PKCS12",
"category": "OpenSSL"
},
{
"command": "opensslutils.generatePrivKey",
"title": "Generate Private Key",
"category": "OpenSSL"
},
{
"command": "opensslutils.convertCrtToPem",
"title": "OpenSSL: Crt to Pem"
},
{
"command": "opensslutils.convertPemToCrt",
"title": "OpenSSL: Pem to Crt"
}
],
"menus": {
"commandPalette": [
{
"command": "opensslutils.convertCrtToPem",
"when": "1 == 2"
},
{
"command": "opensslutils.convertPemToCrt",
"when": "1 == 2"
}
],
"explorer/context": [
{
"when": "!explorerResourceIsFolder",
"command": "opensslutils.convertCrtToPem",
"group": "z_openssl@1"
},
{
"when": "!explorerResourceIsFolder",
"command": "opensslutils.convertPemToCrt",
"group": "z_openssl@2"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}