-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "vscode-html-to-elmish",
"displayName": "HTML to Elmish",
"description": "VSCode plugin to convert HTML to Elmish",
"version": "0.0.10",
"publisher": "bentayloruk",
"license": "MIT",
"engines": {
"vscode": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bentayloruk/vscode-html-to-elm"
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.10",
"vscode": "^0.11.0"
},
"dependencies": {
"htmlparser2": "^3.9.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:htmlToElmish.convert"
],
"main": "./out/src/main",
"contributes": {
"commands": [
{
"command": "htmlToElmish.convert",
"title": "HTML: convert to Elmish",
"description": "Converts your selection to Elmish by assuming that your selection is HTML code"
}
]
}
}