-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 874 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 874 Bytes
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
{
"name": "ElmIDE",
"version": "1.0.0",
"description": "Elm IDE written in Elm and backed by NeoVim",
"main": "app/electron.js",
"scripts": {
"elm-watch": "nodemon --exec elm make src/Main.elm --output app/elm.js -w src -e elm --quiet",
"elm-make" : "elm make src/Main.elm --output app/elm.js",
"start": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/elmcast/elm-ide.git"
},
"keywords": [
"Elm"
],
"author": "Joseph Hager",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/elmcast/elm-ide/issues"
},
"homepage": "https://github.com/elmcast/elm-ide#readme",
"devDependencies": {
"electron": "^1.4.3",
"nodemon": "^1.11.0"
},
"dependencies": {
"neovim-client": "^2.1.0"
}
}