forked from josephg/ShareJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.coffee
86 lines (65 loc) · 1.51 KB
/
package.coffee
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Package.json file in CoffeeScript
# Nicer to write and you can have comments
# Compile with "cake package"
module.exports =
name: "share"
# Change version with "cake [-V newversion] bump"
version: "0.6.3"
description: "A database for concurrent document editing"
keywords: [
"operational transformation"
"ot"
"concurrent"
"collaborative"
"database"
"server"
]
homepage: ""
author: "Joseph Gentle <[email protected]>"
dependencies:
# Transports
sockjs: ">= 0.3.1"
"socket.io": "~0.8"
"socket.io-client": "~0.8"
browserchannel: "~1"
ws: "*"
# Server works with v1 or v2
connect: "<3.x"
# CouchDB Backend
request: ">= 2.1.1"
# Prevent upgrade failures like v1.3. Bump this when tested.
"coffee-script": "<1.7"
# Useragent hashing
hat: "*"
# for logging
winston: "*"
# Developer dependencies
devDependencies:
# Example server
express: "~ 3.x"
optimist: ">= 0.2.4"
# Tests
nodeunit: "*"
# Unixy shell stuff for Cakefile
shelljs: "*"
# Javascript compression
"uglify-js": "~1"
# SockJS
"websocket": "*"
engine: "node >= 0.6"
# Main file to execute
main: "index.js"
# Binaries to install
bin:
sharejs: "bin/sharejs"
"sharejs-exampleserver": "bin/exampleserver"
scripts:
build: "cake build"
test: "cake test"
prepublish: "cake webclient"
licenses: [
type: "MIT"
]
repository:
type: "git"
url: "http://github.com/josephg/sharejs.git"