forked from Chat-Wane/crate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "crate-core",
"version": "0.0.4",
"author": "Chat-Wane <[email protected]>",
"description": "The core of CRATE: a [distributed and decentralized] CollaboRATive Editor.",
"main": "./lib/crate-core.js",
"repository": {
"type": "git",
"url": "https://github.com/chat-wane/crate-core.git"
},
"keywords": [
"Distributed Collaborative Editor",
"Conflict-free Replicated Data Type",
"Adaptive Random Peer Sampling",
"Browser-to-browser Communication"
],
"dependencies": {
"version-vector-with-exceptions": "0.0.x",
"causal-broadcast-definition": "0.0.x",
"spray-wrtc": "0.0.x",
"lseqtree": "0.3.x"
},
"bundledDependencies": [
"version-vector-with-exceptions",
"causal-broadcast-definition",
"spray-wrtc",
"lseqtree"
],
"scripts":{
"debug": "browserify -r ./lib/crate-core.js:crate-core --debug > build/crate-core.bundle.debug.js",
"build": "browserify -r ./lib/crate-core.js:crate-core | uglifyjs > build/crate-core.bundle.js"
},
"license": "MIT"
}