forked from josephg/ShareJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "share",
"version": "0.5.0",
"description": "A database for concurrent document editing",
"keywords": ["operational transformation", "ot", "concurrent", "collaborative", "database", "server"],
"homepage": "",
"author": "Joseph Gentle <[email protected]>",
"main": "index.js",
"bin": {
"sharejs": "bin/sharejs",
"sharejs-exampleserver": "bin/exampleserver"
},
"dependencies": {
"sockjs": ">= 0.3.1",
"socket.io": "~0.8",
"socket.io-client": "~0.8",
"connect": "~1",
"optimist": ">= 0.2.4",
"uglify-js": "~1",
"request": ">= 2.1.1",
"coffee-script": "*",
"browserchannel": "*",
"hat": "*"
},
"devDependencies": {
"nodeunit": "*",
"websocket": "*"
},
"engine": "node >= 0.6",
"scripts": {
"build": "cake build",
"test": "nodeunit tests.coffee",
"prepublish": "cake webclient"
},
"licenses": [{
"type": "BSD",
"url": "http://www.freebsd.org/copyright/freebsd-license.html"
}],
"repository": {
"type": "git",
"url": "http://github.com/josephg/sharejs.git"
}
}