-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.coffee
86 lines (65 loc) · 1.63 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: "sharejsxml"
# Change version with "cake [-V newversion] bump"
version: "0.10.1"
description: "A database for concurrent XML document editing"
keywords: [
"operational transformation"
"ot"
"concurrent"
"collaborative"
"database"
"server"
"XML"
]
homepage: ""
author: "Joseph Gentle <[email protected]> and Dennis Felsch <[email protected]>"
dependencies:
# Transports
sockjs: "^0.3.21"
"socket.io": "^4.8.0"
"socket.io-client": "^2.3.1"
browserchannel: "^2.1.0"
ws: "~5.2.4"
connect: "~3"
"serve-static": "^1.14.1"
"connect-route": "^0.1.5"
# CouchDB Backend
request: "^2.88.2"
# Prevent upgrade failures like v1.3. Bump this when tested.
"coffee-script": "~1"
# Useragent hashing
hat: "*"
#XML parsing and serializing
xmldom: "0.5.0"
#XPath processing
xpath: "0.0.27"
# Developer dependencies
devDependencies:
# Example server
express: "~4"
minimist: "^1.2.6"
# Tests
nodeunit: "^0.11.3"
# Javascript compression
"uglify-js": "~2.7"
# SockJS
"websocket": "^1.0.31"
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"
prepare: "cake webclient"
license: "MIT"
repository:
type: "git"
url: "https://github.com/RUB-NDS/ShareJSXML"