forked from sergey-kintsel/haskell-vscode-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 981 Bytes
/
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
{
"name": "haskell-formatter-vscode-extension",
"repository": {
"type": "git",
"url": "https://github.com/sergey-kintsel/haskell-vscode-formatter"
},
"displayName": "Haskell Code Formatter",
"version": "0.0.2",
"description": "The Haskell code formatter that applies both hindent and stylish-haskell",
"author": "Sergey Kintsel",
"publisher": "sergey-kintsel",
"license": "MIT",
"private": false,
"dependencies": {},
"engines": {
"vscode": "^1.29.1"
},
"categories": [
"Formatters"
],
"contributes": {
"languages": [
{
"id": "haskell",
"aliases": [
"Haskell"
]
}
]
},
"activationEvents": [
"onLanguage:haskell"
],
"scripts": {
"compile": "tsc",
"postinstall": "node ./node_modules/vscode/bin/install && tsc"
},
"main": "./out/src/extension",
"devDependencies": {
"@types/node": "^10.12.10",
"typescript": "^3.1.6",
"vscode": "^1.1.21"
}
}