forked from dominictarr/crdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"author": "Dominic <[email protected]> (http://dominictarr.com)",
"name": "crdt",
"description": "Commutative Replicated Data Types for easy distributed/collaborative apps",
"version": "3.6.4",
"homepage": "http://github.com/dominictarr/crdt",
"repository": {
"url": "git://github.com/dominictarr/crdt.git"
},
"scripts": {
"test": "asynct test/*.js"
},
"dependencies": {
"between": "~0.1",
"scuttlebutt": ">=5.6.6 <6",
"it-is": "~1.0.3"
},
"devDependencies": {
"it-is": "~1.0.1",
"event-stream": "~3.0",
"asynct": "~1.1",
"assertions": "~2.3.1",
"kv": "~0.5",
"mux-demux": "~3.2"
},
"optionalDependencies": {},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}