-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "htmlentity-replacer",
"displayName": "HTML accented character converter",
"description": "VSCode extension for quick replacements of accented characters into html entities.",
"version": "2.1.0",
"publisher": "enriquein",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other",
"Formatters"
],
"keywords": [
"html special character",
"accented characters",
"html entity",
"html entities"
],
"activationEvents": [
"onCommand:extension.htmlentity-replacer.main",
"onCommand:extension.htmlentity-replacer.inSelection"
],
"main": "dist/extension",
"contributes": {
"commands": [
{
"command": "extension.htmlentity-replacer.main",
"title": "Replace special characters with Html entities"
},
{
"command": "extension.htmlentity-replacer.inSelection",
"title": "Replace special characters with Html entities for current selection"
}
],
"configuration": {
"title": "HTML accented character converter",
"properties": {
"htmlentityreplacer.overrides" : {
"type": "object",
"default": {},
"description": "Object containing a property for each source character, and the property's value is the HTML entity it will be replaced with. Changes require a reload."
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.65.0",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"typescript": "^4.5.5",
"vsce": "^2.7.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/enriquein/htmlentity-replacer"
},
"dependencies": {
"lodash.forin": "^4.4.0"
}
}