forked from gf3/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (32 loc) · 852 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
{ "name" : "sandbox"
, "description": "A nifty javascript sandbox for node.js"
, "homepage" : "http://gf3.github.com/sandbox/"
, "author" : "Gianni Chiappetta <[email protected]> (http://gf3.ca)"
, "contributors":
[ "Dominic Tarr (http://cyber-hobo.blogspot.com)"
]
, "version" : "0.8.2"
, "main" : "./lib/sandbox"
, "directories" : { "lib" : "./lib" }
, "scripts" : {
"preinstall": "bash ./install"
, "test": "vows test/*-test.js --spec"
}
, "engines" : [ "node >=0.6.5" ]
, "dependencies" : {
"broadway": "0.1.x"
, "node-fork": "0.4.x"
, "harmony-collections": "0.2.x"
}
, "devDependencies" :
{ "vows": "0.6.x"
}
, "repository" :
{ "type" : "git"
, "url" : "https://[email protected]/gf3/sandbox.git"
}
, "license" :
{ "type" : "Public Domain"
, "url" : "http://github.com/gf3/sandbox/raw/master/UNLICENSE"
}
}