-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.43 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
44
45
46
47
48
49
{
"name": "zcache",
"description": "AWS zone-aware multi-layer cache",
"version": "0.6.2",
"homepage": "https://github.com/Medium/zcache",
"authors": [
"Jeremy Stanley <github@azulus.com> (https://github.com/azulus)",
"Artem Titoulenko <artem@medium.com> (https://github.com/ArtemTitoulenko)",
"Xiao Ma <x@medium.com> (https://github.com/x-ma)"
],
"keywords": [
"zcache",
"cache",
"redis"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Medium/zcache.git"
},
"dependencies": {
"node-memcache-parser-obvfork": "0.1.1",
"generic-pool": "2.0.3",
"kew": "0.7.0",
"redis": "0.12.1",
"metrics": "0.1.6",
"hashring": "3.2.0",
"snappy": "6.3.5"
},
"devDependencies": {
"nodeunit": "0.9.0",
"nodeunitq": "0.1.1",
"logg": "0.2.2",
"closure-npc": "0.1.3",
"sinon": "git+https://github.com/Medium/Sinon.JS.git#xiao-fix-clearTimeout-for-nodejs"
},
"externDependencies": {
"redis": "./externs/redis.js",
"xxhash": "./externs/xxhash.js",
"hashring": "./externs/hashring.js",
"node-memcache-parser-obvfork": "./externs/node-memcache-parser-obvfork.js",
"generic-pool": "./externs/generic-pool.js",
"metrics": "./externs/metrics.js",
"snappy": "./externs/snappy.js"
},
"scripts": {
"test": "./node_modules/.bin/closure-npc --jscomp_error=checkTypes && ./node_modules/nodeunit/bin/nodeunit test"
}
}