forked from jasongilman/proto-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1012 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1012 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "proto-repl",
"main": "./lib/proto-repl",
"version": "1.1.3",
"description": "Provides a Clojure Development Environment with an interactive REPL. You can easily send code to the REPL, run tests in your project, view documentation, and much more.",
"keywords": [
"clojure",
"lisp",
"repl",
"interactive"
],
"repository": "https://github.com/jasongilman/proto-repl",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "2.1.1",
"underscore": "^1.8.3",
"jg-nrepl-client": "0.2.3",
"loophole": "1.1.0"
},
"package-dependencies": {
"tool-bar": "^0.1.0",
"ink": "^0.3.2"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"consumedServices": {
"tool-bar": {
"versions": {
"^0.1.0": "consumeToolbar"
}
},
"ink": {
"versions": {
"*": "consumeInk"
}
}
}
}