-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.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
{
"name": "mimeconvertor",
"displayName": "Mime Tools",
"description": "Convert to multiple formats",
"version": "0.1.1",
"publisher": "ajogyashree",
"repository": "https://github.com/ajogyashree/vscode-mimetools",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.encodemd5",
"onCommand:extension.encode64",
"onCommand:extension.decode64",
"onCommand:extension.encodeutf8",
"onCommand:extension.decodeutf8",
"onCommand:extension.encodeurl",
"onCommand:extension.decodeurl",
"onCommand:extension.fullencodeurl",
"onCommand:extension.lcase",
"onCommand:extension.ucase",
"onCommand:extension.ccase",
"onCommand:extension.s2c"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.encodemd5",
"title": "MD5 Encode",
"category": "Mime Tools"
},
{
"command": "extension.encode64",
"title": "Base 64 Encode",
"category": "Mime Tools"
},
{
"command": "extension.decode64",
"title": "Base 64 Decode",
"category": "Mime Tools"
},
{
"command": "extension.encodeutf8",
"title": "UTF8 Encode",
"category": "Mime Tools"
},
{
"command": "extension.decodeutf8",
"title": "UTF8 Decode",
"category": "Mime Tools"
},
{
"command": "extension.encodeurl",
"title": "URL Encode",
"category": "Mime Tools"
},
{
"command": "extension.decodeurl",
"title": "URL Decode",
"category": "Mime Tools"
},
{
"command": "extension.fullencodeurl",
"title": "Full URL Encode",
"category": "Mime Tools"
},
{
"command": "extension.lcase",
"title": "Lower case",
"category": "Mime Tools"
},
{
"command": "extension.ucase",
"title": "Upper case",
"category": "Mime Tools"
},
{
"command": "extension.ccase",
"title": "Capitalize case",
"category": "Mime Tools"
},
{
"command": "extension.s2c",
"title": "Snake to Camel case",
"category": "Mime Tools"
}
]
},
"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": "^3.1.4",
"vscode": "^1.1.21",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"@types/crypto-js": "^3.1.43",
"crypto-js": "^3.1.9-1"
}
}