This repository has been archived by the owner on Dec 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
92 lines (92 loc) · 2.17 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
{
"name": "elm",
"description": "Elm Language Support for Visual Studio Code",
"version": "0.26.0",
"publisher": "sbrink",
"author": {
"name": "Krzysztof Cieslak"
},
"contributors": [
{
"name": "Krzysztof Cieślak",
"url": "https://twitter.com/k_cieslak"
},
{
"name": "Sascha Brink",
"url": "https://github.com/sbrink"
},
{
"name": "Robert Jeppesen",
"url": "https://github.com/rojepp"
}
],
"icon": "images/elmIcon.png",
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Krzysztof-Cieslak/vscode-elm.git"
},
"bugs": {
"url": "https://github.com/Krzysztof-Cieslak/vscode-elm/issues"
},
"contributes": {
"languages": [
{
"id": "elm",
"aliases": [
"Elm",
"elm"
],
"extensions": [
".elm"
],
"configuration": "./elm.configuration.json"
}
]
},
"activationEvents": [
"onLanguage:elm"
],
"main": "./out/src/elmMain",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"build": "tsc -p ./",
"compile": "tsc -watch -p ./",
"lint": "tslint \"src/**/*.ts\" && prettier \"{src,__{tests,mocks}__}/**/*.ts\" --single-quote --trailing-comma all --list-different",
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install",
"prettier": "prettier --single-quote --trailing-comma all --write \"{src,__{tests,mocks}__}/**/*.ts\""
},
"devDependencies": {
"@types/lodash": "^4.14.118",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.50",
"mocha": "^2.3.3",
"prettier": "^1.5.3",
"typescript": "^2.4.0",
"vscode": "1.1.30"
},
"dependencies": {
"elm-module-parser": "0.1.12",
"elm-oracle": "^0.2.0",
"lodash": "^4.17.11",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"tslint": "^5.4.3",
"vscode-uri": "^1.0.0",
"ws": "^3.0.0"
}
}