-
Notifications
You must be signed in to change notification settings - Fork 244
/
package.json
49 lines (49 loc) · 1.15 KB
/
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
45
46
47
48
49
{
"name" : "dnode",
"version" : "0.9.9",
"description" : "freestyle RPC",
"main" : "./index.js",
"keywords" : [
"message passing",
"rpc",
"rmi",
"drb",
"remote",
"communication",
"websockets",
"socket.io"
],
"repository" : {
"type" : "git",
"url" : "http://github.com/substack/dnode.git"
},
"directories" : {
"lib" : ".",
"examples" : "./examples"
},
"dependencies" : {
"socket.io" : "0.8.6",
"socket.io-client" : "https://github.com/substack/socket.io-client/tarball/master",
"lazy" : ">=1.0.5 <1.1",
"dnode-protocol" : "~0.1.2",
"jsonify" : "0.0.x"
},
"devDependencies" : {
"tap" : "~0.2.4",
"browserify" : "~1.10.7",
"uglify-js" : "~1.2.5",
"express" : "~2.5.9"
},
"scripts" : {
"test" : "tap test/*.js"
},
"browserify" : "browser/index.js",
"engine" : {
"node" : ">=0.4.0"
},
"author" : {
"name" : "James Halliday",
"email" : "[email protected]",
"url" : "http://substack.net"
}
}