-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
51 lines (51 loc) · 1017 Bytes
/
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
{
"author": "Dominic Tarr <[email protected]> (http://dominictarr.com)",
"name": "scuttlebutt",
"description": "replicate data via scuttlebutt protocol",
"version": "5.6.15",
"homepage": "https://github.com/dominictarr/scuttlebutt",
"repository": {
"type": "git",
"url": "git://github.com/dominictarr/scuttlebutt.git"
},
"dependencies": {
"iterate": "0.1.0",
"duplex": "~1.0.0",
"stream-serializer": "1.1.2",
"monotonic-timestamp": "~0.0.8"
},
"devDependencies": {
"macgyver": "~1.10",
"event-stream": "~3.0",
"tape": "~0.1.5",
"request": "~2.16.6"
},
"testling": {
"files": "test/*.js",
"browsers": {
"ie": [
8,
9,
10
],
"firefox": [
17,
18
],
"chrome": [
23,
24
],
"safari": [
5,
6
],
"opera": [
12
]
}
},
"scripts": {
"test": "set -e; for test in test/*.js; do node $test; done"
}
}