-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
{
"name": "x509-parser",
"displayName": "x509 parser",
"description": "Parse OpenSSL artifacts to human readable text",
"version": "0.0.6",
"publisher": "jlcs-es",
"repository": {
"type": "git",
"url": "https://github.com/jlcs-es/x509-parser"
},
"bugs": {
"url": "https://github.com/jlcs-es/x509-parser/issues"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.parseX509",
"onCommand:extension.parseCSR"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.parseX509",
"title": "Parse x509 certificate"
},
{
"command": "extension.parseCSR",
"title": "Parse CSR"
},
{
"command": "extension.parseECkey",
"title": "Parse EC Private Key"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.59",
"@types/tmp": "^0.1.0",
"@types/vscode": "^1.30.0",
"glob": "^7.1.7",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"vscode-test": "^0.4.3"
},
"dependencies": {
"openssl-commander": "^0.2.0",
"tmp-promise": "^2.0.2"
}
}