-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
146 lines (146 loc) · 3.91 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
139
140
141
142
143
144
145
146
{
"name": "saml-extension",
"displayName": "SAML Extension",
"description": "SAML Extension",
"version": "0.0.16",
"publisher": "mcastany",
"engines": {
"vscode": "^1.70.0"
},
"icon": "icon.png",
"author": "Marcos Castany",
"repository": "https://github.com/mcastany/vscode-saml-extension",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:samlExtension.sign",
"onCommand:samlExtension.verify",
"onCommand:samlExtension.encode",
"onCommand:samlExtension.decode",
"onCommand:samlExtension.encodeAndDeflate",
"onCommand:samlExtension.decodeAndInflate",
"onCommand:samlExtension.decodeUrl",
"onCommand:samlExtension.encodeUrl",
"onCommand:samlExtension.getThumbprint",
"onCommand:samlExtension.extractCertificate",
"onCommand:samlExtension.decrypt"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "samlExtension.sign",
"title": "SAML: Sign element"
},
{
"command": "samlExtension.verify",
"title": "SAML: Verify signature"
},
{
"command": "samlExtension.encode",
"title": "SAML: Encode element"
},
{
"command": "samlExtension.decode",
"title": "SAML: Decode element"
},
{
"command": "samlExtension.encodeAndDeflate",
"title": "SAML: Encode and Deflate element"
},
{
"command": "samlExtension.decodeAndInflate",
"title": "SAML: Decode and Inflate element"
},
{
"command": "samlExtension.decodeUrl",
"title": "SAML: URL Decode"
},
{
"command": "samlExtension.encodeUrl",
"title": "SAML: URL Encode"
},
{
"command": "samlExtension.getThumbprint",
"title": "SAML: Calculate a Certificate Thumbprint"
},
{
"command": "samlExtension.extractCertificate",
"title": "SAML: Extract Certificate"
},
{
"command": "samlExtension.decrypt",
"title": "SAML: Decrypt"
}
],
"configuration": {
"type": "object",
"title": "XML Signature extension configuration",
"properties": {
"samlExtension.sig_alg": {
"type": [
"string"
],
"default": "rsa-sha256",
"description": "Configure Signature Algorithm"
},
"samlExtension.digest_alg": {
"type": [
"string"
],
"default": "sha256",
"description": "Configure Digest Algorithm"
},
"samlExtension.transforms": {
"type": [
"array"
],
"default": [
"http://www.w3.org/2000/09/xmldsig#enveloped-signature",
"http://www.w3.org/2001/10/xml-exc-c14n#"
],
"description": "Configure Transforms for signing"
},
"samlExtension.publicKey": {
"type": [
"string"
],
"default": "",
"description": "Configure default public key certificate for signing and verification, in PEM format or raw base64 data"
},
"samlExtension.privateKey": {
"type": [
"string"
],
"default": "",
"description": "Configure default private key for signing, in PEM format"
},
"samlExtension.signaturePrefix": {
"type": [
"string"
],
"default": "ds",
"description": "Configure Signature Namespace prefix"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.14.13",
"@types/vscode": "^1.70.0",
"mocha": "^7.2.0",
"typescript": "^4.8.4"
},
"dependencies": {
"xml-crypto": "^1.5.3",
"xml-encryption": "^0.10.0",
"xmldom": "^0.6.0",
"xpath": "0.0.32"
}
}