-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1010 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
45
46
47
48
{
"name": "remoteobjects",
"version": "0.2.0",
"description": "Remote objects in a distributed peer-to-peer network",
"author": "Jos de Jong <wjosdejong@gmail.com>",
"contributors": [
{
"name": "Jos de Jong",
"email": "wjosdejong@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/josdejong/remoteobjects.git"
},
"keywords": [
"distributed",
"p2p",
"remote",
"object",
"host",
"proxy"
],
"main": "./index",
"dependencies": {
"underscore": "~1.5.2",
"node-uuid": "~1.4.1",
"async": "~0.2.9",
"ws": "~0.4.31",
"portscanner": "~0.1.3",
"express": "~3.4.4"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.7.0",
"grunt-browserify": "~1.2.11"
},
"scripts": {
"build": "grunt",
"test": "grunt test"
},
"engines": {
"node": "0.10.*"
}
}