forked from atom-haskell/ide-haskell-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 831 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
{
"name": "ide-haskell-repl",
"main": "./lib/ide-haskell-repl",
"version": "0.4.6",
"description": "Haskell REPL support for ide-haskell",
"keywords": [
"ide-haskell",
"ide",
"haskell",
"repl"
],
"activationHooks": [
"language-haskell:grammar-used"
],
"repository": "https://github.com/atom-haskell/ide-haskell-repl",
"license": "MIT",
"engines": {
"atom": ">=1.9.0 <2.0.0"
},
"dependencies": {
"sub-atom": "^1.0.0",
"tree-kill": "^1.0.0",
"atom-haskell-utils": "^0.9.0",
"underscore-plus": "^1.6.6"
},
"consumedServices": {
"ide-haskell-upi": {
"description": "Uses ide-haskell's unified pluggable interface",
"versions": {
"^0.2.0": "consumeUPI"
}
}
},
"deserializers": {
"IdeHaskellReplView": "createReplView"
}
}