forked from josephg/ShareJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "share",
"version": "0.7.40",
"description": "A database for concurrent document editing",
"keywords": [
"operational transformation",
"ot",
"concurrent",
"collaborative",
"database",
"server"
],
"author": {
"name": "Joseph Gentle",
"email": "[email protected]"
},
"dependencies": {
"async": "^0.9.0",
"hat": "^0.0.3",
"livedb": "^0.5.12",
"ot-json0": "^1.0.0",
"ot-text": "^1.0.0",
"ot-text-tp2": "^1.0.0"
},
"devDependencies": {
"browserchannel": "*",
"browserify": "^10.0.0",
"chai": "*",
"coffee-script": "~1.7.x",
"connect": "^3.3.0",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"optimist": ">= 0.2.4",
"ot-fuzzer": "^1.0.0",
"redis": "^0.12.1",
"serve-static": "^1.9.2",
"sinon": "^1.14.1",
"uglify-js": "^2.4.20"
},
"optionalDependencies": {
"express": "~3"
},
"engine": "node >= 0.10",
"main": "lib/index.js",
"scripts": {
"build": "make",
"test": "node_modules/mocha/bin/mocha test/server test/browser",
"prepublish": "make",
"coverage": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha test/server test/browser"
},
"licenses": [
{
"type": "BSD",
"url": "http://www.freebsd.org/copyright/freebsd-license.html"
}
],
"repository": {
"type": "git",
"url": "http://github.com/josephg/sharejs.git"
},
"bugs": {
"url": "https://github.com/josephg/sharejs/issues"
}
}