-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 906 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
{
"name": "opal",
"description": "CoffeeScript was so cool",
"keywords": ["javascript", "language", "opal", "compiler", "ruby"],
"author": "Elia Schito",
"version": "0.6.4",
"licenses": [{
"type": "MIT",
"url": "https://raw.github.com/opal/opal-node/master/MIT-LICENSE"
}],
"engines": {
"node": "0.10.x"
},
"directories" : {
"lib" : "./lib"
},
"main" : "./lib/opal",
"bin": {
"opal-node": "./bin/opal-node",
"opal-node-irb": "./bin/opal-node-irb"
},
"homepage": "https://github.com/opal/opal-node",
"bugs": "https://github.com/opal/opal-node/issues",
"repository": {
"type": "git",
"url": "git://github.com/opal/opal-node.git"
},
"dependencies": {
"glob": "latest",
"js-yaml": "latest"
},
"devDependencies": {
"coffee-script": "latest"
}
}