-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
113 lines (113 loc) · 3.08 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
{
"name": "vscode-hasher",
"displayName": "Hasher",
"description":
"Generate various hash (md5, sha1), HTML entity conversion and many more",
"version": "1.0.1",
"publisher": "deerawan",
"icon": "images/hasher.png",
"galleryBanner": {
"color": "#283593",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.1"
},
"bugs": {
"url": "https://github.com/deerawan/vscode-hasher/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/deerawan/vscode-hasher",
"repository": {
"type": "git",
"url": "https://github.com/deerawan/vscode-hasher"
},
"categories": ["Other"],
"activationEvents": [
"onCommand:extension.md5",
"onCommand:extension.sha1",
"onCommand:extension.base64Encode",
"onCommand:extension.base64Decode",
"onCommand:extension.uriEncodeComponent",
"onCommand:extension.uriDecodeComponent",
"onCommand:extension.uuidV1",
"onCommand:extension.uuidV4",
"onCommand:extension.htmlEntityEncodeComponent",
"onCommand:extension.htmlEntityDecodeComponent"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.md5",
"title": "Hasher: MD5"
},
{
"command": "extension.sha1",
"title": "Hasher: SHA1"
},
{
"command": "extension.base64Encode",
"title": "Hasher: Base64 Encode"
},
{
"command": "extension.base64Decode",
"title": "Hasher: Base64 Decode"
},
{
"command": "extension.uriEncodeComponent",
"title": "Hasher: URI Encode Component"
},
{
"command": "extension.uriDecodeComponent",
"title": "Hasher: URI Decode Component"
},
{
"command": "extension.uuidV1",
"title": "Hasher: UUID v1"
},
{
"command": "extension.uuidV4",
"title": "Hasher: UUID v4"
},
{
"command": "extension.htmlEntityEncodeComponent",
"title": "Hasher: HTML Entity Encode"
},
{
"command": "extension.htmlEntityDecodeComponent",
"title": "Hasher: HTML Entity Decode"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"test":
"./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec --ui tdd ./out/test/*.test.js",
"precommit": "lint-staged",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts' --fix"
},
"devDependencies": {
"coveralls": "^2.11.6",
"husky": "^0.14.3",
"istanbul": "^0.4.1",
"lint-staged": "^7.0.0",
"mocha": "^2.3.4",
"prettier": "^1.11.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"typescript": "^2.5.3",
"uuid-validate": "0.0.2",
"vscode": "0.10.x"
},
"dependencies": {
"he": "^0.5.0",
"uuid": "^3.0.1"
},
"lint-staged": {
"*.{ts,json}": ["prettier --write", "git add"],
"*.ts": ["tslint --fix", "tslint"]
}
}