forked from MC-Escherichia/swank-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 990 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": "swank-js",
"version": "0.0.5",
"description": "Swank backend for Node.JS and in-browser JavaScript.",
"keywords": [
"swank",
"slime",
"emacs",
"repl"
],
"author": "Ivan Shvedunov",
"contributors": [
"Robert Krahn",
"Irakli Gozalishvili <[email protected]>",
"Jonathan Arkell <[email protected]>"
],
"homepage": "https://github.com/swank-js/swank-js",
"repository": {
"type": "git",
"url": "https://github.com/swank-js/swank-js.git",
"web": "https://github.com/swank-js/swank-js"
},
"bugs": {
"url": "https://github.com/swank-js/swank-js/issues/"
},
"main": "./swank.js",
"bin": {
"swank-js": "./swank.js"
},
"dependencies": {
"socket.io": ">=0.9",
"socket.io-client": ">=0.9"
},
"scripts": {
"swank": "node ./swank.js",
"test": "./tests.js"
},
"licenses": [
{
"type": "X11-style",
"url": "https://raw.github.com/swank-js/swank-js/master/LICENSE"
}
]
}